diff --git a/abp_io/README.md b/abp_io/README.md new file mode 100644 index 0000000000..d8751260d3 --- /dev/null +++ b/abp_io/README.md @@ -0,0 +1,2 @@ +# abp-www +Official Web Site of the ABP patform diff --git a/abp_io/Volo.AbpWebSite.sln b/abp_io/Volo.AbpWebSite.sln new file mode 100644 index 0000000000..0621f570a1 --- /dev/null +++ b/abp_io/Volo.AbpWebSite.sln @@ -0,0 +1,49 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.AbpWebSite.Web", "src\Volo.AbpWebSite.Web\Volo.AbpWebSite.Web.csproj", "{7B8B649E-1C25-43FD-87B1-E9FED3A57ED6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.AbpWebSite.Domain", "src\Volo.AbpWebSite.Domain\Volo.AbpWebSite.Domain.csproj", "{9D3ED14A-FFC0-486A-B9B4-B249688AC6A6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.AbpWebSite.Application", "src\Volo.AbpWebSite.Application\Volo.AbpWebSite.Application.csproj", "{DDE85F9B-15E6-4D1F-A27C-1B38569564F6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.AbpWebSite.EntityFrameworkCore", "src\Volo.AbpWebSite.EntityFrameworkCore\Volo.AbpWebSite.EntityFrameworkCore.csproj", "{028C05DB-61BF-41EF-B9AD-614A43CD0A7F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Volo.Utils.SolutionTemplating", "src\Volo.Utils.SolutionTemplating\Volo.Utils.SolutionTemplating.csproj", "{742FCDDD-537C-42CC-AF16-A92C094D4B1D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7B8B649E-1C25-43FD-87B1-E9FED3A57ED6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7B8B649E-1C25-43FD-87B1-E9FED3A57ED6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7B8B649E-1C25-43FD-87B1-E9FED3A57ED6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7B8B649E-1C25-43FD-87B1-E9FED3A57ED6}.Release|Any CPU.Build.0 = Release|Any CPU + {9D3ED14A-FFC0-486A-B9B4-B249688AC6A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9D3ED14A-FFC0-486A-B9B4-B249688AC6A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9D3ED14A-FFC0-486A-B9B4-B249688AC6A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9D3ED14A-FFC0-486A-B9B4-B249688AC6A6}.Release|Any CPU.Build.0 = Release|Any CPU + {DDE85F9B-15E6-4D1F-A27C-1B38569564F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DDE85F9B-15E6-4D1F-A27C-1B38569564F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DDE85F9B-15E6-4D1F-A27C-1B38569564F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DDE85F9B-15E6-4D1F-A27C-1B38569564F6}.Release|Any CPU.Build.0 = Release|Any CPU + {028C05DB-61BF-41EF-B9AD-614A43CD0A7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {028C05DB-61BF-41EF-B9AD-614A43CD0A7F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {028C05DB-61BF-41EF-B9AD-614A43CD0A7F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {028C05DB-61BF-41EF-B9AD-614A43CD0A7F}.Release|Any CPU.Build.0 = Release|Any CPU + {742FCDDD-537C-42CC-AF16-A92C094D4B1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {742FCDDD-537C-42CC-AF16-A92C094D4B1D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {742FCDDD-537C-42CC-AF16-A92C094D4B1D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {742FCDDD-537C-42CC-AF16-A92C094D4B1D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F24AF782-5FD0-421E-A775-CA1C042D46BE} + EndGlobalSection +EndGlobal diff --git a/abp_io/src/Volo.AbpWebSite.Application/Volo.AbpWebSite.Application.csproj b/abp_io/src/Volo.AbpWebSite.Application/Volo.AbpWebSite.Application.csproj new file mode 100644 index 0000000000..ec07e51ed1 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Application/Volo.AbpWebSite.Application.csproj @@ -0,0 +1,12 @@ + + + + netcoreapp2.1 + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.Application/Volo/AbpWebSite/AbpWebSiteApplicationModule.cs b/abp_io/src/Volo.AbpWebSite.Application/Volo/AbpWebSite/AbpWebSiteApplicationModule.cs new file mode 100644 index 0000000000..b7ec0f4c19 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Application/Volo/AbpWebSite/AbpWebSiteApplicationModule.cs @@ -0,0 +1,11 @@ +using Volo.Abp.Modularity; + +namespace Volo.AbpWebSite +{ + [DependsOn( + typeof(AbpWebSiteDomainModule))] + public class AbpWebSiteApplicationModule : AbpModule + { + + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Domain/Volo.AbpWebSite.Domain.csproj b/abp_io/src/Volo.AbpWebSite.Domain/Volo.AbpWebSite.Domain.csproj new file mode 100644 index 0000000000..336ed02e19 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Domain/Volo.AbpWebSite.Domain.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp2.1 + + + + + + + + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.Domain/Volo/AbpWebSite/AbpWebSiteDomainModule.cs b/abp_io/src/Volo.AbpWebSite.Domain/Volo/AbpWebSite/AbpWebSiteDomainModule.cs new file mode 100644 index 0000000000..3a85042fa0 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Domain/Volo/AbpWebSite/AbpWebSiteDomainModule.cs @@ -0,0 +1,13 @@ +using Volo.Abp.Modularity; +using Volo.Utils.SolutionTemplating; + +namespace Volo.AbpWebSite +{ + [DependsOn( + typeof(SolutionTemplatingModule) + )] + public class AbpWebSiteDomainModule : AbpModule + { + + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.Designer.cs new file mode 100644 index 0000000000..e3faa6128e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.Designer.cs @@ -0,0 +1,61 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180627081027_Initial")] + partial class Initial + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.0-rtm-30799") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.cs new file mode 100644 index 0000000000..6696232ff3 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180627081027_Initial.cs @@ -0,0 +1,36 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Initial : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "DocsProjects", + columns: table => new + { + Id = table.Column(nullable: false), + Name = table.Column(maxLength: 128, nullable: false), + ShortName = table.Column(maxLength: 32, nullable: false), + Format = table.Column(nullable: true), + DefaultDocumentName = table.Column(maxLength: 128, nullable: false), + NavigationDocumentName = table.Column(maxLength: 128, nullable: false), + DocumentStoreType = table.Column(nullable: true), + GoogleCustomSearchId = table.Column(nullable: true), + ExtraProperties = table.Column(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_DocsProjects", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "DocsProjects"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.Designer.cs new file mode 100644 index 0000000000..748a1b3264 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.Designer.cs @@ -0,0 +1,83 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180628070043_Add_DownloadInfo")] + partial class Add_DownloadInfo + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.0-rtm-30799") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.AbpWebSite.Downloads.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("Version") + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.cs new file mode 100644 index 0000000000..242edd7c88 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070043_Add_DownloadInfo.cs @@ -0,0 +1,34 @@ +using System; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Add_DownloadInfo : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Downloads", + columns: table => new + { + Id = table.Column(nullable: false) + .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + ProjectName = table.Column(maxLength: 128, nullable: false), + Version = table.Column(maxLength: 20, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Downloads", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Downloads"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.Designer.cs new file mode 100644 index 0000000000..faa1abbdbc --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.Designer.cs @@ -0,0 +1,86 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180628070356_Add_DownloadInfo_CreationDuration")] + partial class Add_DownloadInfo_CreationDuration + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.0-rtm-30799") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.AbpWebSite.Downloads.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.cs new file mode 100644 index 0000000000..6a09b06fdb --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180628070356_Add_DownloadInfo_CreationDuration.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Add_DownloadInfo_CreationDuration : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "Version", + table: "Downloads", + maxLength: 20, + nullable: false, + oldClrType: typeof(string), + oldMaxLength: 20, + oldNullable: true); + + migrationBuilder.AddColumn( + name: "CreationDuration", + table: "Downloads", + nullable: false, + defaultValue: 0); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "CreationDuration", + table: "Downloads"); + + migrationBuilder.AlterColumn( + name: "Version", + table: "Downloads", + maxLength: 20, + nullable: true, + oldClrType: typeof(string), + oldMaxLength: 20); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.Designer.cs new file mode 100644 index 0000000000..ea72102bb1 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.Designer.cs @@ -0,0 +1,92 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider")] + partial class DownloadInfo_TemplateName_And_DatabaseProvider + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.cs new file mode 100644 index 0000000000..8353bfb2d0 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180715113144_DownloadInfo_TemplateName_And_DatabaseProvider.cs @@ -0,0 +1,34 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class DownloadInfo_TemplateName_And_DatabaseProvider : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "DatabaseProvider", + table: "Downloads", + nullable: false, + defaultValue: (byte)0); + + migrationBuilder.AddColumn( + name: "TemplateName", + table: "Downloads", + maxLength: 42, + nullable: false, + defaultValue: ""); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "DatabaseProvider", + table: "Downloads"); + + migrationBuilder.DropColumn( + name: "TemplateName", + table: "Downloads"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.Designer.cs new file mode 100644 index 0000000000..57475ec752 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.Designer.cs @@ -0,0 +1,509 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180803070224_Added_Identity_And_Blogging_Modules")] + partial class Added_Identity_And_Blogging_Modules + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.cs new file mode 100644 index 0000000000..9b02f2234f --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180803070224_Added_Identity_And_Blogging_Modules.cs @@ -0,0 +1,337 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Added_Identity_And_Blogging_Modules : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "AbpPermissionGrants", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + Name = table.Column(maxLength: 128, nullable: false), + ProviderName = table.Column(maxLength: 64, nullable: false), + ProviderKey = table.Column(maxLength: 64, nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpPermissionGrants", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AbpRoles", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + Name = table.Column(maxLength: 256, nullable: false), + NormalizedName = table.Column(maxLength: 256, nullable: false), + ConcurrencyStamp = table.Column(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpRoles", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AbpSettings", + columns: table => new + { + Id = table.Column(nullable: false), + Name = table.Column(maxLength: 128, nullable: false), + Value = table.Column(maxLength: 2048, nullable: false), + ProviderName = table.Column(maxLength: 64, nullable: true), + ProviderKey = table.Column(maxLength: 64, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpSettings", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AbpUsers", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + UserName = table.Column(maxLength: 256, nullable: false), + NormalizedUserName = table.Column(maxLength: 256, nullable: false), + Email = table.Column(maxLength: 256, nullable: true), + NormalizedEmail = table.Column(maxLength: 256, nullable: true), + EmailConfirmed = table.Column(nullable: false, defaultValue: false), + PasswordHash = table.Column(maxLength: 256, nullable: true), + SecurityStamp = table.Column(maxLength: 256, nullable: false), + ConcurrencyStamp = table.Column(maxLength: 256, nullable: false), + PhoneNumber = table.Column(maxLength: 16, nullable: true), + PhoneNumberConfirmed = table.Column(nullable: false, defaultValue: false), + TwoFactorEnabled = table.Column(nullable: false, defaultValue: false), + LockoutEnd = table.Column(nullable: true), + LockoutEnabled = table.Column(nullable: false, defaultValue: false), + AccessFailedCount = table.Column(nullable: false, defaultValue: 0), + ExtraProperties = table.Column(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpUsers", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "BlgBlogs", + columns: table => new + { + Id = table.Column(nullable: false), + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + LastModificationTime = table.Column(nullable: true), + LastModifierId = table.Column(nullable: true), + IsDeleted = table.Column(nullable: false, defaultValue: false), + DeleterId = table.Column(nullable: true), + DeletionTime = table.Column(nullable: true), + Name = table.Column(maxLength: 256, nullable: false), + ShortName = table.Column(maxLength: 32, nullable: false), + Description = table.Column(maxLength: 1024, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgBlogs", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AbpRoleClaims", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + ClaimType = table.Column(maxLength: 256, nullable: false), + ClaimValue = table.Column(maxLength: 1024, nullable: true), + RoleId = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpRoleClaims", x => x.Id); + table.ForeignKey( + name: "FK_AbpRoleClaims_AbpRoles_RoleId", + column: x => x.RoleId, + principalTable: "AbpRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AbpUserClaims", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + ClaimType = table.Column(maxLength: 256, nullable: false), + ClaimValue = table.Column(maxLength: 1024, nullable: true), + UserId = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpUserClaims", x => x.Id); + table.ForeignKey( + name: "FK_AbpUserClaims_AbpUsers_UserId", + column: x => x.UserId, + principalTable: "AbpUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AbpUserLogins", + columns: table => new + { + TenantId = table.Column(nullable: true), + UserId = table.Column(nullable: false), + LoginProvider = table.Column(maxLength: 64, nullable: false), + ProviderKey = table.Column(maxLength: 196, nullable: false), + ProviderDisplayName = table.Column(maxLength: 128, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpUserLogins", x => new { x.UserId, x.LoginProvider }); + table.ForeignKey( + name: "FK_AbpUserLogins_AbpUsers_UserId", + column: x => x.UserId, + principalTable: "AbpUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AbpUserRoles", + columns: table => new + { + TenantId = table.Column(nullable: true), + UserId = table.Column(nullable: false), + RoleId = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpUserRoles", x => new { x.UserId, x.RoleId }); + table.ForeignKey( + name: "FK_AbpUserRoles_AbpRoles_RoleId", + column: x => x.RoleId, + principalTable: "AbpRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_AbpUserRoles_AbpUsers_UserId", + column: x => x.UserId, + principalTable: "AbpUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AbpUserTokens", + columns: table => new + { + TenantId = table.Column(nullable: true), + UserId = table.Column(nullable: false), + LoginProvider = table.Column(maxLength: 128, nullable: false), + Name = table.Column(nullable: false), + Value = table.Column(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpUserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); + table.ForeignKey( + name: "FK_AbpUserTokens_AbpUsers_UserId", + column: x => x.UserId, + principalTable: "AbpUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "BlgPosts", + columns: table => new + { + Id = table.Column(nullable: false), + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + LastModificationTime = table.Column(nullable: true), + LastModifierId = table.Column(nullable: true), + IsDeleted = table.Column(nullable: false, defaultValue: false), + DeleterId = table.Column(nullable: true), + DeletionTime = table.Column(nullable: true), + BlogId = table.Column(nullable: false), + Url = table.Column(maxLength: 64, nullable: false), + Title = table.Column(maxLength: 512, nullable: false), + Content = table.Column(maxLength: 1048576, nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgPosts", x => x.Id); + table.ForeignKey( + name: "FK_BlgPosts_BlgBlogs_BlogId", + column: x => x.BlogId, + principalTable: "BlgBlogs", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_AbpPermissionGrants_Name_ProviderName_ProviderKey", + table: "AbpPermissionGrants", + columns: new[] { "Name", "ProviderName", "ProviderKey" }); + + migrationBuilder.CreateIndex( + name: "IX_AbpRoleClaims_RoleId", + table: "AbpRoleClaims", + column: "RoleId"); + + migrationBuilder.CreateIndex( + name: "IX_AbpRoles_NormalizedName", + table: "AbpRoles", + column: "NormalizedName"); + + migrationBuilder.CreateIndex( + name: "IX_AbpSettings_Name_ProviderName_ProviderKey", + table: "AbpSettings", + columns: new[] { "Name", "ProviderName", "ProviderKey" }); + + migrationBuilder.CreateIndex( + name: "IX_AbpUserClaims_UserId", + table: "AbpUserClaims", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_AbpUserLogins_LoginProvider_ProviderKey", + table: "AbpUserLogins", + columns: new[] { "LoginProvider", "ProviderKey" }); + + migrationBuilder.CreateIndex( + name: "IX_AbpUserRoles_RoleId_UserId", + table: "AbpUserRoles", + columns: new[] { "RoleId", "UserId" }); + + migrationBuilder.CreateIndex( + name: "IX_AbpUsers_Email", + table: "AbpUsers", + column: "Email"); + + migrationBuilder.CreateIndex( + name: "IX_AbpUsers_NormalizedEmail", + table: "AbpUsers", + column: "NormalizedEmail"); + + migrationBuilder.CreateIndex( + name: "IX_AbpUsers_NormalizedUserName", + table: "AbpUsers", + column: "NormalizedUserName"); + + migrationBuilder.CreateIndex( + name: "IX_AbpUsers_UserName", + table: "AbpUsers", + column: "UserName"); + + migrationBuilder.CreateIndex( + name: "IX_BlgPosts_BlogId", + table: "BlgPosts", + column: "BlogId"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "AbpPermissionGrants"); + + migrationBuilder.DropTable( + name: "AbpRoleClaims"); + + migrationBuilder.DropTable( + name: "AbpSettings"); + + migrationBuilder.DropTable( + name: "AbpUserClaims"); + + migrationBuilder.DropTable( + name: "AbpUserLogins"); + + migrationBuilder.DropTable( + name: "AbpUserRoles"); + + migrationBuilder.DropTable( + name: "AbpUserTokens"); + + migrationBuilder.DropTable( + name: "BlgPosts"); + + migrationBuilder.DropTable( + name: "AbpRoles"); + + migrationBuilder.DropTable( + name: "AbpUsers"); + + migrationBuilder.DropTable( + name: "BlgBlogs"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.Designer.cs new file mode 100644 index 0000000000..13ce2a1c83 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.Designer.cs @@ -0,0 +1,648 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180906122509_Updates_20180906")] + partial class Updates_20180906 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.cs new file mode 100644 index 0000000000..03cd34985f --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180906122509_Updates_20180906.cs @@ -0,0 +1,128 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Updates_20180906 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "ReadCount", + table: "BlgPosts", + nullable: false, + defaultValue: 0); + + migrationBuilder.CreateTable( + name: "BlgComments", + columns: table => new + { + Id = table.Column(nullable: false), + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + LastModificationTime = table.Column(nullable: true), + LastModifierId = table.Column(nullable: true), + IsDeleted = table.Column(nullable: false, defaultValue: false), + DeleterId = table.Column(nullable: true), + DeletionTime = table.Column(nullable: true), + PostId = table.Column(nullable: false), + RepliedCommentId = table.Column(nullable: true), + Text = table.Column(maxLength: 1024, nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgComments", x => x.Id); + table.ForeignKey( + name: "FK_BlgComments_BlgPosts_PostId", + column: x => x.PostId, + principalTable: "BlgPosts", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_BlgComments_BlgComments_RepliedCommentId", + column: x => x.RepliedCommentId, + principalTable: "BlgComments", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + }); + + migrationBuilder.CreateTable( + name: "BlgTags", + columns: table => new + { + Id = table.Column(nullable: false), + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + LastModificationTime = table.Column(nullable: true), + LastModifierId = table.Column(nullable: true), + IsDeleted = table.Column(nullable: false, defaultValue: false), + DeleterId = table.Column(nullable: true), + DeletionTime = table.Column(nullable: true), + Name = table.Column(maxLength: 64, nullable: false), + Description = table.Column(maxLength: 512, nullable: true), + UsageCount = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgTags", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "BlgPostTags", + columns: table => new + { + CreationTime = table.Column(nullable: false), + CreatorId = table.Column(nullable: true), + PostId = table.Column(nullable: false), + TagId = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgPostTags", x => new { x.PostId, x.TagId }); + table.ForeignKey( + name: "FK_BlgPostTags_BlgPosts_PostId", + column: x => x.PostId, + principalTable: "BlgPosts", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_BlgPostTags_BlgTags_TagId", + column: x => x.TagId, + principalTable: "BlgTags", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_BlgComments_PostId", + table: "BlgComments", + column: "PostId"); + + migrationBuilder.CreateIndex( + name: "IX_BlgComments_RepliedCommentId", + table: "BlgComments", + column: "RepliedCommentId"); + + migrationBuilder.CreateIndex( + name: "IX_BlgPostTags_TagId", + table: "BlgPostTags", + column: "TagId"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "BlgComments"); + + migrationBuilder.DropTable( + name: "BlgPostTags"); + + migrationBuilder.DropTable( + name: "BlgTags"); + + migrationBuilder.DropColumn( + name: "ReadCount", + table: "BlgPosts"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.Designer.cs new file mode 100644 index 0000000000..10a8a687b1 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.Designer.cs @@ -0,0 +1,652 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180911135940_Added_CoverImage")] + partial class Added_CoverImage + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CoverImage") + .IsRequired() + .HasColumnName("CoverImage"); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.cs new file mode 100644 index 0000000000..8f0ff4902c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180911135940_Added_CoverImage.cs @@ -0,0 +1,23 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Added_CoverImage : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "CoverImage", + table: "BlgPosts", + nullable: false, + defaultValue: ""); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "CoverImage", + table: "BlgPosts"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.Designer.cs new file mode 100644 index 0000000000..6058bcae54 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.Designer.cs @@ -0,0 +1,691 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180912114057_Blog_Added_BlogUser")] + partial class Blog_Added_BlogUser + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CoverImage") + .IsRequired() + .HasColumnName("CoverImage"); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Users.BlogUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.ToTable("BlgUsers"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.cs new file mode 100644 index 0000000000..954c9a25e6 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180912114057_Blog_Added_BlogUser.cs @@ -0,0 +1,35 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Blog_Added_BlogUser : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "BlgUsers", + columns: table => new + { + Id = table.Column(nullable: false), + TenantId = table.Column(nullable: true), + UserName = table.Column(maxLength: 256, nullable: false), + Email = table.Column(maxLength: 256, nullable: true), + EmailConfirmed = table.Column(nullable: false, defaultValue: false), + PhoneNumber = table.Column(maxLength: 16, nullable: true), + PhoneNumberConfirmed = table.Column(nullable: false, defaultValue: false), + ExtraProperties = table.Column(nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_BlgUsers", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "BlgUsers"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.Designer.cs new file mode 100644 index 0000000000..3db4863ebe --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.Designer.cs @@ -0,0 +1,711 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20180919064650_Blog_Added_SocialLinks")] + partial class Blog_Added_SocialLinks + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("Facebook") + .HasColumnName("Facebook") + .HasMaxLength(128); + + b.Property("Github") + .HasColumnName("Github") + .HasMaxLength(128); + + b.Property("Instagram") + .HasColumnName("Instagram") + .HasMaxLength(128); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.Property("StackOverflow") + .HasColumnName("StackOverflow") + .HasMaxLength(128); + + b.Property("Twitter") + .HasColumnName("Twitter") + .HasMaxLength(128); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CoverImage") + .IsRequired() + .HasColumnName("CoverImage"); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Users.BlogUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.ToTable("BlgUsers"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.cs new file mode 100644 index 0000000000..9819b0ba1b --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20180919064650_Blog_Added_SocialLinks.cs @@ -0,0 +1,63 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Blog_Added_SocialLinks : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Facebook", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Github", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Instagram", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "StackOverflow", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Twitter", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Facebook", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Github", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Instagram", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "StackOverflow", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Twitter", + table: "BlgBlogs"); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.Designer.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.Designer.cs new file mode 100644 index 0000000000..56ed6551f6 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.Designer.cs @@ -0,0 +1,722 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + [Migration("20181005071719_Upgraded_Docs")] + partial class Upgraded_Docs + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityClaimType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Description") + .HasMaxLength(256); + + b.Property("IsStatic"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("Regex") + .HasMaxLength(512); + + b.Property("RegexDescription") + .HasMaxLength(128); + + b.Property("Required"); + + b.Property("ValueType"); + + b.HasKey("Id"); + + b.ToTable("AbpClaimTypes"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CoverImage") + .IsRequired() + .HasColumnName("CoverImage"); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Users.BlogUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.ToTable("BlgUsers"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("MainWebsiteUrl"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.cs new file mode 100644 index 0000000000..f9baeb4f9f --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/20181005071719_Upgraded_Docs.cs @@ -0,0 +1,94 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + public partial class Upgraded_Docs : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Facebook", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Github", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Instagram", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "StackOverflow", + table: "BlgBlogs"); + + migrationBuilder.DropColumn( + name: "Twitter", + table: "BlgBlogs"); + + migrationBuilder.AddColumn( + name: "MainWebsiteUrl", + table: "DocsProjects", + nullable: true); + + migrationBuilder.CreateTable( + name: "AbpClaimTypes", + columns: table => new + { + Id = table.Column(nullable: false), + Name = table.Column(maxLength: 128, nullable: false), + Required = table.Column(nullable: false), + IsStatic = table.Column(nullable: false), + Regex = table.Column(maxLength: 512, nullable: true), + RegexDescription = table.Column(maxLength: 128, nullable: true), + Description = table.Column(maxLength: 256, nullable: true), + ValueType = table.Column(nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AbpClaimTypes", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "AbpClaimTypes"); + + migrationBuilder.DropColumn( + name: "MainWebsiteUrl", + table: "DocsProjects"); + + migrationBuilder.AddColumn( + name: "Facebook", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Github", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Instagram", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "StackOverflow", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + + migrationBuilder.AddColumn( + name: "Twitter", + table: "BlgBlogs", + maxLength: 128, + nullable: true); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/AbpWebSiteDbContextModelSnapshot.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/AbpWebSiteDbContextModelSnapshot.cs new file mode 100644 index 0000000000..44343b418e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Migrations/AbpWebSiteDbContextModelSnapshot.cs @@ -0,0 +1,720 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Volo.AbpWebSite.EntityFrameworkCore; + +namespace Volo.AbpWebSite.EntityFrameworkCore.Migrations +{ + [DbContext(typeof(AbpWebSiteDbContext))] + partial class AbpWebSiteDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") + .HasAnnotation("Relational:MaxIdentifierLength", 128) + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityClaimType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Description") + .HasMaxLength(256); + + b.Property("IsStatic"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("Regex") + .HasMaxLength(512); + + b.Property("RegexDescription") + .HasMaxLength(128); + + b.Property("Required"); + + b.Property("ValueType"); + + b.HasKey("Id"); + + b.ToTable("AbpClaimTypes"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ConcurrencyStamp"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(256); + + b.Property("NormalizedName") + .IsRequired() + .HasMaxLength(256); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName"); + + b.ToTable("AbpRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AbpRoleClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("AccessFailedCount") + .ValueGeneratedOnAdd() + .HasColumnName("AccessFailedCount") + .HasDefaultValue(0); + + b.Property("ConcurrencyStamp") + .IsRequired() + .HasColumnName("ConcurrencyStamp") + .HasMaxLength(256); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("LockoutEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("LockoutEnabled") + .HasDefaultValue(false); + + b.Property("LockoutEnd"); + + b.Property("NormalizedEmail") + .HasColumnName("NormalizedEmail") + .HasMaxLength(256); + + b.Property("NormalizedUserName") + .IsRequired() + .HasColumnName("NormalizedUserName") + .HasMaxLength(256); + + b.Property("PasswordHash") + .HasColumnName("PasswordHash") + .HasMaxLength(256); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("SecurityStamp") + .IsRequired() + .HasColumnName("SecurityStamp") + .HasMaxLength(256); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("TwoFactorEnabled") + .ValueGeneratedOnAdd() + .HasColumnName("TwoFactorEnabled") + .HasDefaultValue(false); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.HasIndex("Email"); + + b.HasIndex("NormalizedEmail"); + + b.HasIndex("NormalizedUserName"); + + b.HasIndex("UserName"); + + b.ToTable("AbpUsers"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("ClaimType") + .IsRequired() + .HasMaxLength(256); + + b.Property("ClaimValue") + .HasMaxLength(1024); + + b.Property("TenantId"); + + b.Property("UserId"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AbpUserClaims"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(64); + + b.Property("ProviderDisplayName") + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(196); + + b.Property("TenantId"); + + b.HasKey("UserId", "LoginProvider"); + + b.HasIndex("LoginProvider", "ProviderKey"); + + b.ToTable("AbpUserLogins"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.Property("UserId"); + + b.Property("RoleId"); + + b.Property("TenantId"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId", "UserId"); + + b.ToTable("AbpUserRoles"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.Property("UserId"); + + b.Property("LoginProvider") + .HasMaxLength(128); + + b.Property("Name"); + + b.Property("TenantId"); + + b.Property("Value"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AbpUserTokens"); + }); + + modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .IsRequired() + .HasMaxLength(64); + + b.Property("ProviderName") + .IsRequired() + .HasMaxLength(64); + + b.Property("TenantId"); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpPermissionGrants"); + }); + + modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("ProviderKey") + .HasMaxLength(64); + + b.Property("ProviderName") + .HasMaxLength(64); + + b.Property("Value") + .IsRequired() + .HasMaxLength(2048); + + b.HasKey("Id"); + + b.HasIndex("Name", "ProviderName", "ProviderKey"); + + b.ToTable("AbpSettings"); + }); + + modelBuilder.Entity("Volo.Blogging.Blogs.Blog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(1024); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(256); + + b.Property("ShortName") + .IsRequired() + .HasColumnName("ShortName") + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("BlgBlogs"); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("RepliedCommentId") + .HasColumnName("RepliedCommentId"); + + b.Property("Text") + .IsRequired() + .HasColumnName("Text") + .HasMaxLength(1024); + + b.HasKey("Id"); + + b.HasIndex("PostId"); + + b.HasIndex("RepliedCommentId"); + + b.ToTable("BlgComments"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("BlogId") + .HasColumnName("BlogId"); + + b.Property("Content") + .HasColumnName("Content") + .HasMaxLength(1048576); + + b.Property("CoverImage") + .IsRequired() + .HasColumnName("CoverImage"); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("ReadCount"); + + b.Property("Title") + .IsRequired() + .HasColumnName("Title") + .HasMaxLength(512); + + b.Property("Url") + .IsRequired() + .HasColumnName("Url") + .HasMaxLength(64); + + b.HasKey("Id"); + + b.HasIndex("BlogId"); + + b.ToTable("BlgPosts"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.Property("PostId") + .HasColumnName("PostId"); + + b.Property("TagId") + .HasColumnName("TagId"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.HasKey("PostId", "TagId"); + + b.HasIndex("TagId"); + + b.ToTable("BlgPostTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Tagging.Tag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CreationTime") + .HasColumnName("CreationTime"); + + b.Property("CreatorId") + .HasColumnName("CreatorId"); + + b.Property("DeleterId") + .HasColumnName("DeleterId"); + + b.Property("DeletionTime") + .HasColumnName("DeletionTime"); + + b.Property("Description") + .HasColumnName("Description") + .HasMaxLength(512); + + b.Property("IsDeleted") + .ValueGeneratedOnAdd() + .HasColumnName("IsDeleted") + .HasDefaultValue(false); + + b.Property("LastModificationTime") + .HasColumnName("LastModificationTime"); + + b.Property("LastModifierId") + .HasColumnName("LastModifierId"); + + b.Property("Name") + .IsRequired() + .HasColumnName("Name") + .HasMaxLength(64); + + b.Property("UsageCount") + .HasColumnName("UsageCount"); + + b.HasKey("Id"); + + b.ToTable("BlgTags"); + }); + + modelBuilder.Entity("Volo.Blogging.Users.BlogUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("Email") + .HasColumnName("Email") + .HasMaxLength(256); + + b.Property("EmailConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("EmailConfirmed") + .HasDefaultValue(false); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("PhoneNumber") + .HasColumnName("PhoneNumber") + .HasMaxLength(16); + + b.Property("PhoneNumberConfirmed") + .ValueGeneratedOnAdd() + .HasColumnName("PhoneNumberConfirmed") + .HasDefaultValue(false); + + b.Property("TenantId") + .HasColumnName("TenantId"); + + b.Property("UserName") + .IsRequired() + .HasColumnName("UserName") + .HasMaxLength(256); + + b.HasKey("Id"); + + b.ToTable("BlgUsers"); + }); + + modelBuilder.Entity("Volo.Docs.Projects.Project", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DefaultDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("DocumentStoreType"); + + b.Property("ExtraProperties") + .HasColumnName("ExtraProperties"); + + b.Property("Format"); + + b.Property("GoogleCustomSearchId"); + + b.Property("MainWebsiteUrl"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128); + + b.Property("NavigationDocumentName") + .IsRequired() + .HasMaxLength(128); + + b.Property("ShortName") + .IsRequired() + .HasMaxLength(32); + + b.HasKey("Id"); + + b.ToTable("DocsProjects"); + }); + + modelBuilder.Entity("Volo.Utils.SolutionTemplating.DownloadInfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); + + b.Property("CreationDuration"); + + b.Property("CreationTime"); + + b.Property("CreatorId"); + + b.Property("DatabaseProvider"); + + b.Property("ProjectName") + .IsRequired() + .HasMaxLength(128); + + b.Property("TemplateName") + .IsRequired() + .HasMaxLength(42); + + b.Property("Version") + .IsRequired() + .HasMaxLength(20); + + b.HasKey("Id"); + + b.ToTable("Downloads"); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany("Claims") + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Claims") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Logins") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b => + { + b.HasOne("Volo.Abp.Identity.IdentityRole") + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Roles") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b => + { + b.HasOne("Volo.Abp.Identity.IdentityUser") + .WithMany("Tokens") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Comments.Comment", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany() + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Comments.Comment") + .WithMany() + .HasForeignKey("RepliedCommentId"); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.Post", b => + { + b.HasOne("Volo.Blogging.Blogs.Blog") + .WithMany() + .HasForeignKey("BlogId") + .OnDelete(DeleteBehavior.Cascade); + }); + + modelBuilder.Entity("Volo.Blogging.Posts.PostTag", b => + { + b.HasOne("Volo.Blogging.Posts.Post") + .WithMany("Tags") + .HasForeignKey("PostId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("Volo.Blogging.Tagging.Tag") + .WithMany() + .HasForeignKey("TagId") + .OnDelete(DeleteBehavior.Cascade); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo.AbpWebSite.EntityFrameworkCore.csproj b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo.AbpWebSite.EntityFrameworkCore.csproj new file mode 100644 index 0000000000..17d4e2217e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo.AbpWebSite.EntityFrameworkCore.csproj @@ -0,0 +1,22 @@ + + + + netcoreapp2.1 + + + + + + + + + + + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/AbpWebSiteEntityFrameworkCoreModule.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/AbpWebSiteEntityFrameworkCoreModule.cs new file mode 100644 index 0000000000..b0cd0e91ef --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/AbpWebSiteEntityFrameworkCoreModule.cs @@ -0,0 +1,32 @@ +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.EntityFrameworkCore.SqlServer; +using Volo.Abp.Identity.EntityFrameworkCore; +using Volo.Abp.Modularity; +using Volo.Abp.PermissionManagement.EntityFrameworkCore; +using Volo.Abp.SettingManagement.EntityFrameworkCore; +using Volo.AbpWebSite.EntityFrameworkCore; +using Volo.Blogging.EntityFrameworkCore; +using Volo.Docs.EntityFrameworkCore; + +namespace Volo.AbpWebSite +{ + [DependsOn( + typeof(AbpWebSiteDomainModule), + typeof(AbpEntityFrameworkCoreSqlServerModule), + typeof(AbpSettingManagementEntityFrameworkCoreModule), + typeof(AbpPermissionManagementEntityFrameworkCoreModule), + typeof(AbpIdentityEntityFrameworkCoreModule), + typeof(DocsEntityFrameworkCoreModule), + typeof(BloggingEntityFrameworkCoreModule) + )] + public class AbpWebSiteEntityFrameworkCoreModule : AbpModule + { + public override void ConfigureServices(ServiceConfigurationContext context) + { + context.Services.AddAbpDbContext(options => + { + options.AddDefaultRepositories(); + }); + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContext.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContext.cs new file mode 100644 index 0000000000..0167e55d03 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContext.cs @@ -0,0 +1,33 @@ +using Microsoft.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; +using Volo.Abp.Identity.EntityFrameworkCore; +using Volo.Abp.PermissionManagement.EntityFrameworkCore; +using Volo.Abp.SettingManagement.EntityFrameworkCore; +using Volo.Blogging.EntityFrameworkCore; +using Volo.Docs.EntityFrameworkCore; +using Volo.Utils.SolutionTemplating; + +namespace Volo.AbpWebSite.EntityFrameworkCore +{ + public class AbpWebSiteDbContext : AbpDbContext + { + public DbSet Downloads { get; set; } + + public AbpWebSiteDbContext(DbContextOptions options) + : base(options) + { + + } + + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + base.OnModelCreating(modelBuilder); + + modelBuilder.ConfigurePermissionManagement(); + modelBuilder.ConfigureSettingManagement(); + modelBuilder.ConfigureIdentity(); + modelBuilder.ConfigureDocs(); + modelBuilder.ConfigureBlogging(); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContextFactory.cs b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContextFactory.cs new file mode 100644 index 0000000000..e6eb428529 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.EntityFrameworkCore/Volo/AbpWebSite/EntityFrameworkCore/AbpWebSiteDbContextFactory.cs @@ -0,0 +1,29 @@ +using System.IO; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Design; +using Microsoft.Extensions.Configuration; + +namespace Volo.AbpWebSite.EntityFrameworkCore +{ + public class AbpWebSiteDbContextFactory : IDesignTimeDbContextFactory + { + public AbpWebSiteDbContext CreateDbContext(string[] args) + { + var configuration = BuildConfiguration(); + + var builder = new DbContextOptionsBuilder() + .UseSqlServer(configuration.GetConnectionString("Default")); + + return new AbpWebSiteDbContext(builder.Options); + } + + private static IConfigurationRoot BuildConfiguration() + { + var builder = new ConfigurationBuilder() + .SetBasePath(Path.Combine(Directory.GetCurrentDirectory(), "../Volo.AbpWebSite.Web/")) + .AddJsonFile("appsettings.json", optional: false); + + return builder.Build(); + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/.vscode/launch.json b/abp_io/src/Volo.AbpWebSite.Web/.vscode/launch.json new file mode 100644 index 0000000000..72ff59b18a --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/.vscode/launch.json @@ -0,0 +1,46 @@ +{ + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/Volo.AbpWebSite.Web.dll", + "args": [], + "cwd": "${workspaceFolder}", + "stopAtEntry": false, + "internalConsoleOptions": "openOnSessionStart", + "launchBrowser": { + "enabled": true, + "args": "${auto-detect-url}", + "windows": { + "command": "cmd.exe", + "args": "/C start ${auto-detect-url}" + }, + "osx": { + "command": "open" + }, + "linux": { + "command": "xdg-open" + } + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ,] +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/.vscode/tasks.json b/abp_io/src/Volo.AbpWebSite.Web/.vscode/tasks.json new file mode 100644 index 0000000000..086f422a4e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/.vscode/tasks.json @@ -0,0 +1,15 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/Volo.AbpWebSite.Web.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/.well-known/README.md b/abp_io/src/Volo.AbpWebSite.Web/.well-known/README.md new file mode 100644 index 0000000000..48b9978194 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/.well-known/README.md @@ -0,0 +1 @@ +This is needed for let's encrypt! \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/AbpIoTheme.cs b/abp_io/src/Volo.AbpWebSite.Web/AbpIoTheme.cs new file mode 100644 index 0000000000..ac21f30323 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/AbpIoTheme.cs @@ -0,0 +1,22 @@ +using Volo.Abp.AspNetCore.Mvc.UI.Theming; +using Volo.Abp.DependencyInjection; + +namespace Volo.AbpWebSite +{ + [ThemeName(Name)] + public class AbpIoTheme : ITheme, ITransientDependency + { + public const string Name = "AbpIo"; + + public string GetLayout(string name, bool fallbackToDefault = true) + { + switch (name) + { + case StandardLayouts.Empty: + return "~/Pages/Shared/LayoutEmpty.cshtml"; + default: + return fallbackToDefault ? "~/Pages/Shared/Layout.cshtml" : null; + } + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteBrandService.cs b/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteBrandService.cs new file mode 100644 index 0000000000..929b62ceff --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteBrandService.cs @@ -0,0 +1,9 @@ +using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components; + +namespace Volo.AbpWebSite +{ + public class AbpWebSiteBrandingProvider : DefaultBrandingProvider + { + public override string AppName => "abp.io"; + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteWebModule.cs b/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteWebModule.cs new file mode 100644 index 0000000000..7082591a55 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/AbpWebSiteWebModule.cs @@ -0,0 +1,193 @@ +using System.Globalization; +using System.IO; +using System.Linq; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Localization; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.FileProviders; +using Volo.Abp; +using Volo.Abp.Account.Web; +using Volo.Abp.AspNetCore.Modularity; +using Volo.Abp.AspNetCore.Mvc.UI; +using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap; +using Volo.Abp.AspNetCore.Mvc.UI.Bundling; +using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared; +using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Bundling; +using Volo.Abp.AspNetCore.Mvc.UI.Theming; +using Volo.Abp.Autofac; +using Volo.Abp.Data; +using Volo.Abp.EntityFrameworkCore; +using Volo.Abp.Identity; +using Volo.Abp.Identity.Web; +using Volo.Abp.Localization; +using Volo.Abp.Modularity; +using Volo.Abp.Threading; +using Volo.Abp.UI; +using Volo.Abp.UI.Navigation; +using Volo.Abp.VirtualFileSystem; +using Volo.AbpWebSite.Bundling; +using Volo.Blogging; +using Volo.Docs; + +namespace Volo.AbpWebSite +{ + [DependsOn( + typeof(AbpWebSiteApplicationModule), + typeof(AbpWebSiteEntityFrameworkCoreModule), + typeof(AbpAutofacModule), + typeof(AbpAspNetCoreMvcUiThemeSharedModule), + typeof(DocsApplicationModule), + typeof(DocsWebModule), + typeof(AbpAccountWebModule), + typeof(AbpIdentityApplicationModule), + typeof(AbpIdentityWebModule), + typeof(BloggingApplicationModule), + typeof(BloggingWebModule) + )] + public class AbpWebSiteWebModule : AbpModule + { + public override void PreConfigureServices(ServiceConfigurationContext context) + { + context.Services.PreConfigure(options => + { + options.UserSecretsAssembly = typeof(AbpWebSiteWebModule).Assembly; + }); + } + + public override void ConfigureServices(ServiceConfigurationContext context) + { + var hostingEnvironment = context.Services.GetHostingEnvironment(); + var configuration = context.Services.GetConfiguration(); + + ConfigureDatabaseServices(context.Services, configuration); + ConfigureVirtualFileSystem(context.Services, hostingEnvironment); + ConfigureBundles(context.Services); + ConfigureTheme(context.Services); + } + + private static void ConfigureBundles(IServiceCollection services) + { + services.Configure(options => + { + options + .StyleBundles + .Add(AbpIoBundles.Styles.Global, bundle => + { + bundle. + AddBaseBundles(StandardBundles.Styles.Global) + .AddFiles( + "/scss/vs.css", + "/js/prism/prism.css" + ); + }); + + options + .ScriptBundles + .Add(AbpIoBundles.Scripts.Global, bundle => + { + bundle.AddBaseBundles(StandardBundles.Scripts.Global); + }); + }); + } + + private static void ConfigureDatabaseServices(IServiceCollection services, IConfigurationRoot configuration) + { + services.Configure(options => + { + options.ConnectionStrings.Default = configuration.GetConnectionString("Default"); + }); + + services.Configure(options => + { + options.UseSqlServer(); + }); + } + + private static void ConfigureVirtualFileSystem(IServiceCollection services, IHostingEnvironment hostingEnvironment) + { + if (hostingEnvironment.IsDevelopment()) + { + services.Configure(options => + { + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}framework{0}src{0}Volo.Abp.UI", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI.Bootstrap", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}modules{0}docs{0}src{0}Volo.Docs.Domain", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}modules{0}docs{0}src{0}Volo.Docs.Web", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}modules{0}blogging{0}src{0}Volo.Blogging.Web", Path.DirectorySeparatorChar))); + options.FileSets.ReplaceEmbeddedByPyhsical(Path.Combine(hostingEnvironment.ContentRootPath, string.Format("..{0}..{0}..{0}..{0}..{0}abp{0}modules{0}account{0}src{0}Volo.Abp.Account.Web", Path.DirectorySeparatorChar))); + }); + } + } + + private void ConfigureTheme(IServiceCollection services) + { + services.Configure(options => + { + options.Themes.Add(); + options.DefaultThemeName = AbpIoTheme.Name; + }); + } + + public override void OnApplicationInitialization(ApplicationInitializationContext context) + { + var app = context.GetApplicationBuilder(); + var env = context.GetEnvironment(); + + app.UseRequestLocalization(options => + { + options.DefaultRequestCulture = new RequestCulture("en-US", "en-US"); + options.AddSupportedCultures("en-US"); + options.AddSupportedUICultures("en-US"); + }); + + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + else + { + app.UseErrorPage(); + } + + //Necessary for LetsEncrypt + app.UseStaticFiles(new StaticFileOptions + { + FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), @".well-known")), + RequestPath = new PathString("/.well-known"), + ServeUnknownFileTypes = true // serve extensionless file + }); + + app.UseVirtualFiles(); + + app.UseAuthentication(); + + //TODO: Create an extension method! + app.UseMvc(routes => + { + routes.MapRoute( + name: "defaultWithArea", + template: "{area}/{controller=Home}/{action=Index}/{id?}"); + + routes.MapRoute( + name: "default", + template: "{controller=Home}/{action=Index}/{id?}"); + }); + + AsyncHelper.RunSync(async () => + { + await context.ServiceProvider + .GetRequiredService() + .SeedAsync( + "1q2w3E*", + IdentityPermissions.GetAll() + .Union(BloggingPermissions.GetAll()) + ); + }); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/Bundling/AbpIoBundles.cs b/abp_io/src/Volo.AbpWebSite.Web/Bundling/AbpIoBundles.cs new file mode 100644 index 0000000000..00240304fa --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Bundling/AbpIoBundles.cs @@ -0,0 +1,15 @@ +namespace Volo.AbpWebSite.Bundling +{ + public static class AbpIoBundles + { + public static class Styles + { + public const string Global = "AbpIo.Global"; + } + + public static class Scripts + { + public const string Global = "AbpIo.Global"; + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/DebugHelper.cs b/abp_io/src/Volo.AbpWebSite.Web/DebugHelper.cs new file mode 100644 index 0000000000..a0c94671fa --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/DebugHelper.cs @@ -0,0 +1,17 @@ +namespace Volo.AbpWebSite +{ + public static class DebugHelper + { + public static bool IsDebug + { + get + { +#if DEBUG + return true; +#else + return false; +#endif + } + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/Logs/logs.txt b/abp_io/src/Volo.AbpWebSite.Web/Logs/logs.txt new file mode 100644 index 0000000000..779ee11549 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Logs/logs.txt @@ -0,0 +1,117814 @@ +2018-07-13 16:39:13.999 +03:00 [INF] Loaded modules: +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-13 16:39:14.020 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-13 16:39:14.021 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-13 16:39:14.022 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-13 16:39:14.515 +03:00 [INF] Initialized all modules. +2018-07-13 16:39:14.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-13 16:39:17.010 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-13 16:39:17.026 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-13 16:39:18.940 +03:00 [INF] Executed action /Index in 1925.4640000000002ms +2018-07-13 16:39:18.951 +03:00 [INF] Request finished in 4238.6557ms 200 text/html; charset=utf-8 +2018-07-13 16:39:19.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-13 16:39:19.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-13 16:39:19.070 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-13 16:39:19.079 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-13 16:39:19.119 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-13 16:39:19.120 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-13 16:39:19.154 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 30.581100000000003ms. +2018-07-13 16:39:19.168 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-13 16:39:19.169 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 98.9944ms +2018-07-13 16:39:19.169 +03:00 [INF] Request finished in 121.3021ms 200 text/plain; charset=utf-8 +2018-07-13 16:39:19.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 60.3157ms. +2018-07-13 16:39:19.182 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-13 16:39:19.182 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 103.3323ms +2018-07-13 16:39:19.182 +03:00 [INF] Request finished in 133.981ms 200 text/plain; charset=utf-8 +2018-07-13 16:39:22.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-13 16:39:22.804 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-13 16:39:22.873 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-13 16:39:22.899 +03:00 [INF] Executed action /Templates in 94.967300000000009ms +2018-07-13 16:39:22.899 +03:00 [INF] Request finished in 325.5652ms 200 text/html; charset=utf-8 +2018-07-13 16:39:23.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-13 16:39:23.005 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-13 16:39:23.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-13 16:39:23.007 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-13 16:39:23.008 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6619ms. +2018-07-13 16:39:23.008 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-13 16:39:23.008 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.3317ms +2018-07-13 16:39:23.008 +03:00 [INF] Request finished in 4.4788ms 200 text/plain; charset=utf-8 +2018-07-13 16:39:23.010 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-13 16:39:23.012 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-13 16:39:23.012 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.23500000000000001ms. +2018-07-13 16:39:23.012 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-13 16:39:23.013 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1281ms +2018-07-13 16:39:23.013 +03:00 [INF] Request finished in 6.379ms 200 text/plain; charset=utf-8 +2018-07-13 16:39:27.283 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 215 +2018-07-13 16:39:27.284 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-13 16:39:27.312 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-13 16:39:57.350 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-13 16:39:57.463 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-13 16:39:57.489 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'Demo.zip' ... +2018-07-13 16:39:57.558 +03:00 [INF] Executed action /Templates in 30274.2279ms +2018-07-13 16:39:57.574 +03:00 [INF] Request finished in 30291.1921ms 200 application/zip +2018-07-14 12:16:05.777 +03:00 [INF] Loaded modules: +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 12:16:05.795 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 12:16:05.796 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 12:16:06.419 +03:00 [INF] Initialized all modules. +2018-07-14 12:16:06.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 12:16:09.615 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 12:16:09.633 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 12:16:11.663 +03:00 [INF] Executed action /Index in 2042.9292ms +2018-07-14 12:16:11.671 +03:00 [INF] Request finished in 4953.1236ms 200 text/html; charset=utf-8 +2018-07-14 12:16:11.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 12:16:11.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 12:16:11.775 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-14 12:16:11.781 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-14 12:16:11.786 +03:00 [INF] Request finished in 29.018ms 200 text/css +2018-07-14 12:16:11.786 +03:00 [INF] Request finished in 52.5821ms 200 text/css +2018-07-14 12:16:11.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 12:16:11.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 12:16:11.815 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:16:11.833 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:16:11.887 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 12:16:11.889 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 12:16:11.937 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 45.365300000000005ms. +2018-07-14 12:16:11.951 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:16:11.952 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 136.2836ms +2018-07-14 12:16:11.952 +03:00 [INF] Request finished in 151.6384ms 200 text/plain; charset=utf-8 +2018-07-14 12:16:11.964 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 73.4818ms. +2018-07-14 12:16:11.964 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:16:11.964 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 131.19660000000002ms +2018-07-14 12:16:11.964 +03:00 [INF] Request finished in 160.5392ms 200 text/plain; charset=utf-8 +2018-07-14 12:16:12.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 12:16:12.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 12:16:12.914 +03:00 [INF] Request finished in 2.75ms 404 +2018-07-14 12:16:13.036 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:16:13.091 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 12:16:13.114 +03:00 [INF] Executed action /Templates in 78.0408ms +2018-07-14 12:16:13.114 +03:00 [INF] Request finished in 311.1009ms 200 text/html; charset=utf-8 +2018-07-14 12:16:13.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 12:16:13.159 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 12:16:13.161 +03:00 [INF] Request finished in 3.325ms 304 text/css +2018-07-14 12:16:13.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 12:16:13.209 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:16:13.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 12:16:13.210 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 12:16:13.211 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.57290000000000008ms. +2018-07-14 12:16:13.211 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:16:13.211 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0766ms +2018-07-14 12:16:13.211 +03:00 [INF] Request finished in 3.7836ms 200 text/plain; charset=utf-8 +2018-07-14 12:16:13.213 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:16:13.214 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 12:16:13.214 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2464ms. +2018-07-14 12:16:13.215 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:16:13.215 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9802000000000002ms +2018-07-14 12:16:13.215 +03:00 [INF] Request finished in 4.7215ms 200 text/plain; charset=utf-8 +2018-07-14 12:16:18.902 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 218 +2018-07-14 12:16:18.902 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:16:18.926 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 12:16:22.233 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:22.336 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:22.354 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'MvcTest.zip' ... +2018-07-14 12:16:22.394 +03:00 [INF] Executed action /Templates in 3491.1767ms +2018-07-14 12:16:22.396 +03:00 [INF] Request finished in 3494.0194ms 200 application/zip +2018-07-14 12:16:30.216 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 218 +2018-07-14 12:16:30.217 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:16:30.221 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 12:16:31.598 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:31.604 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:31.606 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'MvcTest.zip' ... +2018-07-14 12:16:31.633 +03:00 [INF] Executed action /Templates in 1415.5535ms +2018-07-14 12:16:31.633 +03:00 [INF] Request finished in 1416.8111ms 200 application/zip +2018-07-14 12:16:40.149 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 218 +2018-07-14 12:16:40.150 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:16:40.153 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 12:16:41.960 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:41.962 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:16:41.963 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'MvcTest.zip' ... +2018-07-14 12:16:41.979 +03:00 [INF] Executed action /Templates in 1829.5011000000002ms +2018-07-14 12:16:41.980 +03:00 [INF] Request finished in 1830.7985ms 200 application/zip +2018-07-14 12:17:47.606 +03:00 [INF] Loaded modules: +2018-07-14 12:17:47.622 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 12:17:47.622 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 12:17:47.622 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 12:17:47.622 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 12:17:47.623 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 12:17:47.624 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 12:17:48.076 +03:00 [INF] Initialized all modules. +2018-07-14 12:17:48.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 12:17:50.264 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 12:17:50.280 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 12:17:51.907 +03:00 [INF] Executed action /Index in 1637.287ms +2018-07-14 12:17:51.914 +03:00 [INF] Request finished in 3640.6855ms 200 text/html; charset=utf-8 +2018-07-14 12:17:52.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 12:17:52.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 12:17:52.024 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:17:52.032 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:17:52.085 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 12:17:52.086 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 12:17:52.125 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 32.8804ms. +2018-07-14 12:17:52.141 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:17:52.142 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 118.3097ms +2018-07-14 12:17:52.143 +03:00 [INF] Request finished in 143.05ms 200 text/plain; charset=utf-8 +2018-07-14 12:17:52.151 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.26700000000001ms. +2018-07-14 12:17:52.152 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:17:52.153 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 120.7133ms +2018-07-14 12:17:52.153 +03:00 [INF] Request finished in 152.2583ms 200 text/plain; charset=utf-8 +2018-07-14 12:17:53.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 12:17:54.208 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:17:54.264 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 12:17:54.292 +03:00 [INF] Executed action /Templates in 84.5042ms +2018-07-14 12:17:54.293 +03:00 [INF] Request finished in 313.6605ms 200 text/html; charset=utf-8 +2018-07-14 12:17:54.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 12:17:54.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 12:17:54.386 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:17:54.388 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 12:17:54.388 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2842ms. +2018-07-14 12:17:54.388 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:17:54.388 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.349ms +2018-07-14 12:17:54.389 +03:00 [INF] Request finished in 3.4275ms 200 text/plain; charset=utf-8 +2018-07-14 12:17:54.390 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:17:54.391 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 12:17:54.392 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6584ms. +2018-07-14 12:17:54.392 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:17:54.392 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.9186ms +2018-07-14 12:17:54.392 +03:00 [INF] Request finished in 8.7707ms 200 text/plain; charset=utf-8 +2018-07-14 12:17:56.897 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 222 +2018-07-14 12:17:56.897 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:17:56.922 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 12:17:59.579 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:17:59.662 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:17:59.682 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'MyBookStore2.zip' ... +2018-07-14 12:17:59.736 +03:00 [INF] Executed action /Templates in 2838.5827ms +2018-07-14 12:17:59.743 +03:00 [INF] Request finished in 2846.5682ms 200 application/zip +2018-07-14 12:30:40.739 +03:00 [INF] Loaded modules: +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 12:30:40.757 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 12:30:40.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 12:30:41.498 +03:00 [INF] Initialized all modules. +2018-07-14 12:30:41.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 12:30:43.735 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:30:43.815 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 12:30:45.421 +03:00 [INF] Executed action /Templates in 1680.3568ms +2018-07-14 12:30:45.430 +03:00 [INF] Request finished in 3717.7734ms 200 text/html; charset=utf-8 +2018-07-14 12:30:45.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 12:30:45.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 12:30:45.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 12:30:45.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 12:30:45.462 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 12:30:45.462 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 12:30:45.462 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 12:30:45.463 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 12:30:45.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 12:30:45.465 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 12:30:45.467 +03:00 [INF] Request finished in 9.3886ms 304 text/css +2018-07-14 12:30:45.467 +03:00 [INF] Request finished in 4.7306ms 304 text/css +2018-07-14 12:30:45.467 +03:00 [INF] Request finished in 9.9083ms 304 text/css +2018-07-14 12:30:45.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 12:30:45.467 +03:00 [INF] Request finished in 2.2006ms 304 text/css +2018-07-14 12:30:45.467 +03:00 [INF] Request finished in 7.3486ms 304 text/css +2018-07-14 12:30:45.468 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 12:30:45.468 +03:00 [INF] Request finished in 0.7628ms 304 text/css +2018-07-14 12:30:45.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 12:30:45.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 12:30:45.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 12:30:45.479 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 12:30:45.479 +03:00 [INF] Request finished in 0.5752ms 304 application/javascript +2018-07-14 12:30:45.480 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 12:30:45.480 +03:00 [INF] Request finished in 1.2161ms 304 text/css +2018-07-14 12:30:45.480 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 12:30:45.480 +03:00 [INF] Request finished in 1.8379ms 304 text/css +2018-07-14 12:30:45.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 12:30:45.492 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 12:30:45.492 +03:00 [INF] Request finished in 2.6939ms 304 application/javascript +2018-07-14 12:30:45.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 12:30:45.492 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 12:30:45.493 +03:00 [INF] Request finished in 0.5362ms 304 application/javascript +2018-07-14 12:30:45.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 12:30:45.493 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 12:30:45.498 +03:00 [INF] Request finished in 0.4443ms 304 application/javascript +2018-07-14 12:30:45.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 12:30:45.506 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 12:30:45.507 +03:00 [INF] Request finished in 2.2969ms 304 application/javascript +2018-07-14 12:30:45.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 12:30:45.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 12:30:45.507 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 12:30:45.507 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 12:30:45.507 +03:00 [INF] Request finished in 0.4783ms 304 application/javascript +2018-07-14 12:30:45.508 +03:00 [INF] Request finished in 0.5145ms 304 application/javascript +2018-07-14 12:30:45.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 12:30:45.511 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 12:30:45.512 +03:00 [INF] Request finished in 2.4933ms 304 application/javascript +2018-07-14 12:30:45.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 12:30:45.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 12:30:45.514 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 12:30:45.514 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 12:30:45.515 +03:00 [INF] Request finished in 0.8262ms 304 application/javascript +2018-07-14 12:30:45.515 +03:00 [INF] Request finished in 1.9161ms 304 application/javascript +2018-07-14 12:30:45.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 12:30:45.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 12:30:45.524 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 12:30:45.524 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 12:30:45.525 +03:00 [INF] Request finished in 0.3997ms 304 application/javascript +2018-07-14 12:30:45.525 +03:00 [INF] Request finished in 1.5168ms 304 application/javascript +2018-07-14 12:30:45.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 12:30:45.528 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 12:30:45.528 +03:00 [INF] Request finished in 1.0354ms 304 application/javascript +2018-07-14 12:30:45.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 12:30:45.530 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 12:30:45.532 +03:00 [INF] Request finished in 0.8208ms 304 application/javascript +2018-07-14 12:30:45.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 12:30:45.534 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 12:30:45.535 +03:00 [INF] Request finished in 1.1618ms 304 application/javascript +2018-07-14 12:30:45.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 12:30:45.535 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 12:30:45.535 +03:00 [INF] Request finished in 0.6107ms 304 application/javascript +2018-07-14 12:30:45.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 12:30:45.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 12:30:45.541 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 12:30:45.541 +03:00 [INF] Request finished in 1.4413ms 304 application/javascript +2018-07-14 12:30:45.543 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 12:30:45.544 +03:00 [INF] Request finished in 3.5068ms 304 application/javascript +2018-07-14 12:30:45.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 12:30:45.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 12:30:45.547 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 12:30:45.547 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 12:30:45.547 +03:00 [INF] Request finished in 0.5687ms 304 application/javascript +2018-07-14 12:30:45.548 +03:00 [INF] Request finished in 0.6568ms 304 application/javascript +2018-07-14 12:30:45.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 12:30:45.549 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 12:30:45.550 +03:00 [INF] Request finished in 0.8415ms 304 application/javascript +2018-07-14 12:30:45.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 12:30:45.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 12:30:45.575 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:30:45.576 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 12:30:45.633 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 12:30:45.635 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 12:30:45.667 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 29.6188ms. +2018-07-14 12:30:45.683 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:30:45.684 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 108.9576ms +2018-07-14 12:30:45.684 +03:00 [INF] Request finished in 126.8769ms 200 text/plain; charset=utf-8 +2018-07-14 12:30:45.690 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 54.0019ms. +2018-07-14 12:30:45.690 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 12:30:45.690 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 114.79010000000001ms +2018-07-14 12:30:45.691 +03:00 [INF] Request finished in 134.775ms 200 text/plain; charset=utf-8 +2018-07-14 12:30:49.532 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 222 +2018-07-14 12:30:49.532 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 12:30:49.565 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 12:30:52.503 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:30:52.595 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 12:30:52.615 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'MyBookStore2.zip' ... +2018-07-14 12:30:52.655 +03:00 [INF] Executed action /Templates in 3122.4121ms +2018-07-14 12:30:52.664 +03:00 [INF] Request finished in 3132.23ms 200 application/zip +2018-07-14 14:18:13.175 +03:00 [INF] Loaded modules: +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:18:13.192 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:18:13.193 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:18:13.194 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:18:13.673 +03:00 [INF] Initialized all modules. +2018-07-14 14:18:13.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 14:18:16.659 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 14:18:16.677 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:18:18.747 +03:00 [INF] Executed action /Index in 2082.5873ms +2018-07-14 14:18:18.756 +03:00 [INF] Request finished in 4848.1885ms 200 text/html; charset=utf-8 +2018-07-14 14:18:18.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:18:18.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:18:18.923 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:18:18.945 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:18:18.994 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:18:18.997 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:18:19.041 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 41.4388ms. +2018-07-14 14:18:19.059 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:18:19.060 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 136.7168ms +2018-07-14 14:18:19.060 +03:00 [INF] Request finished in 166.0687ms 200 text/plain; charset=utf-8 +2018-07-14 14:18:19.073 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 74.6992ms. +2018-07-14 14:18:19.073 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:18:19.073 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 128.31730000000002ms +2018-07-14 14:18:19.073 +03:00 [INF] Request finished in 174.384ms 200 text/plain; charset=utf-8 +2018-07-14 14:18:21.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:18:21.630 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:18:21.701 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:18:21.731 +03:00 [INF] Executed action /Templates in 100.9372ms +2018-07-14 14:18:21.731 +03:00 [INF] Request finished in 372.737ms 200 text/html; charset=utf-8 +2018-07-14 14:18:21.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:18:21.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:18:21.834 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:18:21.836 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:18:21.836 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1845ms. +2018-07-14 14:18:21.836 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:18:21.836 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0286ms +2018-07-14 14:18:21.836 +03:00 [INF] Request finished in 3.238ms 200 text/plain; charset=utf-8 +2018-07-14 14:18:21.839 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:18:21.840 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:18:21.841 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.9043ms. +2018-07-14 14:18:21.842 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:18:21.842 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.4119ms +2018-07-14 14:18:21.842 +03:00 [INF] Request finished in 10.8009ms 200 text/plain; charset=utf-8 +2018-07-14 14:21:46.814 +03:00 [INF] Loaded modules: +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:21:46.830 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:21:46.831 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:21:47.353 +03:00 [INF] Initialized all modules. +2018-07-14 14:21:47.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:21:50.161 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:21:50.264 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:21:52.244 +03:00 [INF] Executed action /Templates in 2076.3865ms +2018-07-14 14:21:52.254 +03:00 [INF] Request finished in 4554.2356ms 200 text/html; charset=utf-8 +2018-07-14 14:21:52.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:21:52.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:21:52.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:21:52.287 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:21:52.287 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:21:52.287 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:21:52.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:21:52.288 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:21:52.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:21:52.290 +03:00 [INF] Request finished in 7.6377ms 304 text/css +2018-07-14 14:21:52.290 +03:00 [INF] Request finished in 3.2627ms 304 text/css +2018-07-14 14:21:52.291 +03:00 [INF] Request finished in 7.8731ms 304 text/css +2018-07-14 14:21:52.291 +03:00 [INF] Request finished in 10.343ms 304 text/css +2018-07-14 14:21:52.291 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:21:52.292 +03:00 [INF] Request finished in 2.0076ms 304 text/css +2018-07-14 14:21:52.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:21:52.293 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:21:52.294 +03:00 [INF] Request finished in 1.5643ms 304 text/css +2018-07-14 14:21:52.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:21:52.302 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:21:52.302 +03:00 [INF] Request finished in 0.6161ms 304 text/css +2018-07-14 14:21:52.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:21:52.307 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:21:52.308 +03:00 [INF] Request finished in 0.7579ms 304 text/css +2018-07-14 14:21:52.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:21:52.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:21:52.315 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:21:52.315 +03:00 [INF] Request finished in 0.938ms 304 application/javascript +2018-07-14 14:21:52.316 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:21:52.316 +03:00 [INF] Request finished in 1.2946ms 304 application/javascript +2018-07-14 14:21:52.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:21:52.326 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:21:52.326 +03:00 [INF] Request finished in 0.8638ms 304 application/javascript +2018-07-14 14:21:52.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:21:52.328 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:21:52.328 +03:00 [INF] Request finished in 0.9251ms 304 application/javascript +2018-07-14 14:21:52.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:21:52.334 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:21:52.334 +03:00 [INF] Request finished in 0.6671ms 304 application/javascript +2018-07-14 14:21:52.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:21:52.337 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:21:52.338 +03:00 [INF] Request finished in 1.9192ms 304 application/javascript +2018-07-14 14:21:52.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:21:52.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:21:52.344 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:21:52.344 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:21:52.344 +03:00 [INF] Request finished in 1.1768ms 304 application/javascript +2018-07-14 14:21:52.344 +03:00 [INF] Request finished in 1.0969ms 304 application/javascript +2018-07-14 14:21:52.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:21:52.347 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:21:52.347 +03:00 [INF] Request finished in 0.6412ms 304 application/javascript +2018-07-14 14:21:52.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:21:52.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:21:52.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:21:52.357 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:21:52.357 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:21:52.357 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:21:52.357 +03:00 [INF] Request finished in 0.8191ms 304 application/javascript +2018-07-14 14:21:52.357 +03:00 [INF] Request finished in 1.2412ms 304 application/javascript +2018-07-14 14:21:52.357 +03:00 [INF] Request finished in 0.9162ms 304 application/javascript +2018-07-14 14:21:52.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:21:52.361 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:21:52.362 +03:00 [INF] Request finished in 2.2396ms 304 application/javascript +2018-07-14 14:21:52.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:21:52.369 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:21:52.369 +03:00 [INF] Request finished in 1.5548ms 304 application/javascript +2018-07-14 14:21:52.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:21:52.370 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:21:52.370 +03:00 [INF] Request finished in 1.323ms 304 application/javascript +2018-07-14 14:21:52.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:21:52.376 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:21:52.376 +03:00 [INF] Request finished in 0.9939ms 304 application/javascript +2018-07-14 14:21:52.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:21:52.383 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:21:52.384 +03:00 [INF] Request finished in 4.6477ms 304 application/javascript +2018-07-14 14:21:52.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:21:52.386 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:21:52.386 +03:00 [INF] Request finished in 1.0206ms 304 application/javascript +2018-07-14 14:21:52.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:21:52.390 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:21:52.390 +03:00 [INF] Request finished in 1.8706ms 304 application/javascript +2018-07-14 14:21:52.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:21:52.393 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:21:52.393 +03:00 [INF] Request finished in 2.7244ms 304 application/javascript +2018-07-14 14:21:52.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:21:52.398 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:21:52.398 +03:00 [INF] Request finished in 1.3323ms 304 application/javascript +2018-07-14 14:21:52.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:21:52.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:21:52.421 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:21:52.421 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:21:52.485 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:21:52.488 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:21:52.523 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 33.5092ms. +2018-07-14 14:21:52.540 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:21:52.541 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 120.1406ms +2018-07-14 14:21:52.542 +03:00 [INF] Request finished in 141.7409ms 200 text/plain; charset=utf-8 +2018-07-14 14:21:52.553 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.3617ms. +2018-07-14 14:21:52.554 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:21:52.554 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 133.16580000000002ms +2018-07-14 14:21:52.554 +03:00 [INF] Request finished in 155.6722ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:20.979 +03:00 [INF] Loaded modules: +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:25:21.000 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:25:21.001 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:25:21.593 +03:00 [INF] Initialized all modules. +2018-07-14 14:25:21.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:25:24.106 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:25:24.201 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:25:26.113 +03:00 [INF] Executed action /Templates in 2001.3732ms +2018-07-14 14:25:26.125 +03:00 [INF] Request finished in 4371.6427ms 200 text/html; charset=utf-8 +2018-07-14 14:25:26.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:25:26.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:25:26.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:25:26.158 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:25:26.158 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:25:26.158 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:25:26.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:25:26.160 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:25:26.160 +03:00 [INF] Request finished in 7.3265ms 304 text/css +2018-07-14 14:25:26.160 +03:00 [INF] Request finished in 7.843ms 304 text/css +2018-07-14 14:25:26.160 +03:00 [INF] Request finished in 0.9335ms 304 text/css +2018-07-14 14:25:26.160 +03:00 [INF] Request finished in 7.3954ms 304 text/css +2018-07-14 14:25:26.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:25:26.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:25:26.167 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:25:26.167 +03:00 [INF] Request finished in 0.7576ms 304 text/css +2018-07-14 14:25:26.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:25:26.168 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:25:26.168 +03:00 [INF] Request finished in 0.9475ms 304 text/css +2018-07-14 14:25:26.169 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:25:26.169 +03:00 [INF] Request finished in 5.6177ms 304 text/css +2018-07-14 14:25:26.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:25:26.185 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:25:26.185 +03:00 [INF] Request finished in 3.3802ms 304 text/css +2018-07-14 14:25:26.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:25:26.187 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:25:26.187 +03:00 [INF] Request finished in 0.7868ms 304 application/javascript +2018-07-14 14:25:26.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:25:26.191 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:25:26.191 +03:00 [INF] Request finished in 2.3709ms 304 application/javascript +2018-07-14 14:25:26.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:25:26.195 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:25:26.196 +03:00 [INF] Request finished in 1.1341ms 304 application/javascript +2018-07-14 14:25:26.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:25:26.200 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:25:26.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:25:26.200 +03:00 [INF] Request finished in 2.0691ms 304 application/javascript +2018-07-14 14:25:26.201 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:25:26.201 +03:00 [INF] Request finished in 0.9856ms 304 application/javascript +2018-07-14 14:25:26.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:25:26.209 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:25:26.210 +03:00 [INF] Request finished in 1.4291ms 304 application/javascript +2018-07-14 14:25:26.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:25:26.211 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:25:26.211 +03:00 [INF] Request finished in 1.2685ms 304 application/javascript +2018-07-14 14:25:26.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:25:26.212 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:25:26.212 +03:00 [INF] Request finished in 1.1427ms 304 application/javascript +2018-07-14 14:25:26.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:25:26.221 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:25:26.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:25:26.222 +03:00 [INF] Request finished in 1.2416ms 304 application/javascript +2018-07-14 14:25:26.222 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:25:26.222 +03:00 [INF] Request finished in 0.853ms 304 application/javascript +2018-07-14 14:25:26.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:25:26.228 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:25:26.228 +03:00 [INF] Request finished in 2.9548ms 304 application/javascript +2018-07-14 14:25:26.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:25:26.232 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:25:26.232 +03:00 [INF] Request finished in 0.6724ms 304 application/javascript +2018-07-14 14:25:26.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:25:26.235 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:25:26.235 +03:00 [INF] Request finished in 1.2812ms 304 application/javascript +2018-07-14 14:25:26.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:25:26.240 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:25:26.240 +03:00 [INF] Request finished in 1.0033ms 304 application/javascript +2018-07-14 14:25:26.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:25:26.243 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:25:26.244 +03:00 [INF] Request finished in 1.6846ms 304 application/javascript +2018-07-14 14:25:26.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:25:26.247 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:25:26.247 +03:00 [INF] Request finished in 0.8813ms 304 application/javascript +2018-07-14 14:25:26.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:25:26.255 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:25:26.255 +03:00 [INF] Request finished in 1.8731ms 304 application/javascript +2018-07-14 14:25:26.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:25:26.263 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:25:26.263 +03:00 [INF] Request finished in 1.203ms 304 application/javascript +2018-07-14 14:25:26.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:25:26.266 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:25:26.267 +03:00 [INF] Request finished in 0.7355ms 304 application/javascript +2018-07-14 14:25:26.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:25:26.271 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:25:26.271 +03:00 [INF] Request finished in 1.4295ms 304 application/javascript +2018-07-14 14:25:26.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:25:26.280 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:25:26.280 +03:00 [INF] Request finished in 0.7097ms 304 application/javascript +2018-07-14 14:25:26.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:25:26.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:25:26.303 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:26.303 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:26.359 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:25:26.360 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:25:26.390 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 26.21ms. +2018-07-14 14:25:26.402 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:26.403 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 99.208400000000012ms +2018-07-14 14:25:26.403 +03:00 [INF] Request finished in 122.3535ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:26.419 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 58.330600000000004ms. +2018-07-14 14:25:26.420 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:26.420 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 116.58630000000001ms +2018-07-14 14:25:26.420 +03:00 [INF] Request finished in 133.7462ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:36.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:25:36.759 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:25:36.760 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:25:36.778 +03:00 [INF] Executed action /Templates in 18.9581ms +2018-07-14 14:25:36.778 +03:00 [INF] Request finished in 286.2393ms 200 text/html; charset=utf-8 +2018-07-14 14:25:36.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:25:36.807 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:25:36.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:25:36.807 +03:00 [INF] Request finished in 0.9835ms 304 text/css +2018-07-14 14:25:36.807 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:25:36.808 +03:00 [INF] Request finished in 1.1157ms 304 text/css +2018-07-14 14:25:36.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:25:36.813 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:25:36.813 +03:00 [INF] Request finished in 0.956ms 304 text/css +2018-07-14 14:25:36.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:25:36.822 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:25:36.822 +03:00 [INF] Request finished in 0.636ms 304 text/css +2018-07-14 14:25:36.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:25:36.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:25:36.825 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:25:36.825 +03:00 [INF] Request finished in 0.5386ms 304 text/css +2018-07-14 14:25:36.825 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:25:36.826 +03:00 [INF] Request finished in 0.5056ms 304 text/css +2018-07-14 14:25:36.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:25:36.826 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:25:36.827 +03:00 [INF] Request finished in 1.1042ms 304 text/css +2018-07-14 14:25:36.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:25:36.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:25:36.830 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:25:36.830 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:25:36.830 +03:00 [INF] Request finished in 0.3855ms 304 application/javascript +2018-07-14 14:25:36.830 +03:00 [INF] Request finished in 1.2619ms 304 text/css +2018-07-14 14:25:36.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:25:36.840 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:25:36.841 +03:00 [INF] Request finished in 0.5562ms 304 application/javascript +2018-07-14 14:25:36.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:25:36.846 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:25:36.846 +03:00 [INF] Request finished in 0.6994ms 304 application/javascript +2018-07-14 14:25:36.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:25:36.849 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:25:36.850 +03:00 [INF] Request finished in 0.5365ms 304 application/javascript +2018-07-14 14:25:36.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:25:36.855 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:25:36.856 +03:00 [INF] Request finished in 2.0785ms 304 application/javascript +2018-07-14 14:25:36.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:25:36.858 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:25:36.858 +03:00 [INF] Request finished in 0.4773ms 304 application/javascript +2018-07-14 14:25:36.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:25:36.864 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:25:36.865 +03:00 [INF] Request finished in 1.4376ms 304 application/javascript +2018-07-14 14:25:36.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:25:36.868 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:25:36.868 +03:00 [INF] Request finished in 0.6214ms 304 application/javascript +2018-07-14 14:25:36.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:25:36.871 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:25:36.871 +03:00 [INF] Request finished in 0.8504ms 304 application/javascript +2018-07-14 14:25:36.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:25:36.876 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:25:36.876 +03:00 [INF] Request finished in 0.5096ms 304 application/javascript +2018-07-14 14:25:36.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:25:36.881 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:25:36.881 +03:00 [INF] Request finished in 1.9077ms 304 application/javascript +2018-07-14 14:25:36.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:25:36.887 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:25:36.887 +03:00 [INF] Request finished in 1.2207ms 304 application/javascript +2018-07-14 14:25:36.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:25:36.890 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:25:36.890 +03:00 [INF] Request finished in 0.5513ms 304 application/javascript +2018-07-14 14:25:36.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:25:36.893 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:25:36.893 +03:00 [INF] Request finished in 0.9823ms 304 application/javascript +2018-07-14 14:25:36.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:25:36.900 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:25:36.902 +03:00 [INF] Request finished in 2.306ms 304 application/javascript +2018-07-14 14:25:36.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:25:36.906 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:25:36.906 +03:00 [INF] Request finished in 0.7609ms 304 application/javascript +2018-07-14 14:25:36.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:25:36.907 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:25:36.907 +03:00 [INF] Request finished in 0.7097ms 304 application/javascript +2018-07-14 14:25:36.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:25:36.912 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:25:36.912 +03:00 [INF] Request finished in 1.3929ms 304 application/javascript +2018-07-14 14:25:36.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:25:36.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:25:36.923 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:25:36.923 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:25:36.923 +03:00 [INF] Request finished in 0.6798ms 304 application/javascript +2018-07-14 14:25:36.923 +03:00 [INF] Request finished in 0.678ms 304 application/javascript +2018-07-14 14:25:36.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:25:36.930 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:25:36.931 +03:00 [INF] Request finished in 1.5658ms 304 application/javascript +2018-07-14 14:25:36.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:25:36.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:25:36.943 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:36.944 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:25:36.945 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5667ms. +2018-07-14 14:25:36.945 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:36.945 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.99ms +2018-07-14 14:25:36.945 +03:00 [INF] Request finished in 11.9627ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:36.947 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:36.949 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:25:36.949 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16640000000000002ms. +2018-07-14 14:25:36.949 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:36.950 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2978ms +2018-07-14 14:25:36.950 +03:00 [INF] Request finished in 12.1845ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:46.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:25:47.141 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:25:47.142 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:25:47.165 +03:00 [INF] Executed action /Templates in 23.899700000000003ms +2018-07-14 14:25:47.165 +03:00 [INF] Request finished in 264.1539ms 200 text/html; charset=utf-8 +2018-07-14 14:25:47.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:25:47.196 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:25:47.196 +03:00 [INF] Request finished in 0.5076ms 304 text/css +2018-07-14 14:25:47.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:25:47.197 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:25:47.197 +03:00 [INF] Request finished in 0.7883ms 304 text/css +2018-07-14 14:25:47.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:25:47.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:25:47.205 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:25:47.205 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:25:47.206 +03:00 [INF] Request finished in 0.5803ms 304 text/css +2018-07-14 14:25:47.206 +03:00 [INF] Request finished in 0.6116ms 304 text/css +2018-07-14 14:25:47.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:25:47.212 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:25:47.214 +03:00 [INF] Request finished in 2.3037ms 304 text/css +2018-07-14 14:25:47.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:25:47.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:25:47.216 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:25:47.216 +03:00 [INF] Request finished in 0.5974ms 304 text/css +2018-07-14 14:25:47.218 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:25:47.218 +03:00 [INF] Request finished in 1.7381ms 304 text/css +2018-07-14 14:25:47.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:25:47.223 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:25:47.224 +03:00 [INF] Request finished in 0.8217ms 304 text/css +2018-07-14 14:25:47.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:25:47.225 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:25:47.225 +03:00 [INF] Request finished in 0.9052ms 304 application/javascript +2018-07-14 14:25:47.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:25:47.230 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:25:47.230 +03:00 [INF] Request finished in 1.5604ms 304 application/javascript +2018-07-14 14:25:47.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:25:47.238 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:25:47.238 +03:00 [INF] Request finished in 0.5874ms 304 application/javascript +2018-07-14 14:25:47.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:25:47.240 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:25:47.240 +03:00 [INF] Request finished in 1.8649ms 304 application/javascript +2018-07-14 14:25:47.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:25:47.244 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:25:47.244 +03:00 [INF] Request finished in 0.7534ms 304 application/javascript +2018-07-14 14:25:47.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:25:47.247 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:25:47.247 +03:00 [INF] Request finished in 1.9332ms 304 application/javascript +2018-07-14 14:25:47.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:25:47.257 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:25:47.258 +03:00 [INF] Request finished in 1.167ms 304 application/javascript +2018-07-14 14:25:47.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:25:47.259 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:25:47.261 +03:00 [INF] Request finished in 2.1355ms 304 application/javascript +2018-07-14 14:25:47.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:25:47.268 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:25:47.268 +03:00 [INF] Request finished in 2.0978ms 304 application/javascript +2018-07-14 14:25:47.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:25:47.270 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:25:47.270 +03:00 [INF] Request finished in 0.5198ms 304 application/javascript +2018-07-14 14:25:47.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:25:47.278 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:25:47.279 +03:00 [INF] Request finished in 0.7996ms 304 application/javascript +2018-07-14 14:25:47.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:25:47.299 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:25:47.299 +03:00 [INF] Request finished in 1.4202ms 304 application/javascript +2018-07-14 14:25:47.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:25:47.300 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:25:47.300 +03:00 [INF] Request finished in 0.5782ms 304 application/javascript +2018-07-14 14:25:47.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:25:47.307 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:25:47.308 +03:00 [INF] Request finished in 0.6313ms 304 application/javascript +2018-07-14 14:25:47.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:25:47.314 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:25:47.314 +03:00 [INF] Request finished in 0.7687ms 304 application/javascript +2018-07-14 14:25:47.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:25:47.321 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:25:47.321 +03:00 [INF] Request finished in 2.7583ms 304 application/javascript +2018-07-14 14:25:47.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:25:47.323 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:25:47.323 +03:00 [INF] Request finished in 0.7628ms 304 application/javascript +2018-07-14 14:25:47.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:25:47.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:25:47.326 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:25:47.326 +03:00 [INF] Request finished in 0.6101ms 304 application/javascript +2018-07-14 14:25:47.326 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:25:47.328 +03:00 [INF] Request finished in 1.743ms 304 application/javascript +2018-07-14 14:25:47.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:25:47.342 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:25:47.342 +03:00 [INF] Request finished in 0.6749ms 304 application/javascript +2018-07-14 14:25:47.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:25:47.343 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:25:47.343 +03:00 [INF] Request finished in 0.7021ms 304 application/javascript +2018-07-14 14:25:47.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:25:47.354 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:47.355 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:25:47.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:25:47.357 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.9164ms. +2018-07-14 14:25:47.358 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:47.358 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.3211ms +2018-07-14 14:25:47.358 +03:00 [INF] Request finished in 14.9133ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:47.360 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:47.361 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:25:47.361 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10360000000000001ms. +2018-07-14 14:25:47.361 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:47.362 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6649ms +2018-07-14 14:25:47.362 +03:00 [INF] Request finished in 4.6042ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:54.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:25:54.456 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:25:54.458 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:25:54.473 +03:00 [INF] Executed action /Templates in 16.307100000000002ms +2018-07-14 14:25:54.473 +03:00 [INF] Request finished in 276.8599ms 200 text/html; charset=utf-8 +2018-07-14 14:25:54.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:25:54.501 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:25:54.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:25:54.501 +03:00 [INF] Request finished in 2.3517ms 304 text/css +2018-07-14 14:25:54.501 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:25:54.501 +03:00 [INF] Request finished in 0.4236ms 304 text/css +2018-07-14 14:25:54.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:25:54.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:25:54.513 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:25:54.513 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:25:54.513 +03:00 [INF] Request finished in 0.5233ms 304 text/css +2018-07-14 14:25:54.513 +03:00 [INF] Request finished in 0.5045ms 304 text/css +2018-07-14 14:25:54.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:25:54.520 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:25:54.520 +03:00 [INF] Request finished in 2.3882ms 304 text/css +2018-07-14 14:25:54.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:25:54.521 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:25:54.521 +03:00 [INF] Request finished in 0.663ms 304 text/css +2018-07-14 14:25:54.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:25:54.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:25:54.526 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:25:54.526 +03:00 [INF] Request finished in 0.7424ms 304 text/css +2018-07-14 14:25:54.528 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:25:54.529 +03:00 [INF] Request finished in 2.6632ms 304 text/css +2018-07-14 14:25:54.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:25:54.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:25:54.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:25:54.535 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:25:54.536 +03:00 [INF] Request finished in 0.7027ms 304 application/javascript +2018-07-14 14:25:54.536 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:25:54.537 +03:00 [INF] Request finished in 2.0467ms 304 application/javascript +2018-07-14 14:25:54.538 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:25:54.538 +03:00 [INF] Request finished in 8.3139ms 304 application/javascript +2018-07-14 14:25:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:25:54.541 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:25:54.542 +03:00 [INF] Request finished in 1.1325ms 304 application/javascript +2018-07-14 14:25:54.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:25:54.543 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:25:54.544 +03:00 [INF] Request finished in 0.6807ms 304 application/javascript +2018-07-14 14:25:54.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:25:54.554 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:25:54.554 +03:00 [INF] Request finished in 1.0972ms 304 application/javascript +2018-07-14 14:25:54.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:25:54.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:25:54.558 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:25:54.558 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:25:54.559 +03:00 [INF] Request finished in 1.2143ms 304 application/javascript +2018-07-14 14:25:54.559 +03:00 [INF] Request finished in 2.2832ms 304 application/javascript +2018-07-14 14:25:54.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:25:54.569 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:25:54.570 +03:00 [INF] Request finished in 1.2675ms 304 application/javascript +2018-07-14 14:25:54.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:25:54.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:25:54.570 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:25:54.571 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:25:54.571 +03:00 [INF] Request finished in 0.6877ms 304 application/javascript +2018-07-14 14:25:54.571 +03:00 [INF] Request finished in 0.4432ms 304 application/javascript +2018-07-14 14:25:54.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:25:54.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:25:54.579 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:25:54.579 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:25:54.579 +03:00 [INF] Request finished in 0.4468ms 304 application/javascript +2018-07-14 14:25:54.579 +03:00 [INF] Request finished in 7.7737ms 304 application/javascript +2018-07-14 14:25:54.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:25:54.592 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:25:54.592 +03:00 [INF] Request finished in 1.0159ms 304 application/javascript +2018-07-14 14:25:54.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:25:54.596 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:25:54.596 +03:00 [INF] Request finished in 0.9037ms 304 application/javascript +2018-07-14 14:25:54.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:25:54.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:25:54.597 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:25:54.597 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:25:54.597 +03:00 [INF] Request finished in 0.8808ms 304 application/javascript +2018-07-14 14:25:54.597 +03:00 [INF] Request finished in 1.0595ms 304 application/javascript +2018-07-14 14:25:54.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:25:54.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:25:54.604 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:25:54.604 +03:00 [INF] Request finished in 0.6993ms 304 application/javascript +2018-07-14 14:25:54.604 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:25:54.605 +03:00 [INF] Request finished in 3.2396ms 304 application/javascript +2018-07-14 14:25:54.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:25:54.610 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:25:54.611 +03:00 [INF] Request finished in 0.9131ms 304 application/javascript +2018-07-14 14:25:54.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:25:54.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:25:54.619 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:25:54.619 +03:00 [INF] Request finished in 0.6786ms 304 application/javascript +2018-07-14 14:25:54.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:25:54.624 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:54.625 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:25:54.625 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:25:54.625 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1066ms. +2018-07-14 14:25:54.625 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:25:54.626 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:54.626 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.685ms +2018-07-14 14:25:54.626 +03:00 [INF] Request finished in 5.3409ms 200 text/plain; charset=utf-8 +2018-07-14 14:25:54.626 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.666ms. +2018-07-14 14:25:54.626 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:25:54.630 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.6823000000000001ms +2018-07-14 14:25:54.631 +03:00 [INF] Request finished in 13.7196ms 200 text/plain; charset=utf-8 +2018-07-14 14:33:45.316 +03:00 [INF] Loaded modules: +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:33:45.335 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:33:45.336 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:33:45.337 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:33:45.337 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:33:45.337 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:33:45.337 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:33:45.847 +03:00 [INF] Initialized all modules. +2018-07-14 14:33:46.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 14:33:48.533 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 14:33:48.552 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:33:50.962 +03:00 [INF] Executed action /Index in 2424.1993ms +2018-07-14 14:33:50.972 +03:00 [INF] Request finished in 4907.2751ms 200 text/html; charset=utf-8 +2018-07-14 14:33:51.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:33:51.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:33:51.096 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:33:51.112 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:33:51.162 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:33:51.163 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:33:51.202 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 34.2428ms. +2018-07-14 14:33:51.219 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:33:51.220 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 123.61710000000001ms +2018-07-14 14:33:51.220 +03:00 [INF] Request finished in 139.8392ms 200 text/plain; charset=utf-8 +2018-07-14 14:33:51.226 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 62.568900000000006ms. +2018-07-14 14:33:51.227 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:33:51.227 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 115.6285ms +2018-07-14 14:33:51.228 +03:00 [INF] Request finished in 146.3123ms 200 text/plain; charset=utf-8 +2018-07-14 14:34:01.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:34:01.862 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:34:01.935 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:34:01.966 +03:00 [INF] Executed action /Templates in 104.02940000000001ms +2018-07-14 14:34:01.966 +03:00 [INF] Request finished in 407.3659ms 200 text/html; charset=utf-8 +2018-07-14 14:34:02.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:34:02.093 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:34:02.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:34:02.095 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:34:02.096 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.1499000000000001ms. +2018-07-14 14:34:02.096 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:34:02.097 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.5003ms +2018-07-14 14:34:02.097 +03:00 [INF] Request finished in 6.3266ms 200 text/plain; charset=utf-8 +2018-07-14 14:34:02.100 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:34:02.105 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:34:02.105 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3163ms. +2018-07-14 14:34:02.106 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:34:02.106 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.0288ms +2018-07-14 14:34:02.106 +03:00 [INF] Request finished in 11.952ms 200 text/plain; charset=utf-8 +2018-07-14 14:34:17.841 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 243 +2018-07-14 14:34:17.842 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:34:17.869 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 14:34:41.985 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 14:34:42.100 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 14:34:42.120 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 14:34:42.175 +03:00 [INF] Executed action /Templates in 24333.678900000003ms +2018-07-14 14:34:42.183 +03:00 [INF] Request finished in 24342.1929ms 200 application/zip +2018-07-14 14:40:25.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:40:25.941 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:40:25.943 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:40:25.946 +03:00 [INF] Executed action /Templates in 4.8408000000000007ms +2018-07-14 14:40:25.947 +03:00 [INF] Request finished in 6.3515ms 200 text/html; charset=utf-8 +2018-07-14 14:40:25.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:40:25.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:40:25.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:40:25.977 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:40:25.977 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:40:25.977 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:40:25.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:40:25.980 +03:00 [INF] Request finished in 3.8281ms 304 text/css +2018-07-14 14:40:25.980 +03:00 [INF] Request finished in 7.5365ms 304 text/css +2018-07-14 14:40:25.980 +03:00 [INF] Request finished in 5.6684ms 304 text/css +2018-07-14 14:40:25.980 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:40:25.980 +03:00 [INF] Request finished in 0.8777ms 304 text/css +2018-07-14 14:40:25.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:40:25.982 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:40:25.983 +03:00 [INF] Request finished in 1.2594ms 304 text/css +2018-07-14 14:40:25.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:40:25.984 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:40:25.985 +03:00 [INF] Request finished in 1.8681ms 304 text/css +2018-07-14 14:40:26.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:40:26.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:40:26.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:40:26.001 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:40:26.001 +03:00 [INF] Request finished in 1.0473ms 304 text/css +2018-07-14 14:40:26.002 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:40:26.002 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:40:26.002 +03:00 [INF] Request finished in 1.0996ms 304 text/css +2018-07-14 14:40:26.002 +03:00 [INF] Request finished in 1.8058ms 304 application/javascript +2018-07-14 14:40:26.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:40:26.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:40:26.003 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:40:26.003 +03:00 [INF] Request finished in 1.159ms 304 application/javascript +2018-07-14 14:40:26.006 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:40:26.007 +03:00 [INF] Request finished in 3.9917ms 304 application/javascript +2018-07-14 14:40:26.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:40:26.010 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:40:26.010 +03:00 [INF] Request finished in 0.7073ms 304 application/javascript +2018-07-14 14:40:26.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:40:26.015 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:40:26.016 +03:00 [INF] Request finished in 3.266ms 304 application/javascript +2018-07-14 14:40:26.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:40:26.017 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:40:26.018 +03:00 [INF] Request finished in 1.3419ms 304 application/javascript +2018-07-14 14:40:26.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:40:26.019 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:40:26.019 +03:00 [INF] Request finished in 0.5594ms 304 application/javascript +2018-07-14 14:40:26.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:40:26.025 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:40:26.025 +03:00 [INF] Request finished in 1.4913ms 304 application/javascript +2018-07-14 14:40:26.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:40:26.026 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:40:26.026 +03:00 [INF] Request finished in 0.7314ms 304 application/javascript +2018-07-14 14:40:26.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:40:26.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:40:26.028 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:40:26.028 +03:00 [INF] Request finished in 0.5833ms 304 application/javascript +2018-07-14 14:40:26.029 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:40:26.030 +03:00 [INF] Request finished in 1.8119ms 304 application/javascript +2018-07-14 14:40:26.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:40:26.033 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:40:26.033 +03:00 [INF] Request finished in 0.8309ms 304 application/javascript +2018-07-14 14:40:26.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:40:26.039 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:40:26.039 +03:00 [INF] Request finished in 1.1844ms 304 application/javascript +2018-07-14 14:40:26.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:40:26.044 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:40:26.044 +03:00 [INF] Request finished in 0.6368ms 304 application/javascript +2018-07-14 14:40:26.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:40:26.045 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:40:26.045 +03:00 [INF] Request finished in 0.9601ms 304 application/javascript +2018-07-14 14:40:26.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:40:26.057 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:40:26.057 +03:00 [INF] Request finished in 1.3078ms 304 application/javascript +2018-07-14 14:40:26.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:40:26.060 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:40:26.060 +03:00 [INF] Request finished in 1.7271ms 304 application/javascript +2018-07-14 14:40:26.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:40:26.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:40:26.070 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:40:26.070 +03:00 [INF] Request finished in 0.7258ms 304 application/javascript +2018-07-14 14:40:26.070 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:40:26.071 +03:00 [INF] Request finished in 1.946ms 304 application/javascript +2018-07-14 14:40:26.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:40:26.072 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:40:26.073 +03:00 [INF] Request finished in 1.3972ms 304 application/javascript +2018-07-14 14:40:26.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:40:26.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:40:26.084 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:40:26.085 +03:00 [INF] Request finished in 1.2542ms 304 application/javascript +2018-07-14 14:40:26.085 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:40:26.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:40:26.086 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:40:26.086 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4435ms. +2018-07-14 14:40:26.087 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:40:26.087 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.8898000000000001ms +2018-07-14 14:40:26.087 +03:00 [INF] Request finished in 3.0876ms 200 text/plain; charset=utf-8 +2018-07-14 14:40:26.087 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:40:26.088 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:40:26.088 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1335ms. +2018-07-14 14:40:26.088 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:40:26.089 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.391ms +2018-07-14 14:40:26.089 +03:00 [INF] Request finished in 3.5616ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:02.138 +03:00 [INF] Loaded modules: +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:45:02.158 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:45:02.159 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:45:02.596 +03:00 [INF] Initialized all modules. +2018-07-14 14:45:02.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 14:45:05.276 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 14:45:05.291 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:45:07.226 +03:00 [INF] Executed action /Index in 1945.7543ms +2018-07-14 14:45:07.235 +03:00 [INF] Request finished in 4338.0895ms 200 text/html; charset=utf-8 +2018-07-14 14:45:07.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:45:07.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:45:07.333 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:07.340 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:07.410 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:45:07.413 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:45:07.450 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 33.592800000000004ms. +2018-07-14 14:45:07.466 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:07.467 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 133.8733ms +2018-07-14 14:45:07.468 +03:00 [INF] Request finished in 155.7874ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:07.470 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 56.6081ms. +2018-07-14 14:45:07.471 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:07.472 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 131.4755ms +2018-07-14 14:45:07.472 +03:00 [INF] Request finished in 159.2903ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:09.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:45:09.966 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:45:10.020 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:45:10.049 +03:00 [INF] Executed action /Templates in 82.2723ms +2018-07-14 14:45:10.049 +03:00 [INF] Request finished in 376.5865ms 200 text/html; charset=utf-8 +2018-07-14 14:45:10.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:45:10.147 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:10.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:45:10.149 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:45:10.150 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.998ms. +2018-07-14 14:45:10.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:10.151 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.6513ms +2018-07-14 14:45:10.151 +03:00 [INF] Request finished in 5.2009ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:10.153 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:10.154 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:45:10.154 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16670000000000001ms. +2018-07-14 14:45:10.154 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:10.154 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6453ms +2018-07-14 14:45:10.155 +03:00 [INF] Request finished in 5.8973ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:36.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:45:36.742 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:45:36.744 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:45:36.767 +03:00 [INF] Executed action /Templates in 24.453500000000002ms +2018-07-14 14:45:36.767 +03:00 [INF] Request finished in 261.9564ms 200 text/html; charset=utf-8 +2018-07-14 14:45:36.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:45:36.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:45:36.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:45:36.805 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:45:36.805 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:45:36.805 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:45:36.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:45:36.808 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:45:36.809 +03:00 [INF] Request finished in 6.4111ms 304 text/css +2018-07-14 14:45:36.809 +03:00 [INF] Request finished in 5.9804ms 304 text/css +2018-07-14 14:45:36.809 +03:00 [INF] Request finished in 9.5189ms 304 text/css +2018-07-14 14:45:36.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:45:36.809 +03:00 [INF] Request finished in 2.3512ms 304 text/css +2018-07-14 14:45:36.810 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:45:36.810 +03:00 [INF] Request finished in 1.6434ms 304 text/css +2018-07-14 14:45:36.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:45:36.821 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:45:36.821 +03:00 [INF] Request finished in 0.8649ms 304 text/css +2018-07-14 14:45:36.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:45:36.824 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:45:36.824 +03:00 [INF] Request finished in 0.5099ms 304 text/css +2018-07-14 14:45:36.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:45:36.824 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:45:36.825 +03:00 [INF] Request finished in 0.4581ms 304 application/javascript +2018-07-14 14:45:36.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:45:36.827 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:45:36.827 +03:00 [INF] Request finished in 0.6649ms 304 text/css +2018-07-14 14:45:36.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:45:36.828 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:45:36.828 +03:00 [INF] Request finished in 0.6567ms 304 application/javascript +2018-07-14 14:45:36.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:45:36.845 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:45:36.845 +03:00 [INF] Request finished in 0.6374ms 304 application/javascript +2018-07-14 14:45:36.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:45:36.849 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:45:36.849 +03:00 [INF] Request finished in 1.0602ms 304 application/javascript +2018-07-14 14:45:36.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:45:36.850 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:45:36.851 +03:00 [INF] Request finished in 0.8411ms 304 application/javascript +2018-07-14 14:45:36.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:45:36.859 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:45:36.859 +03:00 [INF] Request finished in 0.9757ms 304 application/javascript +2018-07-14 14:45:36.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:45:36.865 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:45:36.865 +03:00 [INF] Request finished in 1.5435ms 304 application/javascript +2018-07-14 14:45:36.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:45:36.867 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:45:36.867 +03:00 [INF] Request finished in 0.6812ms 304 application/javascript +2018-07-14 14:45:36.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:45:36.868 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:45:36.868 +03:00 [INF] Request finished in 1.2257ms 304 application/javascript +2018-07-14 14:45:36.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:45:36.877 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:45:36.877 +03:00 [INF] Request finished in 0.9006ms 304 application/javascript +2018-07-14 14:45:36.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:45:36.883 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:45:36.884 +03:00 [INF] Request finished in 2.838ms 304 application/javascript +2018-07-14 14:45:36.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:45:36.885 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:45:36.885 +03:00 [INF] Request finished in 1.0308ms 304 application/javascript +2018-07-14 14:45:36.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:45:36.888 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:45:36.888 +03:00 [INF] Request finished in 0.8103ms 304 application/javascript +2018-07-14 14:45:36.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:45:36.891 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:45:36.891 +03:00 [INF] Request finished in 0.5882ms 304 application/javascript +2018-07-14 14:45:36.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:45:36.897 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:45:36.898 +03:00 [INF] Request finished in 1.381ms 304 application/javascript +2018-07-14 14:45:36.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:45:36.899 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:45:36.899 +03:00 [INF] Request finished in 0.7943ms 304 application/javascript +2018-07-14 14:45:36.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:45:36.902 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:45:36.902 +03:00 [INF] Request finished in 1.179ms 304 application/javascript +2018-07-14 14:45:36.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:45:36.906 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:45:36.906 +03:00 [INF] Request finished in 0.8699ms 304 application/javascript +2018-07-14 14:45:36.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:45:36.909 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:45:36.909 +03:00 [INF] Request finished in 1.6886ms 304 application/javascript +2018-07-14 14:45:36.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:45:36.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:45:36.915 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:45:36.915 +03:00 [INF] Request finished in 0.7327ms 304 application/javascript +2018-07-14 14:45:36.915 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:45:36.915 +03:00 [INF] Request finished in 1.2482ms 304 application/javascript +2018-07-14 14:45:36.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:45:36.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:45:36.922 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:36.924 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:45:36.924 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1092ms. +2018-07-14 14:45:36.924 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:36.924 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:36.924 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5126000000000002ms +2018-07-14 14:45:36.924 +03:00 [INF] Request finished in 4.4725ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:36.925 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:45:36.925 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4738ms. +2018-07-14 14:45:36.925 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:36.926 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.6704ms +2018-07-14 14:45:36.926 +03:00 [INF] Request finished in 9.0944ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:49.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:45:49.522 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:45:49.523 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:45:49.539 +03:00 [INF] Executed action /Templates in 17.582800000000002ms +2018-07-14 14:45:49.540 +03:00 [INF] Request finished in 253.4238ms 200 text/html; charset=utf-8 +2018-07-14 14:45:49.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:45:49.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 14:45:49.566 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 14:45:49.566 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 14:45:49.566 +03:00 [INF] Request finished in 0.9879ms 304 text/css +2018-07-14 14:45:49.566 +03:00 [INF] Request finished in 1.066ms 304 text/css +2018-07-14 14:45:49.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 14:45:49.569 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 14:45:49.575 +03:00 [INF] Request finished in 6.2611ms 304 text/css +2018-07-14 14:45:49.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 14:45:49.577 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 14:45:49.577 +03:00 [INF] Request finished in 0.7123ms 304 text/css +2018-07-14 14:45:49.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 14:45:49.578 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 14:45:49.578 +03:00 [INF] Request finished in 0.8348ms 304 text/css +2018-07-14 14:45:49.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 14:45:49.583 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 14:45:49.583 +03:00 [INF] Request finished in 0.7364ms 304 text/css +2018-07-14 14:45:49.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 14:45:49.584 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 14:45:49.584 +03:00 [INF] Request finished in 0.6241ms 304 text/css +2018-07-14 14:45:49.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 14:45:49.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 14:45:49.593 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 14:45:49.593 +03:00 [INF] Request finished in 1.3523ms 304 application/javascript +2018-07-14 14:45:49.593 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 14:45:49.593 +03:00 [INF] Request finished in 2.8023ms 304 text/css +2018-07-14 14:45:49.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 14:45:49.595 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 14:45:49.596 +03:00 [INF] Request finished in 1.2652ms 304 application/javascript +2018-07-14 14:45:49.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 14:45:49.600 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 14:45:49.600 +03:00 [INF] Request finished in 1.3197ms 304 application/javascript +2018-07-14 14:45:49.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 14:45:49.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 14:45:49.609 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 14:45:49.609 +03:00 [INF] Request finished in 0.6987ms 304 application/javascript +2018-07-14 14:45:49.609 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 14:45:49.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 14:45:49.609 +03:00 [INF] Request finished in 1.1529ms 304 application/javascript +2018-07-14 14:45:49.609 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 14:45:49.610 +03:00 [INF] Request finished in 0.5816ms 304 application/javascript +2018-07-14 14:45:49.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 14:45:49.621 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 14:45:49.621 +03:00 [INF] Request finished in 0.8462ms 304 application/javascript +2018-07-14 14:45:49.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 14:45:49.622 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 14:45:49.622 +03:00 [INF] Request finished in 0.7579ms 304 application/javascript +2018-07-14 14:45:49.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 14:45:49.629 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 14:45:49.629 +03:00 [INF] Request finished in 2.9783ms 304 application/javascript +2018-07-14 14:45:49.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 14:45:49.630 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 14:45:49.630 +03:00 [INF] Request finished in 0.8174ms 304 application/javascript +2018-07-14 14:45:49.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 14:45:49.635 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 14:45:49.635 +03:00 [INF] Request finished in 0.7297ms 304 application/javascript +2018-07-14 14:45:49.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 14:45:49.638 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 14:45:49.639 +03:00 [INF] Request finished in 0.6685ms 304 application/javascript +2018-07-14 14:45:49.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 14:45:49.645 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 14:45:49.645 +03:00 [INF] Request finished in 0.9144ms 304 application/javascript +2018-07-14 14:45:49.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 14:45:49.648 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 14:45:49.649 +03:00 [INF] Request finished in 2.3899ms 304 application/javascript +2018-07-14 14:45:49.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 14:45:49.650 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 14:45:49.650 +03:00 [INF] Request finished in 0.9997ms 304 application/javascript +2018-07-14 14:45:49.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 14:45:49.652 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 14:45:49.652 +03:00 [INF] Request finished in 1.4199ms 304 application/javascript +2018-07-14 14:45:49.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 14:45:49.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 14:45:49.654 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 14:45:49.654 +03:00 [INF] Request finished in 1.4404ms 304 application/javascript +2018-07-14 14:45:49.655 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 14:45:49.655 +03:00 [INF] Request finished in 0.7078ms 304 application/javascript +2018-07-14 14:45:49.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 14:45:49.661 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 14:45:49.661 +03:00 [INF] Request finished in 1.0866ms 304 application/javascript +2018-07-14 14:45:49.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 14:45:49.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:45:49.671 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 14:45:49.671 +03:00 [INF] Request finished in 1.1982ms 304 application/javascript +2018-07-14 14:45:49.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 14:45:49.672 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 14:45:49.672 +03:00 [INF] Request finished in 0.6086ms 304 application/javascript +2018-07-14 14:45:49.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:45:49.679 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:49.681 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:45:49.681 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.201ms. +2018-07-14 14:45:49.681 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:49.681 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8168000000000002ms +2018-07-14 14:45:49.682 +03:00 [INF] Request finished in 7.6321ms 200 text/plain; charset=utf-8 +2018-07-14 14:45:49.683 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:45:49.684 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:45:49.685 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.39030000000000004ms. +2018-07-14 14:45:49.685 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:45:49.685 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.5046000000000002ms +2018-07-14 14:45:49.685 +03:00 [INF] Request finished in 13.7088ms 200 text/plain; charset=utf-8 +2018-07-14 14:46:07.952 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 14:46:07.953 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:46:07.978 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 14:46:08.169 +03:00 [INF] Executed action /Templates in 215.91590000000002ms +2018-07-14 14:46:08.208 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: /src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 13 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 10 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 18 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 45 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 40 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-14 14:46:08.244 +03:00 [INF] Request finished in 291.3733ms 500 text/html; charset=utf-8 +2018-07-14 14:47:42.571 +03:00 [INF] Loaded modules: +2018-07-14 14:47:42.591 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:47:42.593 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:47:42.595 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:47:42.597 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:47:42.599 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:47:42.601 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:47:42.603 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:47:42.605 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:47:42.608 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:47:42.611 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:47:42.613 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:47:42.615 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:47:42.617 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:47:42.619 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:47:42.620 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:47:42.624 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:47:42.626 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:47:42.629 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:47:42.631 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:47:42.633 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:47:42.635 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:47:42.637 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:47:42.641 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:47:42.643 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:47:42.646 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:47:42.648 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:47:42.650 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:47:42.652 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:47:42.654 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:47:42.657 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:47:42.659 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:47:42.662 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:47:42.664 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:47:42.666 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:47:42.667 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:47:42.669 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:47:42.672 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:47:42.675 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:47:42.677 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:47:42.680 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:47:42.682 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:47:42.683 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:47:42.685 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:47:42.687 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:47:42.691 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:47:42.694 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:47:42.698 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:47:42.700 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:47:42.702 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:47:43.507 +03:00 [INF] Initialized all modules. +2018-07-14 14:47:43.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 14:47:43.921 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-14 14:47:43.982 +03:00 [INF] Request finished in 53.7578ms 200 +2018-07-14 14:47:46.852 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 14:47:46.876 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:47:49.006 +03:00 [INF] Executed action /Index in 2145.0523000000003ms +2018-07-14 14:47:49.021 +03:00 [INF] Request finished in 5104.7593ms 200 text/html; charset=utf-8 +2018-07-14 14:47:49.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:47:49.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:47:49.156 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:47:49.172 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:47:49.352 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:47:49.353 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:47:49.391 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 30.8415ms. +2018-07-14 14:47:49.411 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:47:49.415 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 256.043ms +2018-07-14 14:47:49.423 +03:00 [INF] Request finished in 298.0695ms 200 text/plain; charset=utf-8 +2018-07-14 14:47:49.441 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 84.3146ms. +2018-07-14 14:47:49.444 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:47:49.448 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 272.9956ms +2018-07-14 14:47:49.451 +03:00 [INF] Request finished in 328.9667ms 200 text/plain; charset=utf-8 +2018-07-14 14:47:50.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:47:50.977 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:47:51.171 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:47:51.212 +03:00 [INF] Executed action /Templates in 231.6079ms +2018-07-14 14:47:51.215 +03:00 [INF] Request finished in 515.2831ms 200 text/html; charset=utf-8 +2018-07-14 14:47:51.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:47:51.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:47:51.355 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:47:51.394 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:47:51.396 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:47:51.399 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.5173ms. +2018-07-14 14:47:51.404 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:47:51.431 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 72.41940000000001ms +2018-07-14 14:47:51.435 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:47:51.437 +03:00 [INF] Request finished in 88.2099ms 200 text/plain; charset=utf-8 +2018-07-14 14:47:51.441 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.2241ms. +2018-07-14 14:47:51.444 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:47:51.447 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 48.4936ms +2018-07-14 14:47:51.450 +03:00 [INF] Request finished in 98.8552ms 200 text/plain; charset=utf-8 +2018-07-14 14:47:58.525 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 14:47:58.530 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:47:58.569 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 14:49:51.623 +03:00 [INF] Loaded modules: +2018-07-14 14:49:51.653 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 14:49:51.657 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 14:49:51.664 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 14:49:51.672 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 14:49:51.675 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 14:49:51.678 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 14:49:51.680 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 14:49:51.684 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 14:49:51.687 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 14:49:51.689 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 14:49:51.692 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 14:49:51.694 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 14:49:51.697 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 14:49:51.702 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 14:49:51.704 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 14:49:51.706 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 14:49:51.709 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 14:49:51.712 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 14:49:51.714 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 14:49:51.719 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 14:49:51.721 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 14:49:51.723 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 14:49:51.726 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 14:49:51.729 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 14:49:51.731 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 14:49:51.735 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 14:49:51.738 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 14:49:51.741 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 14:49:51.743 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 14:49:51.746 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 14:49:51.753 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 14:49:51.755 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 14:49:51.758 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 14:49:51.762 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 14:49:51.769 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 14:49:51.774 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 14:49:51.779 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 14:49:51.782 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 14:49:51.786 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 14:49:51.789 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 14:49:51.791 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 14:49:51.794 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 14:49:51.796 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 14:49:51.800 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 14:49:51.803 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 14:49:51.806 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 14:49:51.808 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 14:49:51.810 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 14:49:51.813 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 14:49:52.572 +03:00 [INF] Initialized all modules. +2018-07-14 14:49:53.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 14:49:53.064 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-14 14:49:53.152 +03:00 [INF] Request finished in 85.2921ms 200 +2018-07-14 14:49:56.623 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 14:49:56.650 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:49:59.329 +03:00 [INF] Executed action /Index in 2697.7288000000003ms +2018-07-14 14:49:59.354 +03:00 [INF] Request finished in 6298.6645ms 200 text/html; charset=utf-8 +2018-07-14 14:49:59.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 14:49:59.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:49:59.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:49:59.592 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:49:59.602 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-14 14:49:59.611 +03:00 [INF] Request finished in 195.4652ms 200 text/css +2018-07-14 14:49:59.623 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:49:59.877 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:49:59.879 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:49:59.972 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.458800000000011ms. +2018-07-14 14:50:00.017 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 128.9515ms. +2018-07-14 14:50:00.018 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:50:00.021 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:50:00.029 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 398.95050000000003ms +2018-07-14 14:50:00.039 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 430.4973ms +2018-07-14 14:50:00.043 +03:00 [INF] Request finished in 520.1039ms 200 text/plain; charset=utf-8 +2018-07-14 14:50:00.052 +03:00 [INF] Request finished in 534.8777ms 200 text/plain; charset=utf-8 +2018-07-14 14:50:00.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 14:50:00.867 +03:00 [INF] Request finished in 6.2126ms 404 +2018-07-14 14:50:01.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 14:50:01.908 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:50:02.114 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 14:50:02.156 +03:00 [INF] Executed action /Templates in 244.9122ms +2018-07-14 14:50:02.159 +03:00 [INF] Request finished in 584.8156ms 200 text/html; charset=utf-8 +2018-07-14 14:50:02.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 14:50:02.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 14:50:02.285 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:50:02.324 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 14:50:02.327 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 14:50:02.331 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.8819000000000004ms. +2018-07-14 14:50:02.335 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:50:02.371 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 50.1619ms +2018-07-14 14:50:02.375 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 14:50:02.377 +03:00 [INF] Request finished in 97.7287ms 200 text/plain; charset=utf-8 +2018-07-14 14:50:02.381 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3557ms. +2018-07-14 14:50:02.384 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 14:50:02.387 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 56.124500000000005ms +2018-07-14 14:50:02.391 +03:00 [INF] Request finished in 109.6435ms 200 text/plain; charset=utf-8 +2018-07-14 14:50:08.465 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 14:50:08.470 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 14:50:08.509 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 14:50:11.188 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 14:50:11.446 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 14:50:11.486 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 14:50:11.529 +03:00 [INF] Executed action /Templates in 3054.6426ms +2018-07-14 14:50:11.539 +03:00 [INF] Request finished in 3072.0284ms 200 application/zip +2018-07-14 15:08:50.911 +03:00 [INF] Loaded modules: +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 15:08:50.941 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 15:08:50.942 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 15:08:51.475 +03:00 [INF] Initialized all modules. +2018-07-14 15:08:51.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 15:08:54.368 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 15:08:54.386 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:08:56.125 +03:00 [INF] Executed action /Index in 1752.9248ms +2018-07-14 15:08:56.134 +03:00 [INF] Request finished in 4376.9064ms 200 text/html; charset=utf-8 +2018-07-14 15:08:56.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:08:56.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:08:56.254 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:08:56.263 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:08:56.330 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:08:56.332 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:08:56.378 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 42.5007ms. +2018-07-14 15:08:56.396 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:08:56.397 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 142.7991ms +2018-07-14 15:08:56.398 +03:00 [INF] Request finished in 157.1962ms 200 text/plain; charset=utf-8 +2018-07-14 15:08:56.407 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 73.7938ms. +2018-07-14 15:08:56.408 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:08:56.408 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 144.6483ms +2018-07-14 15:08:56.408 +03:00 [INF] Request finished in 167.7537ms 200 text/plain; charset=utf-8 +2018-07-14 15:08:57.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 15:08:57.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 15:08:57.564 +03:00 [INF] Request finished in 3.2221ms 404 +2018-07-14 15:08:57.564 +03:00 [INF] Request finished in 2.9288ms 404 +2018-07-14 15:09:01.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 15:09:01.540 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:09:01.614 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:09:01.643 +03:00 [INF] Executed action /Templates in 102.7004ms +2018-07-14 15:09:01.643 +03:00 [INF] Request finished in 341.2843ms 200 text/html; charset=utf-8 +2018-07-14 15:09:01.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:09:01.744 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:09:01.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:09:01.745 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:09:01.746 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8091ms. +2018-07-14 15:09:01.747 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:09:01.747 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.5148ms +2018-07-14 15:09:01.747 +03:00 [INF] Request finished in 4.5753ms 200 text/plain; charset=utf-8 +2018-07-14 15:09:01.749 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:09:01.750 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:09:01.751 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2298ms. +2018-07-14 15:09:01.751 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:09:01.751 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1232ms +2018-07-14 15:09:01.751 +03:00 [INF] Request finished in 5.8017ms 200 text/plain; charset=utf-8 +2018-07-14 15:09:09.343 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 15:09:09.344 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:09:09.379 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:09:11.045 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:09:11.129 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:09:11.151 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 15:09:11.208 +03:00 [INF] Executed action /Templates in 1863.2726ms +2018-07-14 15:09:11.216 +03:00 [INF] Request finished in 1872.1081ms 200 application/zip +2018-07-14 15:18:16.785 +03:00 [INF] Loaded modules: +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 15:18:16.805 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 15:18:17.283 +03:00 [INF] Initialized all modules. +2018-07-14 15:18:17.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 15:18:20.161 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 15:18:20.181 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:18:22.423 +03:00 [INF] Executed action /Index in 2254.7084ms +2018-07-14 15:18:22.437 +03:00 [INF] Request finished in 4841.7723ms 200 text/html; charset=utf-8 +2018-07-14 15:18:22.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:18:22.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:18:22.542 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:18:22.556 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:18:22.629 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:18:22.631 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:18:22.685 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 47.0054ms. +2018-07-14 15:18:22.720 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:18:22.721 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 178.58450000000002ms +2018-07-14 15:18:22.722 +03:00 [INF] Request finished in 197.3941ms 200 text/plain; charset=utf-8 +2018-07-14 15:18:22.730 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.6192ms. +2018-07-14 15:18:22.731 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:18:22.731 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 174.4207ms +2018-07-14 15:18:22.731 +03:00 [INF] Request finished in 205.0632ms 200 text/plain; charset=utf-8 +2018-07-14 15:18:25.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 15:18:25.353 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:18:25.412 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:18:25.446 +03:00 [INF] Executed action /Templates in 93.418500000000009ms +2018-07-14 15:18:25.446 +03:00 [INF] Request finished in 365.7038ms 200 text/html; charset=utf-8 +2018-07-14 15:18:25.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:18:25.543 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:18:25.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:18:25.544 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:18:25.545 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6531ms. +2018-07-14 15:18:25.545 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:18:25.545 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1502ms +2018-07-14 15:18:25.546 +03:00 [INF] Request finished in 4.4089ms 200 text/plain; charset=utf-8 +2018-07-14 15:18:25.547 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:18:25.554 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:18:25.555 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2837ms. +2018-07-14 15:18:25.555 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:18:25.555 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 6.6015000000000006ms +2018-07-14 15:18:25.555 +03:00 [INF] Request finished in 11.3917ms 200 text/plain; charset=utf-8 +2018-07-14 15:18:46.059 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 15:18:46.060 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:18:46.089 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:19:04.584 +03:00 [INF] Executed action /Templates in 18524.1898ms +2018-07-14 15:19:04.609 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 13 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 10 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 18 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 45 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 40 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-14 15:19:04.648 +03:00 [INF] Request finished in 18588.5568ms 500 text/html; charset=utf-8 +2018-07-14 15:20:14.072 +03:00 [INF] Loaded modules: +2018-07-14 15:20:14.096 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 15:20:14.099 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 15:20:14.101 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 15:20:14.103 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 15:20:14.105 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 15:20:14.108 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 15:20:14.111 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 15:20:14.113 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 15:20:14.116 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 15:20:14.119 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 15:20:14.122 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 15:20:14.124 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 15:20:14.126 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 15:20:14.128 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 15:20:14.130 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 15:20:14.133 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 15:20:14.135 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 15:20:14.137 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 15:20:14.139 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 15:20:14.141 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 15:20:14.143 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 15:20:14.145 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 15:20:14.147 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 15:20:14.150 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 15:20:14.152 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 15:20:14.154 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 15:20:14.156 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 15:20:14.157 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 15:20:14.160 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 15:20:14.161 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 15:20:14.163 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 15:20:14.166 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 15:20:14.168 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 15:20:14.175 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 15:20:14.177 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 15:20:14.179 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 15:20:14.180 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 15:20:14.183 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 15:20:14.186 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 15:20:14.187 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 15:20:14.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 15:20:14.191 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 15:20:14.193 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 15:20:14.195 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 15:20:14.197 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 15:20:14.201 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 15:20:14.203 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 15:20:14.205 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 15:20:14.207 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 15:20:15.005 +03:00 [INF] Initialized all modules. +2018-07-14 15:20:15.526 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-14 15:20:15.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 15:20:15.604 +03:00 [INF] Request finished in 62.9354ms 200 +2018-07-14 15:20:18.709 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 15:20:18.732 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:20:20.995 +03:00 [INF] Executed action /Index in 2278.5916ms +2018-07-14 15:20:21.009 +03:00 [INF] Request finished in 5491.3944ms 200 text/html; charset=utf-8 +2018-07-14 15:20:21.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:20:21.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:20:21.152 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:20:21.170 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:20:21.375 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:20:21.377 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:20:21.422 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 40.085300000000004ms. +2018-07-14 15:20:21.441 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:20:21.444 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 289.4948ms +2018-07-14 15:20:21.449 +03:00 [INF] Request finished in 335.4912ms 200 text/plain; charset=utf-8 +2018-07-14 15:20:21.459 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 79.8224ms. +2018-07-14 15:20:21.463 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:20:21.469 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 292.3627ms +2018-07-14 15:20:21.475 +03:00 [INF] Request finished in 358.3748ms 200 text/plain; charset=utf-8 +2018-07-14 15:20:23.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 15:20:23.588 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:20:23.761 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:20:23.801 +03:00 [INF] Executed action /Templates in 210.54780000000002ms +2018-07-14 15:20:23.804 +03:00 [INF] Request finished in 577.0541ms 200 text/html; charset=utf-8 +2018-07-14 15:20:23.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:20:23.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:20:23.917 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:20:23.968 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:20:23.972 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4882ms. +2018-07-14 15:20:23.974 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:20:23.979 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:20:23.982 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 58.078500000000005ms +2018-07-14 15:20:23.986 +03:00 [INF] Request finished in 73.4022ms 200 text/plain; charset=utf-8 +2018-07-14 15:20:24.017 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:20:24.020 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.525ms. +2018-07-14 15:20:24.022 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:20:24.025 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 43.2704ms +2018-07-14 15:20:24.028 +03:00 [INF] Request finished in 119.2283ms 200 text/plain; charset=utf-8 +2018-07-14 15:20:30.490 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 15:20:30.494 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:20:30.538 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:22:19.607 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:22:19.822 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:22:19.851 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 15:22:19.925 +03:00 [INF] Executed action /Templates in 109426.1852ms +2018-07-14 15:22:19.939 +03:00 [INF] Request finished in 109447.9012ms 200 application/zip +2018-07-14 15:28:59.167 +03:00 [INF] Loaded modules: +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 15:28:59.187 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 15:28:59.188 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 15:28:59.700 +03:00 [INF] Initialized all modules. +2018-07-14 15:29:00.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 15:29:03.310 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 15:29:03.331 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:29:05.260 +03:00 [INF] Executed action /Index in 1943.0077ms +2018-07-14 15:29:05.268 +03:00 [INF] Request finished in 5170.3562ms 200 text/html; charset=utf-8 +2018-07-14 15:29:05.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:29:05.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:29:05.401 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:29:05.417 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:29:05.470 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:29:05.473 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:29:05.528 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 50.1266ms. +2018-07-14 15:29:05.549 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:29:05.550 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 149.19060000000002ms +2018-07-14 15:29:05.550 +03:00 [INF] Request finished in 167.6633ms 200 text/plain; charset=utf-8 +2018-07-14 15:29:05.562 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 87.1995ms. +2018-07-14 15:29:05.562 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:29:05.562 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 145.6125ms +2018-07-14 15:29:05.562 +03:00 [INF] Request finished in 177.3842ms 200 text/plain; charset=utf-8 +2018-07-14 15:29:06.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 15:29:06.691 +03:00 [INF] Request finished in 4.6533ms 404 +2018-07-14 15:29:08.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 15:29:08.623 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:29:08.688 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:29:08.724 +03:00 [INF] Executed action /Templates in 100.10010000000001ms +2018-07-14 15:29:08.724 +03:00 [INF] Request finished in 359.8347ms 200 text/html; charset=utf-8 +2018-07-14 15:29:08.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:29:08.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:29:08.844 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:29:08.846 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:29:08.846 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.18960000000000002ms. +2018-07-14 15:29:08.846 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:29:08.846 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.891ms +2018-07-14 15:29:08.846 +03:00 [INF] Request finished in 3.2388ms 200 text/plain; charset=utf-8 +2018-07-14 15:29:08.848 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:29:08.849 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:29:08.850 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6744ms. +2018-07-14 15:29:08.850 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:29:08.851 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.3038000000000003ms +2018-07-14 15:29:08.851 +03:00 [INF] Request finished in 9.941ms 200 text/plain; charset=utf-8 +2018-07-14 15:29:25.583 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 15:29:25.584 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:29:25.626 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:29:32.756 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:29:32.845 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:29:32.864 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 15:29:32.908 +03:00 [INF] Executed action /Templates in 7323.3898ms +2018-07-14 15:29:32.915 +03:00 [INF] Request finished in 7332.2314ms 200 application/zip +2018-07-14 15:32:06.271 +03:00 [INF] Loaded modules: +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 15:32:06.292 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 15:32:06.293 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 15:32:06.795 +03:00 [INF] Initialized all modules. +2018-07-14 15:32:07.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 15:32:10.017 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 15:32:10.037 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:32:12.717 +03:00 [INF] Executed action /Index in 2695.6641ms +2018-07-14 15:32:12.727 +03:00 [INF] Request finished in 5572.6807ms 200 text/html; charset=utf-8 +2018-07-14 15:32:12.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:32:12.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:32:12.865 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:32:12.894 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:32:12.953 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:32:12.963 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:32:13.011 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 47.1578ms. +2018-07-14 15:32:13.030 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:32:13.030 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 165.25660000000002ms +2018-07-14 15:32:13.031 +03:00 [INF] Request finished in 184.1198ms 200 text/plain; charset=utf-8 +2018-07-14 15:32:13.054 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 88.7021ms. +2018-07-14 15:32:13.055 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:32:13.055 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 160.67940000000002ms +2018-07-14 15:32:13.055 +03:00 [INF] Request finished in 208.403ms 200 text/plain; charset=utf-8 +2018-07-14 15:32:14.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 15:32:15.144 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:32:15.203 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 15:32:15.235 +03:00 [INF] Executed action /Templates in 90.6914ms +2018-07-14 15:32:15.235 +03:00 [INF] Request finished in 364.0294ms 200 text/html; charset=utf-8 +2018-07-14 15:32:15.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 15:32:15.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 15:32:15.342 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:32:15.343 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 15:32:15.344 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2127ms. +2018-07-14 15:32:15.344 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:32:15.344 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9546000000000001ms +2018-07-14 15:32:15.344 +03:00 [INF] Request finished in 3.6631ms 200 text/plain; charset=utf-8 +2018-07-14 15:32:15.346 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 15:32:15.347 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 15:32:15.348 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0778ms. +2018-07-14 15:32:15.349 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 15:32:15.349 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.5406ms +2018-07-14 15:32:15.349 +03:00 [INF] Request finished in 12.0342ms 200 text/plain; charset=utf-8 +2018-07-14 15:32:20.203 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 268 +2018-07-14 15:32:20.204 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:32:20.233 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:32:21.794 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:32:21.899 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:32:21.926 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 15:32:21.985 +03:00 [INF] Executed action /Templates in 1779.9097000000002ms +2018-07-14 15:32:21.994 +03:00 [INF] Request finished in 1790.1077ms 200 application/zip +2018-07-14 15:35:11.397 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 280 +2018-07-14 15:35:11.398 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 15:35:11.400 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 15:35:12.665 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:35:12.672 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 15:35:12.674 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-14 15:35:12.695 +03:00 [INF] Executed action /Templates in 1296.9166ms +2018-07-14 15:35:12.695 +03:00 [INF] Request finished in 1298.8703ms 200 application/zip +2018-07-14 23:22:34.842 +03:00 [INF] Loaded modules: +2018-07-14 23:22:34.858 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 23:22:34.858 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 23:22:34.859 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 23:22:35.313 +03:00 [INF] Initialized all modules. +2018-07-14 23:22:35.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 23:22:37.959 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 23:22:37.977 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:22:39.733 +03:00 [INF] Executed action /Index in 1767.4987ms +2018-07-14 23:22:39.741 +03:00 [INF] Request finished in 4116.1601ms 200 text/html; charset=utf-8 +2018-07-14 23:22:39.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:22:39.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:22:39.880 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:22:39.902 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:22:39.940 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:22:39.946 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:22:39.975 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 30.2633ms. +2018-07-14 23:22:39.989 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:22:39.989 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 108.82610000000001ms +2018-07-14 23:22:39.990 +03:00 [INF] Request finished in 124.8564ms 200 text/plain; charset=utf-8 +2018-07-14 23:22:40.002 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 53.953500000000005ms. +2018-07-14 23:22:40.002 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:22:40.002 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 100.1324ms +2018-07-14 23:22:40.003 +03:00 [INF] Request finished in 136.7118ms 200 text/plain; charset=utf-8 +2018-07-14 23:22:41.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 23:22:41.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-14 23:22:41.260 +03:00 [INF] Request finished in 3.3213ms 404 +2018-07-14 23:22:41.260 +03:00 [INF] Request finished in 3.3535ms 404 +2018-07-14 23:22:48.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:22:48.949 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:22:49.006 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:22:49.036 +03:00 [INF] Executed action /Templates in 85.9782ms +2018-07-14 23:22:49.036 +03:00 [INF] Request finished in 318.2789ms 200 text/html; charset=utf-8 +2018-07-14 23:22:49.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:22:49.140 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:22:49.141 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:22:49.141 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7052ms. +2018-07-14 23:22:49.142 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:22:49.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:22:49.142 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0743ms +2018-07-14 23:22:49.142 +03:00 [INF] Request finished in 3.5994ms 200 text/plain; charset=utf-8 +2018-07-14 23:22:49.146 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:22:49.147 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:22:49.147 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22190000000000001ms. +2018-07-14 23:22:49.148 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:22:49.148 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9713ms +2018-07-14 23:22:49.148 +03:00 [INF] Request finished in 6.0018ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:22.031 +03:00 [INF] Loaded modules: +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 23:31:22.050 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 23:31:22.051 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 23:31:22.543 +03:00 [INF] Initialized all modules. +2018-07-14 23:31:22.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-14 23:31:24.862 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-14 23:31:24.877 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:31:26.809 +03:00 [INF] Executed action /Index in 1941.5196ms +2018-07-14 23:31:26.820 +03:00 [INF] Request finished in 4044.7504ms 200 text/html; charset=utf-8 +2018-07-14 23:31:26.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:31:26.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:31:26.929 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:26.942 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:27.028 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:31:27.032 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:31:27.096 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 62.017100000000006ms. +2018-07-14 23:31:27.122 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:27.124 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 194.3144ms +2018-07-14 23:31:27.124 +03:00 [INF] Request finished in 217.5525ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:27.130 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 96.9702ms. +2018-07-14 23:31:27.131 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:27.131 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 189.0491ms +2018-07-14 23:31:27.131 +03:00 [INF] Request finished in 222.3387ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:29.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:31:29.909 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:31:29.976 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:31:30.013 +03:00 [INF] Executed action /Templates in 104.2401ms +2018-07-14 23:31:30.014 +03:00 [INF] Request finished in 806.1395ms 200 text/html; charset=utf-8 +2018-07-14 23:31:30.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:31:30.124 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:30.127 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:31:30.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:31:30.128 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8061ms. +2018-07-14 23:31:30.128 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:30.128 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.8179000000000003ms +2018-07-14 23:31:30.129 +03:00 [INF] Request finished in 6.5523ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:30.132 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:30.134 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:31:30.134 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4146ms. +2018-07-14 23:31:30.135 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:30.135 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.1537ms +2018-07-14 23:31:30.135 +03:00 [INF] Request finished in 7.1351ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:42.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:31:42.895 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:31:42.897 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:31:42.926 +03:00 [INF] Executed action /Templates in 30.1659ms +2018-07-14 23:31:42.926 +03:00 [INF] Request finished in 321.5652ms 200 text/html; charset=utf-8 +2018-07-14 23:31:42.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:31:42.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:31:42.957 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 23:31:42.957 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 23:31:42.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:31:42.958 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 23:31:42.962 +03:00 [INF] Request finished in 4.0631ms 304 text/css +2018-07-14 23:31:42.962 +03:00 [INF] Request finished in 9.6459ms 304 text/css +2018-07-14 23:31:42.962 +03:00 [INF] Request finished in 6.9227ms 304 text/css +2018-07-14 23:31:42.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:31:42.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:31:42.963 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 23:31:42.971 +03:00 [INF] Request finished in 8.8344ms 304 text/css +2018-07-14 23:31:42.972 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 23:31:42.972 +03:00 [INF] Request finished in 9.1638ms 304 text/css +2018-07-14 23:31:42.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:31:42.973 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 23:31:42.975 +03:00 [INF] Request finished in 1.9273ms 304 text/css +2018-07-14 23:31:42.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:31:42.979 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 23:31:42.979 +03:00 [INF] Request finished in 0.7726ms 304 text/css +2018-07-14 23:31:42.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:31:42.981 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 23:31:42.982 +03:00 [INF] Request finished in 1.3427ms 304 text/css +2018-07-14 23:31:42.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:31:42.984 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 23:31:42.985 +03:00 [INF] Request finished in 1.3788ms 304 application/javascript +2018-07-14 23:31:42.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:31:42.991 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 23:31:42.992 +03:00 [INF] Request finished in 1.0786ms 304 application/javascript +2018-07-14 23:31:42.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:31:42.993 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 23:31:42.993 +03:00 [INF] Request finished in 0.5898ms 304 application/javascript +2018-07-14 23:31:42.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:31:42.994 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 23:31:42.994 +03:00 [INF] Request finished in 0.7078ms 304 application/javascript +2018-07-14 23:31:43.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:31:43.008 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 23:31:43.008 +03:00 [INF] Request finished in 1.5678ms 304 application/javascript +2018-07-14 23:31:43.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:31:43.011 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 23:31:43.011 +03:00 [INF] Request finished in 0.733ms 304 application/javascript +2018-07-14 23:31:43.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:31:43.019 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 23:31:43.019 +03:00 [INF] Request finished in 6.6844ms 304 application/javascript +2018-07-14 23:31:43.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:31:43.023 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 23:31:43.024 +03:00 [INF] Request finished in 3.4946ms 304 application/javascript +2018-07-14 23:31:43.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:31:43.028 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 23:31:43.029 +03:00 [INF] Request finished in 0.5787ms 304 application/javascript +2018-07-14 23:31:43.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:31:43.031 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 23:31:43.032 +03:00 [INF] Request finished in 0.5924ms 304 application/javascript +2018-07-14 23:31:43.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:31:43.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:31:43.034 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 23:31:43.034 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 23:31:43.034 +03:00 [INF] Request finished in 2.4697ms 304 application/javascript +2018-07-14 23:31:43.035 +03:00 [INF] Request finished in 1.3643ms 304 application/javascript +2018-07-14 23:31:43.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:31:43.044 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 23:31:43.044 +03:00 [INF] Request finished in 0.7835ms 304 application/javascript +2018-07-14 23:31:43.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:31:43.053 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 23:31:43.053 +03:00 [INF] Request finished in 4.4104ms 304 application/javascript +2018-07-14 23:31:43.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:31:43.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:31:43.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:31:43.059 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 23:31:43.059 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 23:31:43.059 +03:00 [INF] Request finished in 0.5162ms 304 application/javascript +2018-07-14 23:31:43.060 +03:00 [INF] Request finished in 0.8894ms 304 application/javascript +2018-07-14 23:31:43.060 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 23:31:43.065 +03:00 [INF] Request finished in 6.6261ms 304 application/javascript +2018-07-14 23:31:43.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:31:43.077 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 23:31:43.078 +03:00 [INF] Request finished in 2.3633ms 304 application/javascript +2018-07-14 23:31:43.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:31:43.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:31:43.084 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 23:31:43.084 +03:00 [INF] Request finished in 2.2407ms 304 application/javascript +2018-07-14 23:31:43.084 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 23:31:43.084 +03:00 [INF] Request finished in 1.1113ms 304 application/javascript +2018-07-14 23:31:43.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:31:43.090 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 23:31:43.091 +03:00 [INF] Request finished in 2.8349ms 304 application/javascript +2018-07-14 23:31:43.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:31:43.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:31:43.100 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:43.104 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:31:43.104 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:43.105 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1558ms. +2018-07-14 23:31:43.105 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:43.105 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.9625ms +2018-07-14 23:31:43.105 +03:00 [INF] Request finished in 9.7763ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:43.105 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:31:43.106 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5137ms. +2018-07-14 23:31:43.106 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:43.106 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.4985000000000002ms +2018-07-14 23:31:43.106 +03:00 [INF] Request finished in 11.9169ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:59.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:31:59.506 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:31:59.507 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:31:59.527 +03:00 [INF] Executed action /Templates in 20.977500000000003ms +2018-07-14 23:31:59.527 +03:00 [INF] Request finished in 254.5219ms 200 text/html; charset=utf-8 +2018-07-14 23:31:59.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:31:59.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:31:59.554 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 23:31:59.554 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 23:31:59.554 +03:00 [INF] Request finished in 0.6837ms 304 text/css +2018-07-14 23:31:59.554 +03:00 [INF] Request finished in 0.6653ms 304 text/css +2018-07-14 23:31:59.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:31:59.558 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 23:31:59.558 +03:00 [INF] Request finished in 1.4771ms 304 text/css +2018-07-14 23:31:59.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:31:59.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:31:59.561 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 23:31:59.561 +03:00 [INF] Request finished in 0.649ms 304 text/css +2018-07-14 23:31:59.561 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 23:31:59.561 +03:00 [INF] Request finished in 0.8587ms 304 text/css +2018-07-14 23:31:59.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:31:59.568 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 23:31:59.568 +03:00 [INF] Request finished in 2.6525ms 304 text/css +2018-07-14 23:31:59.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:31:59.570 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 23:31:59.572 +03:00 [INF] Request finished in 1.9469ms 304 text/css +2018-07-14 23:31:59.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:31:59.574 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 23:31:59.575 +03:00 [INF] Request finished in 0.8432ms 304 text/css +2018-07-14 23:31:59.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:31:59.578 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 23:31:59.578 +03:00 [INF] Request finished in 1.8293ms 304 application/javascript +2018-07-14 23:31:59.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:31:59.582 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 23:31:59.582 +03:00 [INF] Request finished in 3.3343ms 304 application/javascript +2018-07-14 23:31:59.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:31:59.587 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 23:31:59.587 +03:00 [INF] Request finished in 4.5606ms 304 application/javascript +2018-07-14 23:31:59.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:31:59.590 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 23:31:59.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:31:59.590 +03:00 [INF] Request finished in 1.0245ms 304 application/javascript +2018-07-14 23:31:59.592 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 23:31:59.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:31:59.592 +03:00 [INF] Request finished in 1.7147ms 304 application/javascript +2018-07-14 23:31:59.592 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 23:31:59.592 +03:00 [INF] Request finished in 0.5137ms 304 application/javascript +2018-07-14 23:31:59.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:31:59.593 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 23:31:59.593 +03:00 [INF] Request finished in 0.4722ms 304 application/javascript +2018-07-14 23:31:59.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:31:59.602 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 23:31:59.602 +03:00 [INF] Request finished in 2.5085ms 304 application/javascript +2018-07-14 23:31:59.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:31:59.605 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 23:31:59.605 +03:00 [INF] Request finished in 0.9611ms 304 application/javascript +2018-07-14 23:31:59.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:31:59.606 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 23:31:59.606 +03:00 [INF] Request finished in 0.6413ms 304 application/javascript +2018-07-14 23:31:59.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:31:59.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:31:59.619 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 23:31:59.619 +03:00 [INF] Request finished in 1.2961ms 304 application/javascript +2018-07-14 23:31:59.620 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 23:31:59.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:31:59.620 +03:00 [INF] Request finished in 0.5116ms 304 application/javascript +2018-07-14 23:31:59.621 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 23:31:59.621 +03:00 [INF] Request finished in 0.9041ms 304 application/javascript +2018-07-14 23:31:59.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:31:59.624 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 23:31:59.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:31:59.625 +03:00 [INF] Request finished in 3.296ms 304 application/javascript +2018-07-14 23:31:59.625 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 23:31:59.625 +03:00 [INF] Request finished in 0.5441ms 304 application/javascript +2018-07-14 23:31:59.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:31:59.629 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 23:31:59.629 +03:00 [INF] Request finished in 2.4887ms 304 application/javascript +2018-07-14 23:31:59.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:31:59.634 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 23:31:59.635 +03:00 [INF] Request finished in 1.5146ms 304 application/javascript +2018-07-14 23:31:59.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:31:59.637 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 23:31:59.638 +03:00 [INF] Request finished in 0.9615ms 304 application/javascript +2018-07-14 23:31:59.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:31:59.644 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 23:31:59.644 +03:00 [INF] Request finished in 1.2537ms 304 application/javascript +2018-07-14 23:31:59.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:31:59.650 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 23:31:59.651 +03:00 [INF] Request finished in 1.1293ms 304 application/javascript +2018-07-14 23:31:59.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:31:59.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:31:59.654 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 23:31:59.654 +03:00 [INF] Request finished in 0.7031ms 304 application/javascript +2018-07-14 23:31:59.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:31:59.660 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:59.660 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:31:59.661 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:31:59.661 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:31:59.662 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1323ms. +2018-07-14 23:31:59.662 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.46030000000000004ms. +2018-07-14 23:31:59.662 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:59.662 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:31:59.662 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4604000000000001ms +2018-07-14 23:31:59.662 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.4141000000000001ms +2018-07-14 23:31:59.662 +03:00 [INF] Request finished in 4.2323ms 200 text/plain; charset=utf-8 +2018-07-14 23:31:59.662 +03:00 [INF] Request finished in 9.0017ms 200 text/plain; charset=utf-8 +2018-07-14 23:36:28.822 +03:00 [INF] Loaded modules: +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-14 23:36:28.840 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-14 23:36:28.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-14 23:36:29.286 +03:00 [INF] Initialized all modules. +2018-07-14 23:36:29.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:36:31.519 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:36:31.636 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:36:33.627 +03:00 [INF] Executed action /Templates in 2103.385ms +2018-07-14 23:36:33.636 +03:00 [INF] Request finished in 4233.4354ms 200 text/html; charset=utf-8 +2018-07-14 23:36:33.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:36:33.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:36:33.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:36:33.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:36:33.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:36:33.668 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-14 23:36:33.668 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-14 23:36:33.668 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-14 23:36:33.668 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-14 23:36:33.668 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-14 23:36:33.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:36:33.670 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 8.8435ms 304 text/css +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 9.0119ms 304 text/css +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 8.9336ms 304 text/css +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 8.367ms 304 text/css +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 8.5971ms 304 text/css +2018-07-14 23:36:33.672 +03:00 [INF] Request finished in 3.2578ms 304 text/css +2018-07-14 23:36:33.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:36:33.684 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-14 23:36:33.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:36:33.684 +03:00 [INF] Request finished in 2.983ms 304 application/javascript +2018-07-14 23:36:33.684 +03:00 [INF] The file /styles/global.css was not modified +2018-07-14 23:36:33.684 +03:00 [INF] Request finished in 0.8087ms 304 text/css +2018-07-14 23:36:33.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:36:33.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:36:33.686 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-14 23:36:33.686 +03:00 [INF] Request finished in 0.9499ms 304 application/javascript +2018-07-14 23:36:33.689 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-14 23:36:33.689 +03:00 [INF] Request finished in 4.0031ms 304 application/javascript +2018-07-14 23:36:33.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:36:33.693 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-14 23:36:33.693 +03:00 [INF] Request finished in 2.1652ms 304 text/css +2018-07-14 23:36:33.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:36:33.693 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-14 23:36:33.694 +03:00 [INF] Request finished in 1.2514ms 304 application/javascript +2018-07-14 23:36:33.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:36:33.699 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-14 23:36:33.701 +03:00 [INF] Request finished in 4.0819ms 304 application/javascript +2018-07-14 23:36:33.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:36:33.706 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-14 23:36:33.706 +03:00 [INF] Request finished in 2.2301ms 304 application/javascript +2018-07-14 23:36:33.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:36:33.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:36:33.708 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-14 23:36:33.708 +03:00 [INF] Request finished in 0.692ms 304 application/javascript +2018-07-14 23:36:33.709 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-14 23:36:33.709 +03:00 [INF] Request finished in 1.5377ms 304 application/javascript +2018-07-14 23:36:33.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:36:33.715 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-14 23:36:33.717 +03:00 [INF] Request finished in 2.2876ms 304 application/javascript +2018-07-14 23:36:33.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:36:33.720 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-14 23:36:33.720 +03:00 [INF] Request finished in 0.9568ms 304 application/javascript +2018-07-14 23:36:33.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:36:33.722 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-14 23:36:33.722 +03:00 [INF] Request finished in 0.5825ms 304 application/javascript +2018-07-14 23:36:33.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:36:33.727 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-14 23:36:33.728 +03:00 [INF] Request finished in 3.2661ms 304 application/javascript +2018-07-14 23:36:33.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:36:33.730 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-14 23:36:33.730 +03:00 [INF] Request finished in 0.6597ms 304 application/javascript +2018-07-14 23:36:33.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:36:33.735 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-14 23:36:33.736 +03:00 [INF] Request finished in 3.3803ms 304 application/javascript +2018-07-14 23:36:33.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:36:33.738 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-14 23:36:33.738 +03:00 [INF] Request finished in 0.79ms 304 application/javascript +2018-07-14 23:36:33.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:36:33.742 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-14 23:36:33.742 +03:00 [INF] Request finished in 1.8939ms 304 application/javascript +2018-07-14 23:36:33.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:36:33.745 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-14 23:36:33.746 +03:00 [INF] Request finished in 0.8198ms 304 application/javascript +2018-07-14 23:36:33.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:36:33.749 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-14 23:36:33.749 +03:00 [INF] Request finished in 1.2264ms 304 application/javascript +2018-07-14 23:36:33.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:36:33.754 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-14 23:36:33.754 +03:00 [INF] Request finished in 2.5897ms 304 application/javascript +2018-07-14 23:36:33.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:36:33.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:36:33.759 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-14 23:36:33.759 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-14 23:36:33.759 +03:00 [INF] Request finished in 0.8099ms 304 application/javascript +2018-07-14 23:36:33.759 +03:00 [INF] Request finished in 0.5488ms 304 application/javascript +2018-07-14 23:36:33.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:36:33.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:36:33.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671973396961536 +2018-07-14 23:36:33.774 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-14 23:36:33.774 +03:00 [INF] Request finished in 6.5535ms 200 application/javascript +2018-07-14 23:36:33.783 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:36:33.786 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:36:33.847 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:36:33.848 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:36:33.889 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 35.608200000000004ms. +2018-07-14 23:36:33.904 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:36:33.905 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 122.24090000000001ms +2018-07-14 23:36:33.906 +03:00 [INF] Request finished in 145.1789ms 200 text/plain; charset=utf-8 +2018-07-14 23:36:33.914 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.6658ms. +2018-07-14 23:36:33.914 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:36:33.914 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 128.05440000000002ms +2018-07-14 23:36:33.915 +03:00 [INF] Request finished in 149.6228ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:08.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:37:08.754 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:37:08.756 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:37:08.766 +03:00 [INF] Executed action /Templates in 11.7089ms +2018-07-14 23:37:08.766 +03:00 [INF] Request finished in 13.1929ms 200 text/html; charset=utf-8 +2018-07-14 23:37:08.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:37:08.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:37:08.917 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-07-14 23:37:08.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:37:08.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:37:08.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:37:08.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:37:08.923 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-07-14 23:37:08.923 +03:00 [INF] Request finished in 16.9783ms 200 text/css +2018-07-14 23:37:08.924 +03:00 [INF] Request finished in 1.6794ms 200 text/css +2018-07-14 23:37:08.924 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-14 23:37:08.924 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-07-14 23:37:08.925 +03:00 [INF] Request finished in 24.9128ms 200 text/css +2018-07-14 23:37:08.925 +03:00 [INF] Request finished in 4.3185ms 200 text/css +2018-07-14 23:37:08.925 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-07-14 23:37:08.925 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-07-14 23:37:08.925 +03:00 [INF] Request finished in 3.2851ms 200 text/css +2018-07-14 23:37:08.925 +03:00 [INF] Request finished in 4.3471ms 200 text/css +2018-07-14 23:37:08.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:37:08.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:37:08.940 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-14 23:37:08.940 +03:00 [INF] Request finished in 1.2994ms 200 text/css +2018-07-14 23:37:08.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:37:08.942 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-14 23:37:08.942 +03:00 [INF] Request finished in 2.0654ms 200 text/css +2018-07-14 23:37:08.944 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-07-14 23:37:08.945 +03:00 [INF] Request finished in 3.4616ms 200 application/javascript +2018-07-14 23:37:08.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:37:08.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:37:08.956 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-07-14 23:37:08.956 +03:00 [INF] Request finished in 1.0946ms 200 application/javascript +2018-07-14 23:37:08.957 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-07-14 23:37:08.957 +03:00 [INF] Request finished in 9.0106ms 200 application/javascript +2018-07-14 23:37:08.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:37:08.962 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-07-14 23:37:08.962 +03:00 [INF] Request finished in 1.7197ms 200 application/javascript +2018-07-14 23:37:08.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:37:08.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:37:08.971 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-07-14 23:37:08.971 +03:00 [INF] Request finished in 8.5281ms 200 application/javascript +2018-07-14 23:37:08.975 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-07-14 23:37:08.976 +03:00 [INF] Request finished in 8.1898ms 200 application/javascript +2018-07-14 23:37:08.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:37:08.977 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-07-14 23:37:08.978 +03:00 [INF] Request finished in 1.3371ms 200 application/javascript +2018-07-14 23:37:08.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:37:08.998 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-07-14 23:37:08.998 +03:00 [INF] Request finished in 2.562ms 200 application/javascript +2018-07-14 23:37:08.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:37:09.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:37:09.003 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-07-14 23:37:09.003 +03:00 [INF] Request finished in 4.7669ms 200 application/javascript +2018-07-14 23:37:09.012 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-07-14 23:37:09.013 +03:00 [INF] Request finished in 11.2849ms 200 application/javascript +2018-07-14 23:37:09.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:37:09.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:37:09.020 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-07-14 23:37:09.020 +03:00 [INF] Request finished in 1.522ms 200 application/javascript +2018-07-14 23:37:09.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:37:09.022 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-07-14 23:37:09.022 +03:00 [INF] Request finished in 1.6397ms 200 application/javascript +2018-07-14 23:37:09.022 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-07-14 23:37:09.022 +03:00 [INF] Request finished in 3.4743ms 200 application/javascript +2018-07-14 23:37:09.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:37:09.023 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-07-14 23:37:09.024 +03:00 [INF] Request finished in 0.8486ms 200 application/javascript +2018-07-14 23:37:09.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:37:09.037 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-07-14 23:37:09.037 +03:00 [INF] Request finished in 8.7465ms 200 application/javascript +2018-07-14 23:37:09.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:37:09.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:37:09.041 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-07-14 23:37:09.041 +03:00 [INF] Request finished in 3.3276ms 200 application/javascript +2018-07-14 23:37:09.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:37:09.044 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-07-14 23:37:09.044 +03:00 [INF] Request finished in 3.346ms 200 application/javascript +2018-07-14 23:37:09.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:37:09.045 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-07-14 23:37:09.045 +03:00 [INF] Request finished in 4.0568ms 200 application/javascript +2018-07-14 23:37:09.046 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-07-14 23:37:09.046 +03:00 [INF] Request finished in 1.6185ms 200 application/javascript +2018-07-14 23:37:09.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:37:09.055 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-07-14 23:37:09.055 +03:00 [INF] Request finished in 3.5782ms 200 application/javascript +2018-07-14 23:37:09.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:37:09.063 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-07-14 23:37:09.063 +03:00 [INF] Request finished in 2.9971ms 200 application/javascript +2018-07-14 23:37:09.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:37:09.080 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:09.081 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:37:09.082 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7652ms. +2018-07-14 23:37:09.082 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:09.083 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.4107000000000003ms +2018-07-14 23:37:09.083 +03:00 [INF] Request finished in 10.729ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:09.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:37:09.098 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:09.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:37:09.099 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1769ms. +2018-07-14 23:37:09.100 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:09.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6280000000000001ms +2018-07-14 23:37:09.100 +03:00 [INF] Request finished in 2.9133ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:09.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974275649858 +2018-07-14 23:37:09.107 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-14 23:37:09.107 +03:00 [INF] Request finished in 1.1048ms 200 application/javascript +2018-07-14 23:37:09.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-14 23:37:09.339 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-07-14 23:37:09.339 +03:00 [INF] Request finished in 2.6776ms 200 font/woff2 +2018-07-14 23:37:24.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:37:24.617 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:37:24.618 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:37:24.622 +03:00 [INF] Executed action /Templates in 5.4062ms +2018-07-14 23:37:24.622 +03:00 [INF] Request finished in 6.6698ms 200 text/html; charset=utf-8 +2018-07-14 23:37:24.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:37:24.663 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-14 23:37:24.663 +03:00 [INF] Request finished in 4.9724ms 200 text/css +2018-07-14 23:37:24.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:37:24.668 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-07-14 23:37:24.669 +03:00 [INF] Request finished in 1.0391ms 200 text/css +2018-07-14 23:37:24.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:37:24.671 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-07-14 23:37:24.671 +03:00 [INF] Request finished in 0.9697ms 200 text/css +2018-07-14 23:37:24.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:37:24.682 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-07-14 23:37:24.682 +03:00 [INF] Request finished in 3.2646ms 200 text/css +2018-07-14 23:37:24.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:37:24.718 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-07-14 23:37:24.718 +03:00 [INF] Request finished in 2.0596ms 200 text/css +2018-07-14 23:37:24.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:37:24.727 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-07-14 23:37:24.728 +03:00 [INF] Request finished in 1.709ms 200 text/css +2018-07-14 23:37:24.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:37:24.730 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-14 23:37:24.730 +03:00 [INF] Request finished in 1.4991ms 200 text/css +2018-07-14 23:37:24.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:37:24.732 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-14 23:37:24.733 +03:00 [INF] Request finished in 1.9149ms 200 text/css +2018-07-14 23:37:24.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:37:24.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:37:24.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:37:24.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:37:24.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:37:24.755 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-07-14 23:37:24.755 +03:00 [INF] Request finished in 0.9279ms 200 application/javascript +2018-07-14 23:37:24.758 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-07-14 23:37:24.758 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-07-14 23:37:24.758 +03:00 [INF] Request finished in 11.8588ms 200 application/javascript +2018-07-14 23:37:24.758 +03:00 [INF] Request finished in 3.8041ms 200 application/javascript +2018-07-14 23:37:24.759 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-07-14 23:37:24.759 +03:00 [INF] Request finished in 4.299ms 200 application/javascript +2018-07-14 23:37:24.760 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-07-14 23:37:24.760 +03:00 [INF] Request finished in 9.2376ms 200 application/javascript +2018-07-14 23:37:24.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:37:24.762 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-07-14 23:37:24.762 +03:00 [INF] Request finished in 1.352ms 200 application/javascript +2018-07-14 23:37:24.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:37:24.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:37:24.775 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-07-14 23:37:24.776 +03:00 [INF] Request finished in 2.7674ms 200 application/javascript +2018-07-14 23:37:24.777 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-07-14 23:37:24.777 +03:00 [INF] Request finished in 3.9027ms 200 application/javascript +2018-07-14 23:37:24.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:37:24.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:37:24.796 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-07-14 23:37:24.796 +03:00 [INF] Request finished in 3.1072ms 200 application/javascript +2018-07-14 23:37:24.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:37:24.802 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-07-14 23:37:24.802 +03:00 [INF] Request finished in 14.6199ms 200 application/javascript +2018-07-14 23:37:24.804 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-07-14 23:37:24.804 +03:00 [INF] Request finished in 3.6536ms 200 application/javascript +2018-07-14 23:37:24.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:37:24.807 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-07-14 23:37:24.807 +03:00 [INF] Request finished in 1.472ms 200 application/javascript +2018-07-14 23:37:24.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:37:24.812 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-07-14 23:37:24.815 +03:00 [INF] Request finished in 4.3634ms 200 application/javascript +2018-07-14 23:37:24.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:37:24.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:37:24.821 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-07-14 23:37:24.821 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-07-14 23:37:24.821 +03:00 [INF] Request finished in 1.6112ms 200 application/javascript +2018-07-14 23:37:24.821 +03:00 [INF] Request finished in 1.0864ms 200 application/javascript +2018-07-14 23:37:24.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:37:24.826 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-07-14 23:37:24.826 +03:00 [INF] Request finished in 2.7391ms 200 application/javascript +2018-07-14 23:37:24.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:37:24.834 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-07-14 23:37:24.834 +03:00 [INF] Request finished in 1.5889ms 200 application/javascript +2018-07-14 23:37:24.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:37:24.838 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-07-14 23:37:24.839 +03:00 [INF] Request finished in 1.325ms 200 application/javascript +2018-07-14 23:37:24.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:37:24.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:37:24.845 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-07-14 23:37:24.845 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-07-14 23:37:24.845 +03:00 [INF] Request finished in 2.2618ms 200 application/javascript +2018-07-14 23:37:24.845 +03:00 [INF] Request finished in 1.1186ms 200 application/javascript +2018-07-14 23:37:24.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:37:24.847 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:24.848 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:37:24.849 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4913ms. +2018-07-14 23:37:24.849 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:24.849 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0612ms +2018-07-14 23:37:24.849 +03:00 [INF] Request finished in 4.4876ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:24.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:37:24.855 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:24.858 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:37:24.859 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.41900000000000004ms. +2018-07-14 23:37:24.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:37:24.860 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:24.860 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.6269ms +2018-07-14 23:37:24.860 +03:00 [INF] Request finished in 6.4381ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:24.860 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-07-14 23:37:24.860 +03:00 [INF] Request finished in 1.0769ms 200 application/javascript +2018-07-14 23:37:24.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974435497879 +2018-07-14 23:37:24.863 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-14 23:37:24.863 +03:00 [INF] Request finished in 0.9938ms 200 application/javascript +2018-07-14 23:37:25.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-14 23:37:25.022 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-07-14 23:37:25.022 +03:00 [INF] Request finished in 2.0697ms 200 font/woff2 +2018-07-14 23:37:49.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-14 23:37:49.112 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:37:49.114 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-14 23:37:49.119 +03:00 [INF] Executed action /Templates in 6.6160000000000005ms +2018-07-14 23:37:49.119 +03:00 [INF] Request finished in 9.1588ms 200 text/html; charset=utf-8 +2018-07-14 23:37:49.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-14 23:37:49.242 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-14 23:37:49.242 +03:00 [INF] Request finished in 5.5666ms 200 text/css +2018-07-14 23:37:49.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-14 23:37:49.249 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-07-14 23:37:49.249 +03:00 [INF] Request finished in 1.3158ms 200 text/css +2018-07-14 23:37:49.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-14 23:37:49.251 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-07-14 23:37:49.252 +03:00 [INF] Request finished in 2.8554ms 200 text/css +2018-07-14 23:37:49.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-14 23:37:49.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-14 23:37:49.259 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-07-14 23:37:49.259 +03:00 [INF] Request finished in 1.6014ms 200 text/css +2018-07-14 23:37:49.259 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-07-14 23:37:49.260 +03:00 [INF] Request finished in 1.7153ms 200 text/css +2018-07-14 23:37:49.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-14 23:37:49.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-14 23:37:49.276 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-14 23:37:49.276 +03:00 [INF] Request finished in 1.1482ms 200 text/css +2018-07-14 23:37:49.278 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-07-14 23:37:49.279 +03:00 [INF] Request finished in 4.7048ms 200 text/css +2018-07-14 23:37:49.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-14 23:37:49.292 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-07-14 23:37:49.292 +03:00 [INF] Request finished in 1.1568ms 200 application/javascript +2018-07-14 23:37:49.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-14 23:37:49.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-14 23:37:49.309 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-14 23:37:49.309 +03:00 [INF] Request finished in 4.438ms 200 text/css +2018-07-14 23:37:49.310 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-07-14 23:37:49.310 +03:00 [INF] Request finished in 11.4795ms 200 application/javascript +2018-07-14 23:37:49.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-14 23:37:49.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-14 23:37:49.312 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-07-14 23:37:49.312 +03:00 [INF] Request finished in 0.9487ms 200 application/javascript +2018-07-14 23:37:49.313 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-07-14 23:37:49.313 +03:00 [INF] Request finished in 2.2443ms 200 application/javascript +2018-07-14 23:37:49.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-14 23:37:49.317 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-07-14 23:37:49.317 +03:00 [INF] Request finished in 0.965ms 200 application/javascript +2018-07-14 23:37:49.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-14 23:37:49.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-14 23:37:49.329 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-07-14 23:37:49.329 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-07-14 23:37:49.330 +03:00 [INF] Request finished in 1.5497ms 200 application/javascript +2018-07-14 23:37:49.329 +03:00 [INF] Request finished in 6.4687ms 200 application/javascript +2018-07-14 23:37:49.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-14 23:37:49.331 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-07-14 23:37:49.332 +03:00 [INF] Request finished in 1.0505ms 200 application/javascript +2018-07-14 23:37:49.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-14 23:37:49.373 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-07-14 23:37:49.374 +03:00 [INF] Request finished in 2.5318ms 200 application/javascript +2018-07-14 23:37:49.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-14 23:37:49.386 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-07-14 23:37:49.387 +03:00 [INF] Request finished in 10.0608ms 200 application/javascript +2018-07-14 23:37:49.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-14 23:37:49.400 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-07-14 23:37:49.401 +03:00 [INF] Request finished in 1.6633ms 200 application/javascript +2018-07-14 23:37:49.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-14 23:37:49.415 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-07-14 23:37:49.415 +03:00 [INF] Request finished in 1.0206ms 200 application/javascript +2018-07-14 23:37:49.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-14 23:37:49.428 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-07-14 23:37:49.428 +03:00 [INF] Request finished in 1.3084ms 200 application/javascript +2018-07-14 23:37:49.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-14 23:37:49.433 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-07-14 23:37:49.433 +03:00 [INF] Request finished in 1.2847ms 200 application/javascript +2018-07-14 23:37:49.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-14 23:37:49.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-14 23:37:49.437 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-07-14 23:37:49.437 +03:00 [INF] Request finished in 1.557ms 200 application/javascript +2018-07-14 23:37:49.438 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-07-14 23:37:49.438 +03:00 [INF] Request finished in 1.2397ms 200 application/javascript +2018-07-14 23:37:49.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-14 23:37:49.439 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-07-14 23:37:49.439 +03:00 [INF] Request finished in 1.1251ms 200 application/javascript +2018-07-14 23:37:49.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-14 23:37:49.440 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-07-14 23:37:49.440 +03:00 [INF] Request finished in 1.1145ms 200 application/javascript +2018-07-14 23:37:49.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-14 23:37:49.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-14 23:37:49.446 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-07-14 23:37:49.446 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-07-14 23:37:49.446 +03:00 [INF] Request finished in 1.8452ms 200 application/javascript +2018-07-14 23:37:49.446 +03:00 [INF] Request finished in 0.8858ms 200 application/javascript +2018-07-14 23:37:49.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-14 23:37:49.448 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:49.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-14 23:37:49.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-14 23:37:49.449 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-14 23:37:49.449 +03:00 [INF] Request finished in 0.903ms 200 application/javascript +2018-07-14 23:37:49.449 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-14 23:37:49.450 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.458ms. +2018-07-14 23:37:49.450 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:49.450 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1619ms +2018-07-14 23:37:49.450 +03:00 [INF] Request finished in 3.2827ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:49.450 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-07-14 23:37:49.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-14 23:37:49.450 +03:00 [INF] Request finished in 1.3238ms 200 application/javascript +2018-07-14 23:37:49.451 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-14 23:37:49.453 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-14 23:37:49.453 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1279ms. +2018-07-14 23:37:49.454 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-14 23:37:49.454 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.8160000000000003ms +2018-07-14 23:37:49.454 +03:00 [INF] Request finished in 4.0365ms 200 text/plain; charset=utf-8 +2018-07-14 23:37:49.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-14 23:37:49.630 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-07-14 23:37:49.630 +03:00 [INF] Request finished in 2.4286ms 200 font/woff2 +2018-07-14 23:38:13.333 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 311 +2018-07-14 23:38:13.334 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-14 23:38:13.370 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-14 23:39:05.737 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 23:39:05.833 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-14 23:39:05.855 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'LanguageManagement.zip' ... +2018-07-14 23:39:05.875 +03:00 [INF] Executed action /Templates in 52540.337700000004ms +2018-07-14 23:39:05.878 +03:00 [INF] Request finished in 52545.2262ms 200 application/zip +2018-07-15 15:36:17.524 +03:00 [INF] Loaded modules: +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-15 15:36:17.541 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-15 15:36:17.542 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-15 15:36:17.543 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-15 15:36:18.053 +03:00 [INF] Initialized all modules. +2018-07-15 15:36:18.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-15 15:36:20.759 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-15 15:36:20.776 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:36:22.560 +03:00 [INF] Executed action /Index in 1794.3045000000002ms +2018-07-15 15:36:22.568 +03:00 [INF] Request finished in 4335.3836ms 200 text/html; charset=utf-8 +2018-07-15 15:36:22.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-15 15:36:22.740 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-15 15:36:22.745 +03:00 [INF] Request finished in 49.829ms 200 text/css +2018-07-15 15:36:22.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-15 15:36:22.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-15 15:36:22.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-15 15:36:22.816 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-07-15 15:36:22.819 +03:00 [INF] Request finished in 4.5921ms 304 font/woff2 +2018-07-15 15:36:22.833 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:36:22.846 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:36:22.888 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-15 15:36:22.890 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-15 15:36:22.921 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 27.6127ms. +2018-07-15 15:36:22.935 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:36:22.936 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 103.02770000000001ms +2018-07-15 15:36:22.936 +03:00 [INF] Request finished in 124.4929ms 200 text/plain; charset=utf-8 +2018-07-15 15:36:22.941 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 50.6531ms. +2018-07-15 15:36:22.942 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:36:22.942 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 96.045200000000008ms +2018-07-15 15:36:22.942 +03:00 [INF] Request finished in 130.2238ms 200 text/plain; charset=utf-8 +2018-07-15 15:36:23.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-15 15:36:23.932 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-15 15:36:23.932 +03:00 [INF] Request finished in 1.8485ms 200 text/css +2018-07-15 15:36:23.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-15 15:36:23.974 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-15 15:36:23.974 +03:00 [INF] Request finished in 1.5898ms 200 text/css +2018-07-15 15:36:24.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-15 15:36:24.006 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-15 15:36:24.006 +03:00 [INF] Request finished in 5.3381ms 200 text/css +2018-07-15 15:36:24.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-07-15 15:36:24.299 +03:00 [INF] Request finished in 1.4421ms 404 +2018-07-15 15:36:24.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-15 15:36:24.751 +03:00 [INF] Request finished in 0.914ms 404 +2018-07-15 15:36:24.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-15 15:36:25.271 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:36:25.326 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:36:25.381 +03:00 [INF] Executed action /Templates in 109.86380000000001ms +2018-07-15 15:36:25.381 +03:00 [INF] Request finished in 425.7591ms 200 text/html; charset=utf-8 +2018-07-15 15:36:25.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-15 15:36:25.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-15 15:36:25.424 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-07-15 15:36:25.424 +03:00 [INF] Request finished in 1.7437ms 200 text/css +2018-07-15 15:36:25.426 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-15 15:36:25.426 +03:00 [INF] Request finished in 3.8191ms 200 text/css +2018-07-15 15:36:25.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-15 15:36:25.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-15 15:36:25.442 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-07-15 15:36:25.442 +03:00 [INF] Request finished in 2.378ms 200 text/css +2018-07-15 15:36:25.443 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-07-15 15:36:25.443 +03:00 [INF] Request finished in 3.2402ms 200 text/css +2018-07-15 15:36:25.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-15 15:36:25.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-15 15:36:25.445 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-07-15 15:36:25.445 +03:00 [INF] Request finished in 2.5269ms 200 text/css +2018-07-15 15:36:25.446 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-07-15 15:36:25.446 +03:00 [INF] Request finished in 1.2109ms 200 text/css +2018-07-15 15:36:25.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-15 15:36:25.458 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-15 15:36:25.458 +03:00 [INF] Request finished in 1.451ms 200 text/css +2018-07-15 15:36:25.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-15 15:36:25.460 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-15 15:36:25.460 +03:00 [INF] Request finished in 1.3891ms 200 text/css +2018-07-15 15:36:25.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-15 15:36:25.468 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-07-15 15:36:25.469 +03:00 [INF] Request finished in 1.5666ms 200 application/javascript +2018-07-15 15:36:25.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-15 15:36:25.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-15 15:36:25.483 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-07-15 15:36:25.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-15 15:36:25.483 +03:00 [INF] Request finished in 1.8391ms 200 application/javascript +2018-07-15 15:36:25.489 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-07-15 15:36:25.489 +03:00 [INF] Request finished in 10.6902ms 200 application/javascript +2018-07-15 15:36:25.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-15 15:36:25.495 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-07-15 15:36:25.496 +03:00 [INF] Request finished in 12.5023ms 200 application/javascript +2018-07-15 15:36:25.496 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-07-15 15:36:25.496 +03:00 [INF] Request finished in 6.7104ms 200 application/javascript +2018-07-15 15:36:25.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-15 15:36:25.516 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-07-15 15:36:25.516 +03:00 [INF] Request finished in 2.6801ms 200 application/javascript +2018-07-15 15:36:25.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-15 15:36:25.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-15 15:36:25.527 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-07-15 15:36:25.527 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-07-15 15:36:25.528 +03:00 [INF] Request finished in 3.4951ms 200 application/javascript +2018-07-15 15:36:25.528 +03:00 [INF] Request finished in 3.5936ms 200 application/javascript +2018-07-15 15:36:25.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-15 15:36:25.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-15 15:36:25.548 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-07-15 15:36:25.548 +03:00 [INF] Request finished in 11.3479ms 200 application/javascript +2018-07-15 15:36:25.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-15 15:36:25.555 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-07-15 15:36:25.556 +03:00 [INF] Request finished in 5.3343ms 200 application/javascript +2018-07-15 15:36:25.558 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-07-15 15:36:25.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-15 15:36:25.560 +03:00 [INF] Request finished in 23.2743ms 200 application/javascript +2018-07-15 15:36:25.561 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-07-15 15:36:25.561 +03:00 [INF] Request finished in 2.7228ms 200 application/javascript +2018-07-15 15:36:25.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-15 15:36:25.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-15 15:36:25.568 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-07-15 15:36:25.568 +03:00 [INF] Request finished in 1.6697ms 200 application/javascript +2018-07-15 15:36:25.568 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-07-15 15:36:25.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-15 15:36:25.570 +03:00 [INF] Request finished in 3.2976ms 200 application/javascript +2018-07-15 15:36:25.571 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-07-15 15:36:25.571 +03:00 [INF] Request finished in 2.0643ms 200 application/javascript +2018-07-15 15:36:25.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-15 15:36:25.573 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-07-15 15:36:25.573 +03:00 [INF] Request finished in 1.5498ms 200 application/javascript +2018-07-15 15:36:25.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-15 15:36:25.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-07-15 15:36:25.576 +03:00 [INF] Request finished in 1.6759ms 200 application/javascript +2018-07-15 15:36:25.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-15 15:36:25.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-15 15:36:25.582 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-07-15 15:36:25.582 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-07-15 15:36:25.582 +03:00 [INF] Request finished in 1.166ms 200 application/javascript +2018-07-15 15:36:25.582 +03:00 [INF] Request finished in 0.9361ms 200 application/javascript +2018-07-15 15:36:25.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-15 15:36:25.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-15 15:36:25.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-07-15 15:36:25.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-07-15 15:36:25.585 +03:00 [INF] Request finished in 1.1445ms 200 application/javascript +2018-07-15 15:36:25.585 +03:00 [INF] Request finished in 0.978ms 200 application/javascript +2018-07-15 15:36:25.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-15 15:36:25.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-15 15:36:25.596 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:36:25.596 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:36:25.597 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-15 15:36:25.598 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-15 15:36:25.598 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2093ms. +2018-07-15 15:36:25.598 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:36:25.598 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.68980000000000008ms. +2018-07-15 15:36:25.598 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6896ms +2018-07-15 15:36:25.598 +03:00 [INF] Request finished in 2.9457ms 200 text/plain; charset=utf-8 +2018-07-15 15:36:25.598 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:36:25.599 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.9988000000000001ms +2018-07-15 15:36:25.599 +03:00 [INF] Request finished in 8.5761ms 200 text/plain; charset=utf-8 +2018-07-15 15:36:25.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-15 15:36:25.619 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-15 15:36:25.619 +03:00 [INF] Request finished in 0.8293ms 200 application/javascript +2018-07-15 15:36:25.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-15 15:36:25.699 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-07-15 15:36:25.699 +03:00 [INF] Request finished in 3.3093ms 200 font/woff2 +2018-07-15 15:36:26.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-07-15 15:36:26.131 +03:00 [INF] Request finished in 0.6435ms 404 +2018-07-15 15:36:29.979 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-15 15:36:29.980 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:36:30.026 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-15 15:36:52.011 +03:00 [INF] Executed action /Templates in 22030.259400000003ms +2018-07-15 15:36:52.046 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 13 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-15 15:36:52.086 +03:00 [INF] Request finished in 22108.124ms 500 text/html; charset=utf-8 +2018-07-15 15:38:09.508 +03:00 [INF] Loaded modules: +2018-07-15 15:38:09.527 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-15 15:38:09.530 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-15 15:38:09.532 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-15 15:38:09.556 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-15 15:38:09.560 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-15 15:38:09.563 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-15 15:38:09.566 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-15 15:38:09.589 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-15 15:38:09.592 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-15 15:38:09.595 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-15 15:38:09.598 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-15 15:38:09.601 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-15 15:38:09.604 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-15 15:38:09.607 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-15 15:38:09.611 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-15 15:38:09.614 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-15 15:38:09.616 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-15 15:38:09.619 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-15 15:38:09.622 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-15 15:38:09.626 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-15 15:38:09.629 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-15 15:38:09.631 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-15 15:38:09.633 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-15 15:38:09.636 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-15 15:38:09.639 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-15 15:38:09.642 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-15 15:38:09.646 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-15 15:38:09.649 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-15 15:38:09.652 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-15 15:38:09.655 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-15 15:38:09.659 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-15 15:38:09.662 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-15 15:38:09.666 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-15 15:38:09.668 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-15 15:38:09.672 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-15 15:38:09.675 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-15 15:38:09.679 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-15 15:38:09.682 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-15 15:38:09.685 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-15 15:38:09.687 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-15 15:38:09.689 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-15 15:38:09.691 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-15 15:38:09.693 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-15 15:38:09.695 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-15 15:38:09.697 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-15 15:38:09.700 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-15 15:38:09.702 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-15 15:38:09.705 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-15 15:38:09.708 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-15 15:38:10.382 +03:00 [INF] Initialized all modules. +2018-07-15 15:38:10.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-15 15:38:10.831 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-15 15:38:10.898 +03:00 [INF] Request finished in 49.6705ms 200 +2018-07-15 15:38:13.632 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-15 15:38:13.653 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:38:15.941 +03:00 [INF] Executed action /Index in 2300.0758ms +2018-07-15 15:38:15.955 +03:00 [INF] Request finished in 5128.695ms 200 text/html; charset=utf-8 +2018-07-15 15:38:16.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-15 15:38:16.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-15 15:38:16.080 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:38:16.101 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:38:16.326 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-15 15:38:16.328 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-15 15:38:16.377 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 42.3402ms. +2018-07-15 15:38:16.399 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:38:16.403 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 319.60450000000003ms +2018-07-15 15:38:16.408 +03:00 [INF] Request finished in 361.0908ms 200 text/plain; charset=utf-8 +2018-07-15 15:38:16.417 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 85.9869ms. +2018-07-15 15:38:16.422 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:38:16.424 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 319.9282ms +2018-07-15 15:38:16.427 +03:00 [INF] Request finished in 379.4768ms 200 text/plain; charset=utf-8 +2018-07-15 15:38:17.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-15 15:38:17.590 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:38:17.809 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:38:17.907 +03:00 [INF] Executed action /Templates in 313.593ms +2018-07-15 15:38:17.910 +03:00 [INF] Request finished in 609.2069ms 200 text/html; charset=utf-8 +2018-07-15 15:38:18.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-15 15:38:18.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-15 15:38:18.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-15 15:38:18.139 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:38:18.181 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-15 15:38:18.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.268ms. +2018-07-15 15:38:18.188 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:38:18.191 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 49.3329ms +2018-07-15 15:38:18.194 +03:00 [INF] Request finished in 66.8628ms 200 text/plain; charset=utf-8 +2018-07-15 15:38:18.196 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-15 15:38:18.226 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-15 15:38:18.229 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-15 15:38:18.232 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.6260000000000003ms. +2018-07-15 15:38:18.233 +03:00 [INF] Request finished in 99.6841ms 200 application/javascript +2018-07-15 15:38:18.235 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-15 15:38:18.238 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 39.075500000000005ms +2018-07-15 15:38:18.241 +03:00 [INF] Request finished in 117.7781ms 200 text/plain; charset=utf-8 +2018-07-15 15:38:22.609 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-15 15:38:22.613 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:38:22.656 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-15 15:38:25.963 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-15 15:38:26.217 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-15 15:38:26.248 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-15 15:38:26.305 +03:00 [INF] Executed action /Templates in 3687.9729ms +2018-07-15 15:38:26.316 +03:00 [INF] Request finished in 3706.658ms 200 application/zip +2018-07-15 15:42:20.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636634793200460021 +2018-07-15 15:42:20.152 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-15 15:42:20.155 +03:00 [INF] Request finished in 22.7044ms 200 text/css +2018-07-15 15:42:20.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-15 15:42:20.188 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-15 15:42:20.191 +03:00 [INF] Request finished in 26.7526ms 200 text/css +2018-07-15 15:42:20.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-15 15:42:20.202 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-15 15:42:20.206 +03:00 [INF] Request finished in 11.5993ms 200 text/css +2018-07-15 15:42:20.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-07-15 15:42:20.524 +03:00 [INF] Request finished in 8.7868ms 404 +2018-07-15 15:42:39.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-15 15:42:39.503 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:42:39.511 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:42:39.523 +03:00 [INF] Executed action /Templates in 16.5391ms +2018-07-15 15:42:39.530 +03:00 [INF] Request finished in 29.5979ms 200 text/html; charset=utf-8 +2018-07-15 15:42:41.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-15 15:42:41.885 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-15 15:42:41.889 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-15 15:42:41.957 +03:00 [INF] Executed action /Templates in 10.818900000000001ms +2018-07-15 15:42:41.962 +03:00 [INF] Request finished in 83.8554ms 200 text/html; charset=utf-8 +2018-07-16 14:18:58.151 +03:00 [INF] Loaded modules: +2018-07-16 14:18:58.172 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:18:58.174 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:18:58.176 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:18:58.179 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:18:58.181 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:18:58.183 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:18:58.185 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:18:58.187 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:18:58.189 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:18:58.191 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:18:58.196 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:18:58.198 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:18:58.200 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:18:58.202 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:18:58.203 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:18:58.205 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:18:58.207 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:18:58.211 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:18:58.214 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:18:58.216 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:18:58.218 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:18:58.220 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:18:58.221 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:18:58.223 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:18:58.225 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:18:58.229 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:18:58.232 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:18:58.233 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:18:58.235 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:18:58.237 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:18:58.239 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:18:58.241 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:18:58.243 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:18:58.245 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:18:58.246 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:18:58.248 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:18:58.250 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:18:58.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:18:58.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:18:58.256 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:18:58.258 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:18:58.260 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:18:58.263 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:18:58.266 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:18:58.267 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:18:58.269 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:18:58.271 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:18:58.272 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:18:58.275 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:18:58.873 +03:00 [INF] Initialized all modules. +2018-07-16 14:18:59.248 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:18:59.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:18:59.316 +03:00 [INF] Request finished in 52.5691ms 200 +2018-07-16 14:19:02.220 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:19:02.242 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:19:04.455 +03:00 [INF] Executed action /Index in 2227.482ms +2018-07-16 14:19:04.469 +03:00 [INF] Request finished in 5228.7038ms 200 text/html; charset=utf-8 +2018-07-16 14:19:04.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-16 14:19:04.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-16 14:19:04.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:19:04.552 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-16 14:19:04.566 +03:00 [INF] Request finished in 39.0586ms 304 text/css +2018-07-16 14:19:04.574 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-16 14:19:04.638 +03:00 [INF] Request finished in 50.6599ms 200 text/css +2018-07-16 14:19:04.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-16 14:19:04.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:19:04.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:19:04.674 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-16 14:19:04.679 +03:00 [INF] Request finished in 42.1642ms 304 application/javascript +2018-07-16 14:19:04.682 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-16 14:19:04.697 +03:00 [INF] Request finished in 190.0727ms 0 text/css +2018-07-16 14:19:04.713 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:19:04.729 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:19:04.951 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:19:04.953 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:19:04.993 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 33.1816ms. +2018-07-16 14:19:05.015 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:19:05.019 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 302.7201ms +2018-07-16 14:19:05.022 +03:00 [INF] Request finished in 376.9776ms 200 text/plain; charset=utf-8 +2018-07-16 14:19:05.030 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 73.328ms. +2018-07-16 14:19:05.033 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:19:05.036 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 304.9306ms +2018-07-16 14:19:05.042 +03:00 [INF] Request finished in 404.4195ms 200 text/plain; charset=utf-8 +2018-07-16 14:19:05.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-16 14:19:05.836 +03:00 [INF] Request finished in 7.3695ms 404 +2018-07-16 14:19:10.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:19:10.874 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:19:11.049 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:19:11.120 +03:00 [INF] Executed action /Templates in 243.32250000000002ms +2018-07-16 14:19:11.124 +03:00 [INF] Request finished in 600.6372ms 200 text/html; charset=utf-8 +2018-07-16 14:19:11.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:19:11.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:19:11.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-16 14:19:11.238 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:19:11.276 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-16 14:19:11.280 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:19:11.285 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:19:11.286 +03:00 [INF] Request finished in 47.878ms 200 application/javascript +2018-07-16 14:19:11.290 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.1024000000000003ms. +2018-07-16 14:19:11.332 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:19:11.336 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:19:11.338 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 95.1594ms +2018-07-16 14:19:11.346 +03:00 [INF] Request finished in 115.972ms 200 text/plain; charset=utf-8 +2018-07-16 14:19:11.347 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.3685ms. +2018-07-16 14:19:11.349 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:19:11.353 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 67.7684ms +2018-07-16 14:19:11.356 +03:00 [INF] Request finished in 124.1388ms 200 text/plain; charset=utf-8 +2018-07-16 14:19:15.282 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 275 +2018-07-16 14:19:15.287 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:19:15.333 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:19:34.943 +03:00 [INF] Executed action /Templates in 19652.035200000002ms +2018-07-16 14:19:34.994 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find solution file: MyCompanyName.MyProjectName.sln + at Volo.Utils.SolutionTemplating.Building.Steps.RemoveProjectFromSolutionStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\RemoveProjectFromSolutionStep.cs:line 29 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:19:35.038 +03:00 [INF] Request finished in 19755.9739ms 500 text/html; charset=utf-8 +2018-07-16 14:20:51.859 +03:00 [INF] Loaded modules: +2018-07-16 14:20:51.878 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:20:51.880 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:20:51.882 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:20:51.884 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:20:51.887 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:20:51.889 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:20:51.892 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:20:51.894 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:20:51.897 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:20:51.900 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:20:51.902 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:20:51.905 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:20:51.907 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:20:51.909 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:20:51.913 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:20:51.916 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:20:51.918 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:20:51.921 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:20:51.923 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:20:51.926 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:20:51.929 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:20:51.931 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:20:51.933 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:20:51.936 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:20:51.938 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:20:51.941 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:20:51.944 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:20:51.947 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:20:51.949 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:20:51.951 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:20:51.954 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:20:51.957 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:20:51.960 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:20:51.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:20:51.965 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:20:51.968 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:20:51.970 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:20:51.972 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:20:51.975 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:20:51.977 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:20:51.980 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:20:51.982 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:20:51.984 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:20:51.986 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:20:51.989 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:20:51.991 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:20:51.994 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:20:51.996 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:20:51.998 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:20:52.616 +03:00 [INF] Initialized all modules. +2018-07-16 14:20:53.005 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:20:53.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:20:53.084 +03:00 [INF] Request finished in 55.3626ms 200 +2018-07-16 14:20:56.018 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:20:56.046 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:20:58.379 +03:00 [INF] Executed action /Index in 2353.6059ms +2018-07-16 14:20:58.389 +03:00 [INF] Request finished in 5393.2234ms 200 text/html; charset=utf-8 +2018-07-16 14:20:58.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:20:58.455 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:20:58.463 +03:00 [INF] Request finished in 20.9992ms 304 text/css +2018-07-16 14:20:58.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:20:58.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:20:58.519 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:20:58.545 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:20:58.760 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:20:58.762 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:20:58.812 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 43.2513ms. +2018-07-16 14:20:58.833 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:20:58.838 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 315.5111ms +2018-07-16 14:20:58.845 +03:00 [INF] Request finished in 353.4129ms 200 text/plain; charset=utf-8 +2018-07-16 14:20:58.856 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 90.3991ms. +2018-07-16 14:20:58.861 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:20:58.864 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 316.75280000000004ms +2018-07-16 14:20:58.868 +03:00 [INF] Request finished in 377.328ms 200 text/plain; charset=utf-8 +2018-07-16 14:21:00.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:21:00.453 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:21:00.654 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:21:00.710 +03:00 [INF] Executed action /Templates in 253.3075ms +2018-07-16 14:21:00.714 +03:00 [INF] Request finished in 552.3313ms 200 text/html; charset=utf-8 +2018-07-16 14:21:00.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:21:00.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:21:00.817 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:21:00.863 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:21:00.867 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.19340000000000002ms. +2018-07-16 14:21:00.871 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:21:00.873 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:21:00.877 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 54.672200000000004ms +2018-07-16 14:21:00.881 +03:00 [INF] Request finished in 68.0156ms 200 text/plain; charset=utf-8 +2018-07-16 14:21:00.911 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:21:00.914 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.87420000000000009ms. +2018-07-16 14:21:00.918 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:21:00.920 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 43.347300000000004ms +2018-07-16 14:21:00.924 +03:00 [INF] Request finished in 115.5314ms 200 text/plain; charset=utf-8 +2018-07-16 14:21:08.309 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:21:08.314 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:21:08.351 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:21:35.502 +03:00 [INF] Executed action /Templates in 27185.3789ms +2018-07-16 14:21:35.555 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 13 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:21:35.607 +03:00 [INF] Request finished in 27295.939ms 500 text/html; charset=utf-8 +2018-07-16 14:22:47.403 +03:00 [INF] Loaded modules: +2018-07-16 14:22:47.424 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:22:47.427 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:22:47.430 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:22:47.432 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:22:47.434 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:22:47.436 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:22:47.438 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:22:47.440 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:22:47.442 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:22:47.445 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:22:47.448 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:22:47.450 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:22:47.452 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:22:47.454 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:22:47.456 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:22:47.458 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:22:47.461 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:22:47.464 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:22:47.466 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:22:47.468 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:22:47.471 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:22:47.473 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:22:47.475 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:22:47.480 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:22:47.483 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:22:47.486 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:22:47.489 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:22:47.491 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:22:47.493 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:22:47.497 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:22:47.500 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:22:47.502 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:22:47.504 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:22:47.506 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:22:47.508 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:22:47.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:22:47.514 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:22:47.516 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:22:47.518 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:22:47.520 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:22:47.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:22:47.524 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:22:47.527 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:22:47.529 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:22:47.531 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:22:47.533 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:22:47.536 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:22:47.538 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:22:47.541 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:22:48.301 +03:00 [INF] Initialized all modules. +2018-07-16 14:22:48.801 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:22:48.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:22:48.867 +03:00 [INF] Request finished in 60.9139ms 200 +2018-07-16 14:22:51.693 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:22:51.723 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:22:54.112 +03:00 [INF] Executed action /Index in 2410.15ms +2018-07-16 14:22:54.127 +03:00 [INF] Request finished in 5332.795ms 200 text/html; charset=utf-8 +2018-07-16 14:22:54.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:22:54.211 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:22:54.220 +03:00 [INF] Request finished in 37.553ms 304 text/css +2018-07-16 14:22:54.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:22:54.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:22:54.271 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:22:54.289 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:22:54.520 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:22:54.522 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:22:54.564 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 34.465ms. +2018-07-16 14:22:54.587 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:22:54.592 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 317.4657ms +2018-07-16 14:22:54.600 +03:00 [INF] Request finished in 362.0588ms 200 text/plain; charset=utf-8 +2018-07-16 14:22:54.624 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.8447ms. +2018-07-16 14:22:54.628 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:22:54.631 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 338.74580000000003ms +2018-07-16 14:22:54.636 +03:00 [INF] Request finished in 399.8016ms 200 text/plain; charset=utf-8 +2018-07-16 14:22:56.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:22:56.389 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:22:56.564 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:22:56.628 +03:00 [INF] Executed action /Templates in 236.42200000000003ms +2018-07-16 14:22:56.631 +03:00 [INF] Request finished in 571.7072ms 200 text/html; charset=utf-8 +2018-07-16 14:22:56.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:22:56.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:22:56.747 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:22:56.797 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:22:56.800 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:22:56.802 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.7739ms. +2018-07-16 14:22:56.805 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:22:56.809 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 58.037400000000005ms +2018-07-16 14:22:56.843 +03:00 [INF] Request finished in 99.9286ms 200 text/plain; charset=utf-8 +2018-07-16 14:22:56.844 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:22:56.847 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6538ms. +2018-07-16 14:22:56.850 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:22:56.852 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 49.0077ms +2018-07-16 14:22:56.856 +03:00 [INF] Request finished in 117.5033ms 200 text/plain; charset=utf-8 +2018-07-16 14:23:01.195 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:23:01.199 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:23:01.241 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:23:31.312 +03:00 [INF] Executed action /Templates in 30107.754ms +2018-07-16 14:23:31.357 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 16 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:23:31.402 +03:00 [INF] Request finished in 30205.8892ms 500 text/html; charset=utf-8 +2018-07-16 14:24:06.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:24:06.054 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:24:06.059 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:06.107 +03:00 [INF] Executed action /Templates in 49.947700000000005ms +2018-07-16 14:24:06.119 +03:00 [INF] Request finished in 68.7166ms 200 text/html; charset=utf-8 +2018-07-16 14:24:07.369 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 261 +2018-07-16 14:24:07.372 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:24:07.378 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:07.386 +03:00 [INF] Executed action /Templates in 10.093300000000001ms +2018-07-16 14:24:07.394 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at Volo.Utils.SolutionTemplating.SolutionName.Parse(String fullName) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionName.cs:line 23 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 33 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:24:07.415 +03:00 [INF] Request finished in 58.0173ms 500 text/html; charset=utf-8 +2018-07-16 14:24:10.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:24:10.461 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:24:10.465 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:10.472 +03:00 [INF] Executed action /Templates in 7.8834ms +2018-07-16 14:24:10.475 +03:00 [INF] Request finished in 17.6085ms 200 text/html; charset=utf-8 +2018-07-16 14:24:11.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:24:11.440 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:24:11.450 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:11.465 +03:00 [INF] Executed action /Templates in 17.0148ms +2018-07-16 14:24:11.468 +03:00 [INF] Request finished in 36.4642ms 200 text/html; charset=utf-8 +2018-07-16 14:24:11.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-16 14:24:11.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-16 14:24:11.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-16 14:24:11.513 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-07-16 14:24:11.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-16 14:24:11.526 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-07-16 14:24:11.539 +03:00 [INF] Request finished in 19.8321ms 304 text/css +2018-07-16 14:24:11.543 +03:00 [INF] Request finished in 39.6496ms 304 text/css +2018-07-16 14:24:11.530 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-07-16 14:24:11.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-16 14:24:11.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-16 14:24:11.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:24:11.559 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-07-16 14:24:11.564 +03:00 [INF] Request finished in 54.112ms 304 text/css +2018-07-16 14:24:11.567 +03:00 [INF] Request finished in 26.0745ms 304 text/css +2018-07-16 14:24:11.572 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:24:11.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-16 14:24:11.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-16 14:24:11.579 +03:00 [INF] The file /styles/global.css was not modified +2018-07-16 14:24:11.583 +03:00 [INF] Request finished in 30.1497ms 304 text/css +2018-07-16 14:24:11.586 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-16 14:24:11.591 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-16 14:24:11.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-16 14:24:11.602 +03:00 [INF] Request finished in 19.3829ms 304 application/javascript +2018-07-16 14:24:11.604 +03:00 [INF] Request finished in 23.7269ms 304 application/javascript +2018-07-16 14:24:11.607 +03:00 [INF] Request finished in 41.7345ms 304 text/css +2018-07-16 14:24:11.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-16 14:24:11.614 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-16 14:24:11.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-16 14:24:11.621 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-16 14:24:11.623 +03:00 [INF] Request finished in 27.8712ms 304 application/javascript +2018-07-16 14:24:11.625 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-16 14:24:11.631 +03:00 [INF] Request finished in 20.0454ms 304 application/javascript +2018-07-16 14:24:11.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-16 14:24:11.637 +03:00 [INF] Request finished in 20.6294ms 304 application/javascript +2018-07-16 14:24:11.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-16 14:24:11.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-16 14:24:11.656 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-16 14:24:11.659 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-16 14:24:11.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-16 14:24:11.668 +03:00 [INF] Request finished in 33.4106ms 304 application/javascript +2018-07-16 14:24:11.669 +03:00 [INF] Request finished in 27.203ms 304 application/javascript +2018-07-16 14:24:11.672 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-16 14:24:11.676 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-16 14:24:11.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-16 14:24:11.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-16 14:24:11.687 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-16 14:24:11.689 +03:00 [INF] Request finished in 39.473ms 304 application/javascript +2018-07-16 14:24:11.697 +03:00 [INF] Request finished in 64.6068ms 304 application/javascript +2018-07-16 14:24:11.700 +03:00 [INF] Request finished in 17.6171ms 304 application/javascript +2018-07-16 14:24:11.702 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-16 14:24:11.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-16 14:24:11.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-16 14:24:11.712 +03:00 [INF] Request finished in 32.8719ms 304 application/javascript +2018-07-16 14:24:11.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-16 14:24:11.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636634793200502732 +2018-07-16 14:24:11.720 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-16 14:24:11.722 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-16 14:24:11.728 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-16 14:24:11.732 +03:00 [INF] Request finished in 19.5094ms 304 application/javascript +2018-07-16 14:24:11.735 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-07-16 14:24:11.740 +03:00 [INF] Request finished in 32.7495ms 304 application/javascript +2018-07-16 14:24:11.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-16 14:24:11.745 +03:00 [INF] Request finished in 27.6665ms 304 application/javascript +2018-07-16 14:24:11.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-16 14:24:11.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-16 14:24:11.753 +03:00 [INF] Request finished in 31.3595ms 304 application/javascript +2018-07-16 14:24:11.756 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-07-16 14:24:11.761 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-16 14:24:11.764 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-16 14:24:11.769 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-16 14:24:11.774 +03:00 [INF] Request finished in 21.67ms 304 application/javascript +2018-07-16 14:24:11.774 +03:00 [INF] Request finished in 27.718ms 304 application/javascript +2018-07-16 14:24:11.778 +03:00 [INF] Request finished in 23.0143ms 304 application/javascript +2018-07-16 14:24:11.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:24:11.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-16 14:24:11.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-16 14:24:11.790 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:24:11.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:24:11.796 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-16 14:24:11.800 +03:00 [INF] Request finished in 255.8886ms 304 text/css +2018-07-16 14:24:11.803 +03:00 [INF] Request finished in 43.3054ms 304 application/javascript +2018-07-16 14:24:11.806 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-07-16 14:24:11.809 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:24:11.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-16 14:24:11.815 +03:00 [INF] Request finished in 28.0854ms 304 application/javascript +2018-07-16 14:24:11.818 +03:00 [INF] The file /pages/templates.js was not modified +2018-07-16 14:24:11.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-16 14:24:11.826 +03:00 [INF] Request finished in 14.923ms 304 application/javascript +2018-07-16 14:24:11.851 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-16 14:24:11.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-16 14:24:11.879 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:24:11.882 +03:00 [INF] Request finished in 49.7467ms 304 application/javascript +2018-07-16 14:24:11.885 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:24:11.887 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-07-16 14:24:11.890 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.6342ms. +2018-07-16 14:24:11.897 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0047000000000001ms. +2018-07-16 14:24:11.899 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:24:11.902 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:24:11.906 +03:00 [INF] Request finished in 370.631ms 304 text/css +2018-07-16 14:24:11.907 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 92.8494ms +2018-07-16 14:24:11.911 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 111.3494ms +2018-07-16 14:24:11.917 +03:00 [INF] Request finished in 129.9277ms 200 text/plain; charset=utf-8 +2018-07-16 14:24:11.919 +03:00 [INF] Request finished in 138.0573ms 200 text/plain; charset=utf-8 +2018-07-16 14:24:14.568 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 275 +2018-07-16 14:24:14.571 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:24:14.576 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:17.135 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:24:17.402 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:24:17.436 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-16 14:24:17.493 +03:00 [INF] Executed action /Templates in 2917.9072ms +2018-07-16 14:24:17.509 +03:00 [INF] Request finished in 2939.7837ms 200 application/zip +2018-07-16 14:24:51.558 +03:00 [INF] Loaded modules: +2018-07-16 14:24:51.577 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:24:51.579 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:24:51.581 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:24:51.583 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:24:51.585 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:24:51.587 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:24:51.589 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:24:51.592 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:24:51.595 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:24:51.597 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:24:51.599 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:24:51.602 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:24:51.604 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:24:51.606 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:24:51.608 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:24:51.610 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:24:51.612 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:24:51.615 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:24:51.617 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:24:51.619 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:24:51.621 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:24:51.623 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:24:51.625 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:24:51.628 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:24:51.630 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:24:51.633 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:24:51.636 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:24:51.638 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:24:51.640 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:24:51.642 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:24:51.645 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:24:51.647 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:24:51.649 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:24:51.653 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:24:51.655 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:24:51.657 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:24:51.660 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:24:51.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:24:51.665 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:24:51.668 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:24:51.670 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:24:51.672 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:24:51.674 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:24:51.676 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:24:51.679 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:24:51.681 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:24:51.683 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:24:51.685 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:24:51.687 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:24:52.271 +03:00 [INF] Initialized all modules. +2018-07-16 14:24:52.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:24:52.758 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:24:52.816 +03:00 [INF] Request finished in 48.6305ms 200 +2018-07-16 14:24:55.573 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:24:55.595 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:24:57.857 +03:00 [INF] Executed action /Index in 2275.9979000000003ms +2018-07-16 14:24:57.870 +03:00 [INF] Request finished in 5116.1049ms 200 text/html; charset=utf-8 +2018-07-16 14:24:57.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:24:57.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:24:58.004 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:24:58.023 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:24:58.238 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:24:58.239 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:24:58.280 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 33.5857ms. +2018-07-16 14:24:58.303 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:24:58.308 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 301.3431ms +2018-07-16 14:24:58.312 +03:00 [INF] Request finished in 341.4075ms 200 text/plain; charset=utf-8 +2018-07-16 14:24:58.318 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 76.3087ms. +2018-07-16 14:24:58.321 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:24:58.324 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 298.3005ms +2018-07-16 14:24:58.329 +03:00 [INF] Request finished in 357.485ms 200 text/plain; charset=utf-8 +2018-07-16 14:25:00.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:25:00.437 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:25:00.642 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:25:00.703 +03:00 [INF] Executed action /Templates in 263.2345ms +2018-07-16 14:25:00.706 +03:00 [INF] Request finished in 560.4865ms 200 text/html; charset=utf-8 +2018-07-16 14:25:00.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:25:00.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:25:00.821 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:25:00.869 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:25:00.873 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:25:00.878 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.5713ms. +2018-07-16 14:25:00.883 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:25:00.915 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 61.8731ms +2018-07-16 14:25:00.922 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:25:00.922 +03:00 [INF] Request finished in 106.332ms 200 text/plain; charset=utf-8 +2018-07-16 14:25:00.925 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2106ms. +2018-07-16 14:25:00.929 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:25:00.932 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 56.013400000000004ms +2018-07-16 14:25:00.936 +03:00 [INF] Request finished in 117.2038ms 200 text/plain; charset=utf-8 +2018-07-16 14:25:07.108 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 249 +2018-07-16 14:25:07.111 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:25:07.153 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:25:07.175 +03:00 [INF] Executed action /Templates in 61.7723ms +2018-07-16 14:25:07.219 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at Volo.Utils.SolutionTemplating.SolutionName.Parse(String fullName) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionName.cs:line 23 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 33 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:25:07.256 +03:00 [INF] Request finished in 149.3263ms 500 text/html; charset=utf-8 +2018-07-16 14:25:16.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:25:16.414 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:25:16.417 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:25:16.424 +03:00 [INF] Executed action /Templates in 7.3481000000000005ms +2018-07-16 14:25:16.427 +03:00 [INF] Request finished in 16.8764ms 200 text/html; charset=utf-8 +2018-07-16 14:25:20.904 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:25:20.907 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:25:20.914 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:25:23.803 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:25:24.021 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:25:24.056 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-16 14:25:24.115 +03:00 [INF] Executed action /Templates in 3204.3647ms +2018-07-16 14:25:24.128 +03:00 [INF] Request finished in 3224.1409ms 200 application/zip +2018-07-16 14:25:34.511 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:25:34.516 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:25:34.522 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:25:35.754 +03:00 [INF] Executed action /Templates in 1234.787ms +2018-07-16 14:25:35.763 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 16 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:25:35.781 +03:00 [INF] Request finished in 1270.9776ms 500 text/html; charset=utf-8 +2018-07-16 14:27:53.723 +03:00 [INF] Loaded modules: +2018-07-16 14:27:53.741 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:27:53.744 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:27:53.746 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:27:53.748 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:27:53.750 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:27:53.752 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:27:53.753 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:27:53.755 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:27:53.757 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:27:53.759 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:27:53.761 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:27:53.763 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:27:53.765 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:27:53.767 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:27:53.770 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:27:53.772 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:27:53.774 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:27:53.776 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:27:53.779 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:27:53.781 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:27:53.783 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:27:53.785 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:27:53.787 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:27:53.789 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:27:53.791 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:27:53.793 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:27:53.796 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:27:53.798 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:27:53.800 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:27:53.802 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:27:53.804 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:27:53.806 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:27:53.808 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:27:53.812 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:27:53.814 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:27:53.816 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:27:53.819 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:27:53.820 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:27:53.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:27:53.824 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:27:53.826 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:27:53.829 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:27:53.831 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:27:53.833 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:27:53.834 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:27:53.836 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:27:53.838 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:27:53.840 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:27:53.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:27:54.405 +03:00 [INF] Initialized all modules. +2018-07-16 14:27:54.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:27:54.647 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:27:54.703 +03:00 [INF] Request finished in 42.5027ms 200 +2018-07-16 14:27:57.318 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:27:57.345 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:27:59.426 +03:00 [INF] Executed action /Index in 2100.6957ms +2018-07-16 14:27:59.439 +03:00 [INF] Request finished in 4798.4124ms 200 text/html; charset=utf-8 +2018-07-16 14:27:59.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:27:59.507 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:27:59.515 +03:00 [INF] Request finished in 21.367ms 304 text/css +2018-07-16 14:27:59.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:27:59.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:27:59.568 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:27:59.586 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:27:59.814 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:27:59.815 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:27:59.856 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 35.2838ms. +2018-07-16 14:27:59.880 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:27:59.885 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 313.309ms +2018-07-16 14:27:59.891 +03:00 [INF] Request finished in 350.4485ms 200 text/plain; charset=utf-8 +2018-07-16 14:27:59.900 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 82.577300000000008ms. +2018-07-16 14:27:59.914 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:27:59.916 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 327.5536ms +2018-07-16 14:27:59.919 +03:00 [INF] Request finished in 379.4929ms 200 text/plain; charset=utf-8 +2018-07-16 14:28:01.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:28:01.484 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:28:01.658 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:28:01.717 +03:00 [INF] Executed action /Templates in 229.6378ms +2018-07-16 14:28:01.720 +03:00 [INF] Request finished in 516.5143ms 200 text/html; charset=utf-8 +2018-07-16 14:28:01.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:28:01.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:28:01.838 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:28:01.873 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:28:01.874 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:28:01.877 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.2667000000000002ms. +2018-07-16 14:28:01.881 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:28:01.884 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 42.7455ms +2018-07-16 14:28:01.914 +03:00 [INF] Request finished in 55.7531ms 200 text/plain; charset=utf-8 +2018-07-16 14:28:01.916 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:28:01.918 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16570000000000001ms. +2018-07-16 14:28:01.921 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:28:01.923 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 47.0411ms +2018-07-16 14:28:01.926 +03:00 [INF] Request finished in 90.5411ms 200 text/plain; charset=utf-8 +2018-07-16 14:28:08.355 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 249 +2018-07-16 14:28:08.358 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:28:08.413 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:28:08.433 +03:00 [INF] Executed action /Templates in 72.0133ms +2018-07-16 14:28:08.473 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at Volo.Utils.SolutionTemplating.SolutionName.Parse(String fullName) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionName.cs:line 23 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 33 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:28:08.508 +03:00 [INF] Request finished in 152.8109ms 500 text/html; charset=utf-8 +2018-07-16 14:28:11.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:28:11.893 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:28:11.897 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:28:11.904 +03:00 [INF] Executed action /Templates in 8.0835ms +2018-07-16 14:28:11.907 +03:00 [INF] Request finished in 16.8483ms 200 text/html; charset=utf-8 +2018-07-16 14:28:15.402 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 266 +2018-07-16 14:28:15.405 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:28:15.410 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:28:17.789 +03:00 [INF] Executed action /Templates in 2380.9934000000003ms +2018-07-16 14:28:17.797 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 16 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:28:17.816 +03:00 [INF] Request finished in 2414.7166ms 500 text/html; charset=utf-8 +2018-07-16 14:28:59.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:28:59.742 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:28:59.749 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:28:59.756 +03:00 [INF] Executed action /Templates in 10.8895ms +2018-07-16 14:28:59.759 +03:00 [INF] Request finished in 20.9997ms 200 text/html; charset=utf-8 +2018-07-16 14:29:03.729 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:29:03.733 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:29:03.737 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:29:05.877 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:29:06.082 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:29:06.115 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-16 14:29:06.175 +03:00 [INF] Executed action /Templates in 2438.7598000000003ms +2018-07-16 14:29:06.188 +03:00 [INF] Request finished in 2459.7054ms 200 application/zip +2018-07-16 14:29:11.616 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:29:11.620 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:29:11.625 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:29:12.779 +03:00 [INF] Executed action /Templates in 1154.1258ms +2018-07-16 14:29:12.787 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: src/MyCompanyName.MyProjectName.Web/MyCompanyName.MyProjectName.Web.csproj + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 16 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.ChangeProjectReference(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 17 + at Volo.Utils.SolutionTemplating.Building.Steps.SwitchEntityFrameworkCoreToMongoDbStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\SwitchEntityFrameworkCoreToMongoDbStep.cs:line 11 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:29:12.805 +03:00 [INF] Request finished in 1189.0406ms 500 text/html; charset=utf-8 +2018-07-16 14:29:15.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:29:15.600 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:29:15.604 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:29:15.611 +03:00 [INF] Executed action /Templates in 7.9846ms +2018-07-16 14:29:15.614 +03:00 [INF] Request finished in 18.3156ms 200 text/html; charset=utf-8 +2018-07-16 14:32:56.908 +03:00 [INF] Loaded modules: +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:32:56.925 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:32:56.926 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:32:57.350 +03:00 [INF] Initialized all modules. +2018-07-16 14:32:57.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:32:59.741 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:32:59.757 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:33:01.459 +03:00 [INF] Executed action /Index in 1712.9325000000001ms +2018-07-16 14:33:01.468 +03:00 [INF] Request finished in 3870.8836ms 200 text/html; charset=utf-8 +2018-07-16 14:33:01.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:33:01.535 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:33:01.544 +03:00 [INF] Request finished in 28.8213ms 304 text/css +2018-07-16 14:33:01.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:33:01.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:33:01.586 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:33:01.599 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:33:01.643 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:33:01.645 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:33:01.686 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 38.8753ms. +2018-07-16 14:33:01.702 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:33:01.703 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 117.2163ms +2018-07-16 14:33:01.704 +03:00 [INF] Request finished in 133.4081ms 200 text/plain; charset=utf-8 +2018-07-16 14:33:01.714 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 67.2589ms. +2018-07-16 14:33:01.714 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:33:01.714 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 114.70830000000001ms +2018-07-16 14:33:01.714 +03:00 [INF] Request finished in 141.8058ms 200 text/plain; charset=utf-8 +2018-07-16 14:33:03.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:33:04.104 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:33:04.173 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:33:04.224 +03:00 [INF] Executed action /Templates in 119.9047ms +2018-07-16 14:33:04.225 +03:00 [INF] Request finished in 403.9636ms 200 text/html; charset=utf-8 +2018-07-16 14:33:04.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:33:04.324 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:33:04.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:33:04.327 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:33:04.328 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8963000000000001ms. +2018-07-16 14:33:04.329 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:33:04.329 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.2096ms +2018-07-16 14:33:04.329 +03:00 [INF] Request finished in 6.1175ms 200 text/plain; charset=utf-8 +2018-07-16 14:33:04.330 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:33:04.332 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:33:04.332 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.24350000000000002ms. +2018-07-16 14:33:04.332 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:33:04.332 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0586ms +2018-07-16 14:33:04.332 +03:00 [INF] Request finished in 6.0146ms 200 text/plain; charset=utf-8 +2018-07-16 14:33:10.193 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:33:10.194 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:33:10.220 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:33:11.831 +03:00 [INF] Executed action /Templates in 1636.6392ms +2018-07-16 14:33:11.852 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.ApplicationException: Could not find file: MyCompanyName.MyProjectName.sln + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipelineStep.GetFile(ProjectBuildContext context, String filePath) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipelineStep.cs:line 16 + at Volo.Utils.SolutionTemplating.Building.Steps.RemoveProjectFromSolutionStep.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\Steps\RemoveProjectFromSolutionStep.cs:line 25 + at Volo.Utils.SolutionTemplating.Building.ProjectBuildPipeline.Execute(ProjectBuildContext context) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\Building\ProjectBuildPipeline.cs:line 16 + at Volo.Utils.SolutionTemplating.SolutionBuilder.BuildAsync(TemplateInfo template, String companyAndProjectName, DatabaseProvider databaseProvider, String version) in D:\Github\volo\abp\www\src\Volo.Utils.SolutionTemplating\Volo\Utils\SolutionTemplating\SolutionBuilder.cs:line 47 + at Volo.AbpWebSite.Pages.TemplatesModel.OnPostAsync() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Templates.cshtml.cs:line 43 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-07-16 14:33:11.887 +03:00 [INF] Request finished in 1694.0175ms 500 text/html; charset=utf-8 +2018-07-16 14:43:13.068 +03:00 [INF] Loaded modules: +2018-07-16 14:43:13.086 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-16 14:43:13.088 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-16 14:43:13.090 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-16 14:43:13.091 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-16 14:43:13.094 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-16 14:43:13.096 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-16 14:43:13.098 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-16 14:43:13.100 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-16 14:43:13.102 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-16 14:43:13.104 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-16 14:43:13.106 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-16 14:43:13.107 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-16 14:43:13.109 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-16 14:43:13.113 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-16 14:43:13.115 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-16 14:43:13.117 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-16 14:43:13.119 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-16 14:43:13.120 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-16 14:43:13.122 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-16 14:43:13.124 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-16 14:43:13.127 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-16 14:43:13.130 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-16 14:43:13.133 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-16 14:43:13.135 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-16 14:43:13.137 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-16 14:43:13.138 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-16 14:43:13.141 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-16 14:43:13.144 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-16 14:43:13.147 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-16 14:43:13.149 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-16 14:43:13.151 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-16 14:43:13.153 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-16 14:43:13.155 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-16 14:43:13.157 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-16 14:43:13.159 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-16 14:43:13.163 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-16 14:43:13.165 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-16 14:43:13.168 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-16 14:43:13.170 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-16 14:43:13.172 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-16 14:43:13.174 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-16 14:43:13.176 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-16 14:43:13.179 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-16 14:43:13.182 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-16 14:43:13.184 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-16 14:43:13.186 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-16 14:43:13.188 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-16 14:43:13.190 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-16 14:43:13.192 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-16 14:43:13.760 +03:00 [INF] Initialized all modules. +2018-07-16 14:43:14.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-16 14:43:14.068 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-07-16 14:43:14.129 +03:00 [INF] Request finished in 47.3735ms 200 +2018-07-16 14:43:16.757 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-16 14:43:16.781 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:43:18.894 +03:00 [INF] Executed action /Index in 2128.9416ms +2018-07-16 14:43:18.907 +03:00 [INF] Request finished in 4845.0318ms 200 text/html; charset=utf-8 +2018-07-16 14:43:18.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-16 14:43:18.986 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-16 14:43:19.000 +03:00 [INF] Request finished in 29.659ms 304 text/css +2018-07-16 14:43:19.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:43:19.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:43:19.056 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:43:19.073 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:43:19.309 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:43:19.311 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:43:19.362 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 44.591ms. +2018-07-16 14:43:19.389 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 73.8054ms. +2018-07-16 14:43:19.391 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:43:19.394 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:43:19.400 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 322.2656ms +2018-07-16 14:43:19.407 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 339.687ms +2018-07-16 14:43:19.408 +03:00 [INF] Request finished in 381.2762ms 200 text/plain; charset=utf-8 +2018-07-16 14:43:19.411 +03:00 [INF] Request finished in 390.038ms 200 text/plain; charset=utf-8 +2018-07-16 14:43:21.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-16 14:43:22.096 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:43:22.286 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-16 14:43:22.350 +03:00 [INF] Executed action /Templates in 249.9181ms +2018-07-16 14:43:22.353 +03:00 [INF] Request finished in 580.6684ms 200 text/html; charset=utf-8 +2018-07-16 14:43:22.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-16 14:43:22.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-16 14:43:22.474 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:43:22.515 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-16 14:43:22.518 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3512ms. +2018-07-16 14:43:22.521 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:43:22.526 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 47.3748ms +2018-07-16 14:43:22.528 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-16 14:43:22.531 +03:00 [INF] Request finished in 61.6125ms 200 text/plain; charset=utf-8 +2018-07-16 14:43:22.562 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-16 14:43:22.565 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.604ms. +2018-07-16 14:43:22.568 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-16 14:43:22.571 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 39.748000000000005ms +2018-07-16 14:43:22.574 +03:00 [INF] Request finished in 109.2539ms 200 text/plain; charset=utf-8 +2018-07-16 14:43:26.702 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:43:26.706 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:43:26.741 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:44:03.883 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:44:04.111 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:44:04.145 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-16 14:44:04.202 +03:00 [INF] Executed action /Templates in 37493.6509ms +2018-07-16 14:44:04.216 +03:00 [INF] Request finished in 37512.713ms 200 application/zip +2018-07-16 14:51:37.198 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 263 +2018-07-16 14:51:37.206 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-16 14:51:37.218 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-16 14:51:40.246 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:51:40.350 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-16 14:51:40.356 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'BookStore.zip' ... +2018-07-16 14:51:40.417 +03:00 [INF] Executed action /Templates in 3207.3726ms +2018-07-16 14:51:40.422 +03:00 [INF] Request finished in 3228.1777ms 200 application/zip +2018-07-17 11:26:00.172 +03:00 [INF] Loaded modules: +2018-07-17 11:26:00.187 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-17 11:26:00.187 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-17 11:26:00.187 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-17 11:26:00.188 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-17 11:26:00.189 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-17 11:26:00.726 +03:00 [INF] Initialized all modules. +2018-07-17 11:26:00.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-17 11:26:03.381 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-17 11:26:03.402 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-17 11:26:05.350 +03:00 [INF] Executed action /Index in 1963.9898ms +2018-07-17 11:26:05.358 +03:00 [INF] Request finished in 4386.966ms 200 text/html; charset=utf-8 +2018-07-17 11:26:05.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-17 11:26:05.475 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-17 11:26:05.486 +03:00 [INF] Request finished in 46.1098ms 200 text/css +2018-07-17 11:26:05.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-17 11:26:05.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-17 11:26:05.502 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:26:05.519 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:26:05.553 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-17 11:26:05.563 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-17 11:26:05.607 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 48.6158ms. +2018-07-17 11:26:05.623 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:26:05.624 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 121.215ms +2018-07-17 11:26:05.624 +03:00 [INF] Request finished in 137.6749ms 200 text/plain; charset=utf-8 +2018-07-17 11:26:05.630 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 65.3522ms. +2018-07-17 11:26:05.631 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:26:05.631 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 112.07780000000001ms +2018-07-17 11:26:05.632 +03:00 [INF] Request finished in 142.2636ms 200 text/plain; charset=utf-8 +2018-07-17 11:26:06.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-17 11:26:06.305 +03:00 [INF] Request finished in 2.844ms 404 +2018-07-17 11:26:12.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-17 11:26:12.452 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-17 11:26:12.509 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-17 11:26:12.570 +03:00 [INF] Executed action /Templates in 118.6029ms +2018-07-17 11:26:12.571 +03:00 [INF] Request finished in 459.0879ms 200 text/html; charset=utf-8 +2018-07-17 11:26:12.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-17 11:26:12.642 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-07-17 11:26:12.644 +03:00 [INF] Request finished in 8.6191ms 304 text/css +2018-07-17 11:26:12.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-17 11:26:12.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-17 11:26:12.695 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:26:12.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/templates.js?_v=636671974679966251 +2018-07-17 11:26:12.697 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-17 11:26:12.697 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2096ms. +2018-07-17 11:26:12.698 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:26:12.698 +03:00 [INF] Sending file. Request path: '/pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\pages\templates.js' +2018-07-17 11:26:12.698 +03:00 [INF] Request finished in 1.2866ms 200 application/javascript +2018-07-17 11:26:12.698 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.0538000000000003ms +2018-07-17 11:26:12.698 +03:00 [INF] Request finished in 5.3707ms 200 text/plain; charset=utf-8 +2018-07-17 11:26:12.701 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:26:12.702 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-17 11:26:12.703 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8696ms. +2018-07-17 11:26:12.703 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:26:12.704 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.5006ms +2018-07-17 11:26:12.704 +03:00 [INF] Request finished in 13.3469ms 200 text/plain; charset=utf-8 +2018-07-17 11:27:17.701 +03:00 [INF] Loaded modules: +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-17 11:27:17.722 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-17 11:27:17.723 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-17 11:27:18.202 +03:00 [INF] Initialized all modules. +2018-07-17 11:27:18.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-17 11:27:21.055 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-17 11:27:21.073 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-17 11:27:23.101 +03:00 [INF] Executed action /Index in 2041.3518000000001ms +2018-07-17 11:27:23.111 +03:00 [INF] Request finished in 4582.3306ms 200 text/html; charset=utf-8 +2018-07-17 11:27:23.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-17 11:27:23.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-17 11:27:23.259 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:27:23.262 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:27:23.327 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-17 11:27:23.328 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-17 11:27:23.365 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 33.8255ms. +2018-07-17 11:27:23.383 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:27:23.384 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 124.98360000000001ms +2018-07-17 11:27:23.384 +03:00 [INF] Request finished in 152.2309ms 200 text/plain; charset=utf-8 +2018-07-17 11:27:23.388 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 59.952000000000005ms. +2018-07-17 11:27:23.389 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:27:23.389 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 127.03840000000001ms +2018-07-17 11:27:23.390 +03:00 [INF] Request finished in 156.6032ms 200 text/plain; charset=utf-8 +2018-07-17 11:27:26.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-07-17 11:27:27.044 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-17 11:27:27.103 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-17 11:27:27.205 +03:00 [INF] Executed action /Templates in 161.1634ms +2018-07-17 11:27:27.205 +03:00 [INF] Request finished in 533.5378ms 200 text/html; charset=utf-8 +2018-07-17 11:27:27.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-17 11:27:27.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-17 11:27:27.316 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:27:27.318 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-17 11:27:27.318 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.232ms. +2018-07-17 11:27:27.319 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:27:27.319 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4362ms +2018-07-17 11:27:27.319 +03:00 [INF] Request finished in 4.0256ms 200 text/plain; charset=utf-8 +2018-07-17 11:27:27.321 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-17 11:27:27.322 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-17 11:27:27.324 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.19ms. +2018-07-17 11:27:27.324 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-17 11:27:27.324 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.8109ms +2018-07-17 11:27:27.325 +03:00 [INF] Request finished in 11.676ms 200 text/plain; charset=utf-8 +2018-07-17 11:28:02.589 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 351 +2018-07-17 11:28:02.590 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-07-17 11:28:02.623 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-07-17 11:28:50.658 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-17 11:28:50.777 +03:00 [WRN] AuditingManager?.Current is null! +2018-07-17 11:28:50.800 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'LanguageManagement.zip' ... +2018-07-17 11:28:50.872 +03:00 [INF] Executed action /Templates in 48281.9582ms +2018-07-17 11:28:50.882 +03:00 [INF] Request finished in 48293.2785ms 200 application/zip +2018-07-27 13:59:03.734 +03:00 [INF] Loaded modules: +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-07-27 13:59:03.757 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-07-27 13:59:03.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-07-27 13:59:04.318 +03:00 [INF] Initialized all modules. +2018-07-27 13:59:04.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-07-27 13:59:07.497 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-07-27 13:59:07.512 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-07-27 13:59:09.631 +03:00 [INF] Executed action /Index in 2128.2525ms +2018-07-27 13:59:09.641 +03:00 [INF] Request finished in 4970.2005ms 200 text/html; charset=utf-8 +2018-07-27 13:59:09.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-07-27 13:59:09.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-07-27 13:59:09.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-07-27 13:59:09.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-07-27 13:59:09.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-07-27 13:59:09.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-07-27 13:59:09.757 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-07-27 13:59:09.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-07-27 13:59:09.758 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-07-27 13:59:09.758 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-07-27 13:59:09.758 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-07-27 13:59:09.774 +03:00 [INF] Request finished in 38.7587ms 200 text/css +2018-07-27 13:59:09.774 +03:00 [INF] Request finished in 39.108ms 200 text/css +2018-07-27 13:59:09.774 +03:00 [INF] Request finished in 48.8201ms 200 text/css +2018-07-27 13:59:09.774 +03:00 [INF] Request finished in 39.8833ms 200 text/css +2018-07-27 13:59:09.774 +03:00 [INF] Request finished in 46.1411ms 200 text/css +2018-07-27 13:59:09.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-07-27 13:59:09.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-07-27 13:59:09.780 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-07-27 13:59:09.780 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-07-27 13:59:09.780 +03:00 [INF] Request finished in 3.148ms 200 text/css +2018-07-27 13:59:09.780 +03:00 [INF] Request finished in 2.8435ms 200 text/css +2018-07-27 13:59:09.783 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-07-27 13:59:09.783 +03:00 [INF] Request finished in 57.6489ms 200 text/css +2018-07-27 13:59:09.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-07-27 13:59:09.809 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-07-27 13:59:09.809 +03:00 [INF] Request finished in 2.4724ms 200 application/javascript +2018-07-27 13:59:09.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-07-27 13:59:09.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-07-27 13:59:09.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-07-27 13:59:09.834 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-07-27 13:59:09.834 +03:00 [INF] Request finished in 11.3983ms 200 application/javascript +2018-07-27 13:59:09.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-07-27 13:59:09.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-07-27 13:59:09.854 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-07-27 13:59:09.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-07-27 13:59:09.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-07-27 13:59:09.860 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-07-27 13:59:09.860 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-07-27 13:59:09.860 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-07-27 13:59:09.860 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-07-27 13:59:09.864 +03:00 [INF] Request finished in 8.3238ms 304 application/javascript +2018-07-27 13:59:09.864 +03:00 [INF] Request finished in 14.0637ms 304 application/javascript +2018-07-27 13:59:09.864 +03:00 [INF] Request finished in 8.5648ms 304 application/javascript +2018-07-27 13:59:09.864 +03:00 [INF] Request finished in 14.1352ms 304 application/javascript +2018-07-27 13:59:09.877 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-07-27 13:59:09.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-07-27 13:59:09.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-07-27 13:59:09.884 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-07-27 13:59:09.884 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-07-27 13:59:09.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-07-27 13:59:09.884 +03:00 [INF] Request finished in 0.7339ms 304 application/javascript +2018-07-27 13:59:09.884 +03:00 [INF] Request finished in 0.6416ms 304 application/javascript +2018-07-27 13:59:09.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-07-27 13:59:09.884 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-07-27 13:59:09.884 +03:00 [INF] Request finished in 0.4342ms 304 application/javascript +2018-07-27 13:59:09.884 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-07-27 13:59:09.884 +03:00 [INF] Request finished in 0.4195ms 304 application/javascript +2018-07-27 13:59:09.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-07-27 13:59:09.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-07-27 13:59:09.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-07-27 13:59:09.902 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-07-27 13:59:09.902 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-07-27 13:59:09.902 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-07-27 13:59:09.902 +03:00 [INF] Request finished in 0.472ms 304 application/javascript +2018-07-27 13:59:09.902 +03:00 [INF] Request finished in 0.5286ms 304 application/javascript +2018-07-27 13:59:09.902 +03:00 [INF] Request finished in 0.7125ms 304 application/javascript +2018-07-27 13:59:09.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-07-27 13:59:09.905 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-07-27 13:59:09.905 +03:00 [INF] Request finished in 3.9105ms 304 application/javascript +2018-07-27 13:59:09.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-07-27 13:59:09.910 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-07-27 13:59:09.910 +03:00 [INF] Request finished in 0.8072ms 304 application/javascript +2018-07-27 13:59:09.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-07-27 13:59:09.912 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-07-27 13:59:09.912 +03:00 [INF] Request finished in 2.4005ms 304 application/javascript +2018-07-27 13:59:09.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-07-27 13:59:09.918 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-07-27 13:59:09.918 +03:00 [INF] Request finished in 0.7649ms 304 application/javascript +2018-07-27 13:59:09.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-07-27 13:59:09.919 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-07-27 13:59:09.919 +03:00 [INF] Request finished in 0.6526ms 304 application/javascript +2018-07-27 13:59:09.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-07-27 13:59:09.921 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-07-27 13:59:09.921 +03:00 [INF] Request finished in 0.9558ms 304 application/javascript +2018-07-27 13:59:09.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-07-27 13:59:09.922 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-07-27 13:59:09.922 +03:00 [INF] Request finished in 0.6943ms 304 application/javascript +2018-07-27 13:59:09.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-07-27 13:59:09.942 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-07-27 13:59:09.943 +03:00 [INF] Request finished in 2.9572ms 304 application/javascript +2018-07-27 13:59:09.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-07-27 13:59:09.955 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-07-27 13:59:09.955 +03:00 [INF] Request finished in 11.9985ms 200 font/woff2 +2018-07-27 13:59:09.985 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-07-27 13:59:09.991 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-07-27 13:59:10.107 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 116.3403ms. +2018-07-27 13:59:10.124 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-27 13:59:10.124 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 269.939ms +2018-07-27 13:59:10.125 +03:00 [INF] Request finished in 298.9524ms 200 text/plain; charset=utf-8 +2018-07-27 13:59:10.132 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 140.3615ms. +2018-07-27 13:59:10.133 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-07-27 13:59:10.133 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 255.3838ms +2018-07-27 13:59:10.133 +03:00 [INF] Request finished in 300.6071ms 200 text/plain; charset=utf-8 +2018-07-27 13:59:10.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-07-27 13:59:10.903 +03:00 [INF] Request finished in 6.7176ms 404 +2018-08-02 11:10:36.945 +03:00 [INF] Loaded modules: +2018-08-02 11:10:36.962 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:10:36.963 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:10:37.450 +03:00 [INF] Initialized all modules. +2018-08-02 11:10:37.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:10:41.117 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:10:41.134 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:10:43.473 +03:00 [INF] Executed action /Index in 2350.7898ms +2018-08-02 11:10:43.483 +03:00 [INF] Request finished in 5741.8092ms 200 text/html; charset=utf-8 +2018-08-02 11:10:43.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:10:43.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:10:43.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:10:43.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:10:43.574 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 11:10:43.574 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 11:10:43.575 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 11:10:43.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:10:43.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:10:43.577 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 11:10:43.578 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 11:10:43.580 +03:00 [INF] Request finished in 15.2167ms 200 text/css +2018-08-02 11:10:43.580 +03:00 [INF] Request finished in 3.4055ms 200 text/css +2018-08-02 11:10:43.580 +03:00 [INF] Request finished in 4.4452ms 200 text/css +2018-08-02 11:10:43.580 +03:00 [INF] Request finished in 15.1613ms 200 text/css +2018-08-02 11:10:43.580 +03:00 [INF] Request finished in 25.2213ms 200 text/css +2018-08-02 11:10:43.580 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 11:10:43.581 +03:00 [INF] Request finished in 34.6921ms 200 text/css +2018-08-02 11:10:43.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-08-02 11:10:43.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:10:43.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:10:43.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:10:43.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-08-02 11:10:43.607 +03:00 [INF] Sending file. Request path: '/themes/basic/layout.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic\wwwroot\themes\basic\layout.css' +2018-08-02 11:10:43.607 +03:00 [INF] Request finished in 1.0853ms 200 text/css +2018-08-02 11:10:43.607 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:10:43.607 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:10:43.607 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:10:43.608 +03:00 [INF] Sending file. Request path: '/styles/global.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\styles\global.css' +2018-08-02 11:10:43.608 +03:00 [INF] Request finished in 0.8429ms 200 text/css +2018-08-02 11:10:43.609 +03:00 [INF] Request finished in 3.1516ms 304 application/javascript +2018-08-02 11:10:43.609 +03:00 [INF] Request finished in 2.6658ms 304 application/javascript +2018-08-02 11:10:43.609 +03:00 [INF] Request finished in 2.6761ms 304 application/javascript +2018-08-02 11:10:43.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:10:43.622 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:10:43.622 +03:00 [INF] Request finished in 1.3816ms 304 application/javascript +2018-08-02 11:10:43.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:10:43.625 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:10:43.625 +03:00 [INF] Request finished in 0.5616ms 304 application/javascript +2018-08-02 11:10:43.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:10:43.630 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:10:43.630 +03:00 [INF] Request finished in 4.341ms 304 application/javascript +2018-08-02 11:10:43.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:10:43.635 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:10:43.635 +03:00 [INF] Request finished in 0.6988ms 304 application/javascript +2018-08-02 11:10:43.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:10:43.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:10:43.639 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:10:43.639 +03:00 [INF] Request finished in 0.9205ms 304 application/javascript +2018-08-02 11:10:43.639 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:10:43.639 +03:00 [INF] Request finished in 0.4112ms 304 application/javascript +2018-08-02 11:10:43.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:10:43.644 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:10:43.644 +03:00 [INF] Request finished in 1.1787ms 304 application/javascript +2018-08-02 11:10:43.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:10:43.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:10:43.663 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 11:10:43.663 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:10:43.663 +03:00 [INF] Request finished in 1.9868ms 200 application/javascript +2018-08-02 11:10:43.663 +03:00 [INF] Request finished in 2.1734ms 304 application/javascript +2018-08-02 11:10:43.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:10:43.668 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:10:43.668 +03:00 [INF] Request finished in 0.89ms 304 application/javascript +2018-08-02 11:10:43.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:10:43.669 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:10:43.669 +03:00 [INF] Request finished in 0.8272ms 304 application/javascript +2018-08-02 11:10:43.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:10:43.672 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:10:43.672 +03:00 [INF] Request finished in 0.5736ms 304 application/javascript +2018-08-02 11:10:43.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:10:43.690 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:10:43.691 +03:00 [INF] Request finished in 1.5907ms 304 application/javascript +2018-08-02 11:10:43.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:10:43.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:10:43.694 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:10:43.694 +03:00 [INF] Request finished in 0.6712ms 304 application/javascript +2018-08-02 11:10:43.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:10:43.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:10:43.699 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:10:43.699 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:10:43.699 +03:00 [INF] Request finished in 5.7691ms 304 application/javascript +2018-08-02 11:10:43.699 +03:00 [INF] Request finished in 5.1372ms 304 application/javascript +2018-08-02 11:10:43.701 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:10:43.701 +03:00 [INF] Request finished in 2.8592ms 304 application/javascript +2018-08-02 11:10:43.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:10:43.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:10:43.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:10:43.716 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:10:43.717 +03:00 [INF] Request finished in 0.9935ms 304 application/javascript +2018-08-02 11:10:43.723 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:10:43.735 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:10:43.801 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:10:43.803 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:10:43.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 11:10:43.839 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 11:10:43.840 +03:00 [INF] Request finished in 3.6098ms 200 font/woff2 +2018-08-02 11:10:43.927 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 120.8938ms. +2018-08-02 11:10:43.959 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:10:43.960 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 236.609ms +2018-08-02 11:10:43.960 +03:00 [INF] Request finished in 257.9531ms 200 text/plain; charset=utf-8 +2018-08-02 11:10:43.977 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 172.7567ms. +2018-08-02 11:10:43.977 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:10:43.977 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 242.3776ms +2018-08-02 11:10:43.977 +03:00 [INF] Request finished in 272.0728ms 200 text/plain; charset=utf-8 +2018-08-02 11:10:44.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-08-02 11:10:44.152 +03:00 [INF] Request finished in 5.8013ms 404 +2018-08-02 11:18:38.160 +03:00 [INF] Loaded modules: +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:18:38.177 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:18:38.178 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:18:38.655 +03:00 [INF] Initialized all modules. +2018-08-02 11:18:38.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:18:41.181 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:18:41.202 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:18:41.253 +03:00 [INF] Executed action /Index in 68.2763ms +2018-08-02 11:18:41.304 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.AbpException: Default theme is configured but it's not found in the registered themes: AbpIo + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeSelector.GetCurrentThemeInfo() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeSelector.cs:line 34 + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeManager.GetCurrentTheme() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeManager.cs:line 34 + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeManager.get_CurrentTheme() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeManager.cs:line 13 + at AspNetCore._Pages__ViewStart.ExecuteAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\Pages\_ViewStart.cshtml:line 4 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderViewStartsAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-02 11:18:41.355 +03:00 [INF] Request finished in 2498.6231ms 500 text/html; charset=utf-8 +2018-08-02 11:19:44.771 +03:00 [INF] Loaded modules: +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:19:44.789 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:19:44.790 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:19:44.791 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:19:45.273 +03:00 [INF] Initialized all modules. +2018-08-02 11:19:45.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:19:47.700 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:19:47.715 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:19:47.754 +03:00 [INF] Executed action /Index in 50.0148ms +2018-08-02 11:19:47.776 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.AbpException: Default theme is configured but it's not found in the registered themes: AbpIo + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeSelector.GetCurrentThemeInfo() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeSelector.cs:line 34 + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeManager.GetCurrentTheme() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeManager.cs:line 34 + at Volo.Abp.AspNetCore.Mvc.UI.Theming.DefaultThemeManager.get_CurrentTheme() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI\Volo\Abp\AspNetCore\Mvc\UI\Theming\DefaultThemeManager.cs:line 13 + at AspNetCore._Pages__ViewStart.ExecuteAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\Pages\_ViewStart.cshtml:line 4 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderViewStartsAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-02 11:19:47.814 +03:00 [INF] Request finished in 2305.4204ms 500 text/html; charset=utf-8 +2018-08-02 11:20:57.346 +03:00 [INF] Loaded modules: +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:20:57.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:20:57.367 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:20:57.912 +03:00 [INF] Initialized all modules. +2018-08-02 11:20:58.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:21:00.228 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:21:00.248 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:21:00.823 +03:00 [INF] Executed action /Index in 589.586ms +2018-08-02 11:21:00.836 +03:00 [INF] Request finished in 2721.6303ms 200 text/html; charset=utf-8 +2018-08-02 11:21:00.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:21:00.862 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 11:21:00.868 +03:00 [INF] Request finished in 10.0507ms 304 text/css +2018-08-02 11:21:00.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:21:00.875 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 11:21:00.876 +03:00 [INF] Request finished in 3.8718ms 304 text/css +2018-08-02 11:21:00.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:21:00.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:21:00.890 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 11:21:00.890 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 11:21:00.890 +03:00 [INF] Request finished in 0.5653ms 304 text/css +2018-08-02 11:21:00.890 +03:00 [INF] Request finished in 0.3943ms 304 text/css +2018-08-02 11:21:00.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:21:00.893 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 11:21:00.893 +03:00 [INF] Request finished in 0.7165ms 304 text/css +2018-08-02 11:21:00.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-08-02 11:21:00.894 +03:00 [INF] The file /styles/global.css was not modified +2018-08-02 11:21:00.894 +03:00 [INF] Request finished in 1.0687ms 304 text/css +2018-08-02 11:21:00.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-08-02 11:21:00.897 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-08-02 11:21:00.897 +03:00 [INF] Request finished in 1.2769ms 304 text/css +2018-08-02 11:21:00.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:21:00.899 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 11:21:00.900 +03:00 [INF] Request finished in 1.5497ms 304 text/css +2018-08-02 11:21:00.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:21:00.910 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:21:00.911 +03:00 [INF] Request finished in 0.5032ms 304 application/javascript +2018-08-02 11:21:00.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:21:00.914 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:21:00.914 +03:00 [INF] Request finished in 0.8197ms 304 application/javascript +2018-08-02 11:21:00.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:21:00.915 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:21:00.915 +03:00 [INF] Request finished in 0.4421ms 304 application/javascript +2018-08-02 11:21:00.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:21:00.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:21:00.919 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:21:00.919 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:21:00.919 +03:00 [INF] Request finished in 1.1152ms 304 application/javascript +2018-08-02 11:21:00.920 +03:00 [INF] Request finished in 1.1711ms 304 application/javascript +2018-08-02 11:21:00.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:21:00.925 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:21:00.925 +03:00 [INF] Request finished in 0.8723ms 304 application/javascript +2018-08-02 11:21:00.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:21:00.950 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:21:00.950 +03:00 [INF] Request finished in 0.4395ms 304 application/javascript +2018-08-02 11:21:00.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:21:00.968 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:21:00.968 +03:00 [INF] Request finished in 0.5101ms 304 application/javascript +2018-08-02 11:21:00.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:21:00.971 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:21:00.971 +03:00 [INF] Request finished in 0.5152ms 304 application/javascript +2018-08-02 11:21:00.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:21:00.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:21:00.995 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:21:00.995 +03:00 [INF] Request finished in 0.5319ms 304 application/javascript +2018-08-02 11:21:00.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:21:00.995 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:21:00.996 +03:00 [INF] Request finished in 0.4988ms 304 application/javascript +2018-08-02 11:21:01.003 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:21:01.004 +03:00 [INF] Request finished in 16.183ms 304 application/javascript +2018-08-02 11:21:01.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:21:01.006 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:21:01.006 +03:00 [INF] Request finished in 0.5367ms 304 application/javascript +2018-08-02 11:21:01.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:21:01.034 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:21:01.034 +03:00 [INF] Request finished in 0.558ms 304 application/javascript +2018-08-02 11:21:01.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:21:01.071 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:21:01.071 +03:00 [INF] Request finished in 1.4396ms 304 application/javascript +2018-08-02 11:21:01.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:21:01.072 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:21:01.073 +03:00 [INF] Request finished in 1.2932ms 304 application/javascript +2018-08-02 11:21:01.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:21:01.075 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:21:01.076 +03:00 [INF] Request finished in 0.6006ms 304 application/javascript +2018-08-02 11:21:01.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:21:01.077 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:21:01.077 +03:00 [INF] Request finished in 0.5442ms 304 application/javascript +2018-08-02 11:21:01.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:21:01.089 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:21:01.089 +03:00 [INF] Request finished in 1.5395ms 304 application/javascript +2018-08-02 11:21:01.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:21:01.101 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:21:01.101 +03:00 [INF] Request finished in 0.7022ms 304 application/javascript +2018-08-02 11:21:01.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:21:01.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:21:01.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:21:01.119 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 11:21:01.120 +03:00 [INF] Request finished in 0.6109ms 304 application/javascript +2018-08-02 11:21:01.130 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:21:01.143 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:21:01.198 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:21:01.199 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:21:01.274 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 71.4873ms. +2018-08-02 11:21:01.289 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:21:01.289 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 158.8607ms +2018-08-02 11:21:01.289 +03:00 [INF] Request finished in 183.3019ms 200 text/plain; charset=utf-8 +2018-08-02 11:21:01.299 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 98.757ms. +2018-08-02 11:21:01.300 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:21:01.300 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 156.80370000000002ms +2018-08-02 11:21:01.300 +03:00 [INF] Request finished in 187.4953ms 200 text/plain; charset=utf-8 +2018-08-02 11:28:56.353 +03:00 [INF] Loaded modules: +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:28:56.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:28:56.369 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:28:56.805 +03:00 [INF] Initialized all modules. +2018-08-02 11:28:57.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:28:58.643 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Microsoft.AspNetCore.Mvc.Razor.Compilation.CompilationFailedException: One or more compilation failures occurred: +D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Index.cshtml(317,72): error CS1061: 'IndexModel' does not contain a definition for 'PersonInput' and no extension method 'PersonInput' accepting a first argument of type 'IndexModel' could be found (are you missing a using directive or an assembly reference?) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.CompileAndEmit(RazorCodeDocument codeDocument, String generatedCode) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.CompileAndEmit(String relativePath) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.OnCacheMiss(String normalizedPath) +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageLoader.Load(PageActionDescriptor actionDescriptor) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerProvider.OnProvidersExecuting(ActionInvokerProviderContext context) + at Microsoft.AspNetCore.Mvc.Internal.ActionInvokerFactory.CreateInvoker(ActionContext actionContext) + at Microsoft.AspNetCore.Mvc.Internal.MvcAttributeRouteHandler.<>c__DisplayClass12_0.b__0(HttpContext c) + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-02 11:28:58.653 +03:00 [INF] Request finished in 1592.2331ms 500 text/html; charset=utf-8 +2018-08-02 11:29:38.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:29:39.804 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:29:39.822 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:29:40.379 +03:00 [INF] Executed action /Index in 567.6993ms +2018-08-02 11:29:40.391 +03:00 [INF] Request finished in 1484.7638ms 200 text/html; charset=utf-8 +2018-08-02 11:29:40.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:29:40.426 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 11:29:40.429 +03:00 [INF] Request finished in 6.5829ms 304 text/css +2018-08-02 11:29:40.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:29:40.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:29:40.434 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 11:29:40.434 +03:00 [INF] Request finished in 1.3067ms 304 text/css +2018-08-02 11:29:40.434 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 11:29:40.435 +03:00 [INF] Request finished in 1.0563ms 304 text/css +2018-08-02 11:29:40.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:29:40.439 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 11:29:40.439 +03:00 [INF] Request finished in 0.8644ms 304 text/css +2018-08-02 11:29:40.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:29:40.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:29:40.443 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 11:29:40.443 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 11:29:40.443 +03:00 [INF] Request finished in 0.7189ms 304 text/css +2018-08-02 11:29:40.443 +03:00 [INF] Request finished in 2.5011ms 304 text/css +2018-08-02 11:29:40.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-08-02 11:29:40.460 +03:00 [INF] The file /styles/global.css was not modified +2018-08-02 11:29:40.460 +03:00 [INF] Request finished in 0.6908ms 304 text/css +2018-08-02 11:29:40.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-08-02 11:29:40.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 11:29:40.469 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-08-02 11:29:40.469 +03:00 [INF] Request finished in 0.8351ms 304 text/css +2018-08-02 11:29:40.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 11:29:40.476 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 11:29:40.476 +03:00 [INF] Request finished in 7.3216ms 200 text/css +2018-08-02 11:29:40.488 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 11:29:40.494 +03:00 [INF] Request finished in 21.899ms 200 text/css +2018-08-02 11:29:40.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 11:29:40.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 11:29:40.514 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 11:29:40.514 +03:00 [INF] Request finished in 0.8777ms 200 image/svg+xml +2018-08-02 11:29:40.514 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 11:29:40.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 11:29:40.514 +03:00 [INF] Request finished in 0.8072ms 200 image/png +2018-08-02 11:29:40.515 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 11:29:40.515 +03:00 [INF] Request finished in 1.0665ms 200 image/png +2018-08-02 11:29:40.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 11:29:40.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 11:29:40.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 11:29:40.518 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 11:29:40.518 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 11:29:40.519 +03:00 [INF] Request finished in 1.1324ms 200 image/png +2018-08-02 11:29:40.519 +03:00 [INF] Request finished in 1.3693ms 200 image/png +2018-08-02 11:29:40.520 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 11:29:40.520 +03:00 [INF] Request finished in 4.0326ms 200 image/png +2018-08-02 11:29:40.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 11:29:40.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 11:29:40.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 11:29:40.529 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 11:29:40.529 +03:00 [INF] Request finished in 0.7836ms 200 image/png +2018-08-02 11:29:40.529 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 11:29:40.530 +03:00 [INF] Request finished in 0.5926ms 200 image/png +2018-08-02 11:29:40.530 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 11:29:40.530 +03:00 [INF] Request finished in 0.823ms 200 image/png +2018-08-02 11:29:40.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 11:29:40.541 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 11:29:40.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 11:29:40.541 +03:00 [INF] Request finished in 1.5699ms 200 image/png +2018-08-02 11:29:40.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 11:29:40.542 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 11:29:40.542 +03:00 [INF] Request finished in 1.1746ms 200 image/png +2018-08-02 11:29:40.542 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 11:29:40.542 +03:00 [INF] Request finished in 0.7895ms 200 image/png +2018-08-02 11:29:40.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 11:29:40.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 11:29:40.559 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 11:29:40.559 +03:00 [INF] Request finished in 0.7755ms 200 image/png +2018-08-02 11:29:40.559 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 11:29:40.560 +03:00 [INF] Request finished in 0.6278ms 200 image/png +2018-08-02 11:29:40.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 11:29:40.562 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 11:29:40.562 +03:00 [INF] Request finished in 1.8651ms 200 image/png +2018-08-02 11:29:40.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 11:29:40.569 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 11:29:40.569 +03:00 [INF] Request finished in 0.8763ms 200 image/png +2018-08-02 11:29:40.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 11:29:40.592 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 11:29:40.592 +03:00 [INF] Request finished in 1.6603ms 200 image/png +2018-08-02 11:29:40.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 11:29:40.608 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 11:29:40.608 +03:00 [INF] Request finished in 0.9047ms 200 image/svg+xml +2018-08-02 11:29:40.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 11:29:40.615 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 11:29:40.615 +03:00 [INF] Request finished in 1.6476ms 200 image/png +2018-08-02 11:29:40.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 11:29:40.628 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 11:29:40.628 +03:00 [INF] Request finished in 0.9592ms 200 image/png +2018-08-02 11:29:40.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 11:29:40.651 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 11:29:40.652 +03:00 [INF] Request finished in 1.5209ms 200 image/png +2018-08-02 11:29:40.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 11:29:40.661 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 11:29:40.661 +03:00 [INF] Request finished in 0.8567ms 200 image/png +2018-08-02 11:29:40.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 11:29:40.684 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 11:29:40.684 +03:00 [INF] Request finished in 1.864ms 200 image/png +2018-08-02 11:29:40.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 11:29:40.687 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 11:29:40.687 +03:00 [INF] Request finished in 1.1107ms 200 image/png +2018-08-02 11:29:40.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 11:29:40.697 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 11:29:40.697 +03:00 [INF] Request finished in 1.3832ms 200 image/png +2018-08-02 11:29:40.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 11:29:40.699 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 11:29:40.700 +03:00 [INF] Request finished in 1.804ms 200 image/png +2018-08-02 11:29:40.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 11:29:40.705 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 11:29:40.705 +03:00 [INF] Request finished in 5.2264ms 200 image/png +2018-08-02 11:29:40.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 11:29:40.706 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 11:29:40.706 +03:00 [INF] Request finished in 0.9816ms 200 image/png +2018-08-02 11:29:40.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 11:29:40.747 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 11:29:40.747 +03:00 [INF] Request finished in 2.7257ms 200 image/png +2018-08-02 11:29:40.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 11:29:40.760 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 11:29:40.760 +03:00 [INF] Request finished in 12.3205ms 200 image/png +2018-08-02 11:29:40.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 11:29:40.769 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 11:29:40.769 +03:00 [INF] Request finished in 1.0112ms 200 image/png +2018-08-02 11:29:40.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 11:29:40.772 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 11:29:40.773 +03:00 [INF] Request finished in 2.1951ms 200 image/png +2018-08-02 11:29:40.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 11:29:40.775 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 11:29:40.775 +03:00 [INF] Request finished in 0.897ms 200 image/png +2018-08-02 11:29:40.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 11:29:40.784 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 11:29:40.784 +03:00 [INF] Request finished in 1.72ms 200 image/png +2018-08-02 11:29:40.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 11:29:40.802 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 11:29:40.802 +03:00 [INF] Request finished in 2.0984ms 200 image/png +2018-08-02 11:29:40.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 11:29:40.804 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 11:29:40.804 +03:00 [INF] Request finished in 3.4021ms 200 image/png +2018-08-02 11:29:40.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 11:29:40.825 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 11:29:40.826 +03:00 [INF] Request finished in 1.0568ms 200 image/png +2018-08-02 11:29:40.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:29:40.828 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:29:40.828 +03:00 [INF] Request finished in 0.8329ms 304 application/javascript +2018-08-02 11:29:40.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:29:40.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:29:40.834 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:29:40.834 +03:00 [INF] Request finished in 3.5853ms 304 application/javascript +2018-08-02 11:29:40.834 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:29:40.834 +03:00 [INF] Request finished in 0.8469ms 304 application/javascript +2018-08-02 11:29:40.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:29:40.843 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:29:40.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:29:40.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:29:40.843 +03:00 [INF] Request finished in 0.6289ms 304 application/javascript +2018-08-02 11:29:40.844 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:29:40.844 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:29:40.844 +03:00 [INF] Request finished in 0.4228ms 304 application/javascript +2018-08-02 11:29:40.844 +03:00 [INF] Request finished in 0.4517ms 304 application/javascript +2018-08-02 11:29:40.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:29:40.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:29:40.867 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:29:40.867 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:29:40.868 +03:00 [INF] Request finished in 0.4602ms 304 application/javascript +2018-08-02 11:29:40.868 +03:00 [INF] Request finished in 0.4765ms 304 application/javascript +2018-08-02 11:29:40.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:29:40.868 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:29:40.868 +03:00 [INF] Request finished in 0.2828ms 304 application/javascript +2018-08-02 11:29:40.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:29:40.870 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:29:40.870 +03:00 [INF] Request finished in 0.5835ms 304 application/javascript +2018-08-02 11:29:40.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:29:40.889 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:29:40.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:29:40.889 +03:00 [INF] Request finished in 1.227ms 304 application/javascript +2018-08-02 11:29:40.889 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:29:40.889 +03:00 [INF] Request finished in 0.5605ms 304 application/javascript +2018-08-02 11:29:40.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:29:40.892 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:29:40.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:29:40.893 +03:00 [INF] Request finished in 1.0611ms 304 application/javascript +2018-08-02 11:29:40.893 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:29:40.893 +03:00 [INF] Request finished in 0.5292ms 304 application/javascript +2018-08-02 11:29:40.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:29:40.904 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:29:40.905 +03:00 [INF] Request finished in 0.7415ms 304 application/javascript +2018-08-02 11:29:40.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:29:40.908 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:29:40.908 +03:00 [INF] Request finished in 0.7656ms 304 application/javascript +2018-08-02 11:29:40.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:29:40.909 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:29:40.909 +03:00 [INF] Request finished in 0.6719ms 304 application/javascript +2018-08-02 11:29:40.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:29:40.910 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:29:40.910 +03:00 [INF] Request finished in 0.6394ms 304 application/javascript +2018-08-02 11:29:40.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:29:40.931 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:29:40.932 +03:00 [INF] Request finished in 1.6093ms 304 application/javascript +2018-08-02 11:29:40.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:29:40.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:29:40.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:29:40.935 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 11:29:40.935 +03:00 [INF] Request finished in 1.001ms 304 application/javascript +2018-08-02 11:29:40.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:29:40.960 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:29:40.960 +03:00 [INF] Request finished in 1.9904ms 304 application/javascript +2018-08-02 11:29:40.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 11:29:40.961 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 11:29:40.961 +03:00 [INF] Request finished in 0.9455ms 200 application/javascript +2018-08-02 11:29:40.962 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:29:40.966 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:29:41.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 11:29:41.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 11:29:41.013 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-08-02 11:29:41.013 +03:00 [INF] Request finished in 0.3132ms 304 font/woff2 +2018-08-02 11:29:41.013 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 11:29:41.014 +03:00 [INF] Request finished in 0.8309ms 200 application/javascript +2018-08-02 11:29:41.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 11:29:41.028 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 11:29:41.028 +03:00 [INF] Request finished in 0.843ms 200 image/png +2018-08-02 11:29:41.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 11:29:41.051 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 11:29:41.051 +03:00 [INF] Request finished in 0.8534ms 200 image/png +2018-08-02 11:29:41.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 11:29:41.058 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:29:41.060 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:29:41.085 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 11:29:41.085 +03:00 [INF] Request finished in 27.1318ms 200 image/jpeg +2018-08-02 11:29:41.184 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 119.9946ms. +2018-08-02 11:29:41.202 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:29:41.203 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 240.1963ms +2018-08-02 11:29:41.203 +03:00 [INF] Request finished in 269.6555ms 200 text/plain; charset=utf-8 +2018-08-02 11:29:41.212 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 150.8731ms. +2018-08-02 11:29:41.212 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:29:41.213 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 246.1047ms +2018-08-02 11:29:41.213 +03:00 [INF] Request finished in 278.8751ms 200 text/plain; charset=utf-8 +2018-08-02 11:29:41.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-08-02 11:29:41.484 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-08-02 11:29:41.484 +03:00 [INF] Request finished in 2.153ms 200 image/png +2018-08-02 11:29:41.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-08-02 11:29:41.486 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-08-02 11:29:41.486 +03:00 [INF] Request finished in 1.0196ms 200 image/png +2018-08-02 11:30:03.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:30:03.517 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:30:03.518 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:30:03.778 +03:00 [INF] Executed action /Index in 260.8027ms +2018-08-02 11:30:03.779 +03:00 [INF] Request finished in 267.5122ms 200 text/html; charset=utf-8 +2018-08-02 11:30:03.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:30:03.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:30:03.805 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 11:30:03.805 +03:00 [INF] Request finished in 3.012ms 304 text/css +2018-08-02 11:30:03.805 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 11:30:03.806 +03:00 [INF] Request finished in 0.5299ms 304 text/css +2018-08-02 11:30:03.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:30:03.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:30:03.815 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 11:30:03.815 +03:00 [INF] Request finished in 0.487ms 304 text/css +2018-08-02 11:30:03.815 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 11:30:03.816 +03:00 [INF] Request finished in 0.673ms 304 text/css +2018-08-02 11:30:03.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:30:03.824 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 11:30:03.824 +03:00 [INF] Request finished in 1.8337ms 304 text/css +2018-08-02 11:30:03.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:30:03.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/styles/global.css?_v=636657003084264261 +2018-08-02 11:30:03.833 +03:00 [INF] The file /styles/global.css was not modified +2018-08-02 11:30:03.833 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 11:30:03.833 +03:00 [INF] Request finished in 0.9827ms 304 text/css +2018-08-02 11:30:03.833 +03:00 [INF] Request finished in 1.7014ms 304 text/css +2018-08-02 11:30:03.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/themes/basic/layout.css?_v=636673362328519686 +2018-08-02 11:30:03.844 +03:00 [INF] The file /themes/basic/layout.css was not modified +2018-08-02 11:30:03.845 +03:00 [INF] Request finished in 1.4809ms 304 text/css +2018-08-02 11:30:03.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 11:30:03.846 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 11:30:03.846 +03:00 [INF] Request finished in 0.5169ms 304 text/css +2018-08-02 11:30:03.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 11:30:03.849 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 11:30:03.850 +03:00 [INF] Request finished in 0.5558ms 304 text/css +2018-08-02 11:30:03.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:30:03.856 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:30:03.857 +03:00 [INF] Request finished in 0.6107ms 304 application/javascript +2018-08-02 11:30:03.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:30:03.862 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:30:03.862 +03:00 [INF] Request finished in 1.8705ms 304 application/javascript +2018-08-02 11:30:03.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:30:03.864 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:30:03.864 +03:00 [INF] Request finished in 1.0317ms 304 application/javascript +2018-08-02 11:30:03.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:30:03.880 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:30:03.880 +03:00 [INF] Request finished in 0.5077ms 304 application/javascript +2018-08-02 11:30:03.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:30:03.883 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:30:03.883 +03:00 [INF] Request finished in 0.645ms 304 application/javascript +2018-08-02 11:30:03.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:30:03.899 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:30:03.900 +03:00 [INF] Request finished in 1.1344ms 304 application/javascript +2018-08-02 11:30:03.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:30:03.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:30:03.910 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:30:03.910 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:30:03.910 +03:00 [INF] Request finished in 0.6479ms 304 application/javascript +2018-08-02 11:30:03.910 +03:00 [INF] Request finished in 0.6834ms 304 application/javascript +2018-08-02 11:30:03.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:30:03.911 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:30:03.911 +03:00 [INF] Request finished in 0.5958ms 304 application/javascript +2018-08-02 11:30:03.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:30:03.919 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:30:03.919 +03:00 [INF] Request finished in 0.7346ms 304 application/javascript +2018-08-02 11:30:03.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:30:03.924 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:30:03.926 +03:00 [INF] Request finished in 2.688ms 304 application/javascript +2018-08-02 11:30:03.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:30:03.927 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:30:03.928 +03:00 [INF] Request finished in 1.0256ms 304 application/javascript +2018-08-02 11:30:03.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:30:03.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:30:03.932 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:30:03.932 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:30:03.932 +03:00 [INF] Request finished in 0.6514ms 304 application/javascript +2018-08-02 11:30:03.932 +03:00 [INF] Request finished in 0.8284ms 304 application/javascript +2018-08-02 11:30:03.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:30:03.937 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:30:03.938 +03:00 [INF] Request finished in 0.8199ms 304 application/javascript +2018-08-02 11:30:03.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:30:03.939 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:30:03.939 +03:00 [INF] Request finished in 1.1528ms 304 application/javascript +2018-08-02 11:30:03.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:30:03.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:30:03.956 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:30:03.956 +03:00 [INF] Request finished in 0.7909ms 304 application/javascript +2018-08-02 11:30:03.956 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:30:03.956 +03:00 [INF] Request finished in 1.2542ms 304 application/javascript +2018-08-02 11:30:03.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:30:03.960 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:30:03.960 +03:00 [INF] Request finished in 0.7889ms 304 application/javascript +2018-08-02 11:30:03.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:30:03.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:30:03.960 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:30:03.961 +03:00 [INF] Request finished in 0.4968ms 304 application/javascript +2018-08-02 11:30:03.961 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 11:30:03.961 +03:00 [INF] Request finished in 0.5674ms 304 application/javascript +2018-08-02 11:30:03.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:30:03.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:30:03.976 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:30:03.976 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:30:03.977 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:30:03.978 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.66560000000000008ms. +2018-08-02 11:30:03.978 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:30:03.979 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.7132ms +2018-08-02 11:30:03.979 +03:00 [INF] Request finished in 12.1078ms 200 text/plain; charset=utf-8 +2018-08-02 11:30:03.979 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:30:03.980 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17220000000000002ms. +2018-08-02 11:30:03.980 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:30:03.980 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.9810000000000003ms +2018-08-02 11:30:03.981 +03:00 [INF] Request finished in 7.5633ms 200 text/plain; charset=utf-8 +2018-08-02 11:30:03.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 11:30:03.983 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 11:30:03.983 +03:00 [INF] Request finished in 0.979ms 304 application/javascript +2018-08-02 11:30:03.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 11:30:03.984 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 11:30:03.984 +03:00 [INF] Request finished in 0.5412ms 304 application/javascript +2018-08-02 11:30:03.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 11:30:03.998 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 11:30:03.998 +03:00 [INF] Request finished in 0.5859ms 304 image/svg+xml +2018-08-02 11:30:04.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 11:30:04.003 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 11:30:04.003 +03:00 [INF] Request finished in 0.5722ms 304 image/png +2018-08-02 11:30:04.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 11:30:04.007 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 11:30:04.007 +03:00 [INF] Request finished in 1.5335ms 304 image/png +2018-08-02 11:30:04.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 11:30:04.009 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 11:30:04.009 +03:00 [INF] Request finished in 0.4552ms 304 image/png +2018-08-02 11:30:04.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 11:30:04.033 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 11:30:04.033 +03:00 [INF] Request finished in 1.9696ms 304 image/png +2018-08-02 11:30:04.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 11:30:04.033 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 11:30:04.033 +03:00 [INF] Request finished in 0.463ms 304 image/png +2018-08-02 11:30:04.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 11:30:04.034 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 11:30:04.035 +03:00 [INF] Request finished in 0.5141ms 304 image/png +2018-08-02 11:30:04.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 11:30:04.037 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 11:30:04.037 +03:00 [INF] Request finished in 0.5179ms 304 image/png +2018-08-02 11:30:04.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 11:30:04.045 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 11:30:04.045 +03:00 [INF] Request finished in 0.6878ms 304 image/png +2018-08-02 11:30:04.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 11:30:04.046 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 11:30:04.046 +03:00 [INF] Request finished in 0.4649ms 304 image/png +2018-08-02 11:30:04.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 11:30:04.050 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 11:30:04.050 +03:00 [INF] Request finished in 2.1371ms 304 image/png +2018-08-02 11:30:04.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 11:30:04.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 11:30:04.065 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 11:30:04.065 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 11:30:04.065 +03:00 [INF] Request finished in 1.039ms 304 image/png +2018-08-02 11:30:04.065 +03:00 [INF] Request finished in 0.3555ms 304 image/png +2018-08-02 11:30:04.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 11:30:04.066 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 11:30:04.066 +03:00 [INF] Request finished in 0.616ms 304 image/png +2018-08-02 11:30:04.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 11:30:04.070 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 11:30:04.070 +03:00 [INF] Request finished in 0.8014ms 304 image/png +2018-08-02 11:30:04.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 11:30:04.075 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 11:30:04.075 +03:00 [INF] Request finished in 0.7077ms 304 image/png +2018-08-02 11:30:04.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 11:30:04.079 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 11:30:04.079 +03:00 [INF] Request finished in 1.1125ms 304 image/png +2018-08-02 11:30:04.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 11:30:04.086 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 11:30:04.086 +03:00 [INF] Request finished in 2.0603ms 304 image/svg+xml +2018-08-02 11:30:04.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 11:30:04.094 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 11:30:04.094 +03:00 [INF] Request finished in 1.8634ms 304 image/png +2018-08-02 11:30:04.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 11:30:04.102 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 11:30:04.102 +03:00 [INF] Request finished in 2.5779ms 304 image/png +2018-08-02 11:30:04.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 11:30:04.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 11:30:04.105 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 11:30:04.105 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 11:30:04.105 +03:00 [INF] Request finished in 1.7321ms 304 image/png +2018-08-02 11:30:04.105 +03:00 [INF] Request finished in 0.518ms 304 image/png +2018-08-02 11:30:04.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 11:30:04.107 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 11:30:04.107 +03:00 [INF] Request finished in 0.5164ms 304 image/png +2018-08-02 11:30:04.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 11:30:04.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 11:30:04.109 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 11:30:04.109 +03:00 [INF] Request finished in 1.8938ms 304 image/png +2018-08-02 11:30:04.110 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 11:30:04.110 +03:00 [INF] Request finished in 0.7414ms 304 image/png +2018-08-02 11:30:04.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 11:30:04.126 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 11:30:04.126 +03:00 [INF] Request finished in 2.3239ms 304 image/png +2018-08-02 11:30:04.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 11:30:04.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 11:30:04.129 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 11:30:04.129 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 11:30:04.129 +03:00 [INF] Request finished in 1.0104ms 304 image/png +2018-08-02 11:30:04.129 +03:00 [INF] Request finished in 0.7693ms 304 image/png +2018-08-02 11:30:04.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 11:30:04.134 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 11:30:04.134 +03:00 [INF] Request finished in 1.3254ms 304 image/png +2018-08-02 11:30:04.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 11:30:04.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 11:30:04.143 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 11:30:04.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 11:30:04.144 +03:00 [INF] Request finished in 0.5982ms 304 image/png +2018-08-02 11:30:04.144 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 11:30:04.144 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 11:30:04.144 +03:00 [INF] Request finished in 0.3287ms 304 image/png +2018-08-02 11:30:04.144 +03:00 [INF] Request finished in 0.5106ms 304 image/png +2018-08-02 11:30:04.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 11:30:04.150 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 11:30:04.151 +03:00 [INF] Request finished in 1.2626ms 304 image/png +2018-08-02 11:30:04.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 11:30:04.158 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 11:30:04.158 +03:00 [INF] Request finished in 5.7049ms 304 image/png +2018-08-02 11:30:04.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 11:30:04.159 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 11:30:04.159 +03:00 [INF] Request finished in 0.4556ms 304 image/png +2018-08-02 11:30:04.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 11:30:04.164 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 11:30:04.164 +03:00 [INF] Request finished in 2.0419ms 304 image/png +2018-08-02 11:30:04.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 11:30:04.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 11:30:04.165 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 11:30:04.165 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 11:30:04.165 +03:00 [INF] Request finished in 0.4198ms 304 image/png +2018-08-02 11:30:04.165 +03:00 [INF] Request finished in 0.473ms 304 image/png +2018-08-02 11:30:04.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 11:30:04.169 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 11:30:04.169 +03:00 [INF] Request finished in 0.5477ms 304 image/png +2018-08-02 11:30:04.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 11:30:04.177 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 11:30:04.177 +03:00 [INF] Request finished in 1.1024ms 304 image/jpeg +2018-08-02 11:33:22.613 +03:00 [INF] Loaded modules: +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 11:33:22.629 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 11:33:22.630 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 11:33:23.083 +03:00 [INF] Initialized all modules. +2018-08-02 11:33:23.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:33:25.613 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:33:25.629 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:33:26.171 +03:00 [INF] Executed action /Index in 553.11ms +2018-08-02 11:33:26.179 +03:00 [INF] Request finished in 2784.6829ms 200 text/html; charset=utf-8 +2018-08-02 11:33:26.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:33:26.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:33:26.209 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 11:33:26.209 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 11:33:26.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:33:26.211 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 11:33:26.211 +03:00 [INF] Request finished in 6.9657ms 304 text/css +2018-08-02 11:33:26.211 +03:00 [INF] Request finished in 1.2494ms 304 text/css +2018-08-02 11:33:26.211 +03:00 [INF] Request finished in 7.3259ms 304 text/css +2018-08-02 11:33:26.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:33:26.214 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 11:33:26.215 +03:00 [INF] Request finished in 0.6305ms 304 text/css +2018-08-02 11:33:26.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:33:26.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:33:26.222 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 11:33:26.222 +03:00 [INF] Request finished in 0.4495ms 304 text/css +2018-08-02 11:33:26.223 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 11:33:26.223 +03:00 [INF] Request finished in 1.2251ms 304 text/css +2018-08-02 11:33:26.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 11:33:26.226 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 11:33:26.227 +03:00 [INF] Request finished in 0.866ms 304 text/css +2018-08-02 11:33:26.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 11:33:26.229 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 11:33:26.230 +03:00 [INF] Request finished in 1.1915ms 304 text/css +2018-08-02 11:33:26.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:33:26.232 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:33:26.232 +03:00 [INF] Request finished in 0.4686ms 304 application/javascript +2018-08-02 11:33:26.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:33:26.236 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:33:26.236 +03:00 [INF] Request finished in 0.7686ms 304 application/javascript +2018-08-02 11:33:26.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:33:26.246 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:33:26.246 +03:00 [INF] Request finished in 0.9477ms 304 application/javascript +2018-08-02 11:33:26.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:33:26.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:33:26.254 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:33:26.254 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:33:26.254 +03:00 [INF] Request finished in 1.7265ms 304 application/javascript +2018-08-02 11:33:26.254 +03:00 [INF] Request finished in 0.644ms 304 application/javascript +2018-08-02 11:33:26.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:33:26.265 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:33:26.265 +03:00 [INF] Request finished in 1.692ms 304 application/javascript +2018-08-02 11:33:26.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:33:26.270 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:33:26.270 +03:00 [INF] Request finished in 1.1216ms 304 application/javascript +2018-08-02 11:33:26.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:33:26.273 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:33:26.273 +03:00 [INF] Request finished in 0.7157ms 304 application/javascript +2018-08-02 11:33:26.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:33:26.279 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:33:26.279 +03:00 [INF] Request finished in 0.6778ms 304 application/javascript +2018-08-02 11:33:26.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:33:26.287 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:33:26.287 +03:00 [INF] Request finished in 0.7062ms 304 application/javascript +2018-08-02 11:33:26.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:33:26.295 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:33:26.295 +03:00 [INF] Request finished in 0.6134ms 304 application/javascript +2018-08-02 11:33:26.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:33:26.302 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:33:26.302 +03:00 [INF] Request finished in 0.7465ms 304 application/javascript +2018-08-02 11:33:26.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:33:26.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:33:26.311 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:33:26.311 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:33:26.311 +03:00 [INF] Request finished in 1.0983ms 304 application/javascript +2018-08-02 11:33:26.312 +03:00 [INF] Request finished in 0.5853ms 304 application/javascript +2018-08-02 11:33:26.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:33:26.313 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:33:26.314 +03:00 [INF] Request finished in 1.1781ms 304 application/javascript +2018-08-02 11:33:26.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:33:26.318 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:33:26.318 +03:00 [INF] Request finished in 0.9501ms 304 application/javascript +2018-08-02 11:33:26.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:33:26.323 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:33:26.323 +03:00 [INF] Request finished in 1.8028ms 304 application/javascript +2018-08-02 11:33:26.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:33:26.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:33:26.332 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:33:26.332 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:33:26.332 +03:00 [INF] Request finished in 0.5913ms 304 application/javascript +2018-08-02 11:33:26.332 +03:00 [INF] Request finished in 0.6231ms 304 application/javascript +2018-08-02 11:33:26.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:33:26.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:33:26.354 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 11:33:26.354 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:33:26.354 +03:00 [INF] Request finished in 0.6328ms 304 application/javascript +2018-08-02 11:33:26.354 +03:00 [INF] Request finished in 0.6341ms 304 application/javascript +2018-08-02 11:33:26.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:33:26.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 11:33:26.380 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 11:33:26.380 +03:00 [INF] Request finished in 0.9328ms 304 application/javascript +2018-08-02 11:33:26.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:33:26.385 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:33:26.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 11:33:26.394 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 11:33:26.394 +03:00 [INF] Request finished in 0.4581ms 304 image/png +2018-08-02 11:33:26.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 11:33:26.399 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 11:33:26.399 +03:00 [INF] Request finished in 0.7473ms 304 image/svg+xml +2018-08-02 11:33:26.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 11:33:26.403 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 11:33:26.403 +03:00 [INF] Request finished in 0.469ms 304 image/png +2018-08-02 11:33:26.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 11:33:26.403 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 11:33:26.404 +03:00 [INF] Request finished in 0.7757ms 304 application/javascript +2018-08-02 11:33:26.412 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:33:26.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 11:33:26.416 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 11:33:26.417 +03:00 [INF] Request finished in 0.4911ms 304 image/png +2018-08-02 11:33:26.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 11:33:26.417 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 11:33:26.417 +03:00 [INF] Request finished in 0.2224ms 304 image/png +2018-08-02 11:33:26.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 11:33:26.435 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 11:33:26.435 +03:00 [INF] Request finished in 1.0839ms 304 image/png +2018-08-02 11:33:26.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 11:33:26.438 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 11:33:26.439 +03:00 [INF] Request finished in 1.3862ms 304 image/png +2018-08-02 11:33:26.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 11:33:26.450 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 11:33:26.450 +03:00 [INF] Request finished in 0.6438ms 304 image/png +2018-08-02 11:33:26.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 11:33:26.462 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 11:33:26.462 +03:00 [INF] Request finished in 0.6628ms 304 image/png +2018-08-02 11:33:26.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 11:33:26.463 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 11:33:26.463 +03:00 [INF] Request finished in 0.5936ms 304 image/png +2018-08-02 11:33:26.471 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:33:26.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 11:33:26.480 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 11:33:26.480 +03:00 [INF] Request finished in 0.505ms 304 image/png +2018-08-02 11:33:26.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 11:33:26.509 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 11:33:26.509 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:33:26.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 11:33:26.509 +03:00 [INF] Request finished in 1.8153ms 304 image/png +2018-08-02 11:33:26.511 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 11:33:26.511 +03:00 [INF] Request finished in 1.768ms 304 image/png +2018-08-02 11:33:26.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 11:33:26.522 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 11:33:26.522 +03:00 [INF] Request finished in 2.4326ms 304 image/png +2018-08-02 11:33:26.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 11:33:26.530 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 11:33:26.530 +03:00 [INF] Request finished in 0.8143ms 304 image/png +2018-08-02 11:33:26.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 11:33:26.537 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 11:33:26.537 +03:00 [INF] Request finished in 0.608ms 304 image/svg+xml +2018-08-02 11:33:26.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 11:33:26.543 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 11:33:26.543 +03:00 [INF] Request finished in 0.8377ms 304 image/png +2018-08-02 11:33:26.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 11:33:26.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 11:33:26.560 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 11:33:26.560 +03:00 [INF] Request finished in 1.6101ms 304 image/png +2018-08-02 11:33:26.561 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 11:33:26.562 +03:00 [INF] Request finished in 3.984ms 304 image/png +2018-08-02 11:33:26.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 11:33:26.563 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 11:33:26.563 +03:00 [INF] Request finished in 1.5914ms 304 image/png +2018-08-02 11:33:26.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 11:33:26.573 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 11:33:26.573 +03:00 [INF] Request finished in 5.4443ms 304 image/png +2018-08-02 11:33:26.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 11:33:26.588 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 11:33:26.588 +03:00 [INF] Request finished in 0.9508ms 304 image/png +2018-08-02 11:33:26.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 11:33:26.595 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 11:33:26.596 +03:00 [INF] Request finished in 0.7617ms 304 image/png +2018-08-02 11:33:26.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 11:33:26.598 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 11:33:26.599 +03:00 [INF] Request finished in 1.8885ms 304 image/png +2018-08-02 11:33:26.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 11:33:26.606 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 11:33:26.606 +03:00 [INF] Request finished in 0.6499ms 304 image/png +2018-08-02 11:33:26.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 11:33:26.611 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 11:33:26.611 +03:00 [INF] Request finished in 0.7011ms 304 image/png +2018-08-02 11:33:26.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 11:33:26.612 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 11:33:26.612 +03:00 [INF] Request finished in 0.4635ms 304 image/png +2018-08-02 11:33:26.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 11:33:26.620 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 11:33:26.620 +03:00 [INF] Request finished in 0.7644ms 304 image/png +2018-08-02 11:33:26.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 11:33:26.624 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 11:33:26.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 11:33:26.624 +03:00 [INF] Request finished in 0.8889ms 304 image/png +2018-08-02 11:33:26.625 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 11:33:26.625 +03:00 [INF] Request finished in 1.2115ms 304 image/png +2018-08-02 11:33:26.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 11:33:26.634 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 11:33:26.634 +03:00 [INF] Request finished in 0.4553ms 304 image/png +2018-08-02 11:33:26.645 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 163.3436ms. +2018-08-02 11:33:26.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 11:33:26.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 11:33:26.648 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 11:33:26.648 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 11:33:26.648 +03:00 [INF] Request finished in 0.4519ms 304 image/png +2018-08-02 11:33:26.648 +03:00 [INF] Request finished in 0.5211ms 304 image/png +2018-08-02 11:33:26.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 11:33:26.649 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 11:33:26.652 +03:00 [INF] Request finished in 3.0056ms 304 image/png +2018-08-02 11:33:26.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 11:33:26.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 11:33:26.660 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 11:33:26.660 +03:00 [INF] Request finished in 0.722ms 304 image/png +2018-08-02 11:33:26.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 11:33:26.661 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 11:33:26.661 +03:00 [INF] Request finished in 0.6583ms 304 image/png +2018-08-02 11:33:26.661 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 11:33:26.661 +03:00 [INF] Request finished in 0.4342ms 304 image/png +2018-08-02 11:33:26.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 11:33:26.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 11:33:26.667 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:33:26.667 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 11:33:26.667 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 11:33:26.668 +03:00 [INF] Request finished in 0.4251ms 304 image/png +2018-08-02 11:33:26.668 +03:00 [INF] Request finished in 0.4028ms 304 image/jpeg +2018-08-02 11:33:26.668 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 282.6263ms +2018-08-02 11:33:26.668 +03:00 [INF] Request finished in 312.4048ms 200 text/plain; charset=utf-8 +2018-08-02 11:33:26.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 11:33:26.677 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 11:33:26.677 +03:00 [INF] Request finished in 4.2284ms 304 image/png +2018-08-02 11:33:26.703 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 191.66660000000002ms. +2018-08-02 11:33:26.703 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:33:26.703 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 291.3373ms +2018-08-02 11:33:26.704 +03:00 [INF] Request finished in 323.1904ms 200 text/plain; charset=utf-8 +2018-08-02 11:34:06.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 11:34:07.192 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 11:34:07.193 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 11:34:07.527 +03:00 [INF] Executed action /Index in 334.2459ms +2018-08-02 11:34:07.527 +03:00 [INF] Request finished in 622.7282ms 200 text/html; charset=utf-8 +2018-08-02 11:34:07.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 11:34:07.560 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 11:34:07.560 +03:00 [INF] Request finished in 3.0725ms 304 text/css +2018-08-02 11:34:07.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 11:34:07.561 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 11:34:07.561 +03:00 [INF] Request finished in 1.0531ms 304 text/css +2018-08-02 11:34:07.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 11:34:07.562 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 11:34:07.563 +03:00 [INF] Request finished in 0.932ms 304 text/css +2018-08-02 11:34:07.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 11:34:07.572 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 11:34:07.572 +03:00 [INF] Request finished in 0.6921ms 304 text/css +2018-08-02 11:34:07.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 11:34:07.575 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 11:34:07.575 +03:00 [INF] Request finished in 0.8463ms 304 text/css +2018-08-02 11:34:07.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 11:34:07.595 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 11:34:07.595 +03:00 [INF] Request finished in 0.8299ms 304 application/javascript +2018-08-02 11:34:07.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 11:34:07.595 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 11:34:07.595 +03:00 [INF] Request finished in 0.4548ms 304 text/css +2018-08-02 11:34:07.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 11:34:07.597 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 11:34:07.598 +03:00 [INF] Request finished in 1.6877ms 304 text/css +2018-08-02 11:34:07.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 11:34:07.600 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 11:34:07.600 +03:00 [INF] Request finished in 0.9241ms 304 text/css +2018-08-02 11:34:07.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 11:34:07.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 11:34:07.603 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 11:34:07.603 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 11:34:07.603 +03:00 [INF] Request finished in 0.5059ms 304 application/javascript +2018-08-02 11:34:07.603 +03:00 [INF] Request finished in 0.6769ms 304 application/javascript +2018-08-02 11:34:07.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 11:34:07.605 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 11:34:07.605 +03:00 [INF] Request finished in 0.8072ms 304 application/javascript +2018-08-02 11:34:07.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 11:34:07.616 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 11:34:07.617 +03:00 [INF] Request finished in 8.484ms 304 application/javascript +2018-08-02 11:34:07.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 11:34:07.624 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 11:34:07.625 +03:00 [INF] Request finished in 1.3189ms 304 application/javascript +2018-08-02 11:34:07.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 11:34:07.626 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 11:34:07.627 +03:00 [INF] Request finished in 0.8401ms 304 application/javascript +2018-08-02 11:34:07.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 11:34:07.634 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 11:34:07.635 +03:00 [INF] Request finished in 0.5869ms 304 application/javascript +2018-08-02 11:34:07.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 11:34:07.639 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 11:34:07.640 +03:00 [INF] Request finished in 1.2745ms 304 application/javascript +2018-08-02 11:34:07.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 11:34:07.643 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 11:34:07.643 +03:00 [INF] Request finished in 0.596ms 304 application/javascript +2018-08-02 11:34:07.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 11:34:07.644 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 11:34:07.644 +03:00 [INF] Request finished in 0.4483ms 304 application/javascript +2018-08-02 11:34:07.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 11:34:07.649 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 11:34:07.649 +03:00 [INF] Request finished in 1.0341ms 304 application/javascript +2018-08-02 11:34:07.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 11:34:07.664 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 11:34:07.664 +03:00 [INF] Request finished in 0.6165ms 304 application/javascript +2018-08-02 11:34:07.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 11:34:07.670 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 11:34:07.670 +03:00 [INF] Request finished in 0.7968ms 304 application/javascript +2018-08-02 11:34:07.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 11:34:07.673 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 11:34:07.674 +03:00 [INF] Request finished in 1.1152ms 304 application/javascript +2018-08-02 11:34:07.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 11:34:07.680 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 11:34:07.681 +03:00 [INF] Request finished in 0.901ms 304 application/javascript +2018-08-02 11:34:07.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 11:34:07.688 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 11:34:07.688 +03:00 [INF] Request finished in 0.742ms 304 application/javascript +2018-08-02 11:34:07.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 11:34:07.695 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 11:34:07.696 +03:00 [INF] Request finished in 0.6965ms 304 application/javascript +2018-08-02 11:34:07.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 11:34:07.701 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 11:34:07.701 +03:00 [INF] Request finished in 1.0724ms 304 application/javascript +2018-08-02 11:34:07.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 11:34:07.716 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 11:34:07.716 +03:00 [INF] Request finished in 0.9003ms 304 image/png +2018-08-02 11:34:07.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 11:34:07.722 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 11:34:07.722 +03:00 [INF] Request finished in 0.5653ms 304 image/svg+xml +2018-08-02 11:34:07.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 11:34:07.722 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 11:34:07.723 +03:00 [INF] Request finished in 0.9122ms 304 image/png +2018-08-02 11:34:07.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 11:34:07.730 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 11:34:07.730 +03:00 [INF] Request finished in 0.4148ms 304 image/png +2018-08-02 11:34:07.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 11:34:07.740 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 11:34:07.743 +03:00 [INF] Request finished in 3.0438ms 304 image/png +2018-08-02 11:34:07.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 11:34:07.746 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 11:34:07.746 +03:00 [INF] Request finished in 0.5327ms 304 image/png +2018-08-02 11:34:07.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 11:34:07.748 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 11:34:07.748 +03:00 [INF] Request finished in 0.8112ms 304 image/png +2018-08-02 11:34:07.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 11:34:07.753 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 11:34:07.753 +03:00 [INF] Request finished in 1.9481ms 304 image/png +2018-08-02 11:34:07.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 11:34:07.754 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 11:34:07.754 +03:00 [INF] Request finished in 0.518ms 304 image/png +2018-08-02 11:34:07.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 11:34:07.764 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 11:34:07.764 +03:00 [INF] Request finished in 1.2793ms 304 image/png +2018-08-02 11:34:07.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 11:34:07.765 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 11:34:07.765 +03:00 [INF] Request finished in 0.5694ms 304 image/png +2018-08-02 11:34:07.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 11:34:07.783 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 11:34:07.784 +03:00 [INF] Request finished in 1.7303ms 304 image/png +2018-08-02 11:34:07.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 11:34:07.787 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 11:34:07.787 +03:00 [INF] Request finished in 0.7137ms 304 image/png +2018-08-02 11:34:07.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 11:34:07.791 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 11:34:07.792 +03:00 [INF] Request finished in 1.0577ms 304 image/png +2018-08-02 11:34:07.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 11:34:07.797 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 11:34:07.797 +03:00 [INF] Request finished in 0.5011ms 304 image/png +2018-08-02 11:34:07.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 11:34:07.802 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 11:34:07.802 +03:00 [INF] Request finished in 0.4608ms 304 image/png +2018-08-02 11:34:07.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 11:34:07.806 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 11:34:07.807 +03:00 [INF] Request finished in 0.5654ms 304 image/png +2018-08-02 11:34:07.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 11:34:07.810 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 11:34:07.810 +03:00 [INF] Request finished in 0.4796ms 304 image/svg+xml +2018-08-02 11:34:07.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 11:34:07.818 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 11:34:07.819 +03:00 [INF] Request finished in 1.5626ms 304 image/png +2018-08-02 11:34:07.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 11:34:07.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 11:34:07.825 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 11:34:07.826 +03:00 [INF] Request finished in 1.3234ms 304 image/png +2018-08-02 11:34:07.826 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 11:34:07.826 +03:00 [INF] Request finished in 1.1676ms 304 image/png +2018-08-02 11:34:07.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 11:34:07.832 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 11:34:07.833 +03:00 [INF] Request finished in 1.1615ms 304 image/png +2018-08-02 11:34:07.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 11:34:07.834 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 11:34:07.834 +03:00 [INF] Request finished in 0.6794ms 304 image/png +2018-08-02 11:34:07.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 11:34:07.840 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 11:34:07.840 +03:00 [INF] Request finished in 0.8032ms 304 image/png +2018-08-02 11:34:07.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 11:34:07.856 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 11:34:07.856 +03:00 [INF] Request finished in 1.2624ms 304 image/png +2018-08-02 11:34:07.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 11:34:07.857 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 11:34:07.857 +03:00 [INF] Request finished in 0.696ms 304 image/png +2018-08-02 11:34:07.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 11:34:07.862 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 11:34:07.862 +03:00 [INF] Request finished in 0.8053ms 304 image/png +2018-08-02 11:34:07.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 11:34:07.868 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 11:34:07.868 +03:00 [INF] Request finished in 1.6183ms 304 image/png +2018-08-02 11:34:07.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 11:34:07.885 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 11:34:07.886 +03:00 [INF] Request finished in 1.3061ms 304 image/png +2018-08-02 11:34:07.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 11:34:07.891 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 11:34:07.891 +03:00 [INF] Request finished in 5.0144ms 304 image/png +2018-08-02 11:34:07.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 11:34:07.899 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 11:34:07.900 +03:00 [INF] Request finished in 1.3507ms 304 image/png +2018-08-02 11:34:07.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 11:34:07.905 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 11:34:07.905 +03:00 [INF] Request finished in 2.0433ms 304 image/png +2018-08-02 11:34:07.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 11:34:07.907 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 11:34:07.907 +03:00 [INF] Request finished in 0.5891ms 304 image/png +2018-08-02 11:34:07.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 11:34:07.908 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 11:34:07.908 +03:00 [INF] Request finished in 0.5411ms 304 image/png +2018-08-02 11:34:07.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 11:34:07.913 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 11:34:07.913 +03:00 [INF] Request finished in 1.1987ms 304 image/png +2018-08-02 11:34:07.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 11:34:07.915 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 11:34:07.915 +03:00 [INF] Request finished in 0.814ms 304 image/png +2018-08-02 11:34:07.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 11:34:07.923 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 11:34:07.923 +03:00 [INF] Request finished in 2.415ms 304 image/png +2018-08-02 11:34:07.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 11:34:07.924 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 11:34:07.924 +03:00 [INF] Request finished in 1.0043ms 304 image/png +2018-08-02 11:34:07.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 11:34:07.928 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 11:34:07.928 +03:00 [INF] Request finished in 0.5251ms 304 image/png +2018-08-02 11:34:07.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 11:34:07.930 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 11:34:07.930 +03:00 [INF] Request finished in 1.4533ms 304 application/javascript +2018-08-02 11:34:07.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 11:34:07.933 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 11:34:07.933 +03:00 [INF] Request finished in 0.9354ms 304 application/javascript +2018-08-02 11:34:07.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 11:34:07.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 11:34:07.952 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:34:07.954 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 11:34:07.954 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 11:34:07.955 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4204ms. +2018-08-02 11:34:07.955 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 11:34:07.956 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:34:07.956 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4907ms. +2018-08-02 11:34:07.956 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.6058000000000003ms +2018-08-02 11:34:07.956 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 11:34:07.957 +03:00 [INF] Request finished in 8.6587ms 200 text/plain; charset=utf-8 +2018-08-02 11:34:07.957 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1642ms +2018-08-02 11:34:07.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 11:34:07.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 11:34:07.958 +03:00 [INF] Request finished in 13.6574ms 200 text/plain; charset=utf-8 +2018-08-02 11:34:07.958 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 11:34:07.958 +03:00 [INF] Request finished in 1.432ms 304 application/javascript +2018-08-02 11:34:07.958 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 11:34:07.959 +03:00 [INF] Request finished in 1.1125ms 304 application/javascript +2018-08-02 11:34:07.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 11:34:07.965 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 11:34:07.965 +03:00 [INF] Request finished in 0.5503ms 304 image/jpeg +2018-08-02 13:31:42.510 +03:00 [INF] Loaded modules: +2018-08-02 13:31:42.525 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 13:31:42.526 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 13:31:42.527 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 13:31:42.527 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 13:31:42.527 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 13:31:43.047 +03:00 [INF] Initialized all modules. +2018-08-02 13:31:43.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:31:45.859 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:31:45.883 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:31:46.511 +03:00 [INF] Executed action /Index in 647.2473ms +2018-08-02 13:31:46.519 +03:00 [INF] Request finished in 3127.7722ms 200 text/html; charset=utf-8 +2018-08-02 13:31:46.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:31:46.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:31:46.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:31:46.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:31:46.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:31:46.624 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:31:46.624 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:31:46.624 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:31:46.624 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:31:46.624 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:31:46.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:31:46.629 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 14.523ms 200 text/css +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 31.3782ms 200 text/css +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 42.3064ms 200 text/css +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 36.3235ms 200 text/css +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 42.337ms 0 text/css +2018-08-02 13:31:46.632 +03:00 [INF] Request finished in 6.6881ms 200 text/css +2018-08-02 13:31:46.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:31:46.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:31:46.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:31:46.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:31:46.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:31:46.648 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:31:46.648 +03:00 [INF] Request finished in 1.5325ms 200 image/png +2018-08-02 13:31:46.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:31:46.648 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 13:31:46.648 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 13:31:46.649 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 13:31:46.649 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 13:31:46.649 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:31:46.649 +03:00 [INF] Request finished in 1.3644ms 200 image/svg+xml +2018-08-02 13:31:46.651 +03:00 [INF] Request finished in 5.1047ms 304 image/png +2018-08-02 13:31:46.651 +03:00 [INF] Request finished in 5.145ms 304 image/png +2018-08-02 13:31:46.651 +03:00 [INF] Request finished in 3.7006ms 304 image/png +2018-08-02 13:31:46.651 +03:00 [INF] Request finished in 4.8556ms 304 image/png +2018-08-02 13:31:46.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:31:46.660 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 13:31:46.661 +03:00 [INF] Request finished in 0.8764ms 304 image/png +2018-08-02 13:31:46.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:31:46.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:31:46.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:31:46.663 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 13:31:46.663 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 13:31:46.664 +03:00 [INF] Request finished in 1.0648ms 304 image/png +2018-08-02 13:31:46.664 +03:00 [INF] Request finished in 1.07ms 304 image/png +2018-08-02 13:31:46.664 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 13:31:46.664 +03:00 [INF] Request finished in 0.5126ms 304 image/png +2018-08-02 13:31:46.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:31:46.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:31:46.675 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 13:31:46.675 +03:00 [INF] Request finished in 0.7014ms 304 image/png +2018-08-02 13:31:46.675 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 13:31:46.675 +03:00 [INF] Request finished in 0.8338ms 304 image/png +2018-08-02 13:31:46.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:31:46.675 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 13:31:46.676 +03:00 [INF] Request finished in 0.5219ms 304 image/png +2018-08-02 13:31:46.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:31:46.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:31:46.677 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 13:31:46.678 +03:00 [INF] Request finished in 2.5898ms 304 image/png +2018-08-02 13:31:46.678 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 13:31:46.678 +03:00 [INF] Request finished in 2.5553ms 304 image/svg+xml +2018-08-02 13:31:46.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:31:46.680 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 13:31:46.680 +03:00 [INF] Request finished in 0.5931ms 304 image/png +2018-08-02 13:31:46.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:31:46.681 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 13:31:46.682 +03:00 [INF] Request finished in 0.8355ms 304 image/png +2018-08-02 13:31:46.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:31:46.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:31:46.690 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 13:31:46.690 +03:00 [INF] Request finished in 1.6753ms 304 image/png +2018-08-02 13:31:46.690 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 13:31:46.690 +03:00 [INF] Request finished in 1.9793ms 304 image/png +2018-08-02 13:31:46.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:31:46.691 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 13:31:46.691 +03:00 [INF] Request finished in 0.6336ms 304 image/png +2018-08-02 13:31:46.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:31:46.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:31:46.694 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 13:31:46.694 +03:00 [INF] Request finished in 1.2721ms 304 image/png +2018-08-02 13:31:46.694 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 13:31:46.694 +03:00 [INF] Request finished in 2.5832ms 304 image/png +2018-08-02 13:31:46.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:31:46.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:31:46.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:31:46.701 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 13:31:46.701 +03:00 [INF] Request finished in 1.8981ms 304 image/png +2018-08-02 13:31:46.701 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 13:31:46.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:31:46.702 +03:00 [INF] Request finished in 1.8241ms 304 image/png +2018-08-02 13:31:46.702 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 13:31:46.702 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 13:31:46.704 +03:00 [INF] Request finished in 2.8258ms 304 image/png +2018-08-02 13:31:46.704 +03:00 [INF] Request finished in 3.8165ms 304 image/png +2018-08-02 13:31:46.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:31:46.712 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 13:31:46.712 +03:00 [INF] Request finished in 0.6835ms 304 image/png +2018-08-02 13:31:46.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:31:46.715 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 13:31:46.715 +03:00 [INF] Request finished in 0.7565ms 304 image/png +2018-08-02 13:31:46.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:31:46.716 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 13:31:46.716 +03:00 [INF] Request finished in 1.0108ms 304 image/png +2018-08-02 13:31:46.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:31:46.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:31:46.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:31:46.724 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 13:31:46.724 +03:00 [INF] Request finished in 0.846ms 304 image/png +2018-08-02 13:31:46.724 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 13:31:46.724 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 13:31:46.724 +03:00 [INF] Request finished in 0.8154ms 304 image/png +2018-08-02 13:31:46.724 +03:00 [INF] Request finished in 0.5189ms 304 image/png +2018-08-02 13:31:46.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:31:46.728 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 13:31:46.728 +03:00 [INF] Request finished in 0.7574ms 304 image/png +2018-08-02 13:31:46.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:31:46.731 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 13:31:46.731 +03:00 [INF] Request finished in 0.9303ms 304 image/png +2018-08-02 13:31:46.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:31:46.733 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 13:31:46.734 +03:00 [INF] Request finished in 0.7343ms 304 image/png +2018-08-02 13:31:46.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:31:46.736 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 13:31:46.737 +03:00 [INF] Request finished in 1.0519ms 304 image/png +2018-08-02 13:31:46.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:31:46.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:31:46.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:31:46.806 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 13:31:46.806 +03:00 [INF] Request finished in 1.0735ms 304 application/javascript +2018-08-02 13:31:46.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:31:46.812 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 13:31:46.812 +03:00 [INF] Request finished in 0.5939ms 304 image/jpeg +2018-08-02 13:31:46.826 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:31:46.841 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:31:46.911 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:31:46.913 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:31:47.001 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 85.2197ms. +2018-08-02 13:31:47.014 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:31:47.014 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 188.1763ms +2018-08-02 13:31:47.014 +03:00 [INF] Request finished in 215.3666ms 200 text/plain; charset=utf-8 +2018-08-02 13:31:47.025 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 111.33470000000001ms. +2018-08-02 13:31:47.025 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:31:47.025 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 184.77700000000002ms +2018-08-02 13:31:47.026 +03:00 [INF] Request finished in 225.0769ms 200 text/plain; charset=utf-8 +2018-08-02 13:31:48.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-08-02 13:31:48.351 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-08-02 13:31:48.351 +03:00 [INF] Request finished in 1.2412ms 200 image/png +2018-08-02 13:34:05.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:34:05.529 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:34:05.530 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:34:06.027 +03:00 [INF] Executed action /Index in 497.7456ms +2018-08-02 13:34:06.028 +03:00 [INF] Request finished in 506.5602ms 200 text/html; charset=utf-8 +2018-08-02 13:34:06.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:34:06.071 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 13:34:06.071 +03:00 [INF] Request finished in 0.7408ms 304 text/css +2018-08-02 13:34:06.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:34:06.075 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 13:34:06.076 +03:00 [INF] Request finished in 1.9999ms 304 text/css +2018-08-02 13:34:06.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:34:06.079 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 13:34:06.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:34:06.079 +03:00 [INF] Request finished in 1.1768ms 304 text/css +2018-08-02 13:34:06.079 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 13:34:06.080 +03:00 [INF] Request finished in 0.5112ms 304 text/css +2018-08-02 13:34:06.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:34:06.095 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 13:34:06.095 +03:00 [INF] Request finished in 4.5089ms 304 text/css +2018-08-02 13:34:06.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:34:06.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:34:06.099 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 13:34:06.099 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 13:34:06.099 +03:00 [INF] Request finished in 1.5573ms 304 text/css +2018-08-02 13:34:06.099 +03:00 [INF] Request finished in 0.4826ms 304 application/javascript +2018-08-02 13:34:06.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:34:06.100 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 13:34:06.101 +03:00 [INF] Request finished in 0.6647ms 304 application/javascript +2018-08-02 13:34:06.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:34:06.113 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:34:06.113 +03:00 [INF] Request finished in 0.9181ms 200 text/css +2018-08-02 13:34:06.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:34:06.118 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 13:34:06.118 +03:00 [INF] Request finished in 1.4917ms 304 text/css +2018-08-02 13:34:06.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:34:06.123 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 13:34:06.123 +03:00 [INF] Request finished in 0.8388ms 304 application/javascript +2018-08-02 13:34:06.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:34:06.124 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 13:34:06.125 +03:00 [INF] Request finished in 0.6268ms 304 application/javascript +2018-08-02 13:34:06.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:34:06.138 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 13:34:06.138 +03:00 [INF] Request finished in 0.62ms 304 application/javascript +2018-08-02 13:34:06.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:34:06.141 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 13:34:06.141 +03:00 [INF] Request finished in 0.6236ms 304 application/javascript +2018-08-02 13:34:06.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:34:06.149 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 13:34:06.149 +03:00 [INF] Request finished in 0.7715ms 304 application/javascript +2018-08-02 13:34:06.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:34:06.152 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 13:34:06.152 +03:00 [INF] Request finished in 1.3854ms 304 application/javascript +2018-08-02 13:34:06.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:34:06.157 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 13:34:06.157 +03:00 [INF] Request finished in 0.5819ms 304 application/javascript +2018-08-02 13:34:06.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:34:06.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:34:06.178 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 13:34:06.179 +03:00 [INF] Request finished in 1.3068ms 304 application/javascript +2018-08-02 13:34:06.179 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 13:34:06.179 +03:00 [INF] Request finished in 1.0239ms 304 application/javascript +2018-08-02 13:34:06.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:34:06.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:34:06.185 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 13:34:06.185 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 13:34:06.186 +03:00 [INF] Request finished in 2.6295ms 304 application/javascript +2018-08-02 13:34:06.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:34:06.186 +03:00 [INF] Request finished in 5.3351ms 304 application/javascript +2018-08-02 13:34:06.187 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 13:34:06.187 +03:00 [INF] Request finished in 0.924ms 304 application/javascript +2018-08-02 13:34:06.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:34:06.189 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 13:34:06.189 +03:00 [INF] Request finished in 0.5577ms 304 application/javascript +2018-08-02 13:34:06.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:34:06.194 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 13:34:06.194 +03:00 [INF] Request finished in 1.7561ms 304 application/javascript +2018-08-02 13:34:06.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:34:06.211 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 13:34:06.212 +03:00 [INF] Request finished in 2.0734ms 304 application/javascript +2018-08-02 13:34:06.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:34:06.217 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 13:34:06.217 +03:00 [INF] Request finished in 0.7787ms 304 application/javascript +2018-08-02 13:34:06.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:34:06.220 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 13:34:06.221 +03:00 [INF] Request finished in 3.4397ms 304 application/javascript +2018-08-02 13:34:06.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:34:06.230 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 13:34:06.231 +03:00 [INF] Request finished in 1.8661ms 304 application/javascript +2018-08-02 13:34:06.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:34:06.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:34:06.241 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 13:34:06.241 +03:00 [INF] Request finished in 1.0623ms 304 application/javascript +2018-08-02 13:34:06.241 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:06.243 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:34:06.245 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.3668ms. +2018-08-02 13:34:06.245 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:06.245 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.7067ms +2018-08-02 13:34:06.246 +03:00 [INF] Request finished in 14.0092ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:06.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:34:06.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:34:06.278 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 13:34:06.279 +03:00 [INF] Request finished in 0.8152ms 304 application/javascript +2018-08-02 13:34:06.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:34:06.281 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 13:34:06.281 +03:00 [INF] Request finished in 0.6762ms 304 application/javascript +2018-08-02 13:34:06.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:34:06.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:34:06.284 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 13:34:06.284 +03:00 [INF] Request finished in 0.9812ms 304 image/svg+xml +2018-08-02 13:34:06.286 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:06.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:34:06.290 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 13:34:06.290 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 13:34:06.290 +03:00 [INF] Request finished in 8.4658ms 304 image/png +2018-08-02 13:34:06.290 +03:00 [INF] Request finished in 0.3973ms 304 image/png +2018-08-02 13:34:06.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:34:06.290 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 13:34:06.290 +03:00 [INF] Request finished in 0.3484ms 304 image/png +2018-08-02 13:34:06.298 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:34:06.298 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21760000000000002ms. +2018-08-02 13:34:06.299 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:06.299 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 13.056700000000001ms +2018-08-02 13:34:06.299 +03:00 [INF] Request finished in 40.7253ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:06.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:34:06.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:34:06.307 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 13:34:06.307 +03:00 [INF] Request finished in 0.7854ms 304 image/png +2018-08-02 13:34:06.310 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 13:34:06.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:34:06.311 +03:00 [INF] Request finished in 4.1143ms 304 image/png +2018-08-02 13:34:06.311 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 13:34:06.311 +03:00 [INF] Request finished in 0.8449ms 304 image/png +2018-08-02 13:34:06.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:34:06.313 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 13:34:06.313 +03:00 [INF] Request finished in 0.5755ms 304 image/png +2018-08-02 13:34:06.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:34:06.322 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 13:34:06.322 +03:00 [INF] Request finished in 3.7797ms 304 image/png +2018-08-02 13:34:06.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:34:06.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:34:06.335 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 13:34:06.335 +03:00 [INF] Request finished in 1.0742ms 304 image/png +2018-08-02 13:34:06.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:34:06.336 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 13:34:06.337 +03:00 [INF] Request finished in 0.85ms 304 image/png +2018-08-02 13:34:06.337 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 13:34:06.337 +03:00 [INF] Request finished in 5.6531ms 304 image/png +2018-08-02 13:34:06.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:34:06.340 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 13:34:06.340 +03:00 [INF] Request finished in 0.9108ms 304 image/png +2018-08-02 13:34:06.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:34:06.341 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 13:34:06.341 +03:00 [INF] Request finished in 1.5268ms 304 image/png +2018-08-02 13:34:06.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:34:06.356 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 13:34:06.356 +03:00 [INF] Request finished in 1.1987ms 304 image/png +2018-08-02 13:34:06.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:34:06.357 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 13:34:06.357 +03:00 [INF] Request finished in 0.613ms 304 image/png +2018-08-02 13:34:06.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:34:06.359 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 13:34:06.359 +03:00 [INF] Request finished in 1.6822ms 304 image/svg+xml +2018-08-02 13:34:06.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:34:06.361 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 13:34:06.362 +03:00 [INF] Request finished in 1.5994ms 304 image/png +2018-08-02 13:34:06.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:34:06.373 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 13:34:06.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:34:06.374 +03:00 [INF] Request finished in 1.7559ms 304 image/png +2018-08-02 13:34:06.374 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 13:34:06.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:34:06.375 +03:00 [INF] Request finished in 1.87ms 304 image/png +2018-08-02 13:34:06.376 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 13:34:06.377 +03:00 [INF] Request finished in 2.4377ms 304 image/png +2018-08-02 13:34:06.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:34:06.381 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 13:34:06.382 +03:00 [INF] Request finished in 0.5596ms 304 image/png +2018-08-02 13:34:06.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:34:06.385 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 13:34:06.386 +03:00 [INF] Request finished in 0.5376ms 304 image/png +2018-08-02 13:34:06.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:34:06.392 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 13:34:06.392 +03:00 [INF] Request finished in 0.5979ms 304 image/png +2018-08-02 13:34:06.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:34:06.393 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 13:34:06.393 +03:00 [INF] Request finished in 0.8908ms 304 image/png +2018-08-02 13:34:06.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:34:06.400 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 13:34:06.402 +03:00 [INF] Request finished in 0.6465ms 304 image/png +2018-08-02 13:34:06.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:34:06.402 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 13:34:06.403 +03:00 [INF] Request finished in 0.6312ms 304 image/png +2018-08-02 13:34:06.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:34:06.407 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 13:34:06.407 +03:00 [INF] Request finished in 2.2178ms 304 image/png +2018-08-02 13:34:06.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:34:06.420 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 13:34:06.420 +03:00 [INF] Request finished in 0.6366ms 304 image/png +2018-08-02 13:34:06.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:34:06.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:34:06.423 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 13:34:06.423 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 13:34:06.423 +03:00 [INF] Request finished in 1.6444ms 304 image/png +2018-08-02 13:34:06.423 +03:00 [INF] Request finished in 2.0341ms 304 image/png +2018-08-02 13:34:06.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:34:06.430 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 13:34:06.430 +03:00 [INF] Request finished in 1.3023ms 304 image/png +2018-08-02 13:34:06.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:34:06.434 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 13:34:06.434 +03:00 [INF] Request finished in 1.7155ms 304 image/png +2018-08-02 13:34:06.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:34:06.447 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 13:34:06.447 +03:00 [INF] Request finished in 0.7073ms 304 image/png +2018-08-02 13:34:06.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:34:06.453 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 13:34:06.453 +03:00 [INF] Request finished in 0.6023ms 304 image/png +2018-08-02 13:34:06.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:34:06.455 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 13:34:06.455 +03:00 [INF] Request finished in 0.5986ms 304 image/png +2018-08-02 13:34:06.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:34:06.456 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 13:34:06.456 +03:00 [INF] Request finished in 0.4014ms 304 image/png +2018-08-02 13:34:06.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:34:06.471 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 13:34:06.471 +03:00 [INF] Request finished in 0.7425ms 304 image/png +2018-08-02 13:34:06.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:34:06.480 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 13:34:06.480 +03:00 [INF] Request finished in 0.4998ms 304 image/png +2018-08-02 13:34:06.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:34:06.482 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 13:34:06.482 +03:00 [INF] Request finished in 0.7243ms 304 image/jpeg +2018-08-02 13:34:06.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-08-02 13:34:06.735 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-08-02 13:34:06.736 +03:00 [INF] Request finished in 2.4294ms 200 image/png +2018-08-02 13:34:14.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:34:14.753 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:34:14.753 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:34:15.064 +03:00 [INF] Executed action /Index in 310.2713ms +2018-08-02 13:34:15.064 +03:00 [INF] Request finished in 315.7051ms 200 text/html; charset=utf-8 +2018-08-02 13:34:15.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:34:15.096 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 13:34:15.096 +03:00 [INF] Request finished in 1.7807ms 304 text/css +2018-08-02 13:34:15.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:34:15.098 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 13:34:15.098 +03:00 [INF] Request finished in 0.7771ms 304 text/css +2018-08-02 13:34:15.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:34:15.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:34:15.100 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 13:34:15.100 +03:00 [INF] Request finished in 0.5889ms 304 text/css +2018-08-02 13:34:15.100 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 13:34:15.100 +03:00 [INF] Request finished in 0.9119ms 304 text/css +2018-08-02 13:34:15.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:34:15.106 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 13:34:15.106 +03:00 [INF] Request finished in 1.151ms 304 text/css +2018-08-02 13:34:15.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:34:15.107 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 13:34:15.108 +03:00 [INF] Request finished in 1.0179ms 304 text/css +2018-08-02 13:34:15.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:34:15.113 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 13:34:15.114 +03:00 [INF] Request finished in 0.7362ms 304 text/css +2018-08-02 13:34:15.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:34:15.118 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 13:34:15.118 +03:00 [INF] Request finished in 2.511ms 304 text/css +2018-08-02 13:34:15.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:34:15.125 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 13:34:15.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:34:15.125 +03:00 [INF] Request finished in 1.3595ms 304 application/javascript +2018-08-02 13:34:15.126 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 13:34:15.126 +03:00 [INF] Request finished in 0.5617ms 304 application/javascript +2018-08-02 13:34:15.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:34:15.130 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 13:34:15.130 +03:00 [INF] Request finished in 1.0927ms 304 application/javascript +2018-08-02 13:34:15.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:34:15.140 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 13:34:15.140 +03:00 [INF] Request finished in 2.8432ms 304 application/javascript +2018-08-02 13:34:15.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:34:15.141 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 13:34:15.142 +03:00 [INF] Request finished in 0.7749ms 304 application/javascript +2018-08-02 13:34:15.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:34:15.142 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 13:34:15.143 +03:00 [INF] Request finished in 0.8947ms 304 application/javascript +2018-08-02 13:34:15.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:34:15.151 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 13:34:15.152 +03:00 [INF] Request finished in 2.7177ms 304 application/javascript +2018-08-02 13:34:15.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:34:15.154 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 13:34:15.154 +03:00 [INF] Request finished in 0.5984ms 304 application/javascript +2018-08-02 13:34:15.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:34:15.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:34:15.157 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 13:34:15.157 +03:00 [INF] Request finished in 0.6503ms 304 application/javascript +2018-08-02 13:34:15.157 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 13:34:15.157 +03:00 [INF] Request finished in 0.5102ms 304 application/javascript +2018-08-02 13:34:15.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:34:15.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:34:15.168 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 13:34:15.168 +03:00 [INF] Request finished in 0.7149ms 304 application/javascript +2018-08-02 13:34:15.169 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 13:34:15.169 +03:00 [INF] Request finished in 1.5215ms 304 application/javascript +2018-08-02 13:34:15.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:34:15.174 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 13:34:15.174 +03:00 [INF] Request finished in 0.8135ms 304 application/javascript +2018-08-02 13:34:15.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:34:15.178 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 13:34:15.180 +03:00 [INF] Request finished in 2.5324ms 304 application/javascript +2018-08-02 13:34:15.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:34:15.181 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 13:34:15.181 +03:00 [INF] Request finished in 1.4305ms 304 application/javascript +2018-08-02 13:34:15.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:34:15.183 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 13:34:15.183 +03:00 [INF] Request finished in 1.2677ms 304 application/javascript +2018-08-02 13:34:15.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:34:15.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:34:15.200 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 13:34:15.201 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 13:34:15.201 +03:00 [INF] Request finished in 1.1362ms 304 application/javascript +2018-08-02 13:34:15.201 +03:00 [INF] Request finished in 0.6752ms 304 application/javascript +2018-08-02 13:34:15.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:34:15.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:34:15.205 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 13:34:15.205 +03:00 [INF] Request finished in 3.4237ms 304 application/javascript +2018-08-02 13:34:15.206 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 13:34:15.207 +03:00 [INF] Request finished in 3.8072ms 304 application/javascript +2018-08-02 13:34:15.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:34:15.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:34:15.209 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 13:34:15.209 +03:00 [INF] Request finished in 1.284ms 304 application/javascript +2018-08-02 13:34:15.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:34:15.222 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:15.223 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:15.223 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:34:15.223 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10250000000000001ms. +2018-08-02 13:34:15.223 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:15.223 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5228000000000002ms +2018-08-02 13:34:15.223 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:34:15.223 +03:00 [INF] Request finished in 9.6599ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:15.224 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8514ms. +2018-08-02 13:34:15.225 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:15.225 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1947ms +2018-08-02 13:34:15.225 +03:00 [INF] Request finished in 16.4788ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:15.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:34:15.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:34:15.228 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 13:34:15.228 +03:00 [INF] Request finished in 0.5784ms 304 image/svg+xml +2018-08-02 13:34:15.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:34:15.235 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 13:34:15.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:34:15.235 +03:00 [INF] Request finished in 1.3745ms 304 image/png +2018-08-02 13:34:15.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:34:15.236 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 13:34:15.236 +03:00 [INF] Request finished in 9.7533ms 304 application/javascript +2018-08-02 13:34:15.236 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 13:34:15.236 +03:00 [INF] Request finished in 1.3458ms 304 image/png +2018-08-02 13:34:15.237 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 13:34:15.237 +03:00 [INF] Request finished in 1.0087ms 304 image/png +2018-08-02 13:34:15.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:34:15.245 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 13:34:15.245 +03:00 [INF] Request finished in 0.5083ms 304 application/javascript +2018-08-02 13:34:15.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:34:15.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:34:15.255 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 13:34:15.255 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 13:34:15.255 +03:00 [INF] Request finished in 0.5348ms 304 image/png +2018-08-02 13:34:15.257 +03:00 [INF] Request finished in 1.9545ms 304 image/png +2018-08-02 13:34:15.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:34:15.257 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 13:34:15.257 +03:00 [INF] Request finished in 0.6109ms 304 image/png +2018-08-02 13:34:15.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:34:15.259 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 13:34:15.259 +03:00 [INF] Request finished in 1.2803ms 304 image/png +2018-08-02 13:34:15.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:34:15.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:34:15.267 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 13:34:15.267 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 13:34:15.268 +03:00 [INF] Request finished in 0.7543ms 304 image/png +2018-08-02 13:34:15.268 +03:00 [INF] Request finished in 0.5431ms 304 image/png +2018-08-02 13:34:15.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:34:15.270 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 13:34:15.270 +03:00 [INF] Request finished in 0.9086ms 304 image/png +2018-08-02 13:34:15.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:34:15.273 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 13:34:15.273 +03:00 [INF] Request finished in 2.5364ms 304 image/png +2018-08-02 13:34:15.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:34:15.279 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 13:34:15.280 +03:00 [INF] Request finished in 1.4409ms 304 image/png +2018-08-02 13:34:15.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:34:15.282 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 13:34:15.284 +03:00 [INF] Request finished in 4.5155ms 304 image/png +2018-08-02 13:34:15.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:34:15.289 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 13:34:15.290 +03:00 [INF] Request finished in 1.8437ms 304 image/png +2018-08-02 13:34:15.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:34:15.293 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 13:34:15.293 +03:00 [INF] Request finished in 0.6063ms 304 image/png +2018-08-02 13:34:15.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:34:15.300 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 13:34:15.300 +03:00 [INF] Request finished in 0.7317ms 304 image/png +2018-08-02 13:34:15.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:34:15.302 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 13:34:15.303 +03:00 [INF] Request finished in 2.4653ms 304 image/svg+xml +2018-08-02 13:34:15.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:34:15.309 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 13:34:15.310 +03:00 [INF] Request finished in 0.5367ms 304 image/png +2018-08-02 13:34:15.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:34:15.311 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 13:34:15.311 +03:00 [INF] Request finished in 0.7875ms 304 image/png +2018-08-02 13:34:15.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:34:15.317 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 13:34:15.317 +03:00 [INF] Request finished in 0.565ms 304 image/png +2018-08-02 13:34:15.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:34:15.323 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 13:34:15.323 +03:00 [INF] Request finished in 1.1431ms 304 image/png +2018-08-02 13:34:15.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:34:15.326 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 13:34:15.326 +03:00 [INF] Request finished in 0.51ms 304 image/png +2018-08-02 13:34:15.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:34:15.326 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 13:34:15.326 +03:00 [INF] Request finished in 0.8296ms 304 image/png +2018-08-02 13:34:15.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:34:15.333 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 13:34:15.333 +03:00 [INF] Request finished in 0.6635ms 304 image/png +2018-08-02 13:34:15.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:34:15.333 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 13:34:15.333 +03:00 [INF] Request finished in 0.5996ms 304 image/png +2018-08-02 13:34:15.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:34:15.340 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 13:34:15.340 +03:00 [INF] Request finished in 0.7585ms 304 image/png +2018-08-02 13:34:15.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:34:15.343 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 13:34:15.343 +03:00 [INF] Request finished in 0.5952ms 304 image/png +2018-08-02 13:34:15.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:34:15.348 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 13:34:15.348 +03:00 [INF] Request finished in 1.0155ms 304 image/png +2018-08-02 13:34:15.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:34:15.349 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 13:34:15.349 +03:00 [INF] Request finished in 0.6404ms 304 image/png +2018-08-02 13:34:15.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:34:15.353 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 13:34:15.355 +03:00 [INF] Request finished in 2.3611ms 304 image/png +2018-08-02 13:34:15.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:34:15.358 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 13:34:15.358 +03:00 [INF] Request finished in 0.6204ms 304 image/png +2018-08-02 13:34:15.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:34:15.366 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 13:34:15.366 +03:00 [INF] Request finished in 0.9502ms 304 image/png +2018-08-02 13:34:15.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:34:15.372 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 13:34:15.373 +03:00 [INF] Request finished in 0.5283ms 304 image/png +2018-08-02 13:34:15.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:34:15.378 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 13:34:15.378 +03:00 [INF] Request finished in 0.5544ms 304 image/png +2018-08-02 13:34:15.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:34:15.388 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 13:34:15.389 +03:00 [INF] Request finished in 2.4222ms 304 image/png +2018-08-02 13:34:15.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:34:15.389 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 13:34:15.389 +03:00 [INF] Request finished in 0.5153ms 304 image/png +2018-08-02 13:34:15.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:34:15.390 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 13:34:15.390 +03:00 [INF] Request finished in 0.544ms 304 image/jpeg +2018-08-02 13:34:15.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:34:15.391 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 13:34:15.391 +03:00 [INF] Request finished in 0.6819ms 304 image/png +2018-08-02 13:34:15.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:34:15.395 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 13:34:15.395 +03:00 [INF] Request finished in 0.5145ms 304 image/png +2018-08-02 13:34:47.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:34:47.159 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:34:47.159 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:34:47.496 +03:00 [INF] Executed action /Index in 336.33610000000004ms +2018-08-02 13:34:47.496 +03:00 [INF] Request finished in 342.1579ms 200 text/html; charset=utf-8 +2018-08-02 13:34:47.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:34:47.527 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 13:34:47.527 +03:00 [INF] Request finished in 2.4469ms 304 text/css +2018-08-02 13:34:47.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:34:47.528 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 13:34:47.528 +03:00 [INF] Request finished in 0.5731ms 304 text/css +2018-08-02 13:34:47.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:34:47.534 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 13:34:47.534 +03:00 [INF] Request finished in 0.6601ms 304 text/css +2018-08-02 13:34:47.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:34:47.537 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 13:34:47.537 +03:00 [INF] Request finished in 1.0267ms 304 text/css +2018-08-02 13:34:47.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:34:47.541 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 13:34:47.542 +03:00 [INF] Request finished in 0.7551ms 304 text/css +2018-08-02 13:34:47.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:34:47.550 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 13:34:47.550 +03:00 [INF] Request finished in 0.9672ms 304 text/css +2018-08-02 13:34:47.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:34:47.568 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 13:34:47.568 +03:00 [INF] Request finished in 0.732ms 304 text/css +2018-08-02 13:34:47.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:34:47.569 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 13:34:47.570 +03:00 [INF] Request finished in 1.3623ms 304 text/css +2018-08-02 13:34:47.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:34:47.575 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 13:34:47.575 +03:00 [INF] Request finished in 0.5953ms 304 application/javascript +2018-08-02 13:34:47.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:34:47.576 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 13:34:47.576 +03:00 [INF] Request finished in 0.5714ms 304 application/javascript +2018-08-02 13:34:47.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:34:47.592 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 13:34:47.592 +03:00 [INF] Request finished in 0.6891ms 304 application/javascript +2018-08-02 13:34:47.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:34:47.594 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 13:34:47.594 +03:00 [INF] Request finished in 0.8022ms 304 application/javascript +2018-08-02 13:34:47.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:34:47.597 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 13:34:47.597 +03:00 [INF] Request finished in 0.7472ms 304 application/javascript +2018-08-02 13:34:47.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:34:47.605 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 13:34:47.605 +03:00 [INF] Request finished in 2.4771ms 304 application/javascript +2018-08-02 13:34:47.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:34:47.613 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 13:34:47.614 +03:00 [INF] Request finished in 2.5422ms 304 application/javascript +2018-08-02 13:34:47.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:34:47.617 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 13:34:47.617 +03:00 [INF] Request finished in 0.697ms 304 application/javascript +2018-08-02 13:34:47.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:34:47.629 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 13:34:47.629 +03:00 [INF] Request finished in 0.5925ms 304 application/javascript +2018-08-02 13:34:47.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:34:47.631 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 13:34:47.631 +03:00 [INF] Request finished in 0.5718ms 304 application/javascript +2018-08-02 13:34:47.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:34:47.647 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 13:34:47.647 +03:00 [INF] Request finished in 0.9439ms 304 application/javascript +2018-08-02 13:34:47.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:34:47.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:34:47.648 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 13:34:47.648 +03:00 [INF] Request finished in 0.6302ms 304 application/javascript +2018-08-02 13:34:47.649 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 13:34:47.649 +03:00 [INF] Request finished in 0.8095ms 304 application/javascript +2018-08-02 13:34:47.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:34:47.655 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 13:34:47.655 +03:00 [INF] Request finished in 0.6099ms 304 application/javascript +2018-08-02 13:34:47.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:34:47.656 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 13:34:47.657 +03:00 [INF] Request finished in 0.8673ms 304 application/javascript +2018-08-02 13:34:47.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:34:47.663 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 13:34:47.663 +03:00 [INF] Request finished in 0.7721ms 304 application/javascript +2018-08-02 13:34:47.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:34:47.666 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 13:34:47.666 +03:00 [INF] Request finished in 0.9691ms 304 application/javascript +2018-08-02 13:34:47.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:34:47.671 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 13:34:47.671 +03:00 [INF] Request finished in 0.8667ms 304 application/javascript +2018-08-02 13:34:47.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:34:47.674 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 13:34:47.674 +03:00 [INF] Request finished in 1.6824ms 304 application/javascript +2018-08-02 13:34:47.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:34:47.676 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 13:34:47.677 +03:00 [INF] Request finished in 1.0909ms 304 application/javascript +2018-08-02 13:34:47.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:34:47.679 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 13:34:47.680 +03:00 [INF] Request finished in 1.2652ms 304 application/javascript +2018-08-02 13:34:47.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:34:47.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:34:47.695 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:47.695 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:34:47.696 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:34:47.697 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:34:47.697 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0944ms. +2018-08-02 13:34:47.697 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:47.697 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6676ms +2018-08-02 13:34:47.698 +03:00 [INF] Request finished in 5.8154ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:47.697 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.50640000000000007ms. +2018-08-02 13:34:47.698 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:34:47.698 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.9111000000000002ms +2018-08-02 13:34:47.698 +03:00 [INF] Request finished in 11.7255ms 200 text/plain; charset=utf-8 +2018-08-02 13:34:47.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:34:47.700 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 13:34:47.700 +03:00 [INF] Request finished in 1.5744ms 304 application/javascript +2018-08-02 13:34:47.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:34:47.702 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 13:34:47.702 +03:00 [INF] Request finished in 0.8493ms 304 application/javascript +2018-08-02 13:34:47.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:34:47.707 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 13:34:47.707 +03:00 [INF] Request finished in 1.5004ms 304 image/png +2018-08-02 13:34:47.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:34:47.711 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 13:34:47.711 +03:00 [INF] Request finished in 0.6378ms 304 image/svg+xml +2018-08-02 13:34:47.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:34:47.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:34:47.715 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 13:34:47.715 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 13:34:47.715 +03:00 [INF] Request finished in 0.4624ms 304 image/png +2018-08-02 13:34:47.715 +03:00 [INF] Request finished in 0.3765ms 304 image/png +2018-08-02 13:34:47.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:34:47.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:34:47.726 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 13:34:47.726 +03:00 [INF] Request finished in 0.7543ms 304 image/png +2018-08-02 13:34:47.728 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 13:34:47.728 +03:00 [INF] Request finished in 2.9702ms 304 image/png +2018-08-02 13:34:47.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:34:47.733 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 13:34:47.734 +03:00 [INF] Request finished in 4.506ms 304 image/png +2018-08-02 13:34:47.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:34:47.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:34:47.743 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 13:34:47.743 +03:00 [INF] Request finished in 0.5803ms 304 image/png +2018-08-02 13:34:47.744 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 13:34:47.744 +03:00 [INF] Request finished in 1.0353ms 304 image/png +2018-08-02 13:34:47.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:34:47.747 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 13:34:47.748 +03:00 [INF] Request finished in 1.525ms 304 image/png +2018-08-02 13:34:47.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:34:47.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:34:47.756 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 13:34:47.756 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 13:34:47.757 +03:00 [INF] Request finished in 2.0605ms 304 image/png +2018-08-02 13:34:47.757 +03:00 [INF] Request finished in 0.4596ms 304 image/png +2018-08-02 13:34:47.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:34:47.761 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 13:34:47.762 +03:00 [INF] Request finished in 1.5339ms 304 image/png +2018-08-02 13:34:47.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:34:47.767 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 13:34:47.767 +03:00 [INF] Request finished in 3.984ms 304 image/png +2018-08-02 13:34:47.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:34:47.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:34:47.771 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 13:34:47.771 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 13:34:47.772 +03:00 [INF] Request finished in 1.5872ms 304 image/png +2018-08-02 13:34:47.772 +03:00 [INF] Request finished in 1.5239ms 304 image/png +2018-08-02 13:34:47.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:34:47.773 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 13:34:47.773 +03:00 [INF] Request finished in 0.4962ms 304 image/png +2018-08-02 13:34:47.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:34:47.776 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 13:34:47.777 +03:00 [INF] Request finished in 1.0925ms 304 image/svg+xml +2018-08-02 13:34:47.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:34:47.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:34:47.788 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 13:34:47.788 +03:00 [INF] Request finished in 0.5571ms 304 image/png +2018-08-02 13:34:47.788 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 13:34:47.788 +03:00 [INF] Request finished in 0.8734ms 304 image/png +2018-08-02 13:34:47.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:34:47.789 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 13:34:47.789 +03:00 [INF] Request finished in 0.8019ms 304 image/png +2018-08-02 13:34:47.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:34:47.793 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 13:34:47.793 +03:00 [INF] Request finished in 0.6179ms 304 image/png +2018-08-02 13:34:47.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:34:47.796 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 13:34:47.796 +03:00 [INF] Request finished in 2.2231ms 304 image/png +2018-08-02 13:34:47.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:34:47.806 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 13:34:47.806 +03:00 [INF] Request finished in 1.3733ms 304 image/png +2018-08-02 13:34:47.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:34:47.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:34:47.808 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 13:34:47.808 +03:00 [INF] Request finished in 0.735ms 304 image/png +2018-08-02 13:34:47.809 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 13:34:47.809 +03:00 [INF] Request finished in 1.1356ms 304 image/png +2018-08-02 13:34:47.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:34:47.810 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 13:34:47.810 +03:00 [INF] Request finished in 0.9316ms 304 image/png +2018-08-02 13:34:47.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:34:47.815 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 13:34:47.815 +03:00 [INF] Request finished in 0.7186ms 304 image/png +2018-08-02 13:34:47.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:34:47.819 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 13:34:47.819 +03:00 [INF] Request finished in 1.5693ms 304 image/png +2018-08-02 13:34:47.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:34:47.822 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 13:34:47.822 +03:00 [INF] Request finished in 1.5694ms 304 image/png +2018-08-02 13:34:47.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:34:47.827 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 13:34:47.827 +03:00 [INF] Request finished in 0.592ms 304 image/png +2018-08-02 13:34:47.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:34:47.828 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 13:34:47.828 +03:00 [INF] Request finished in 0.8485ms 304 image/png +2018-08-02 13:34:47.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:34:47.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:34:47.837 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 13:34:47.837 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 13:34:47.837 +03:00 [INF] Request finished in 1.1295ms 304 image/png +2018-08-02 13:34:47.837 +03:00 [INF] Request finished in 0.9844ms 304 image/png +2018-08-02 13:34:47.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:34:47.843 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 13:34:47.844 +03:00 [INF] Request finished in 0.5851ms 304 image/png +2018-08-02 13:34:47.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:34:47.845 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 13:34:47.845 +03:00 [INF] Request finished in 0.8774ms 304 image/png +2018-08-02 13:34:47.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:34:47.848 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 13:34:47.848 +03:00 [INF] Request finished in 0.5887ms 304 image/png +2018-08-02 13:34:47.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:34:47.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:34:47.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:34:47.859 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 13:34:47.859 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 13:34:47.859 +03:00 [INF] Request finished in 0.5149ms 304 image/png +2018-08-02 13:34:47.859 +03:00 [INF] Request finished in 0.5547ms 304 image/jpeg +2018-08-02 13:34:47.859 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 13:34:47.859 +03:00 [INF] Request finished in 0.4311ms 304 image/png +2018-08-02 13:35:05.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:35:05.492 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:35:05.493 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:35:05.879 +03:00 [INF] Executed action /Index in 386.7124ms +2018-08-02 13:35:05.879 +03:00 [INF] Request finished in 392.3659ms 200 text/html; charset=utf-8 +2018-08-02 13:35:05.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:35:05.910 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 13:35:05.912 +03:00 [INF] Request finished in 1.3613ms 304 text/css +2018-08-02 13:35:05.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:35:05.914 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 13:35:05.915 +03:00 [INF] Request finished in 2.4679ms 304 text/css +2018-08-02 13:35:05.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:35:05.915 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 13:35:05.915 +03:00 [INF] Request finished in 0.5052ms 304 text/css +2018-08-02 13:35:05.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:35:05.919 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 13:35:05.919 +03:00 [INF] Request finished in 0.8937ms 304 text/css +2018-08-02 13:35:05.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:35:05.920 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 13:35:05.921 +03:00 [INF] Request finished in 1.3585ms 304 text/css +2018-08-02 13:35:05.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:35:05.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:35:05.925 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 13:35:05.925 +03:00 [INF] Request finished in 0.7034ms 304 text/css +2018-08-02 13:35:05.926 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 13:35:05.926 +03:00 [INF] Request finished in 0.433ms 304 text/css +2018-08-02 13:35:05.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:35:05.934 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 13:35:05.934 +03:00 [INF] Request finished in 0.6535ms 304 application/javascript +2018-08-02 13:35:05.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:35:05.935 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 13:35:05.936 +03:00 [INF] Request finished in 1.9951ms 304 text/css +2018-08-02 13:35:05.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:35:05.940 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 13:35:05.940 +03:00 [INF] Request finished in 0.9216ms 304 application/javascript +2018-08-02 13:35:05.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:35:05.944 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 13:35:05.944 +03:00 [INF] Request finished in 0.5493ms 304 application/javascript +2018-08-02 13:35:05.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:35:05.956 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 13:35:05.957 +03:00 [INF] Request finished in 0.6541ms 304 application/javascript +2018-08-02 13:35:05.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:35:05.957 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 13:35:05.957 +03:00 [INF] Request finished in 0.4895ms 304 application/javascript +2018-08-02 13:35:05.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:35:05.960 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 13:35:05.960 +03:00 [INF] Request finished in 0.6902ms 304 application/javascript +2018-08-02 13:35:05.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:35:05.964 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 13:35:05.964 +03:00 [INF] Request finished in 1.287ms 304 application/javascript +2018-08-02 13:35:05.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:35:05.967 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 13:35:05.968 +03:00 [INF] Request finished in 2.5723ms 304 application/javascript +2018-08-02 13:35:05.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:35:05.972 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 13:35:05.972 +03:00 [INF] Request finished in 1.2663ms 304 application/javascript +2018-08-02 13:35:05.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:35:05.974 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 13:35:05.974 +03:00 [INF] Request finished in 0.6715ms 304 application/javascript +2018-08-02 13:35:05.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:35:05.980 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 13:35:05.980 +03:00 [INF] Request finished in 0.5857ms 304 application/javascript +2018-08-02 13:35:05.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:35:05.981 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 13:35:05.982 +03:00 [INF] Request finished in 0.9731ms 304 application/javascript +2018-08-02 13:35:05.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:35:05.984 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 13:35:05.984 +03:00 [INF] Request finished in 1.536ms 304 application/javascript +2018-08-02 13:35:05.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:35:05.989 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 13:35:05.989 +03:00 [INF] Request finished in 0.8854ms 304 application/javascript +2018-08-02 13:35:05.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:35:05.991 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 13:35:05.991 +03:00 [INF] Request finished in 0.9202ms 304 application/javascript +2018-08-02 13:35:05.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:35:05.994 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 13:35:05.994 +03:00 [INF] Request finished in 1.1787ms 304 application/javascript +2018-08-02 13:35:05.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:35:05.996 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 13:35:05.997 +03:00 [INF] Request finished in 0.8619ms 304 application/javascript +2018-08-02 13:35:06.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:35:06.006 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 13:35:06.006 +03:00 [INF] Request finished in 2.6741ms 304 application/javascript +2018-08-02 13:35:06.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:35:06.013 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 13:35:06.013 +03:00 [INF] Request finished in 0.8113ms 304 application/javascript +2018-08-02 13:35:06.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:35:06.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:35:06.018 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 13:35:06.018 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 13:35:06.018 +03:00 [INF] Request finished in 1.1238ms 304 application/javascript +2018-08-02 13:35:06.018 +03:00 [INF] Request finished in 1.9811ms 304 application/javascript +2018-08-02 13:35:06.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:35:06.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:35:06.033 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:35:06.035 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:35:06.036 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7692ms. +2018-08-02 13:35:06.037 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:35:06.037 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.3876ms +2018-08-02 13:35:06.037 +03:00 [INF] Request finished in 12.7774ms 200 text/plain; charset=utf-8 +2018-08-02 13:35:06.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:35:06.038 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 13:35:06.038 +03:00 [INF] Request finished in 0.7396ms 304 application/javascript +2018-08-02 13:35:06.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:35:06.039 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:35:06.039 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 13:35:06.039 +03:00 [INF] Request finished in 0.5149ms 304 application/javascript +2018-08-02 13:35:06.041 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:35:06.042 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2556ms. +2018-08-02 13:35:06.042 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:35:06.042 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5715000000000003ms +2018-08-02 13:35:06.042 +03:00 [INF] Request finished in 9.322ms 200 text/plain; charset=utf-8 +2018-08-02 13:35:06.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:35:06.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:35:06.052 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 13:35:06.052 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 13:35:06.052 +03:00 [INF] Request finished in 0.7556ms 304 image/png +2018-08-02 13:35:06.052 +03:00 [INF] Request finished in 0.9091ms 304 image/svg+xml +2018-08-02 13:35:06.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:35:06.057 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 13:35:06.057 +03:00 [INF] Request finished in 1.5255ms 304 image/png +2018-08-02 13:35:06.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:35:06.062 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 13:35:06.062 +03:00 [INF] Request finished in 0.5338ms 304 image/png +2018-08-02 13:35:06.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:35:06.067 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 13:35:06.067 +03:00 [INF] Request finished in 1.1034ms 304 image/png +2018-08-02 13:35:06.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:35:06.077 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 13:35:06.077 +03:00 [INF] Request finished in 0.6293ms 304 image/png +2018-08-02 13:35:06.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:35:06.080 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 13:35:06.080 +03:00 [INF] Request finished in 2.0686ms 304 image/png +2018-08-02 13:35:06.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:35:06.084 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 13:35:06.084 +03:00 [INF] Request finished in 1.7649ms 304 image/png +2018-08-02 13:35:06.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:35:06.086 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 13:35:06.086 +03:00 [INF] Request finished in 1.831ms 304 image/png +2018-08-02 13:35:06.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:35:06.097 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 13:35:06.097 +03:00 [INF] Request finished in 1.6531ms 304 image/png +2018-08-02 13:35:06.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:35:06.097 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 13:35:06.098 +03:00 [INF] Request finished in 0.6065ms 304 image/png +2018-08-02 13:35:06.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:35:06.102 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 13:35:06.103 +03:00 [INF] Request finished in 1.1111ms 304 image/png +2018-08-02 13:35:06.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:35:06.110 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 13:35:06.110 +03:00 [INF] Request finished in 0.5903ms 304 image/png +2018-08-02 13:35:06.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:35:06.112 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 13:35:06.112 +03:00 [INF] Request finished in 0.6066ms 304 image/png +2018-08-02 13:35:06.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:35:06.118 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 13:35:06.119 +03:00 [INF] Request finished in 0.9876ms 304 image/png +2018-08-02 13:35:06.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:35:06.122 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 13:35:06.123 +03:00 [INF] Request finished in 0.7239ms 304 image/png +2018-08-02 13:35:06.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:35:06.129 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 13:35:06.129 +03:00 [INF] Request finished in 1.6312ms 304 image/png +2018-08-02 13:35:06.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:35:06.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:35:06.133 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 13:35:06.133 +03:00 [INF] Request finished in 0.5984ms 304 image/svg+xml +2018-08-02 13:35:06.133 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 13:35:06.134 +03:00 [INF] Request finished in 1.4292ms 304 image/png +2018-08-02 13:35:06.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:35:06.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:35:06.157 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 13:35:06.157 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 13:35:06.157 +03:00 [INF] Request finished in 1.1597ms 304 image/png +2018-08-02 13:35:06.157 +03:00 [INF] Request finished in 0.8266ms 304 image/png +2018-08-02 13:35:06.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:35:06.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:35:06.160 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 13:35:06.160 +03:00 [INF] Request finished in 2.0605ms 304 image/png +2018-08-02 13:35:06.162 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 13:35:06.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:35:06.163 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 13:35:06.163 +03:00 [INF] Request finished in 5.4939ms 304 image/png +2018-08-02 13:35:06.163 +03:00 [INF] Request finished in 1.5131ms 304 image/png +2018-08-02 13:35:06.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:35:06.178 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 13:35:06.179 +03:00 [INF] Request finished in 2.4891ms 304 image/png +2018-08-02 13:35:06.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:35:06.186 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 13:35:06.186 +03:00 [INF] Request finished in 4.6085ms 304 image/png +2018-08-02 13:35:06.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:35:06.187 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 13:35:06.188 +03:00 [INF] Request finished in 1.6597ms 304 image/png +2018-08-02 13:35:06.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:35:06.191 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 13:35:06.192 +03:00 [INF] Request finished in 2.9821ms 304 image/png +2018-08-02 13:35:06.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:35:06.193 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 13:35:06.193 +03:00 [INF] Request finished in 0.6861ms 304 image/png +2018-08-02 13:35:06.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:35:06.201 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 13:35:06.201 +03:00 [INF] Request finished in 0.6334ms 304 image/png +2018-08-02 13:35:06.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:35:06.205 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 13:35:06.205 +03:00 [INF] Request finished in 1.2564ms 304 image/png +2018-08-02 13:35:06.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:35:06.209 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 13:35:06.209 +03:00 [INF] Request finished in 1.4728ms 304 image/png +2018-08-02 13:35:06.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:35:06.214 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 13:35:06.214 +03:00 [INF] Request finished in 0.86ms 304 image/png +2018-08-02 13:35:06.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:35:06.216 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 13:35:06.220 +03:00 [INF] Request finished in 3.3115ms 304 image/png +2018-08-02 13:35:06.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:35:06.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:35:06.224 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 13:35:06.224 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 13:35:06.224 +03:00 [INF] Request finished in 0.577ms 304 image/png +2018-08-02 13:35:06.224 +03:00 [INF] Request finished in 0.5893ms 304 image/png +2018-08-02 13:35:06.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:35:06.226 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 13:35:06.226 +03:00 [INF] Request finished in 1.1112ms 304 image/png +2018-08-02 13:35:06.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:35:06.228 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 13:35:06.228 +03:00 [INF] Request finished in 0.721ms 304 image/png +2018-08-02 13:35:06.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:35:06.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:35:06.233 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 13:35:06.233 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 13:35:06.233 +03:00 [INF] Request finished in 0.5333ms 304 image/jpeg +2018-08-02 13:35:06.233 +03:00 [INF] Request finished in 0.563ms 304 image/png +2018-08-02 13:35:07.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-02 13:35:07.723 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-02 13:35:07.785 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:35:07.899 +03:00 [INF] Executed action /Templates in 175.7768ms +2018-08-02 13:35:07.899 +03:00 [INF] Request finished in 587.3958ms 200 text/html; charset=utf-8 +2018-08-02 13:35:07.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:35:07.996 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:35:07.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:35:07.997 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:35:07.998 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7542ms. +2018-08-02 13:35:07.998 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:35:07.998 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.3565ms +2018-08-02 13:35:07.999 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:35:07.999 +03:00 [INF] Request finished in 3.9728ms 200 text/plain; charset=utf-8 +2018-08-02 13:35:08.000 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:35:08.001 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1593ms. +2018-08-02 13:35:08.001 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:35:08.001 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2711ms +2018-08-02 13:35:08.001 +03:00 [INF] Request finished in 4.4714ms 200 text/plain; charset=utf-8 +2018-08-02 13:35:08.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-02 13:35:08.008 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-02 13:35:08.009 +03:00 [INF] Request finished in 1.1367ms 200 application/javascript +2018-08-02 13:35:17.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:35:17.829 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:35:17.830 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:35:17.833 +03:00 [INF] Executed action /Index in 3.1761000000000004ms +2018-08-02 13:35:17.833 +03:00 [INF] Request finished in 4.1976ms 200 text/html; charset=utf-8 +2018-08-02 13:35:56.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:35:56.644 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:35:56.644 +03:00 [INF] Request finished in 1.2437ms 200 text/css +2018-08-02 13:35:56.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:35:56.691 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:35:56.691 +03:00 [INF] Request finished in 13.4936ms 200 text/css +2018-08-02 13:35:56.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:35:56.982 +03:00 [INF] Request finished in 1.8345ms 404 +2018-08-02 13:37:02.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:37:02.480 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:37:02.480 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:37:02.493 +03:00 [INF] Executed action /Index in 13.7446ms +2018-08-02 13:37:02.493 +03:00 [INF] Request finished in 372.0996ms 200 text/html; charset=utf-8 +2018-08-02 13:37:02.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:37:02.525 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:37:02.526 +03:00 [INF] Request finished in 4.2785ms 200 text/css +2018-08-02 13:37:02.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:37:02.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:37:02.533 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:37:02.533 +03:00 [INF] Request finished in 1.0891ms 200 text/css +2018-08-02 13:37:02.538 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:37:02.539 +03:00 [INF] Request finished in 6.3998ms 200 text/css +2018-08-02 13:37:02.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:37:02.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:37:02.545 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:37:02.545 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:37:02.545 +03:00 [INF] Request finished in 3.6206ms 200 text/css +2018-08-02 13:37:02.545 +03:00 [INF] Request finished in 3.2895ms 200 text/css +2018-08-02 13:37:02.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:37:02.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:37:02.550 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:37:02.550 +03:00 [INF] Request finished in 1.7669ms 200 text/css +2018-08-02 13:37:02.552 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:37:02.552 +03:00 [INF] Request finished in 4.2222ms 200 text/css +2018-08-02 13:37:02.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:37:02.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:37:02.567 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:37:02.567 +03:00 [INF] Request finished in 1.4996ms 200 text/css +2018-08-02 13:37:02.568 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:37:02.569 +03:00 [INF] Request finished in 2.1538ms 200 application/javascript +2018-08-02 13:37:02.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:37:02.579 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:37:02.580 +03:00 [INF] Request finished in 7.561ms 200 application/javascript +2018-08-02 13:37:02.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:37:02.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:37:02.585 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:37:02.585 +03:00 [INF] Request finished in 1.0661ms 200 application/javascript +2018-08-02 13:37:02.590 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:37:02.590 +03:00 [INF] Request finished in 6.5255ms 200 application/javascript +2018-08-02 13:37:02.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:37:02.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:37:02.605 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:37:02.606 +03:00 [INF] Request finished in 1.0695ms 200 application/javascript +2018-08-02 13:37:02.608 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:37:02.608 +03:00 [INF] Request finished in 8.1903ms 200 application/javascript +2018-08-02 13:37:02.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:37:02.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:37:02.649 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:37:02.649 +03:00 [INF] Request finished in 1.0174ms 200 application/javascript +2018-08-02 13:37:02.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:37:02.653 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:37:02.654 +03:00 [INF] Request finished in 3.6486ms 200 application/javascript +2018-08-02 13:37:02.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:37:02.655 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:37:02.656 +03:00 [INF] Request finished in 7.1891ms 200 application/javascript +2018-08-02 13:37:02.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:37:02.661 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:37:02.667 +03:00 [INF] Request finished in 10.0537ms 200 application/javascript +2018-08-02 13:37:02.667 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:37:02.667 +03:00 [INF] Request finished in 12.1946ms 200 application/javascript +2018-08-02 13:37:02.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:37:02.672 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:37:02.672 +03:00 [INF] Request finished in 2.8583ms 200 application/javascript +2018-08-02 13:37:02.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:37:02.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:37:02.676 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:37:02.676 +03:00 [INF] Request finished in 1.6218ms 200 application/javascript +2018-08-02 13:37:02.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:37:02.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:37:02.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:37:02.680 +03:00 [INF] Request finished in 6.267ms 200 application/javascript +2018-08-02 13:37:02.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:37:02.680 +03:00 [INF] Request finished in 1.4631ms 200 application/javascript +2018-08-02 13:37:02.680 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:37:02.681 +03:00 [INF] Request finished in 1.92ms 200 application/javascript +2018-08-02 13:37:02.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:37:02.692 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:37:02.692 +03:00 [INF] Request finished in 2.3814ms 200 application/javascript +2018-08-02 13:37:02.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:37:02.694 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:37:02.695 +03:00 [INF] Request finished in 2.3123ms 200 application/javascript +2018-08-02 13:37:02.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:37:02.704 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:37:02.704 +03:00 [INF] Request finished in 2.8833ms 200 application/javascript +2018-08-02 13:37:02.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:37:02.708 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:37:02.708 +03:00 [INF] Request finished in 2.9365ms 200 application/javascript +2018-08-02 13:37:02.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:37:02.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:37:02.715 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:37:02.716 +03:00 [INF] Request finished in 1.7588ms 200 application/javascript +2018-08-02 13:37:02.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:37:02.725 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:02.725 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:37:02.725 +03:00 [INF] Request finished in 0.8778ms 200 application/javascript +2018-08-02 13:37:02.726 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:37:02.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:37:02.727 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8971ms. +2018-08-02 13:37:02.727 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:02.728 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.0617ms +2018-08-02 13:37:02.728 +03:00 [INF] Request finished in 15.1088ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:02.731 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:02.733 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:37:02.734 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2534ms. +2018-08-02 13:37:02.734 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:02.734 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.3051000000000004ms +2018-08-02 13:37:02.734 +03:00 [INF] Request finished in 8.7679ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:02.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:37:02.748 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:37:02.748 +03:00 [INF] Request finished in 2.3346ms 200 application/javascript +2018-08-02 13:37:02.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:37:02.753 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:37:02.753 +03:00 [INF] Request finished in 3.1682ms 200 image/svg+xml +2018-08-02 13:37:02.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:37:02.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:37:02.761 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:37:02.761 +03:00 [INF] Request finished in 1.402ms 200 image/png +2018-08-02 13:37:02.761 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:37:02.761 +03:00 [INF] Request finished in 3.012ms 200 image/png +2018-08-02 13:37:02.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:37:02.777 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:37:02.777 +03:00 [INF] Request finished in 3.0708ms 200 image/png +2018-08-02 13:37:02.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:37:02.782 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:37:02.782 +03:00 [INF] Request finished in 1.7031ms 200 image/png +2018-08-02 13:37:02.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:37:02.786 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:37:02.786 +03:00 [INF] Request finished in 3.2158ms 200 image/png +2018-08-02 13:37:02.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:37:02.793 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:37:02.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:37:02.793 +03:00 [INF] Request finished in 1.3147ms 200 image/png +2018-08-02 13:37:02.795 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:37:02.795 +03:00 [INF] Request finished in 1.5626ms 200 image/png +2018-08-02 13:37:02.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:37:02.801 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:37:02.801 +03:00 [INF] Request finished in 3.6456ms 200 image/png +2018-08-02 13:37:02.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:37:02.822 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:37:02.822 +03:00 [INF] Request finished in 1.739ms 200 image/png +2018-08-02 13:37:02.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:37:02.825 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:37:02.825 +03:00 [INF] Request finished in 0.8511ms 200 image/png +2018-08-02 13:37:02.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:37:02.830 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:37:02.830 +03:00 [INF] Request finished in 1.2491ms 200 image/png +2018-08-02 13:37:02.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:37:02.836 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:37:02.836 +03:00 [INF] Request finished in 2.51ms 200 image/png +2018-08-02 13:37:02.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:37:02.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:37:02.844 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:37:02.844 +03:00 [INF] Request finished in 1.2909ms 200 image/png +2018-08-02 13:37:02.845 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:37:02.845 +03:00 [INF] Request finished in 1.523ms 200 image/png +2018-08-02 13:37:02.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:37:02.853 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:37:02.853 +03:00 [INF] Request finished in 1.6729ms 200 image/png +2018-08-02 13:37:02.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:37:02.862 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:37:02.862 +03:00 [INF] Request finished in 1.5465ms 200 image/png +2018-08-02 13:37:02.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:37:02.865 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:37:02.866 +03:00 [INF] Request finished in 1.5869ms 200 image/svg+xml +2018-08-02 13:37:02.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:37:02.874 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:37:02.875 +03:00 [INF] Request finished in 1.2225ms 200 image/png +2018-08-02 13:37:02.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:37:02.878 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:37:02.878 +03:00 [INF] Request finished in 1.3802ms 200 image/png +2018-08-02 13:37:02.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:37:02.883 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:37:02.883 +03:00 [INF] Request finished in 1.7301ms 200 image/png +2018-08-02 13:37:02.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:37:02.889 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:37:02.889 +03:00 [INF] Request finished in 3.5272ms 200 image/png +2018-08-02 13:37:02.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:37:02.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:37:02.893 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:37:02.893 +03:00 [INF] Request finished in 1.8139ms 200 image/png +2018-08-02 13:37:02.893 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:37:02.894 +03:00 [INF] Request finished in 1.4013ms 200 image/png +2018-08-02 13:37:02.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:37:02.898 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:37:02.898 +03:00 [INF] Request finished in 1.1779ms 200 image/png +2018-08-02 13:37:02.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:37:02.902 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:37:02.903 +03:00 [INF] Request finished in 2.0145ms 200 image/png +2018-08-02 13:37:02.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:37:02.911 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:37:02.911 +03:00 [INF] Request finished in 1.3108ms 200 image/png +2018-08-02 13:37:02.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:37:02.919 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:37:02.919 +03:00 [INF] Request finished in 1.6311ms 200 image/png +2018-08-02 13:37:02.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:37:02.923 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:37:02.923 +03:00 [INF] Request finished in 1.3958ms 200 image/png +2018-08-02 13:37:02.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:37:02.929 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:37:02.929 +03:00 [INF] Request finished in 1.3299ms 200 image/png +2018-08-02 13:37:02.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:37:02.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:37:02.935 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:37:02.935 +03:00 [INF] Request finished in 1.6245ms 200 image/png +2018-08-02 13:37:02.936 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:37:02.937 +03:00 [INF] Request finished in 3.47ms 200 image/png +2018-08-02 13:37:02.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:37:02.939 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:37:02.939 +03:00 [INF] Request finished in 1.6983ms 200 image/png +2018-08-02 13:37:02.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:37:02.942 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:37:02.942 +03:00 [INF] Request finished in 2.312ms 200 image/png +2018-08-02 13:37:02.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:37:02.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:37:02.944 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:37:02.944 +03:00 [INF] Request finished in 1.8042ms 200 image/png +2018-08-02 13:37:02.944 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:37:02.945 +03:00 [INF] Request finished in 1.2057ms 200 image/png +2018-08-02 13:37:02.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:37:02.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:37:02.949 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:37:02.949 +03:00 [INF] Request finished in 3.8656ms 200 image/png +2018-08-02 13:37:02.950 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:37:02.950 +03:00 [INF] Request finished in 1.7237ms 200 image/png +2018-08-02 13:37:02.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:37:02.953 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:37:02.954 +03:00 [INF] Request finished in 2.6518ms 200 image/png +2018-08-02 13:37:03.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:37:03.081 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:37:03.081 +03:00 [INF] Request finished in 11.1407ms 200 image/jpeg +2018-08-02 13:37:03.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:37:03.086 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:37:03.086 +03:00 [INF] Request finished in 3.0804ms 200 font/woff2 +2018-08-02 13:37:03.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:37:03.818 +03:00 [INF] Request finished in 1.0374ms 404 +2018-08-02 13:37:09.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:37:10.138 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:37:10.138 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:37:10.152 +03:00 [INF] Executed action /Index in 14.4817ms +2018-08-02 13:37:10.152 +03:00 [INF] Request finished in 317.6466ms 200 text/html; charset=utf-8 +2018-08-02 13:37:10.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:37:10.197 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:37:10.197 +03:00 [INF] Request finished in 2.4202ms 200 text/css +2018-08-02 13:37:10.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:37:10.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:37:10.204 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:37:10.204 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:37:10.204 +03:00 [INF] Request finished in 1.4049ms 200 text/css +2018-08-02 13:37:10.204 +03:00 [INF] Request finished in 1.1821ms 200 text/css +2018-08-02 13:37:10.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:37:10.210 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:37:10.211 +03:00 [INF] Request finished in 1.4282ms 200 text/css +2018-08-02 13:37:10.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:37:10.212 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:37:10.213 +03:00 [INF] Request finished in 1.1297ms 200 text/css +2018-08-02 13:37:10.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:37:10.223 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:37:10.223 +03:00 [INF] Request finished in 2.3129ms 200 text/css +2018-08-02 13:37:10.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:37:10.229 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:37:10.230 +03:00 [INF] Request finished in 1.2465ms 200 text/css +2018-08-02 13:37:10.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:37:10.238 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:37:10.238 +03:00 [INF] Request finished in 4.3044ms 200 text/css +2018-08-02 13:37:10.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:37:10.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:37:10.255 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:37:10.255 +03:00 [INF] Request finished in 0.9765ms 200 application/javascript +2018-08-02 13:37:10.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:37:10.257 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:37:10.257 +03:00 [INF] Request finished in 1.3967ms 200 application/javascript +2018-08-02 13:37:10.260 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:37:10.261 +03:00 [INF] Request finished in 12.1254ms 200 application/javascript +2018-08-02 13:37:10.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:37:10.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:37:10.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:37:10.264 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:37:10.264 +03:00 [INF] Request finished in 0.7353ms 200 application/javascript +2018-08-02 13:37:10.265 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:37:10.265 +03:00 [INF] Request finished in 1.5191ms 200 application/javascript +2018-08-02 13:37:10.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:37:10.275 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:37:10.275 +03:00 [INF] Request finished in 2.0152ms 200 application/javascript +2018-08-02 13:37:10.276 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:37:10.276 +03:00 [INF] Request finished in 13.3265ms 200 application/javascript +2018-08-02 13:37:10.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:37:10.295 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:37:10.295 +03:00 [INF] Request finished in 1.6909ms 200 application/javascript +2018-08-02 13:37:10.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:37:10.307 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:37:10.307 +03:00 [INF] Request finished in 4.5187ms 200 application/javascript +2018-08-02 13:37:10.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:37:10.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:37:10.340 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:37:10.340 +03:00 [INF] Request finished in 10.5609ms 200 application/javascript +2018-08-02 13:37:10.340 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:37:10.340 +03:00 [INF] Request finished in 1.0842ms 200 application/javascript +2018-08-02 13:37:10.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:37:10.352 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:37:10.352 +03:00 [INF] Request finished in 1.5508ms 200 application/javascript +2018-08-02 13:37:10.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:37:10.367 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:37:10.367 +03:00 [INF] Request finished in 0.8737ms 200 application/javascript +2018-08-02 13:37:10.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:37:10.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:37:10.372 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:37:10.372 +03:00 [INF] Request finished in 1.0451ms 200 application/javascript +2018-08-02 13:37:10.373 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:37:10.373 +03:00 [INF] Request finished in 0.8526ms 200 application/javascript +2018-08-02 13:37:10.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:37:10.378 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:37:10.379 +03:00 [INF] Request finished in 3.9859ms 200 application/javascript +2018-08-02 13:37:10.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:37:10.381 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:37:10.382 +03:00 [INF] Request finished in 1.3477ms 200 application/javascript +2018-08-02 13:37:10.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:37:10.387 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:37:10.388 +03:00 [INF] Request finished in 3.4292ms 200 application/javascript +2018-08-02 13:37:10.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:37:10.398 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:37:10.398 +03:00 [INF] Request finished in 1.671ms 200 application/javascript +2018-08-02 13:37:10.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:37:10.420 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:37:10.420 +03:00 [INF] Request finished in 1.6033ms 200 application/javascript +2018-08-02 13:37:10.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:37:10.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:37:10.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:37:10.453 +03:00 [INF] Request finished in 0.8951ms 200 application/javascript +2018-08-02 13:37:10.458 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:10.459 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:37:10.460 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7707ms. +2018-08-02 13:37:10.461 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:10.461 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.5758ms +2018-08-02 13:37:10.462 +03:00 [INF] Request finished in 9.4469ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:10.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:37:10.473 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:10.475 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:37:10.475 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1107ms. +2018-08-02 13:37:10.475 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:10.475 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8463ms +2018-08-02 13:37:10.475 +03:00 [INF] Request finished in 5.0249ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:10.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:37:10.499 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:37:10.500 +03:00 [INF] Request finished in 1.0813ms 200 application/javascript +2018-08-02 13:37:10.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:37:10.500 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:37:10.500 +03:00 [INF] Request finished in 0.7868ms 200 application/javascript +2018-08-02 13:37:10.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:37:10.536 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:37:10.536 +03:00 [INF] Request finished in 1.8258ms 200 image/svg+xml +2018-08-02 13:37:10.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:37:10.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:37:10.539 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:37:10.539 +03:00 [INF] Request finished in 1.4621ms 200 image/png +2018-08-02 13:37:10.540 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:37:10.540 +03:00 [INF] Request finished in 1.2767ms 200 image/png +2018-08-02 13:37:10.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:37:10.544 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:37:10.544 +03:00 [INF] Request finished in 2.072ms 200 image/png +2018-08-02 13:37:10.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:37:10.546 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:37:10.547 +03:00 [INF] Request finished in 1.5944ms 200 image/png +2018-08-02 13:37:10.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:37:10.556 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:37:10.556 +03:00 [INF] Request finished in 0.8537ms 200 image/png +2018-08-02 13:37:10.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:37:10.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:37:10.564 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:37:10.564 +03:00 [INF] Request finished in 1.1001ms 200 image/png +2018-08-02 13:37:10.565 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:37:10.565 +03:00 [INF] Request finished in 0.7351ms 200 image/png +2018-08-02 13:37:10.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:37:10.579 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:37:10.579 +03:00 [INF] Request finished in 1.2025ms 200 image/png +2018-08-02 13:37:10.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:37:10.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:37:10.588 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:37:10.588 +03:00 [INF] Request finished in 1.3109ms 200 image/png +2018-08-02 13:37:10.589 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:37:10.590 +03:00 [INF] Request finished in 0.7027ms 200 image/png +2018-08-02 13:37:10.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:37:10.595 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:37:10.595 +03:00 [INF] Request finished in 2.2039ms 200 image/png +2018-08-02 13:37:10.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:37:10.598 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:37:10.598 +03:00 [INF] Request finished in 1.0558ms 200 image/png +2018-08-02 13:37:10.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:37:10.601 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:37:10.601 +03:00 [INF] Request finished in 1.9876ms 200 image/png +2018-08-02 13:37:10.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:37:10.607 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:37:10.607 +03:00 [INF] Request finished in 0.8667ms 200 image/svg+xml +2018-08-02 13:37:10.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:37:10.612 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:37:10.612 +03:00 [INF] Request finished in 1.2915ms 200 image/png +2018-08-02 13:37:10.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:37:10.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:37:10.618 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:37:10.618 +03:00 [INF] Request finished in 2.0209ms 200 image/png +2018-08-02 13:37:10.618 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:37:10.619 +03:00 [INF] Request finished in 0.7845ms 200 image/png +2018-08-02 13:37:10.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:37:10.625 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:37:10.625 +03:00 [INF] Request finished in 1.0982ms 200 image/png +2018-08-02 13:37:10.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:37:10.628 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:37:10.629 +03:00 [INF] Request finished in 1.634ms 200 image/png +2018-08-02 13:37:10.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:37:10.635 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:37:10.635 +03:00 [INF] Request finished in 0.9815ms 200 image/png +2018-08-02 13:37:10.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:37:10.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:37:10.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:37:10.640 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:37:10.640 +03:00 [INF] Request finished in 1.4195ms 200 image/png +2018-08-02 13:37:10.640 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:37:10.640 +03:00 [INF] Request finished in 5.0103ms 200 image/png +2018-08-02 13:37:10.640 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:37:10.640 +03:00 [INF] Request finished in 0.9114ms 200 image/png +2018-08-02 13:37:10.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:37:10.642 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:37:10.643 +03:00 [INF] Request finished in 1.2195ms 200 image/png +2018-08-02 13:37:10.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:37:10.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:37:10.650 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:37:10.651 +03:00 [INF] Request finished in 1.1846ms 200 image/png +2018-08-02 13:37:10.651 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:37:10.651 +03:00 [INF] Request finished in 1.226ms 200 image/png +2018-08-02 13:37:10.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:37:10.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:37:10.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:37:10.660 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:37:10.660 +03:00 [INF] Request finished in 1.0233ms 200 image/png +2018-08-02 13:37:10.660 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:37:10.660 +03:00 [INF] Request finished in 1.1807ms 200 image/png +2018-08-02 13:37:10.661 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:37:10.662 +03:00 [INF] Request finished in 2.5932ms 200 image/png +2018-08-02 13:37:10.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:37:10.670 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:37:10.670 +03:00 [INF] Request finished in 1.0511ms 200 image/png +2018-08-02 13:37:10.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:37:10.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:37:10.672 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:37:10.672 +03:00 [INF] Request finished in 1.1656ms 200 image/png +2018-08-02 13:37:10.672 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:37:10.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:37:10.672 +03:00 [INF] Request finished in 0.8711ms 200 image/png +2018-08-02 13:37:10.673 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:37:10.673 +03:00 [INF] Request finished in 1.2759ms 200 image/png +2018-08-02 13:37:10.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:37:10.675 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:37:10.675 +03:00 [INF] Request finished in 1.8609ms 200 font/woff2 +2018-08-02 13:37:10.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:37:10.682 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:37:10.682 +03:00 [INF] Request finished in 1.0615ms 200 image/png +2018-08-02 13:37:10.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:37:10.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:37:10.683 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:37:10.683 +03:00 [INF] Request finished in 0.7848ms 200 image/png +2018-08-02 13:37:10.684 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:37:10.684 +03:00 [INF] Request finished in 1.0161ms 200 image/png +2018-08-02 13:37:10.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:37:10.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:37:10.690 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:37:10.690 +03:00 [INF] Request finished in 1.0245ms 200 image/png +2018-08-02 13:37:10.691 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:37:10.691 +03:00 [INF] Request finished in 0.9697ms 200 image/png +2018-08-02 13:37:10.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:37:10.719 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:37:10.719 +03:00 [INF] Request finished in 10.1454ms 200 image/jpeg +2018-08-02 13:37:11.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:37:11.629 +03:00 [INF] Request finished in 0.722ms 404 +2018-08-02 13:37:15.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:37:15.953 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:37:15.953 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:37:15.965 +03:00 [INF] Executed action /Index in 12.0245ms +2018-08-02 13:37:15.965 +03:00 [INF] Request finished in 360ms 200 text/html; charset=utf-8 +2018-08-02 13:37:16.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:37:16.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:37:16.016 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:37:16.017 +03:00 [INF] Request finished in 1.8243ms 200 text/css +2018-08-02 13:37:16.018 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:37:16.018 +03:00 [INF] Request finished in 4.9192ms 200 text/css +2018-08-02 13:37:16.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:37:16.026 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:37:16.027 +03:00 [INF] Request finished in 1.9858ms 200 text/css +2018-08-02 13:37:16.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:37:16.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:37:16.029 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:37:16.029 +03:00 [INF] Request finished in 1.2673ms 200 text/css +2018-08-02 13:37:16.030 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:37:16.030 +03:00 [INF] Request finished in 2.2568ms 200 text/css +2018-08-02 13:37:16.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:37:16.037 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:37:16.038 +03:00 [INF] Request finished in 2.1568ms 200 text/css +2018-08-02 13:37:16.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:37:16.041 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:37:16.041 +03:00 [INF] Request finished in 0.9377ms 200 text/css +2018-08-02 13:37:16.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:37:16.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:37:16.045 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:37:16.046 +03:00 [INF] Request finished in 2.5625ms 200 text/css +2018-08-02 13:37:16.046 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:37:16.046 +03:00 [INF] Request finished in 0.8907ms 200 application/javascript +2018-08-02 13:37:16.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:37:16.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:37:16.071 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:37:16.071 +03:00 [INF] Request finished in 4.7667ms 200 application/javascript +2018-08-02 13:37:16.073 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:37:16.074 +03:00 [INF] Request finished in 11.4219ms 200 application/javascript +2018-08-02 13:37:16.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:37:16.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:37:16.084 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:37:16.084 +03:00 [INF] Request finished in 5.0212ms 200 application/javascript +2018-08-02 13:37:16.085 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:37:16.085 +03:00 [INF] Request finished in 7.8529ms 200 application/javascript +2018-08-02 13:37:16.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:37:16.097 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:37:16.097 +03:00 [INF] Request finished in 0.9625ms 200 application/javascript +2018-08-02 13:37:16.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:37:16.121 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:37:16.121 +03:00 [INF] Request finished in 1.0367ms 200 application/javascript +2018-08-02 13:37:16.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:37:16.130 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:37:16.132 +03:00 [INF] Request finished in 1.1752ms 200 application/javascript +2018-08-02 13:37:16.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:37:16.153 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:37:16.153 +03:00 [INF] Request finished in 2.7976ms 200 application/javascript +2018-08-02 13:37:16.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:37:16.171 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:37:16.171 +03:00 [INF] Request finished in 15.8167ms 200 application/javascript +2018-08-02 13:37:16.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:37:16.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:37:16.183 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:37:16.184 +03:00 [INF] Request finished in 1.6252ms 200 application/javascript +2018-08-02 13:37:16.184 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:37:16.184 +03:00 [INF] Request finished in 1.1649ms 200 application/javascript +2018-08-02 13:37:16.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:37:16.229 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:37:16.230 +03:00 [INF] Request finished in 2.852ms 200 application/javascript +2018-08-02 13:37:16.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:37:16.231 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:37:16.231 +03:00 [INF] Request finished in 1.3488ms 200 application/javascript +2018-08-02 13:37:16.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:37:16.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:37:16.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:37:16.239 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:37:16.239 +03:00 [INF] Request finished in 0.794ms 200 application/javascript +2018-08-02 13:37:16.240 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:37:16.240 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:37:16.240 +03:00 [INF] Request finished in 0.649ms 200 application/javascript +2018-08-02 13:37:16.240 +03:00 [INF] Request finished in 1.0889ms 200 application/javascript +2018-08-02 13:37:16.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:37:16.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:37:16.258 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:37:16.258 +03:00 [INF] Request finished in 2.5438ms 200 application/javascript +2018-08-02 13:37:16.258 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:37:16.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:37:16.258 +03:00 [INF] Request finished in 4.0757ms 200 application/javascript +2018-08-02 13:37:16.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:37:16.278 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:16.278 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:37:16.278 +03:00 [INF] Request finished in 3.9392ms 200 application/javascript +2018-08-02 13:37:16.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:37:16.279 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:37:16.279 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:37:16.279 +03:00 [INF] Request finished in 0.9517ms 200 application/javascript +2018-08-02 13:37:16.280 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.38180000000000003ms. +2018-08-02 13:37:16.280 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:16.280 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2622ms +2018-08-02 13:37:16.280 +03:00 [INF] Request finished in 22.0407ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:16.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:37:16.297 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:37:16.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:37:16.299 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:37:16.299 +03:00 [INF] Request finished in 1.0855ms 200 application/javascript +2018-08-02 13:37:16.303 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:37:16.303 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1029ms. +2018-08-02 13:37:16.303 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:37:16.303 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.6246ms +2018-08-02 13:37:16.303 +03:00 [INF] Request finished in 11.7285ms 200 text/plain; charset=utf-8 +2018-08-02 13:37:16.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:37:16.309 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:37:16.309 +03:00 [INF] Request finished in 2.9887ms 200 application/javascript +2018-08-02 13:37:16.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:37:16.313 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:37:16.313 +03:00 [INF] Request finished in 2.3269ms 200 image/png +2018-08-02 13:37:16.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:37:16.319 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:37:16.320 +03:00 [INF] Request finished in 4.0827ms 200 image/svg+xml +2018-08-02 13:37:16.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:37:16.328 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:37:16.328 +03:00 [INF] Request finished in 1.545ms 200 image/png +2018-08-02 13:37:16.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:37:16.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:37:16.342 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:37:16.342 +03:00 [INF] Request finished in 0.7902ms 200 image/png +2018-08-02 13:37:16.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:37:16.342 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:37:16.342 +03:00 [INF] Request finished in 0.8481ms 200 image/png +2018-08-02 13:37:16.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:37:16.343 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:37:16.343 +03:00 [INF] Request finished in 0.9268ms 200 image/png +2018-08-02 13:37:16.343 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:37:16.343 +03:00 [INF] Request finished in 0.9581ms 200 image/png +2018-08-02 13:37:16.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:37:16.351 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:37:16.351 +03:00 [INF] Request finished in 3.0091ms 200 image/png +2018-08-02 13:37:16.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:37:16.353 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:37:16.353 +03:00 [INF] Request finished in 0.8224ms 200 image/png +2018-08-02 13:37:16.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:37:16.357 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:37:16.357 +03:00 [INF] Request finished in 1.177ms 200 image/png +2018-08-02 13:37:16.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:37:16.358 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:37:16.358 +03:00 [INF] Request finished in 0.9046ms 200 image/png +2018-08-02 13:37:16.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:37:16.387 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:37:16.388 +03:00 [INF] Request finished in 1.1134ms 200 image/png +2018-08-02 13:37:16.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:37:16.403 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:37:16.403 +03:00 [INF] Request finished in 0.9798ms 200 image/png +2018-08-02 13:37:16.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:37:16.407 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:37:16.407 +03:00 [INF] Request finished in 1.1275ms 200 image/png +2018-08-02 13:37:16.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:37:16.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:37:16.422 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:37:16.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:37:16.423 +03:00 [INF] Request finished in 0.8125ms 200 image/png +2018-08-02 13:37:16.423 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:37:16.423 +03:00 [INF] Request finished in 1.0475ms 200 image/png +2018-08-02 13:37:16.423 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:37:16.423 +03:00 [INF] Request finished in 0.7398ms 200 image/png +2018-08-02 13:37:16.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:37:16.430 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:37:16.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:37:16.430 +03:00 [INF] Request finished in 3.2244ms 200 image/png +2018-08-02 13:37:16.431 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:37:16.431 +03:00 [INF] Request finished in 1.3813ms 200 image/svg+xml +2018-08-02 13:37:16.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:37:16.435 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:37:16.435 +03:00 [INF] Request finished in 1.4453ms 200 image/png +2018-08-02 13:37:16.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:37:16.449 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:37:16.449 +03:00 [INF] Request finished in 1.5476ms 200 image/png +2018-08-02 13:37:16.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:37:16.455 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:37:16.455 +03:00 [INF] Request finished in 0.7593ms 200 image/png +2018-08-02 13:37:16.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:37:16.473 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:37:16.473 +03:00 [INF] Request finished in 2.1063ms 200 image/png +2018-08-02 13:37:16.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:37:16.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:37:16.486 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:37:16.486 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:37:16.486 +03:00 [INF] Request finished in 0.9803ms 200 image/png +2018-08-02 13:37:16.486 +03:00 [INF] Request finished in 1.25ms 200 image/png +2018-08-02 13:37:16.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:37:16.487 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:37:16.487 +03:00 [INF] Request finished in 0.8488ms 200 image/png +2018-08-02 13:37:16.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:37:16.489 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:37:16.489 +03:00 [INF] Request finished in 1.9117ms 200 image/png +2018-08-02 13:37:16.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:37:16.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:37:16.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:37:16.492 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:37:16.492 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:37:16.492 +03:00 [INF] Request finished in 0.7351ms 200 image/png +2018-08-02 13:37:16.492 +03:00 [INF] Request finished in 0.7799ms 200 image/png +2018-08-02 13:37:16.493 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:37:16.493 +03:00 [INF] Request finished in 1.2402ms 200 image/png +2018-08-02 13:37:16.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:37:16.523 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:37:16.524 +03:00 [INF] Request finished in 1.4401ms 200 image/png +2018-08-02 13:37:16.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:37:16.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:37:16.525 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:37:16.526 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:37:16.526 +03:00 [INF] Request finished in 2.1465ms 200 image/png +2018-08-02 13:37:16.526 +03:00 [INF] Request finished in 2.1092ms 200 image/png +2018-08-02 13:37:16.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:37:16.528 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:37:16.529 +03:00 [INF] Request finished in 1.718ms 200 image/png +2018-08-02 13:37:16.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:37:16.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:37:16.537 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:37:16.537 +03:00 [INF] Request finished in 0.9495ms 200 image/png +2018-08-02 13:37:16.538 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:37:16.538 +03:00 [INF] Request finished in 1.5273ms 200 image/png +2018-08-02 13:37:16.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:37:16.548 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:37:16.548 +03:00 [INF] Request finished in 1.0112ms 200 image/png +2018-08-02 13:37:16.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:37:16.556 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:37:16.556 +03:00 [INF] Request finished in 2.4668ms 200 image/png +2018-08-02 13:37:16.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:37:16.559 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:37:16.559 +03:00 [INF] Request finished in 2.0309ms 200 image/png +2018-08-02 13:37:16.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:37:16.571 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:37:16.571 +03:00 [INF] Request finished in 11.6976ms 200 image/jpeg +2018-08-02 13:37:16.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:37:16.575 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:37:16.575 +03:00 [INF] Request finished in 2.2141ms 200 font/woff2 +2018-08-02 13:37:17.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:37:17.418 +03:00 [INF] Request finished in 1.9744ms 404 +2018-08-02 13:38:13.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:38:13.867 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:38:13.867 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:38:13.883 +03:00 [INF] Executed action /Index in 16.689600000000002ms +2018-08-02 13:38:13.883 +03:00 [INF] Request finished in 269.1463ms 200 text/html; charset=utf-8 +2018-08-02 13:38:13.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:38:13.921 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:38:13.922 +03:00 [INF] Request finished in 4.5803ms 200 text/css +2018-08-02 13:38:13.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:38:13.924 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:38:13.924 +03:00 [INF] Request finished in 2.5947ms 200 text/css +2018-08-02 13:38:13.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:38:13.926 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:38:13.927 +03:00 [INF] Request finished in 2.1122ms 200 text/css +2018-08-02 13:38:13.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:38:13.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:38:13.933 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:38:13.934 +03:00 [INF] Request finished in 2.161ms 200 text/css +2018-08-02 13:38:13.934 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:38:13.934 +03:00 [INF] Request finished in 1.5641ms 200 text/css +2018-08-02 13:38:13.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:38:13.942 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:38:13.943 +03:00 [INF] Request finished in 1.1896ms 200 text/css +2018-08-02 13:38:13.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:38:13.951 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:38:13.951 +03:00 [INF] Request finished in 5.2972ms 200 text/css +2018-08-02 13:38:13.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:38:13.958 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:38:13.958 +03:00 [INF] Request finished in 2.8626ms 200 text/css +2018-08-02 13:38:13.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:38:13.976 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:38:13.976 +03:00 [INF] Request finished in 0.9329ms 200 application/javascript +2018-08-02 13:38:13.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:38:13.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:38:13.986 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:38:13.986 +03:00 [INF] Request finished in 0.7835ms 200 application/javascript +2018-08-02 13:38:13.994 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:38:13.995 +03:00 [INF] Request finished in 9.858ms 200 application/javascript +2018-08-02 13:38:14.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:38:14.005 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:38:14.005 +03:00 [INF] Request finished in 5.4836ms 200 application/javascript +2018-08-02 13:38:14.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:38:14.016 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:38:14.016 +03:00 [INF] Request finished in 2.1095ms 200 application/javascript +2018-08-02 13:38:14.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:38:14.026 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:38:14.027 +03:00 [INF] Request finished in 1.3014ms 200 application/javascript +2018-08-02 13:38:14.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:38:14.032 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:38:14.032 +03:00 [INF] Request finished in 1.8626ms 200 application/javascript +2018-08-02 13:38:14.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:38:14.039 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:38:14.040 +03:00 [INF] Request finished in 6.0233ms 200 application/javascript +2018-08-02 13:38:14.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:38:14.050 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:38:14.050 +03:00 [INF] Request finished in 8.5617ms 200 application/javascript +2018-08-02 13:38:14.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:38:14.054 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:38:14.054 +03:00 [INF] Request finished in 2.0921ms 200 application/javascript +2018-08-02 13:38:14.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:38:14.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:38:14.068 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:38:14.068 +03:00 [INF] Request finished in 1.1762ms 200 application/javascript +2018-08-02 13:38:14.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:38:14.073 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:38:14.074 +03:00 [INF] Request finished in 16.7471ms 200 application/javascript +2018-08-02 13:38:14.075 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:38:14.075 +03:00 [INF] Request finished in 2.7576ms 200 application/javascript +2018-08-02 13:38:14.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:38:14.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:38:14.086 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:38:14.086 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:38:14.086 +03:00 [INF] Request finished in 8.7096ms 200 application/javascript +2018-08-02 13:38:14.086 +03:00 [INF] Request finished in 1.0863ms 200 application/javascript +2018-08-02 13:38:14.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:38:14.089 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:38:14.089 +03:00 [INF] Request finished in 3.4613ms 200 application/javascript +2018-08-02 13:38:14.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:38:14.094 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:38:14.094 +03:00 [INF] Request finished in 2.2037ms 200 application/javascript +2018-08-02 13:38:14.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:38:14.097 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:38:14.098 +03:00 [INF] Request finished in 2.6937ms 200 application/javascript +2018-08-02 13:38:14.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:38:14.118 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:38:14.118 +03:00 [INF] Request finished in 3.353ms 200 application/javascript +2018-08-02 13:38:14.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:38:14.122 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:38:14.122 +03:00 [INF] Request finished in 1.4225ms 200 application/javascript +2018-08-02 13:38:14.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:38:14.129 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:38:14.129 +03:00 [INF] Request finished in 1.4786ms 200 application/javascript +2018-08-02 13:38:14.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:38:14.148 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:14.149 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:38:14.150 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.36710000000000004ms. +2018-08-02 13:38:14.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:14.150 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7896ms +2018-08-02 13:38:14.150 +03:00 [INF] Request finished in 12.419ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:14.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:38:14.157 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:14.159 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:38:14.160 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3009ms. +2018-08-02 13:38:14.161 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:14.161 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5355000000000003ms +2018-08-02 13:38:14.161 +03:00 [INF] Request finished in 7.2185ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:14.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:38:14.199 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:38:14.199 +03:00 [INF] Request finished in 2.3163ms 200 application/javascript +2018-08-02 13:38:14.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:38:14.210 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:38:14.210 +03:00 [INF] Request finished in 1.7785ms 200 application/javascript +2018-08-02 13:38:14.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:38:14.252 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:38:14.252 +03:00 [INF] Request finished in 1.4821ms 200 image/svg+xml +2018-08-02 13:38:14.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:38:14.255 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:38:14.255 +03:00 [INF] Request finished in 1.0806ms 200 image/png +2018-08-02 13:38:14.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:38:14.266 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:38:14.266 +03:00 [INF] Request finished in 1.082ms 200 image/png +2018-08-02 13:38:14.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:38:14.276 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:38:14.276 +03:00 [INF] Request finished in 7.864ms 200 image/png +2018-08-02 13:38:14.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:38:14.279 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:38:14.280 +03:00 [INF] Request finished in 2.0023ms 200 image/png +2018-08-02 13:38:14.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:38:14.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:38:14.283 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:38:14.283 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:38:14.283 +03:00 [INF] Request finished in 1.3505ms 200 image/png +2018-08-02 13:38:14.283 +03:00 [INF] Request finished in 0.8357ms 200 image/png +2018-08-02 13:38:14.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:38:14.286 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:38:14.286 +03:00 [INF] Request finished in 1.3417ms 200 image/png +2018-08-02 13:38:14.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:38:14.298 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:38:14.299 +03:00 [INF] Request finished in 3.3401ms 200 image/png +2018-08-02 13:38:14.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:38:14.316 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:38:14.316 +03:00 [INF] Request finished in 8.4339ms 200 image/png +2018-08-02 13:38:14.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:38:14.322 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:38:14.322 +03:00 [INF] Request finished in 1.4888ms 200 image/png +2018-08-02 13:38:14.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:38:14.327 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:38:14.327 +03:00 [INF] Request finished in 0.9895ms 200 image/png +2018-08-02 13:38:14.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:38:14.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:38:14.334 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:38:14.334 +03:00 [INF] Request finished in 2.2458ms 200 image/png +2018-08-02 13:38:14.335 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:38:14.335 +03:00 [INF] Request finished in 1.5919ms 200 image/png +2018-08-02 13:38:14.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:38:14.344 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:38:14.345 +03:00 [INF] Request finished in 1.9551ms 200 image/png +2018-08-02 13:38:14.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:38:14.352 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:38:14.352 +03:00 [INF] Request finished in 1.0216ms 200 image/png +2018-08-02 13:38:14.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:38:14.357 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:38:14.358 +03:00 [INF] Request finished in 3.0966ms 200 image/png +2018-08-02 13:38:14.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:38:14.359 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:38:14.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:38:14.360 +03:00 [INF] Request finished in 1.8068ms 200 image/png +2018-08-02 13:38:14.360 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:38:14.361 +03:00 [INF] Request finished in 1.0946ms 200 image/png +2018-08-02 13:38:14.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:38:14.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:38:14.371 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:38:14.371 +03:00 [INF] Request finished in 1.3153ms 200 image/png +2018-08-02 13:38:14.371 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:38:14.372 +03:00 [INF] Request finished in 1.7645ms 200 image/png +2018-08-02 13:38:14.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:38:14.381 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:38:14.381 +03:00 [INF] Request finished in 1.7278ms 200 image/png +2018-08-02 13:38:14.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:38:14.385 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:38:14.385 +03:00 [INF] Request finished in 1.0622ms 200 image/png +2018-08-02 13:38:14.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:38:14.388 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:38:14.388 +03:00 [INF] Request finished in 1.1377ms 200 image/png +2018-08-02 13:38:14.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:38:14.393 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:38:14.393 +03:00 [INF] Request finished in 2.41ms 200 image/png +2018-08-02 13:38:14.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:38:14.396 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:38:14.396 +03:00 [INF] Request finished in 2.068ms 200 image/png +2018-08-02 13:38:14.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:38:14.405 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:38:14.405 +03:00 [INF] Request finished in 1.9914ms 200 image/png +2018-08-02 13:38:14.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:38:14.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:38:14.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:38:14.411 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:38:14.411 +03:00 [INF] Request finished in 1.1856ms 200 image/png +2018-08-02 13:38:14.412 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:38:14.412 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:38:14.412 +03:00 [INF] Request finished in 1.0826ms 200 image/png +2018-08-02 13:38:14.412 +03:00 [INF] Request finished in 0.7314ms 200 image/png +2018-08-02 13:38:14.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:38:14.414 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:38:14.414 +03:00 [INF] Request finished in 0.8835ms 200 image/png +2018-08-02 13:38:14.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:38:14.416 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:38:14.416 +03:00 [INF] Request finished in 1.1724ms 200 image/png +2018-08-02 13:38:14.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:38:14.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:38:14.421 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:38:14.421 +03:00 [INF] Request finished in 0.8148ms 200 image/png +2018-08-02 13:38:14.421 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:38:14.422 +03:00 [INF] Request finished in 1.1938ms 200 image/png +2018-08-02 13:38:14.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:38:14.429 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:38:14.429 +03:00 [INF] Request finished in 1.5959ms 200 image/png +2018-08-02 13:38:14.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:38:14.430 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:38:14.430 +03:00 [INF] Request finished in 2.0977ms 200 image/png +2018-08-02 13:38:14.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:38:14.431 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:38:14.432 +03:00 [INF] Request finished in 1.2332ms 200 image/svg+xml +2018-08-02 13:38:14.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:38:14.437 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:38:14.437 +03:00 [INF] Request finished in 0.7707ms 200 image/png +2018-08-02 13:38:14.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:38:14.442 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:38:14.442 +03:00 [INF] Request finished in 2.4567ms 200 image/png +2018-08-02 13:38:14.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:38:14.468 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:38:14.468 +03:00 [INF] Request finished in 8.7127ms 200 image/jpeg +2018-08-02 13:38:14.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:38:14.479 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:38:14.479 +03:00 [INF] Request finished in 2.6011ms 200 font/woff2 +2018-08-02 13:38:15.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:38:15.252 +03:00 [INF] Request finished in 1.3981ms 404 +2018-08-02 13:38:40.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:38:40.254 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:38:40.254 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:38:40.265 +03:00 [INF] Executed action /Index in 11.2605ms +2018-08-02 13:38:40.265 +03:00 [INF] Request finished in 264.5834ms 200 text/html; charset=utf-8 +2018-08-02 13:38:40.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:38:40.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:38:40.310 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:38:40.310 +03:00 [INF] Request finished in 1.1197ms 200 text/css +2018-08-02 13:38:40.311 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:38:40.311 +03:00 [INF] Request finished in 5.1193ms 200 text/css +2018-08-02 13:38:40.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:38:40.323 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:38:40.323 +03:00 [INF] Request finished in 1.1323ms 200 text/css +2018-08-02 13:38:40.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:38:40.325 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:38:40.326 +03:00 [INF] Request finished in 1.0741ms 200 text/css +2018-08-02 13:38:40.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:38:40.331 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:38:40.331 +03:00 [INF] Request finished in 0.97ms 200 text/css +2018-08-02 13:38:40.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:38:40.335 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:38:40.336 +03:00 [INF] Request finished in 3.6766ms 200 text/css +2018-08-02 13:38:40.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:38:40.337 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:38:40.337 +03:00 [INF] Request finished in 0.9845ms 200 text/css +2018-08-02 13:38:40.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:38:40.344 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:38:40.344 +03:00 [INF] Request finished in 1.8593ms 200 text/css +2018-08-02 13:38:40.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:38:40.347 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:38:40.347 +03:00 [INF] Request finished in 0.9757ms 200 application/javascript +2018-08-02 13:38:40.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:38:40.357 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:38:40.357 +03:00 [INF] Request finished in 9.2583ms 200 application/javascript +2018-08-02 13:38:40.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:38:40.364 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:38:40.364 +03:00 [INF] Request finished in 1.8049ms 200 application/javascript +2018-08-02 13:38:40.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:38:40.374 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:38:40.375 +03:00 [INF] Request finished in 6.2242ms 200 application/javascript +2018-08-02 13:38:40.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:38:40.379 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:38:40.380 +03:00 [INF] Request finished in 3.1822ms 200 application/javascript +2018-08-02 13:38:40.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:38:40.386 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:38:40.387 +03:00 [INF] Request finished in 1.5375ms 200 application/javascript +2018-08-02 13:38:40.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:38:40.414 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:38:40.414 +03:00 [INF] Request finished in 1.3473ms 200 application/javascript +2018-08-02 13:38:40.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:38:40.421 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:38:40.421 +03:00 [INF] Request finished in 1.1864ms 200 application/javascript +2018-08-02 13:38:40.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:38:40.463 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:38:40.463 +03:00 [INF] Request finished in 2.0889ms 200 application/javascript +2018-08-02 13:38:40.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:38:40.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:38:40.472 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:38:40.473 +03:00 [INF] Request finished in 3.1803ms 200 application/javascript +2018-08-02 13:38:40.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:38:40.480 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:38:40.480 +03:00 [INF] Request finished in 2.8477ms 200 application/javascript +2018-08-02 13:38:40.481 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:38:40.482 +03:00 [INF] Request finished in 12.8361ms 200 application/javascript +2018-08-02 13:38:40.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:38:40.492 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:38:40.493 +03:00 [INF] Request finished in 1.4741ms 200 application/javascript +2018-08-02 13:38:40.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:38:40.496 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:38:40.496 +03:00 [INF] Request finished in 0.7566ms 200 application/javascript +2018-08-02 13:38:40.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:38:40.506 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:38:40.506 +03:00 [INF] Request finished in 1.6262ms 200 application/javascript +2018-08-02 13:38:40.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:38:40.508 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:38:40.509 +03:00 [INF] Request finished in 1.0884ms 200 application/javascript +2018-08-02 13:38:40.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:38:40.522 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:38:40.522 +03:00 [INF] Request finished in 1.7755ms 200 application/javascript +2018-08-02 13:38:40.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:38:40.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:38:40.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:38:40.524 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:38:40.524 +03:00 [INF] Request finished in 1.4345ms 200 application/javascript +2018-08-02 13:38:40.524 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:38:40.524 +03:00 [INF] Request finished in 1.8604ms 200 application/javascript +2018-08-02 13:38:40.525 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:38:40.525 +03:00 [INF] Request finished in 2.2923ms 200 application/javascript +2018-08-02 13:38:40.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:38:40.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:38:40.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:38:40.547 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:38:40.547 +03:00 [INF] Request finished in 1.6826ms 200 application/javascript +2018-08-02 13:38:40.548 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:40.549 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:38:40.549 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13440000000000002ms. +2018-08-02 13:38:40.550 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:40.550 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4141ms +2018-08-02 13:38:40.551 +03:00 [INF] Request finished in 5.6781ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:40.554 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:40.554 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:38:40.555 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4404ms. +2018-08-02 13:38:40.555 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:40.555 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7277ms +2018-08-02 13:38:40.556 +03:00 [INF] Request finished in 9.3426ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:40.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:38:40.558 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:38:40.558 +03:00 [INF] Request finished in 0.8468ms 200 application/javascript +2018-08-02 13:38:40.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:38:40.592 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:38:40.592 +03:00 [INF] Request finished in 1.105ms 200 application/javascript +2018-08-02 13:38:40.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:38:40.634 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:38:40.635 +03:00 [INF] Request finished in 3.8532ms 200 image/svg+xml +2018-08-02 13:38:40.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:38:40.638 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:38:40.639 +03:00 [INF] Request finished in 1.6889ms 200 image/png +2018-08-02 13:38:40.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:38:40.650 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:38:40.650 +03:00 [INF] Request finished in 1.0219ms 200 image/png +2018-08-02 13:38:40.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:38:40.659 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:38:40.660 +03:00 [INF] Request finished in 2.1432ms 200 image/png +2018-08-02 13:38:40.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:38:40.662 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:38:40.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:38:40.668 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:38:40.668 +03:00 [INF] Request finished in 7.1213ms 200 image/png +2018-08-02 13:38:40.668 +03:00 [INF] Request finished in 2.9884ms 200 image/png +2018-08-02 13:38:40.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:38:40.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:38:40.670 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:38:40.670 +03:00 [INF] Request finished in 1.6995ms 200 image/png +2018-08-02 13:38:40.670 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:38:40.670 +03:00 [INF] Request finished in 1.5181ms 200 image/png +2018-08-02 13:38:40.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:38:40.677 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:38:40.677 +03:00 [INF] Request finished in 1.0463ms 200 image/png +2018-08-02 13:38:40.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:38:40.679 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:38:40.679 +03:00 [INF] Request finished in 1.4459ms 200 image/png +2018-08-02 13:38:40.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:38:40.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:38:40.684 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:38:40.684 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:38:40.684 +03:00 [INF] Request finished in 1.5949ms 200 image/png +2018-08-02 13:38:40.684 +03:00 [INF] Request finished in 1.2675ms 200 image/png +2018-08-02 13:38:40.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:38:40.687 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:38:40.687 +03:00 [INF] Request finished in 1.0698ms 200 image/png +2018-08-02 13:38:40.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:38:40.692 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:38:40.693 +03:00 [INF] Request finished in 1.17ms 200 image/png +2018-08-02 13:38:40.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:38:40.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:38:40.695 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:38:40.695 +03:00 [INF] Request finished in 1.1999ms 200 image/png +2018-08-02 13:38:40.697 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:38:40.697 +03:00 [INF] Request finished in 3.1531ms 200 image/png +2018-08-02 13:38:40.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:38:40.699 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:38:40.699 +03:00 [INF] Request finished in 2.0199ms 200 image/png +2018-08-02 13:38:40.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:38:40.706 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:38:40.707 +03:00 [INF] Request finished in 2.8678ms 200 image/svg+xml +2018-08-02 13:38:40.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:38:40.714 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:38:40.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:38:40.714 +03:00 [INF] Request finished in 1.2193ms 200 image/png +2018-08-02 13:38:40.715 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:38:40.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:38:40.715 +03:00 [INF] Request finished in 1.0677ms 200 image/png +2018-08-02 13:38:40.716 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:38:40.716 +03:00 [INF] Request finished in 1.1617ms 200 image/png +2018-08-02 13:38:40.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:38:40.721 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:38:40.722 +03:00 [INF] Request finished in 1.6462ms 200 image/png +2018-08-02 13:38:40.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:38:40.723 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:38:40.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:38:40.723 +03:00 [INF] Request finished in 0.8686ms 200 image/png +2018-08-02 13:38:40.724 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:38:40.724 +03:00 [INF] Request finished in 1.286ms 200 image/png +2018-08-02 13:38:40.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:38:40.736 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:38:40.736 +03:00 [INF] Request finished in 2.8995ms 200 image/png +2018-08-02 13:38:40.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:38:40.739 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:38:40.739 +03:00 [INF] Request finished in 0.8912ms 200 image/png +2018-08-02 13:38:40.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:38:40.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:38:40.742 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:38:40.742 +03:00 [INF] Request finished in 1.3312ms 200 image/png +2018-08-02 13:38:40.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:38:40.743 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:38:40.743 +03:00 [INF] Request finished in 2.4313ms 200 image/png +2018-08-02 13:38:40.743 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:38:40.743 +03:00 [INF] Request finished in 0.9642ms 200 image/png +2018-08-02 13:38:40.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:38:40.747 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:38:40.747 +03:00 [INF] Request finished in 1.713ms 200 image/png +2018-08-02 13:38:40.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:38:40.751 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:38:40.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:38:40.752 +03:00 [INF] Request finished in 2.6882ms 200 image/png +2018-08-02 13:38:40.753 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:38:40.753 +03:00 [INF] Request finished in 1.053ms 200 image/png +2018-08-02 13:38:40.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:38:40.754 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:38:40.754 +03:00 [INF] Request finished in 0.8609ms 200 image/png +2018-08-02 13:38:40.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:38:40.755 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:38:40.755 +03:00 [INF] Request finished in 0.9199ms 200 image/png +2018-08-02 13:38:40.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:38:40.758 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:38:40.758 +03:00 [INF] Request finished in 0.8532ms 200 image/png +2018-08-02 13:38:40.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:38:40.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:38:40.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:38:40.762 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:38:40.762 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:38:40.762 +03:00 [INF] Request finished in 1.0263ms 200 image/png +2018-08-02 13:38:40.762 +03:00 [INF] Request finished in 0.545ms 200 image/png +2018-08-02 13:38:40.762 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:38:40.762 +03:00 [INF] Request finished in 0.9384ms 200 image/png +2018-08-02 13:38:40.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:38:40.766 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:38:40.766 +03:00 [INF] Request finished in 3.6209ms 200 font/woff2 +2018-08-02 13:38:40.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:38:40.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:38:40.770 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:38:40.770 +03:00 [INF] Request finished in 1.3058ms 200 image/png +2018-08-02 13:38:40.778 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:38:40.778 +03:00 [INF] Request finished in 9.9095ms 200 image/jpeg +2018-08-02 13:38:41.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:38:41.684 +03:00 [INF] Request finished in 0.8126ms 404 +2018-08-02 13:38:46.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:38:46.345 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:38:46.346 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:38:46.359 +03:00 [INF] Executed action /Index in 13.711400000000001ms +2018-08-02 13:38:46.359 +03:00 [INF] Request finished in 327.0046ms 200 text/html; charset=utf-8 +2018-08-02 13:38:46.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:38:46.418 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:38:46.418 +03:00 [INF] Request finished in 4.274ms 200 text/css +2018-08-02 13:38:46.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:38:46.425 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:38:46.425 +03:00 [INF] Request finished in 1.245ms 200 text/css +2018-08-02 13:38:46.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:38:46.426 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:38:46.426 +03:00 [INF] Request finished in 1.1554ms 200 text/css +2018-08-02 13:38:46.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:38:46.437 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:38:46.437 +03:00 [INF] Request finished in 2.3694ms 200 text/css +2018-08-02 13:38:46.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:38:46.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:38:46.454 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:38:46.454 +03:00 [INF] Request finished in 1.3458ms 200 text/css +2018-08-02 13:38:46.454 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:38:46.454 +03:00 [INF] Request finished in 1.14ms 200 text/css +2018-08-02 13:38:46.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:38:46.463 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:38:46.464 +03:00 [INF] Request finished in 1.1797ms 200 text/css +2018-08-02 13:38:46.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:38:46.474 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:38:46.474 +03:00 [INF] Request finished in 1.3246ms 200 text/css +2018-08-02 13:38:46.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:38:46.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:38:46.488 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:38:46.488 +03:00 [INF] Request finished in 1.4088ms 200 application/javascript +2018-08-02 13:38:46.495 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:38:46.495 +03:00 [INF] Request finished in 14.9186ms 200 application/javascript +2018-08-02 13:38:46.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:38:46.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:38:46.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:38:46.496 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:38:46.496 +03:00 [INF] Request finished in 0.6448ms 200 application/javascript +2018-08-02 13:38:46.498 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:38:46.498 +03:00 [INF] Request finished in 2.6976ms 200 application/javascript +2018-08-02 13:38:46.504 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:38:46.504 +03:00 [INF] Request finished in 8.4489ms 200 application/javascript +2018-08-02 13:38:46.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:38:46.515 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:38:46.515 +03:00 [INF] Request finished in 3.5369ms 200 application/javascript +2018-08-02 13:38:46.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:38:46.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:38:46.525 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:38:46.525 +03:00 [INF] Request finished in 1.5632ms 200 application/javascript +2018-08-02 13:38:46.527 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:38:46.528 +03:00 [INF] Request finished in 4.1154ms 200 application/javascript +2018-08-02 13:38:46.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:38:46.531 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:38:46.532 +03:00 [INF] Request finished in 1.199ms 200 application/javascript +2018-08-02 13:38:46.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:38:46.554 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:38:46.554 +03:00 [INF] Request finished in 14.1725ms 200 application/javascript +2018-08-02 13:38:46.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:38:46.559 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:38:46.560 +03:00 [INF] Request finished in 1.7926ms 200 application/javascript +2018-08-02 13:38:46.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:38:46.561 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:38:46.561 +03:00 [INF] Request finished in 1.4019ms 200 application/javascript +2018-08-02 13:38:46.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:38:46.574 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:38:46.574 +03:00 [INF] Request finished in 1.4501ms 200 application/javascript +2018-08-02 13:38:46.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:38:46.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:38:46.586 +03:00 [INF] Request finished in 1.2497ms 200 application/javascript +2018-08-02 13:38:46.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:38:46.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:38:46.591 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:38:46.592 +03:00 [INF] Request finished in 2.4749ms 200 application/javascript +2018-08-02 13:38:46.592 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:38:46.592 +03:00 [INF] Request finished in 2.2008ms 200 application/javascript +2018-08-02 13:38:46.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:38:46.596 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:38:46.596 +03:00 [INF] Request finished in 0.9863ms 200 application/javascript +2018-08-02 13:38:46.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:38:46.608 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:38:46.608 +03:00 [INF] Request finished in 2.1349ms 200 application/javascript +2018-08-02 13:38:46.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:38:46.626 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:38:46.626 +03:00 [INF] Request finished in 2.7242ms 200 application/javascript +2018-08-02 13:38:46.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:38:46.660 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:38:46.660 +03:00 [INF] Request finished in 4.6821ms 200 application/javascript +2018-08-02 13:38:46.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:38:46.671 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:38:46.671 +03:00 [INF] Request finished in 1.6314ms 200 application/javascript +2018-08-02 13:38:46.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:38:46.714 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:46.714 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:38:46.715 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5399ms. +2018-08-02 13:38:46.715 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:46.715 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7946000000000002ms +2018-08-02 13:38:46.716 +03:00 [INF] Request finished in 14.6631ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:46.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:38:46.720 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:46.721 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:38:46.722 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1661ms. +2018-08-02 13:38:46.722 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:46.722 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4123ms +2018-08-02 13:38:46.722 +03:00 [INF] Request finished in 5.9933ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:46.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:38:46.724 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:38:46.724 +03:00 [INF] Request finished in 1.3684ms 200 application/javascript +2018-08-02 13:38:46.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:38:46.744 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:38:46.744 +03:00 [INF] Request finished in 0.961ms 200 application/javascript +2018-08-02 13:38:46.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:38:46.747 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:38:46.747 +03:00 [INF] Request finished in 1.0828ms 200 image/svg+xml +2018-08-02 13:38:46.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:38:46.749 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:38:46.749 +03:00 [INF] Request finished in 1.619ms 200 image/png +2018-08-02 13:38:46.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:38:46.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:38:46.752 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:38:46.752 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:38:46.752 +03:00 [INF] Request finished in 0.795ms 200 image/png +2018-08-02 13:38:46.752 +03:00 [INF] Request finished in 0.8221ms 200 image/png +2018-08-02 13:38:46.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:38:46.763 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:38:46.763 +03:00 [INF] Request finished in 1.8006ms 200 image/png +2018-08-02 13:38:46.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:38:46.766 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:38:46.766 +03:00 [INF] Request finished in 0.982ms 200 image/png +2018-08-02 13:38:46.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:38:46.767 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:38:46.767 +03:00 [INF] Request finished in 0.8601ms 200 image/png +2018-08-02 13:38:46.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:38:46.769 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:38:46.769 +03:00 [INF] Request finished in 1.4881ms 200 image/png +2018-08-02 13:38:46.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:38:46.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:38:46.775 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:38:46.775 +03:00 [INF] Request finished in 2.6566ms 200 image/png +2018-08-02 13:38:46.776 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:38:46.776 +03:00 [INF] Request finished in 5.7274ms 200 image/png +2018-08-02 13:38:46.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:38:46.791 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:38:46.792 +03:00 [INF] Request finished in 2.4337ms 200 image/png +2018-08-02 13:38:46.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:38:46.796 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:38:46.796 +03:00 [INF] Request finished in 0.8559ms 200 image/png +2018-08-02 13:38:46.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:38:46.797 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:38:46.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:38:46.798 +03:00 [INF] Request finished in 1.6098ms 200 image/png +2018-08-02 13:38:46.799 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:38:46.800 +03:00 [INF] Request finished in 2.2567ms 200 image/png +2018-08-02 13:38:46.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:38:46.804 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:38:46.804 +03:00 [INF] Request finished in 1.2513ms 200 image/png +2018-08-02 13:38:46.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:38:46.805 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:38:46.806 +03:00 [INF] Request finished in 1.2821ms 200 image/png +2018-08-02 13:38:46.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:38:46.807 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:38:46.807 +03:00 [INF] Request finished in 1.5349ms 200 image/svg+xml +2018-08-02 13:38:46.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:38:46.810 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:38:46.810 +03:00 [INF] Request finished in 1.9874ms 200 image/png +2018-08-02 13:38:46.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:38:46.811 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:38:46.811 +03:00 [INF] Request finished in 0.9231ms 200 image/png +2018-08-02 13:38:46.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:38:46.814 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:38:46.814 +03:00 [INF] Request finished in 2.1004ms 200 image/png +2018-08-02 13:38:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:38:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:38:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:38:46.828 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:38:46.828 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:38:46.828 +03:00 [INF] Request finished in 0.804ms 200 image/png +2018-08-02 13:38:46.828 +03:00 [INF] Request finished in 0.8422ms 200 image/png +2018-08-02 13:38:46.828 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:38:46.828 +03:00 [INF] Request finished in 0.9811ms 200 image/png +2018-08-02 13:38:46.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:38:46.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:38:46.829 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:38:46.829 +03:00 [INF] Request finished in 0.7391ms 200 image/png +2018-08-02 13:38:46.830 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:38:46.830 +03:00 [INF] Request finished in 1.4116ms 200 image/png +2018-08-02 13:38:46.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:38:46.844 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:38:46.844 +03:00 [INF] Request finished in 1.6819ms 200 image/png +2018-08-02 13:38:46.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:38:46.845 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:38:46.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:38:46.845 +03:00 [INF] Request finished in 1.0565ms 200 image/png +2018-08-02 13:38:46.846 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:38:46.846 +03:00 [INF] Request finished in 0.9091ms 200 image/png +2018-08-02 13:38:46.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:38:46.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:38:46.847 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:38:46.847 +03:00 [INF] Request finished in 0.7983ms 200 image/png +2018-08-02 13:38:46.848 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:38:46.848 +03:00 [INF] Request finished in 1.8848ms 200 image/png +2018-08-02 13:38:46.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:38:46.854 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:38:46.854 +03:00 [INF] Request finished in 0.8433ms 200 image/png +2018-08-02 13:38:46.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:38:46.858 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:38:46.858 +03:00 [INF] Request finished in 1.1222ms 200 image/png +2018-08-02 13:38:46.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:38:46.859 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:38:46.859 +03:00 [INF] Request finished in 0.9189ms 200 image/png +2018-08-02 13:38:46.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:38:46.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:38:46.861 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:38:46.861 +03:00 [INF] Request finished in 0.9182ms 200 image/png +2018-08-02 13:38:46.861 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:38:46.861 +03:00 [INF] Request finished in 0.6986ms 200 image/png +2018-08-02 13:38:46.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:38:46.873 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:38:46.873 +03:00 [INF] Request finished in 1.3832ms 200 image/png +2018-08-02 13:38:46.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:38:46.885 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:38:46.885 +03:00 [INF] Request finished in 0.8572ms 200 image/png +2018-08-02 13:38:46.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:38:46.897 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:38:46.897 +03:00 [INF] Request finished in 1.0453ms 200 image/png +2018-08-02 13:38:46.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:38:46.905 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:38:46.905 +03:00 [INF] Request finished in 0.9707ms 200 image/png +2018-08-02 13:38:46.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:38:46.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:38:47.001 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:38:47.001 +03:00 [INF] Request finished in 1.6655ms 200 font/woff2 +2018-08-02 13:38:47.004 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:38:47.004 +03:00 [INF] Request finished in 9.6837ms 200 image/jpeg +2018-08-02 13:38:47.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:38:47.908 +03:00 [INF] Request finished in 1.4612ms 404 +2018-08-02 13:38:51.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:38:52.013 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:38:52.014 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:38:52.033 +03:00 [INF] Executed action /Index in 19.511400000000002ms +2018-08-02 13:38:52.034 +03:00 [INF] Request finished in 405.5084ms 200 text/html; charset=utf-8 +2018-08-02 13:38:52.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:38:52.091 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:38:52.091 +03:00 [INF] Request finished in 1.5215ms 200 text/css +2018-08-02 13:38:52.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:38:52.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:38:52.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:38:52.099 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:38:52.099 +03:00 [INF] Request finished in 1.1355ms 200 text/css +2018-08-02 13:38:52.100 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:38:52.100 +03:00 [INF] Request finished in 0.704ms 200 text/css +2018-08-02 13:38:52.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:38:52.101 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:38:52.101 +03:00 [INF] Request finished in 1.0775ms 200 text/css +2018-08-02 13:38:52.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:38:52.102 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:38:52.102 +03:00 [INF] Request finished in 3.2879ms 200 text/css +2018-08-02 13:38:52.102 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:38:52.102 +03:00 [INF] Request finished in 0.869ms 200 text/css +2018-08-02 13:38:52.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:38:52.117 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:38:52.117 +03:00 [INF] Request finished in 1.5574ms 200 text/css +2018-08-02 13:38:52.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:38:52.126 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:38:52.126 +03:00 [INF] Request finished in 1.096ms 200 text/css +2018-08-02 13:38:52.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:38:52.138 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:38:52.138 +03:00 [INF] Request finished in 1.0274ms 200 application/javascript +2018-08-02 13:38:52.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:38:52.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:38:52.159 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:38:52.160 +03:00 [INF] Request finished in 0.8728ms 200 application/javascript +2018-08-02 13:38:52.166 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:38:52.167 +03:00 [INF] Request finished in 8.9368ms 200 application/javascript +2018-08-02 13:38:52.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:38:52.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:38:52.182 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:38:52.182 +03:00 [INF] Request finished in 9.3118ms 200 application/javascript +2018-08-02 13:38:52.187 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:38:52.188 +03:00 [INF] Request finished in 9.9491ms 200 application/javascript +2018-08-02 13:38:52.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:38:52.200 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:38:52.200 +03:00 [INF] Request finished in 1.3046ms 200 application/javascript +2018-08-02 13:38:52.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:38:52.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:38:52.202 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:38:52.203 +03:00 [INF] Request finished in 1.6239ms 200 application/javascript +2018-08-02 13:38:52.204 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:38:52.204 +03:00 [INF] Request finished in 1.8021ms 200 application/javascript +2018-08-02 13:38:52.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:38:52.226 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:38:52.226 +03:00 [INF] Request finished in 2.8925ms 200 application/javascript +2018-08-02 13:38:52.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:38:52.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:38:52.253 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:38:52.254 +03:00 [INF] Request finished in 2.145ms 200 application/javascript +2018-08-02 13:38:52.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:38:52.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:38:52.260 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:38:52.260 +03:00 [INF] Request finished in 1.6246ms 200 application/javascript +2018-08-02 13:38:52.260 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:38:52.260 +03:00 [INF] Request finished in 0.9846ms 200 application/javascript +2018-08-02 13:38:52.262 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:38:52.263 +03:00 [INF] Request finished in 9.8782ms 200 application/javascript +2018-08-02 13:38:52.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:38:52.265 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:38:52.265 +03:00 [INF] Request finished in 2.3192ms 200 application/javascript +2018-08-02 13:38:52.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:38:52.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:38:52.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:38:52.285 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:38:52.285 +03:00 [INF] Request finished in 1.3051ms 200 application/javascript +2018-08-02 13:38:52.285 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:38:52.285 +03:00 [INF] Request finished in 0.999ms 200 application/javascript +2018-08-02 13:38:52.286 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:38:52.286 +03:00 [INF] Request finished in 4.4449ms 200 application/javascript +2018-08-02 13:38:52.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:38:52.292 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:38:52.292 +03:00 [INF] Request finished in 1.3101ms 200 application/javascript +2018-08-02 13:38:52.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:38:52.298 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:38:52.298 +03:00 [INF] Request finished in 1.9588ms 200 application/javascript +2018-08-02 13:38:52.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:38:52.315 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:38:52.315 +03:00 [INF] Request finished in 1.5012ms 200 application/javascript +2018-08-02 13:38:52.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:38:52.333 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:38:52.333 +03:00 [INF] Request finished in 1.3637ms 200 application/javascript +2018-08-02 13:38:52.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:38:52.357 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:52.358 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:38:52.359 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.55070000000000008ms. +2018-08-02 13:38:52.359 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:52.360 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0198ms +2018-08-02 13:38:52.360 +03:00 [INF] Request finished in 9.3604ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:52.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:38:52.364 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:38:52.366 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:38:52.366 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1063ms. +2018-08-02 13:38:52.366 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:38:52.366 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7741ms +2018-08-02 13:38:52.366 +03:00 [INF] Request finished in 6.2728ms 200 text/plain; charset=utf-8 +2018-08-02 13:38:52.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:38:52.367 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:38:52.368 +03:00 [INF] Request finished in 1.0724ms 200 application/javascript +2018-08-02 13:38:52.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:38:52.371 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:38:52.371 +03:00 [INF] Request finished in 1.1289ms 200 application/javascript +2018-08-02 13:38:52.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:38:52.382 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:38:52.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:38:52.382 +03:00 [INF] Request finished in 1.4452ms 200 image/svg+xml +2018-08-02 13:38:52.383 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:38:52.383 +03:00 [INF] Request finished in 1.4944ms 200 image/png +2018-08-02 13:38:52.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:38:52.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:38:52.395 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:38:52.395 +03:00 [INF] Request finished in 1.6194ms 200 image/png +2018-08-02 13:38:52.399 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:38:52.399 +03:00 [INF] Request finished in 5.1274ms 200 image/png +2018-08-02 13:38:52.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:38:52.405 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:38:52.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:38:52.405 +03:00 [INF] Request finished in 1.1831ms 200 image/png +2018-08-02 13:38:52.406 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:38:52.406 +03:00 [INF] Request finished in 1.1008ms 200 image/png +2018-08-02 13:38:52.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:38:52.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:38:52.410 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:38:52.410 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:38:52.410 +03:00 [INF] Request finished in 1.1616ms 200 image/png +2018-08-02 13:38:52.410 +03:00 [INF] Request finished in 1.2922ms 200 image/png +2018-08-02 13:38:52.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:38:52.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:38:52.417 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:38:52.417 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:38:52.417 +03:00 [INF] Request finished in 1.3043ms 200 image/png +2018-08-02 13:38:52.417 +03:00 [INF] Request finished in 0.8494ms 200 image/png +2018-08-02 13:38:52.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:38:52.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:38:52.423 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:38:52.424 +03:00 [INF] Request finished in 1.3157ms 200 image/png +2018-08-02 13:38:52.424 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:38:52.424 +03:00 [INF] Request finished in 1.041ms 200 image/png +2018-08-02 13:38:52.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:38:52.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:38:52.426 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:38:52.426 +03:00 [INF] Request finished in 1.2671ms 200 image/png +2018-08-02 13:38:52.426 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:38:52.426 +03:00 [INF] Request finished in 0.8774ms 200 image/png +2018-08-02 13:38:52.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:38:52.431 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:38:52.431 +03:00 [INF] Request finished in 1.6749ms 200 image/png +2018-08-02 13:38:52.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:38:52.432 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:38:52.433 +03:00 [INF] Request finished in 1.0915ms 200 image/png +2018-08-02 13:38:52.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:38:52.434 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:38:52.434 +03:00 [INF] Request finished in 0.9244ms 200 image/png +2018-08-02 13:38:52.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:38:52.454 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:38:52.454 +03:00 [INF] Request finished in 1.1148ms 200 image/svg+xml +2018-08-02 13:38:52.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:38:52.457 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:38:52.457 +03:00 [INF] Request finished in 2.4414ms 200 image/png +2018-08-02 13:38:52.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:38:52.462 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:38:52.462 +03:00 [INF] Request finished in 1.6005ms 200 image/png +2018-08-02 13:38:52.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:38:52.467 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:38:52.467 +03:00 [INF] Request finished in 0.9715ms 200 image/png +2018-08-02 13:38:52.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:38:52.504 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:38:52.504 +03:00 [INF] Request finished in 1.1875ms 200 image/png +2018-08-02 13:38:52.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:38:52.519 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:38:52.519 +03:00 [INF] Request finished in 1.5783ms 200 image/png +2018-08-02 13:38:52.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:38:52.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:38:52.526 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:38:52.526 +03:00 [INF] Request finished in 0.9412ms 200 image/png +2018-08-02 13:38:52.526 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:38:52.527 +03:00 [INF] Request finished in 1.4207ms 200 image/png +2018-08-02 13:38:52.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:38:52.532 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:38:52.533 +03:00 [INF] Request finished in 0.9285ms 200 image/png +2018-08-02 13:38:52.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:38:52.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:38:52.539 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:38:52.539 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:38:52.539 +03:00 [INF] Request finished in 1.2261ms 200 image/png +2018-08-02 13:38:52.539 +03:00 [INF] Request finished in 0.9783ms 200 image/png +2018-08-02 13:38:52.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:38:52.542 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:38:52.542 +03:00 [INF] Request finished in 1.0869ms 200 image/png +2018-08-02 13:38:52.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:38:52.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:38:52.553 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:38:52.553 +03:00 [INF] Request finished in 1.526ms 200 image/png +2018-08-02 13:38:52.553 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:38:52.553 +03:00 [INF] Request finished in 0.8278ms 200 image/png +2018-08-02 13:38:52.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:38:52.557 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:38:52.557 +03:00 [INF] Request finished in 0.9725ms 200 image/png +2018-08-02 13:38:52.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:38:52.561 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:38:52.561 +03:00 [INF] Request finished in 1.3789ms 200 image/png +2018-08-02 13:38:52.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:38:52.563 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:38:52.563 +03:00 [INF] Request finished in 1.6652ms 200 image/png +2018-08-02 13:38:52.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:38:52.565 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:38:52.565 +03:00 [INF] Request finished in 1.7284ms 200 image/png +2018-08-02 13:38:52.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:38:52.576 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:38:52.576 +03:00 [INF] Request finished in 0.9418ms 200 image/png +2018-08-02 13:38:52.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:38:52.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:38:52.577 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:38:52.577 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:38:52.578 +03:00 [INF] Request finished in 0.9402ms 200 image/png +2018-08-02 13:38:52.578 +03:00 [INF] Request finished in 1.4511ms 200 image/png +2018-08-02 13:38:52.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:38:52.579 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:38:52.580 +03:00 [INF] Request finished in 1.52ms 200 image/png +2018-08-02 13:38:52.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:38:52.593 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:38:52.593 +03:00 [INF] Request finished in 6.4695ms 200 image/jpeg +2018-08-02 13:38:52.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:38:52.596 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:38:52.596 +03:00 [INF] Request finished in 2.9981ms 200 font/woff2 +2018-08-02 13:38:53.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:38:53.499 +03:00 [INF] Request finished in 0.6579ms 404 +2018-08-02 13:38:59.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:39:00.305 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:39:00.306 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:39:00.326 +03:00 [INF] Executed action /Index in 20.453ms +2018-08-02 13:39:00.326 +03:00 [INF] Request finished in 389.1689ms 200 text/html; charset=utf-8 +2018-08-02 13:39:00.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:39:00.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:39:00.385 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:39:00.386 +03:00 [INF] Request finished in 4.3577ms 200 text/css +2018-08-02 13:39:00.386 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:39:00.387 +03:00 [INF] Request finished in 4.013ms 200 text/css +2018-08-02 13:39:00.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:39:00.392 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:39:00.392 +03:00 [INF] Request finished in 0.9015ms 200 text/css +2018-08-02 13:39:00.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:39:00.394 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:39:00.394 +03:00 [INF] Request finished in 0.9148ms 200 text/css +2018-08-02 13:39:00.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:39:00.409 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:39:00.409 +03:00 [INF] Request finished in 1.2359ms 200 text/css +2018-08-02 13:39:00.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:39:00.412 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:39:00.413 +03:00 [INF] Request finished in 3.0526ms 200 text/css +2018-08-02 13:39:00.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:39:00.422 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:39:00.423 +03:00 [INF] Request finished in 1.475ms 200 text/css +2018-08-02 13:39:00.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:39:00.438 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:39:00.438 +03:00 [INF] Request finished in 1.7528ms 200 text/css +2018-08-02 13:39:00.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:39:00.442 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:39:00.442 +03:00 [INF] Request finished in 1.3732ms 200 application/javascript +2018-08-02 13:39:00.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:39:00.461 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:39:00.461 +03:00 [INF] Request finished in 9.3524ms 200 application/javascript +2018-08-02 13:39:00.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:39:00.463 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:39:00.464 +03:00 [INF] Request finished in 0.8588ms 200 application/javascript +2018-08-02 13:39:00.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:39:00.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:39:00.474 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:39:00.474 +03:00 [INF] Request finished in 2.5989ms 200 application/javascript +2018-08-02 13:39:00.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:39:00.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:39:00.476 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:39:00.476 +03:00 [INF] Request finished in 8.986ms 200 application/javascript +2018-08-02 13:39:00.476 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:39:00.476 +03:00 [INF] Request finished in 1.3125ms 200 application/javascript +2018-08-02 13:39:00.476 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:39:00.477 +03:00 [INF] Request finished in 1.8969ms 200 application/javascript +2018-08-02 13:39:00.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:39:00.489 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:39:00.489 +03:00 [INF] Request finished in 3.8003ms 200 application/javascript +2018-08-02 13:39:00.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:39:00.501 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:39:00.501 +03:00 [INF] Request finished in 2.2482ms 200 application/javascript +2018-08-02 13:39:00.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:39:00.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:39:00.525 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:39:00.525 +03:00 [INF] Request finished in 6.4767ms 200 application/javascript +2018-08-02 13:39:00.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:39:00.528 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:39:00.528 +03:00 [INF] Request finished in 1.0434ms 200 application/javascript +2018-08-02 13:39:00.538 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:39:00.538 +03:00 [INF] Request finished in 16.7459ms 200 application/javascript +2018-08-02 13:39:00.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:39:00.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:39:00.549 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:39:00.549 +03:00 [INF] Request finished in 1.5205ms 200 application/javascript +2018-08-02 13:39:00.550 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:39:00.550 +03:00 [INF] Request finished in 1.7063ms 200 application/javascript +2018-08-02 13:39:00.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:39:00.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:39:00.574 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:39:00.574 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:39:00.574 +03:00 [INF] Request finished in 0.9629ms 200 application/javascript +2018-08-02 13:39:00.574 +03:00 [INF] Request finished in 5.4769ms 200 application/javascript +2018-08-02 13:39:00.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:39:00.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:39:00.576 +03:00 [INF] Request finished in 0.9365ms 200 application/javascript +2018-08-02 13:39:00.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:39:00.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:39:00.617 +03:00 [INF] Request finished in 1.24ms 200 application/javascript +2018-08-02 13:39:00.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:39:00.619 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:39:00.619 +03:00 [INF] Request finished in 1.2811ms 200 application/javascript +2018-08-02 13:39:00.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:39:00.653 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:39:00.653 +03:00 [INF] Request finished in 3.562ms 200 application/javascript +2018-08-02 13:39:00.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:39:00.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:39:00.662 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:00.664 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:39:00.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:39:00.665 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11280000000000001ms. +2018-08-02 13:39:00.665 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:00.665 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1226000000000003ms +2018-08-02 13:39:00.665 +03:00 [INF] Request finished in 6.0661ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:00.665 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:39:00.666 +03:00 [INF] Request finished in 1.0294ms 200 application/javascript +2018-08-02 13:39:00.670 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:00.671 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:39:00.672 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7498ms. +2018-08-02 13:39:00.672 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:00.672 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.4131ms +2018-08-02 13:39:00.672 +03:00 [INF] Request finished in 11.8658ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:00.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:39:00.679 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:39:00.679 +03:00 [INF] Request finished in 1.423ms 200 application/javascript +2018-08-02 13:39:00.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:39:00.684 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:39:00.684 +03:00 [INF] Request finished in 3.7852ms 200 application/javascript +2018-08-02 13:39:00.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:39:00.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:39:00.702 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:39:00.702 +03:00 [INF] Request finished in 0.9208ms 200 image/svg+xml +2018-08-02 13:39:00.705 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:39:00.706 +03:00 [INF] Request finished in 3.8824ms 200 image/png +2018-08-02 13:39:00.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:39:00.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:39:00.712 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:39:00.712 +03:00 [INF] Request finished in 1.0464ms 200 image/png +2018-08-02 13:39:00.713 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:39:00.713 +03:00 [INF] Request finished in 1.0355ms 200 image/png +2018-08-02 13:39:00.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:39:00.714 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:39:00.714 +03:00 [INF] Request finished in 0.8735ms 200 image/png +2018-08-02 13:39:00.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:39:00.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:39:00.723 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:39:00.723 +03:00 [INF] Request finished in 1.4962ms 200 image/png +2018-08-02 13:39:00.724 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:39:00.724 +03:00 [INF] Request finished in 0.7422ms 200 image/png +2018-08-02 13:39:00.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:39:00.731 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:39:00.731 +03:00 [INF] Request finished in 0.9626ms 200 image/png +2018-08-02 13:39:00.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:39:00.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:39:00.733 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:39:00.733 +03:00 [INF] Request finished in 1.0647ms 200 image/png +2018-08-02 13:39:00.733 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:39:00.733 +03:00 [INF] Request finished in 0.9539ms 200 image/png +2018-08-02 13:39:00.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:39:00.736 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:39:00.736 +03:00 [INF] Request finished in 1.0781ms 200 image/png +2018-08-02 13:39:00.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:39:00.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:39:00.743 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:39:00.743 +03:00 [INF] Request finished in 1.7348ms 200 image/png +2018-08-02 13:39:00.745 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:39:00.745 +03:00 [INF] Request finished in 2.0578ms 200 image/png +2018-08-02 13:39:00.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:39:00.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:39:00.749 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:39:00.749 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:39:00.749 +03:00 [INF] Request finished in 0.8524ms 200 image/png +2018-08-02 13:39:00.749 +03:00 [INF] Request finished in 0.8275ms 200 image/png +2018-08-02 13:39:00.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:39:00.754 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:39:00.754 +03:00 [INF] Request finished in 2.5071ms 200 image/png +2018-08-02 13:39:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:39:00.757 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:39:00.757 +03:00 [INF] Request finished in 2.3432ms 200 image/png +2018-08-02 13:39:00.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:39:00.760 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:39:00.761 +03:00 [INF] Request finished in 1.4014ms 200 image/svg+xml +2018-08-02 13:39:00.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:39:00.800 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:39:00.800 +03:00 [INF] Request finished in 1.193ms 200 image/png +2018-08-02 13:39:00.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:39:00.804 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:39:00.805 +03:00 [INF] Request finished in 2.3306ms 200 image/png +2018-08-02 13:39:00.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:39:00.809 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:39:00.809 +03:00 [INF] Request finished in 0.8836ms 200 image/png +2018-08-02 13:39:00.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:39:00.812 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:39:00.813 +03:00 [INF] Request finished in 1.387ms 200 image/png +2018-08-02 13:39:00.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:39:00.824 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:39:00.824 +03:00 [INF] Request finished in 1.3565ms 200 image/png +2018-08-02 13:39:00.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:39:00.830 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:39:00.831 +03:00 [INF] Request finished in 1.7334ms 200 image/png +2018-08-02 13:39:00.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:39:00.859 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:39:00.859 +03:00 [INF] Request finished in 1.0315ms 200 image/png +2018-08-02 13:39:00.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:39:00.868 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:39:00.868 +03:00 [INF] Request finished in 0.9706ms 200 image/png +2018-08-02 13:39:00.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:39:00.873 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:39:00.873 +03:00 [INF] Request finished in 1.5479ms 200 image/png +2018-08-02 13:39:00.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:39:00.894 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:39:00.894 +03:00 [INF] Request finished in 1.5283ms 200 image/png +2018-08-02 13:39:00.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:39:00.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:39:00.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:39:00.900 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:39:00.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:39:00.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:39:00.900 +03:00 [INF] Request finished in 2.4446ms 200 image/png +2018-08-02 13:39:00.901 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:39:00.901 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:39:00.901 +03:00 [INF] Request finished in 2.2362ms 200 image/png +2018-08-02 13:39:00.901 +03:00 [INF] Request finished in 1.332ms 200 image/png +2018-08-02 13:39:00.901 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:39:00.901 +03:00 [INF] Request finished in 0.8923ms 200 image/png +2018-08-02 13:39:00.901 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:39:00.901 +03:00 [INF] Request finished in 0.9795ms 200 image/png +2018-08-02 13:39:00.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:39:00.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:39:00.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:39:00.916 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:39:00.916 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:39:00.916 +03:00 [INF] Request finished in 0.7812ms 200 image/png +2018-08-02 13:39:00.916 +03:00 [INF] Request finished in 0.8448ms 200 image/png +2018-08-02 13:39:00.917 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:39:00.918 +03:00 [INF] Request finished in 2.1391ms 200 font/woff2 +2018-08-02 13:39:00.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:39:00.923 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:39:00.924 +03:00 [INF] Request finished in 1.2702ms 200 image/png +2018-08-02 13:39:00.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:39:00.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:39:00.928 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:39:00.928 +03:00 [INF] Request finished in 0.8776ms 200 image/png +2018-08-02 13:39:00.928 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:39:00.928 +03:00 [INF] Request finished in 1.2318ms 200 image/png +2018-08-02 13:39:00.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:39:00.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:39:00.936 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:39:00.936 +03:00 [INF] Request finished in 1.5878ms 200 image/png +2018-08-02 13:39:00.942 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:39:00.943 +03:00 [INF] Request finished in 9.4778ms 200 image/jpeg +2018-08-02 13:39:01.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:39:01.843 +03:00 [INF] Request finished in 0.6679ms 404 +2018-08-02 13:39:22.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:39:23.183 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:39:23.184 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:39:23.196 +03:00 [INF] Executed action /Index in 12.8284ms +2018-08-02 13:39:23.197 +03:00 [INF] Request finished in 325.8441ms 200 text/html; charset=utf-8 +2018-08-02 13:39:23.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:39:23.232 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:39:23.232 +03:00 [INF] Request finished in 2.8939ms 200 text/css +2018-08-02 13:39:23.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:39:23.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:39:23.239 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:39:23.239 +03:00 [INF] Request finished in 1.2867ms 200 text/css +2018-08-02 13:39:23.240 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:39:23.240 +03:00 [INF] Request finished in 1.6493ms 200 text/css +2018-08-02 13:39:23.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:39:23.254 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:39:23.256 +03:00 [INF] Request finished in 2.918ms 200 text/css +2018-08-02 13:39:23.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:39:23.262 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:39:23.262 +03:00 [INF] Request finished in 3.8888ms 200 text/css +2018-08-02 13:39:23.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:39:23.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:39:23.267 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:39:23.269 +03:00 [INF] Request finished in 6.2944ms 200 text/css +2018-08-02 13:39:23.269 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:39:23.269 +03:00 [INF] Request finished in 0.9402ms 200 text/css +2018-08-02 13:39:23.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:39:23.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:39:23.280 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:39:23.280 +03:00 [INF] Request finished in 0.9957ms 200 application/javascript +2018-08-02 13:39:23.281 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:39:23.281 +03:00 [INF] Request finished in 2.3993ms 200 text/css +2018-08-02 13:39:23.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:39:23.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:39:23.290 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:39:23.290 +03:00 [INF] Request finished in 0.6944ms 200 application/javascript +2018-08-02 13:39:23.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:39:23.297 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:39:23.297 +03:00 [INF] Request finished in 8.6201ms 200 application/javascript +2018-08-02 13:39:23.299 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:39:23.300 +03:00 [INF] Request finished in 6.039ms 200 application/javascript +2018-08-02 13:39:23.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:39:23.314 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:39:23.315 +03:00 [INF] Request finished in 3.4325ms 200 application/javascript +2018-08-02 13:39:23.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:39:23.331 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:39:23.331 +03:00 [INF] Request finished in 1.885ms 200 application/javascript +2018-08-02 13:39:23.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:39:23.346 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:39:23.347 +03:00 [INF] Request finished in 1.7975ms 200 application/javascript +2018-08-02 13:39:23.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:39:23.397 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:39:23.397 +03:00 [INF] Request finished in 1.5916ms 200 application/javascript +2018-08-02 13:39:23.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:39:23.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:39:23.398 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:39:23.398 +03:00 [INF] Request finished in 0.8023ms 200 application/javascript +2018-08-02 13:39:23.398 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:39:23.398 +03:00 [INF] Request finished in 0.8764ms 200 application/javascript +2018-08-02 13:39:23.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:39:23.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:39:23.400 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:39:23.400 +03:00 [INF] Request finished in 0.8335ms 200 application/javascript +2018-08-02 13:39:23.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:39:23.402 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:39:23.403 +03:00 [INF] Request finished in 2.6509ms 200 application/javascript +2018-08-02 13:39:23.421 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:39:23.421 +03:00 [INF] Request finished in 20.9354ms 200 application/javascript +2018-08-02 13:39:23.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:39:23.425 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:39:23.425 +03:00 [INF] Request finished in 1.28ms 200 application/javascript +2018-08-02 13:39:23.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:39:23.428 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:39:23.428 +03:00 [INF] Request finished in 1.9185ms 200 application/javascript +2018-08-02 13:39:23.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:39:23.434 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:39:23.434 +03:00 [INF] Request finished in 1.1518ms 200 application/javascript +2018-08-02 13:39:23.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:39:23.437 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:39:23.437 +03:00 [INF] Request finished in 1.3605ms 200 application/javascript +2018-08-02 13:39:23.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:39:23.468 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:39:23.469 +03:00 [INF] Request finished in 1.498ms 200 application/javascript +2018-08-02 13:39:23.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:39:23.470 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:39:23.471 +03:00 [INF] Request finished in 1.1759ms 200 application/javascript +2018-08-02 13:39:23.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:39:23.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:39:23.496 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:39:23.496 +03:00 [INF] Request finished in 1.5429ms 200 application/javascript +2018-08-02 13:39:23.497 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:39:23.498 +03:00 [INF] Request finished in 1.6283ms 200 application/javascript +2018-08-02 13:39:23.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:39:23.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:39:23.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:39:23.532 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:39:23.533 +03:00 [INF] Request finished in 1.0161ms 200 application/javascript +2018-08-02 13:39:23.537 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:23.540 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:23.540 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:39:23.541 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1194ms. +2018-08-02 13:39:23.541 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:23.541 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.7481ms +2018-08-02 13:39:23.541 +03:00 [INF] Request finished in 9.5941ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:23.541 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:39:23.542 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.45170000000000005ms. +2018-08-02 13:39:23.542 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:23.542 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.6114000000000002ms +2018-08-02 13:39:23.542 +03:00 [INF] Request finished in 10.8589ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:23.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:39:23.564 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:39:23.564 +03:00 [INF] Request finished in 2.6283ms 200 application/javascript +2018-08-02 13:39:23.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:39:23.579 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:39:23.579 +03:00 [INF] Request finished in 1.3704ms 200 image/svg+xml +2018-08-02 13:39:23.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:39:23.580 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:39:23.580 +03:00 [INF] Request finished in 0.9063ms 200 image/png +2018-08-02 13:39:23.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:39:23.582 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:39:23.582 +03:00 [INF] Request finished in 2.0657ms 200 image/png +2018-08-02 13:39:23.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:39:23.585 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:39:23.585 +03:00 [INF] Request finished in 1.0675ms 200 image/png +2018-08-02 13:39:23.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:39:23.596 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:39:23.596 +03:00 [INF] Request finished in 1.0075ms 200 image/png +2018-08-02 13:39:23.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:39:23.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:39:23.600 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:39:23.600 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:39:23.600 +03:00 [INF] Request finished in 1.3203ms 200 image/png +2018-08-02 13:39:23.600 +03:00 [INF] Request finished in 1.6229ms 200 image/png +2018-08-02 13:39:23.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:39:23.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:39:23.617 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:39:23.617 +03:00 [INF] Request finished in 1.5665ms 200 image/png +2018-08-02 13:39:23.617 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:39:23.617 +03:00 [INF] Request finished in 1.0945ms 200 image/png +2018-08-02 13:39:23.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:39:23.620 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:39:23.620 +03:00 [INF] Request finished in 1.0708ms 200 image/png +2018-08-02 13:39:23.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:39:23.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:39:23.626 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:39:23.626 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:39:23.626 +03:00 [INF] Request finished in 1.401ms 200 image/png +2018-08-02 13:39:23.626 +03:00 [INF] Request finished in 2.6724ms 200 image/png +2018-08-02 13:39:23.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:39:23.632 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:39:23.632 +03:00 [INF] Request finished in 0.776ms 200 image/png +2018-08-02 13:39:23.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:39:23.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:39:23.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:39:23.639 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:39:23.639 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:39:23.639 +03:00 [INF] Request finished in 1.2407ms 200 image/svg+xml +2018-08-02 13:39:23.639 +03:00 [INF] Request finished in 0.6272ms 200 image/png +2018-08-02 13:39:23.639 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:39:23.640 +03:00 [INF] Request finished in 0.9473ms 200 image/png +2018-08-02 13:39:23.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:39:23.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:39:23.645 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:39:23.645 +03:00 [INF] Request finished in 0.6171ms 200 image/png +2018-08-02 13:39:23.645 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:39:23.645 +03:00 [INF] Request finished in 1.0175ms 200 image/png +2018-08-02 13:39:23.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:39:23.647 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:39:23.647 +03:00 [INF] Request finished in 0.8756ms 200 image/png +2018-08-02 13:39:23.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:39:23.650 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:39:23.650 +03:00 [INF] Request finished in 0.7844ms 200 image/png +2018-08-02 13:39:23.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:39:23.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:39:23.683 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:39:23.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:39:23.683 +03:00 [INF] Request finished in 0.93ms 200 image/png +2018-08-02 13:39:23.684 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:39:23.684 +03:00 [INF] Request finished in 1.9151ms 200 image/png +2018-08-02 13:39:23.684 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:39:23.685 +03:00 [INF] Request finished in 1.3712ms 200 image/png +2018-08-02 13:39:23.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:39:23.691 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:39:23.691 +03:00 [INF] Request finished in 0.9625ms 200 image/png +2018-08-02 13:39:23.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:39:23.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:39:23.702 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:39:23.702 +03:00 [INF] Request finished in 0.8004ms 200 image/png +2018-08-02 13:39:23.703 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:39:23.703 +03:00 [INF] Request finished in 1.3252ms 200 image/png +2018-08-02 13:39:23.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:39:23.707 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:39:23.707 +03:00 [INF] Request finished in 1.0053ms 200 image/png +2018-08-02 13:39:23.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:39:23.724 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:39:23.725 +03:00 [INF] Request finished in 1.0093ms 200 image/png +2018-08-02 13:39:23.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:39:23.756 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:39:23.756 +03:00 [INF] Request finished in 1.271ms 200 image/png +2018-08-02 13:39:23.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:39:23.760 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:39:23.760 +03:00 [INF] Request finished in 1.8606ms 200 image/png +2018-08-02 13:39:23.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:39:23.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:39:23.770 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:39:23.770 +03:00 [INF] Request finished in 1.0225ms 200 image/png +2018-08-02 13:39:23.770 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:39:23.770 +03:00 [INF] Request finished in 0.9759ms 200 image/png +2018-08-02 13:39:23.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:39:23.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:39:23.776 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:39:23.777 +03:00 [INF] Request finished in 4.1541ms 200 image/png +2018-08-02 13:39:23.777 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:39:23.777 +03:00 [INF] Request finished in 1.4878ms 200 image/png +2018-08-02 13:39:23.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:39:23.780 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:39:23.780 +03:00 [INF] Request finished in 1.6848ms 200 image/png +2018-08-02 13:39:23.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:39:23.784 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:39:23.784 +03:00 [INF] Request finished in 1.4422ms 200 image/png +2018-08-02 13:39:23.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:39:23.786 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:39:23.786 +03:00 [INF] Request finished in 1.1882ms 200 image/png +2018-08-02 13:39:23.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:39:23.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:39:23.791 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:39:23.791 +03:00 [INF] Request finished in 2.4087ms 200 image/png +2018-08-02 13:39:23.791 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:39:23.791 +03:00 [INF] Request finished in 0.8118ms 200 image/png +2018-08-02 13:39:23.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:39:23.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:39:23.802 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:39:23.802 +03:00 [INF] Request finished in 3.5236ms 200 font/woff2 +2018-08-02 13:39:23.803 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:39:23.803 +03:00 [INF] Request finished in 11.0059ms 200 image/jpeg +2018-08-02 13:39:24.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:39:24.653 +03:00 [INF] Request finished in 0.7085ms 404 +2018-08-02 13:39:35.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:39:35.394 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:39:35.394 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:39:35.410 +03:00 [INF] Executed action /Index in 16.204800000000002ms +2018-08-02 13:39:35.410 +03:00 [INF] Request finished in 327.0034ms 200 text/html; charset=utf-8 +2018-08-02 13:39:35.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:39:35.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:39:35.466 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:39:35.466 +03:00 [INF] Request finished in 4.9966ms 200 text/css +2018-08-02 13:39:35.467 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:39:35.467 +03:00 [INF] Request finished in 2.1698ms 200 text/css +2018-08-02 13:39:35.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:39:35.479 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:39:35.479 +03:00 [INF] Request finished in 1.5851ms 200 text/css +2018-08-02 13:39:35.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:39:35.489 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:39:35.489 +03:00 [INF] Request finished in 1.4266ms 200 text/css +2018-08-02 13:39:35.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:39:35.493 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:39:35.493 +03:00 [INF] Request finished in 0.8232ms 200 text/css +2018-08-02 13:39:35.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:39:35.503 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:39:35.503 +03:00 [INF] Request finished in 1.1468ms 200 text/css +2018-08-02 13:39:35.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:39:35.517 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:39:35.517 +03:00 [INF] Request finished in 0.8582ms 200 text/css +2018-08-02 13:39:35.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:39:35.524 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:39:35.525 +03:00 [INF] Request finished in 1.0341ms 200 text/css +2018-08-02 13:39:35.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:39:35.551 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:39:35.551 +03:00 [INF] Request finished in 0.8601ms 200 application/javascript +2018-08-02 13:39:35.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:39:35.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:39:35.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:39:35.584 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:39:35.584 +03:00 [INF] Request finished in 1.0029ms 200 application/javascript +2018-08-02 13:39:35.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:39:35.585 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:39:35.585 +03:00 [INF] Request finished in 2.3425ms 200 application/javascript +2018-08-02 13:39:35.591 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:39:35.591 +03:00 [INF] Request finished in 6.9366ms 200 application/javascript +2018-08-02 13:39:35.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:39:35.593 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:39:35.594 +03:00 [INF] Request finished in 11.7959ms 200 application/javascript +2018-08-02 13:39:35.596 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:39:35.596 +03:00 [INF] Request finished in 4.2774ms 200 application/javascript +2018-08-02 13:39:35.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:39:35.603 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:39:35.603 +03:00 [INF] Request finished in 1.7199ms 200 application/javascript +2018-08-02 13:39:35.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:39:35.608 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:39:35.608 +03:00 [INF] Request finished in 1.8583ms 200 application/javascript +2018-08-02 13:39:35.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:39:35.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:39:35.636 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:39:35.637 +03:00 [INF] Request finished in 0.9698ms 200 application/javascript +2018-08-02 13:39:35.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:39:35.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:39:35.647 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:39:35.647 +03:00 [INF] Request finished in 1.4242ms 200 application/javascript +2018-08-02 13:39:35.647 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:39:35.647 +03:00 [INF] Request finished in 0.7259ms 200 application/javascript +2018-08-02 13:39:35.648 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:39:35.648 +03:00 [INF] Request finished in 15.6944ms 200 application/javascript +2018-08-02 13:39:35.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:39:35.650 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:39:35.650 +03:00 [INF] Request finished in 0.8033ms 200 application/javascript +2018-08-02 13:39:35.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:39:35.671 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:39:35.671 +03:00 [INF] Request finished in 4.7872ms 200 application/javascript +2018-08-02 13:39:35.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:39:35.718 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:39:35.718 +03:00 [INF] Request finished in 8.7768ms 200 application/javascript +2018-08-02 13:39:35.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:39:35.732 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:39:35.732 +03:00 [INF] Request finished in 1.7575ms 200 application/javascript +2018-08-02 13:39:35.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:39:35.734 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:39:35.734 +03:00 [INF] Request finished in 1.7819ms 200 application/javascript +2018-08-02 13:39:35.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:39:35.736 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:39:35.736 +03:00 [INF] Request finished in 1.6954ms 200 application/javascript +2018-08-02 13:39:35.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:39:35.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:39:35.777 +03:00 [INF] Request finished in 4.6579ms 200 application/javascript +2018-08-02 13:39:35.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:39:35.780 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:39:35.780 +03:00 [INF] Request finished in 1.4023ms 200 application/javascript +2018-08-02 13:39:35.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:39:35.789 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:39:35.790 +03:00 [INF] Request finished in 2.7933ms 200 application/javascript +2018-08-02 13:39:35.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:39:35.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:39:35.809 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:35.810 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:39:35.811 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10450000000000001ms. +2018-08-02 13:39:35.811 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:35.811 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4258000000000002ms +2018-08-02 13:39:35.811 +03:00 [INF] Request finished in 3.7327ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:35.811 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:35.812 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:39:35.812 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3614ms. +2018-08-02 13:39:35.813 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:35.813 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.435ms +2018-08-02 13:39:35.813 +03:00 [INF] Request finished in 7.7728ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:35.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:39:35.822 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:39:35.823 +03:00 [INF] Request finished in 1.3779ms 200 application/javascript +2018-08-02 13:39:35.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:39:35.830 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:39:35.831 +03:00 [INF] Request finished in 1.6862ms 200 application/javascript +2018-08-02 13:39:35.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:39:35.832 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:39:35.833 +03:00 [INF] Request finished in 0.8123ms 200 image/svg+xml +2018-08-02 13:39:35.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:39:35.834 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:39:35.835 +03:00 [INF] Request finished in 1.4739ms 200 image/png +2018-08-02 13:39:35.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:39:35.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:39:35.862 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:39:35.862 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:39:35.862 +03:00 [INF] Request finished in 0.7945ms 200 image/png +2018-08-02 13:39:35.862 +03:00 [INF] Request finished in 0.8845ms 200 image/png +2018-08-02 13:39:35.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:39:35.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:39:35.877 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:39:35.877 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:39:35.877 +03:00 [INF] Request finished in 0.9109ms 200 image/png +2018-08-02 13:39:35.877 +03:00 [INF] Request finished in 0.9674ms 200 image/png +2018-08-02 13:39:35.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:39:35.893 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:39:35.893 +03:00 [INF] Request finished in 3.9357ms 200 image/png +2018-08-02 13:39:35.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:39:35.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:39:35.911 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:39:35.911 +03:00 [INF] Request finished in 0.8883ms 200 image/png +2018-08-02 13:39:35.912 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:39:35.912 +03:00 [INF] Request finished in 1.301ms 200 image/png +2018-08-02 13:39:35.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:39:35.913 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:39:35.914 +03:00 [INF] Request finished in 1.2471ms 200 image/png +2018-08-02 13:39:35.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:39:35.919 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:39:35.919 +03:00 [INF] Request finished in 4.2652ms 200 image/png +2018-08-02 13:39:35.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:39:35.927 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:39:35.927 +03:00 [INF] Request finished in 2.2096ms 200 image/png +2018-08-02 13:39:35.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:39:35.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:39:35.930 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:39:35.931 +03:00 [INF] Request finished in 0.8605ms 200 image/png +2018-08-02 13:39:35.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:39:35.938 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:39:35.938 +03:00 [INF] Request finished in 1.7734ms 200 image/png +2018-08-02 13:39:35.941 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:39:35.941 +03:00 [INF] Request finished in 13.0903ms 200 image/png +2018-08-02 13:39:35.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:39:35.944 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:39:35.944 +03:00 [INF] Request finished in 1.5108ms 200 image/png +2018-08-02 13:39:35.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:39:35.945 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:39:35.945 +03:00 [INF] Request finished in 0.8793ms 200 image/png +2018-08-02 13:39:35.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:39:35.955 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:39:35.956 +03:00 [INF] Request finished in 1.7912ms 200 image/svg+xml +2018-08-02 13:39:35.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:39:35.963 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:39:35.964 +03:00 [INF] Request finished in 2.6979ms 200 image/png +2018-08-02 13:39:35.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:39:35.978 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:39:35.978 +03:00 [INF] Request finished in 1.1854ms 200 image/png +2018-08-02 13:39:35.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:39:35.991 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:39:35.991 +03:00 [INF] Request finished in 1.0535ms 200 image/png +2018-08-02 13:39:35.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:39:35.995 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:39:35.995 +03:00 [INF] Request finished in 1.8886ms 200 image/png +2018-08-02 13:39:36.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:39:36.007 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:39:36.007 +03:00 [INF] Request finished in 3.6198ms 200 image/png +2018-08-02 13:39:36.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:39:36.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:39:36.035 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:39:36.035 +03:00 [INF] Request finished in 1.011ms 200 image/png +2018-08-02 13:39:36.035 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:39:36.035 +03:00 [INF] Request finished in 1.2545ms 200 image/png +2018-08-02 13:39:36.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:39:36.045 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:39:36.045 +03:00 [INF] Request finished in 0.8859ms 200 image/png +2018-08-02 13:39:36.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:39:36.050 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:39:36.050 +03:00 [INF] Request finished in 1.1032ms 200 image/png +2018-08-02 13:39:36.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:39:36.061 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:39:36.061 +03:00 [INF] Request finished in 0.8482ms 200 image/png +2018-08-02 13:39:36.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:39:36.071 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:39:36.071 +03:00 [INF] Request finished in 1.4439ms 200 image/png +2018-08-02 13:39:36.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:39:36.073 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:39:36.074 +03:00 [INF] Request finished in 2.2753ms 200 image/png +2018-08-02 13:39:36.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:39:36.087 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:39:36.087 +03:00 [INF] Request finished in 0.9191ms 200 image/png +2018-08-02 13:39:36.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:39:36.099 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:39:36.099 +03:00 [INF] Request finished in 3.1348ms 200 image/png +2018-08-02 13:39:36.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:39:36.100 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:39:36.100 +03:00 [INF] Request finished in 1.0396ms 200 image/png +2018-08-02 13:39:36.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:39:36.104 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:39:36.104 +03:00 [INF] Request finished in 0.8652ms 200 image/png +2018-08-02 13:39:36.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:39:36.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:39:36.109 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:39:36.110 +03:00 [INF] Request finished in 2.0022ms 200 image/png +2018-08-02 13:39:36.110 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:39:36.110 +03:00 [INF] Request finished in 0.9213ms 200 image/png +2018-08-02 13:39:36.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:39:36.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:39:36.116 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:39:36.116 +03:00 [INF] Request finished in 1.2869ms 200 image/png +2018-08-02 13:39:36.116 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:39:36.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:39:36.116 +03:00 [INF] Request finished in 1.035ms 200 image/png +2018-08-02 13:39:36.117 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:39:36.117 +03:00 [INF] Request finished in 1.1611ms 200 image/png +2018-08-02 13:39:36.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:39:36.135 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:39:36.135 +03:00 [INF] Request finished in 11.9169ms 200 image/jpeg +2018-08-02 13:39:36.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:39:36.141 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:39:36.141 +03:00 [INF] Request finished in 5.8584ms 200 font/woff2 +2018-08-02 13:39:37.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:39:37.085 +03:00 [INF] Request finished in 0.7635ms 404 +2018-08-02 13:39:40.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:39:40.536 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:39:40.536 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:39:40.553 +03:00 [INF] Executed action /Index in 16.845100000000002ms +2018-08-02 13:39:40.553 +03:00 [INF] Request finished in 333.0483ms 200 text/html; charset=utf-8 +2018-08-02 13:39:40.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:39:40.613 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:39:40.614 +03:00 [INF] Request finished in 5.4648ms 200 text/css +2018-08-02 13:39:40.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:39:40.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:39:40.618 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:39:40.618 +03:00 [INF] Request finished in 1.8184ms 200 text/css +2018-08-02 13:39:40.618 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:39:40.618 +03:00 [INF] Request finished in 2.0814ms 200 text/css +2018-08-02 13:39:40.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:39:40.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:39:40.619 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:39:40.619 +03:00 [INF] Request finished in 0.8222ms 200 text/css +2018-08-02 13:39:40.619 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:39:40.619 +03:00 [INF] Request finished in 0.8877ms 200 text/css +2018-08-02 13:39:40.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:39:40.624 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:39:40.624 +03:00 [INF] Request finished in 2.2392ms 200 text/css +2018-08-02 13:39:40.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:39:40.636 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:39:40.636 +03:00 [INF] Request finished in 1.5067ms 200 text/css +2018-08-02 13:39:40.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:39:40.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:39:40.638 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:39:40.638 +03:00 [INF] Request finished in 0.7753ms 200 text/css +2018-08-02 13:39:40.639 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:39:40.639 +03:00 [INF] Request finished in 1.0872ms 200 application/javascript +2018-08-02 13:39:40.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:39:40.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:39:40.653 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:39:40.653 +03:00 [INF] Request finished in 2.5045ms 200 application/javascript +2018-08-02 13:39:40.655 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:39:40.655 +03:00 [INF] Request finished in 9.3547ms 200 application/javascript +2018-08-02 13:39:40.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:39:40.660 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:39:40.660 +03:00 [INF] Request finished in 2.8754ms 200 application/javascript +2018-08-02 13:39:40.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:39:40.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:39:40.666 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:39:40.666 +03:00 [INF] Request finished in 0.7682ms 200 application/javascript +2018-08-02 13:39:40.674 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:39:40.674 +03:00 [INF] Request finished in 9.1621ms 200 application/javascript +2018-08-02 13:39:40.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:39:40.679 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:39:40.679 +03:00 [INF] Request finished in 1.6135ms 200 application/javascript +2018-08-02 13:39:40.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:39:40.699 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:39:40.699 +03:00 [INF] Request finished in 1.468ms 200 application/javascript +2018-08-02 13:39:40.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:39:40.723 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:39:40.723 +03:00 [INF] Request finished in 2.2454ms 200 application/javascript +2018-08-02 13:39:40.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:39:40.738 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:39:40.738 +03:00 [INF] Request finished in 14.2774ms 200 application/javascript +2018-08-02 13:39:40.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:39:40.746 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:39:40.747 +03:00 [INF] Request finished in 1.8553ms 200 application/javascript +2018-08-02 13:39:40.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:39:40.761 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:39:40.762 +03:00 [INF] Request finished in 1.1882ms 200 application/javascript +2018-08-02 13:39:40.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:39:40.790 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:39:40.790 +03:00 [INF] Request finished in 0.7641ms 200 application/javascript +2018-08-02 13:39:40.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:39:40.798 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:39:40.798 +03:00 [INF] Request finished in 1.0804ms 200 application/javascript +2018-08-02 13:39:40.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:39:40.814 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:39:40.814 +03:00 [INF] Request finished in 2.6949ms 200 application/javascript +2018-08-02 13:39:40.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:39:40.821 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:39:40.821 +03:00 [INF] Request finished in 1.9557ms 200 application/javascript +2018-08-02 13:39:40.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:39:40.831 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:39:40.831 +03:00 [INF] Request finished in 3.5497ms 200 application/javascript +2018-08-02 13:39:40.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:39:40.846 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:39:40.846 +03:00 [INF] Request finished in 5.123ms 200 application/javascript +2018-08-02 13:39:40.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:39:40.853 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:39:40.853 +03:00 [INF] Request finished in 1.2342ms 200 application/javascript +2018-08-02 13:39:40.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:39:40.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:39:40.863 +03:00 [INF] Request finished in 2.0629ms 200 application/javascript +2018-08-02 13:39:40.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:39:40.876 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:39:40.876 +03:00 [INF] Request finished in 1.691ms 200 application/javascript +2018-08-02 13:39:40.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:39:40.885 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:40.886 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:39:40.886 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3292ms. +2018-08-02 13:39:40.886 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:40.886 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.2898ms +2018-08-02 13:39:40.887 +03:00 [INF] Request finished in 9.9755ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:40.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:39:40.892 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:39:40.894 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:39:40.895 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1398ms. +2018-08-02 13:39:40.895 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:39:40.896 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.4686000000000003ms +2018-08-02 13:39:40.896 +03:00 [INF] Request finished in 6.9154ms 200 text/plain; charset=utf-8 +2018-08-02 13:39:40.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:39:40.937 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:39:40.937 +03:00 [INF] Request finished in 1.4318ms 200 application/javascript +2018-08-02 13:39:40.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:39:40.965 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:39:40.965 +03:00 [INF] Request finished in 1.8891ms 200 application/javascript +2018-08-02 13:39:40.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:39:40.982 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:39:40.982 +03:00 [INF] Request finished in 1.9984ms 200 image/svg+xml +2018-08-02 13:39:40.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:39:40.989 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:39:40.989 +03:00 [INF] Request finished in 1.9536ms 200 image/png +2018-08-02 13:39:40.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:39:40.991 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:39:40.991 +03:00 [INF] Request finished in 1.2659ms 200 image/png +2018-08-02 13:39:40.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:39:40.995 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:39:40.995 +03:00 [INF] Request finished in 1.5373ms 200 image/png +2018-08-02 13:39:40.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:39:40.997 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:39:40.997 +03:00 [INF] Request finished in 1.9609ms 200 image/png +2018-08-02 13:39:40.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:39:41.000 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:39:41.000 +03:00 [INF] Request finished in 1.651ms 200 image/png +2018-08-02 13:39:41.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:39:41.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:39:41.005 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:39:41.006 +03:00 [INF] Request finished in 1.4689ms 200 image/png +2018-08-02 13:39:41.007 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:39:41.007 +03:00 [INF] Request finished in 2.0501ms 200 image/png +2018-08-02 13:39:41.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:39:41.023 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:39:41.023 +03:00 [INF] Request finished in 2.6361ms 200 image/png +2018-08-02 13:39:41.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:39:41.026 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:39:41.026 +03:00 [INF] Request finished in 0.9637ms 200 image/png +2018-08-02 13:39:41.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:39:41.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:39:41.041 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:39:41.041 +03:00 [INF] Request finished in 4.7555ms 200 image/png +2018-08-02 13:39:41.042 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:39:41.042 +03:00 [INF] Request finished in 1.3001ms 200 image/png +2018-08-02 13:39:41.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:39:41.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:39:41.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:39:41.048 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:39:41.048 +03:00 [INF] Request finished in 0.8672ms 200 image/png +2018-08-02 13:39:41.049 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:39:41.049 +03:00 [INF] Request finished in 0.7668ms 200 image/png +2018-08-02 13:39:41.049 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:39:41.049 +03:00 [INF] Request finished in 0.9524ms 200 image/png +2018-08-02 13:39:41.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:39:41.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:39:41.051 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:39:41.051 +03:00 [INF] Request finished in 1.3408ms 200 image/png +2018-08-02 13:39:41.052 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:39:41.052 +03:00 [INF] Request finished in 2.3883ms 200 font/woff2 +2018-08-02 13:39:41.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:39:41.059 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:39:41.059 +03:00 [INF] Request finished in 1.001ms 200 image/png +2018-08-02 13:39:41.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:39:41.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:39:41.064 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:39:41.064 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:39:41.065 +03:00 [INF] Request finished in 0.8579ms 200 image/png +2018-08-02 13:39:41.065 +03:00 [INF] Request finished in 2.034ms 200 image/png +2018-08-02 13:39:41.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:39:41.072 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:39:41.072 +03:00 [INF] Request finished in 3.3837ms 200 image/png +2018-08-02 13:39:41.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:39:41.075 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:39:41.076 +03:00 [INF] Request finished in 1.6311ms 200 image/png +2018-08-02 13:39:41.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:39:41.081 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:39:41.082 +03:00 [INF] Request finished in 3.1884ms 200 image/png +2018-08-02 13:39:41.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:39:41.086 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:39:41.087 +03:00 [INF] Request finished in 2.4815ms 200 image/png +2018-08-02 13:39:41.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:39:41.089 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:39:41.089 +03:00 [INF] Request finished in 1.3515ms 200 image/png +2018-08-02 13:39:41.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:39:41.097 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:39:41.097 +03:00 [INF] Request finished in 8.3033ms 200 image/png +2018-08-02 13:39:41.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:39:41.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:39:41.102 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:39:41.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:39:41.102 +03:00 [INF] Request finished in 0.8326ms 200 image/png +2018-08-02 13:39:41.102 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:39:41.102 +03:00 [INF] Request finished in 0.972ms 200 image/png +2018-08-02 13:39:41.103 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:39:41.103 +03:00 [INF] Request finished in 0.8055ms 200 image/png +2018-08-02 13:39:41.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:39:41.105 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:39:41.105 +03:00 [INF] Request finished in 1.3008ms 200 image/png +2018-08-02 13:39:41.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:39:41.117 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:39:41.117 +03:00 [INF] Request finished in 1.6421ms 200 image/png +2018-08-02 13:39:41.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:39:41.120 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:39:41.120 +03:00 [INF] Request finished in 0.98ms 200 image/png +2018-08-02 13:39:41.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:39:41.122 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:39:41.122 +03:00 [INF] Request finished in 1.7249ms 200 image/png +2018-08-02 13:39:41.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:39:41.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:39:41.126 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:39:41.126 +03:00 [INF] Request finished in 0.8282ms 200 image/png +2018-08-02 13:39:41.126 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:39:41.127 +03:00 [INF] Request finished in 1.898ms 200 image/png +2018-08-02 13:39:41.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:39:41.134 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:39:41.134 +03:00 [INF] Request finished in 1.1264ms 200 image/png +2018-08-02 13:39:41.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:39:41.136 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:39:41.136 +03:00 [INF] Request finished in 1.6107ms 200 image/png +2018-08-02 13:39:41.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:39:41.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:39:41.139 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:39:41.139 +03:00 [INF] Request finished in 1.19ms 200 image/png +2018-08-02 13:39:41.140 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:39:41.140 +03:00 [INF] Request finished in 1.6229ms 200 image/png +2018-08-02 13:39:41.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:39:41.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:39:41.144 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:39:41.144 +03:00 [INF] Request finished in 3.4649ms 200 image/svg+xml +2018-08-02 13:39:41.163 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:39:41.164 +03:00 [INF] Request finished in 22.741ms 200 image/jpeg +2018-08-02 13:39:42.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:39:42.094 +03:00 [INF] Request finished in 0.7872ms 404 +2018-08-02 13:40:13.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:40:13.483 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:40:13.484 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:40:13.497 +03:00 [INF] Executed action /Index in 13.4047ms +2018-08-02 13:40:13.497 +03:00 [INF] Request finished in 367.9813ms 200 text/html; charset=utf-8 +2018-08-02 13:40:13.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:40:13.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:40:13.555 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:40:13.555 +03:00 [INF] Request finished in 3.8061ms 200 text/css +2018-08-02 13:40:13.556 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:40:13.556 +03:00 [INF] Request finished in 2.9814ms 200 text/css +2018-08-02 13:40:13.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:40:13.565 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:40:13.565 +03:00 [INF] Request finished in 2.0863ms 200 text/css +2018-08-02 13:40:13.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:40:13.567 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:40:13.567 +03:00 [INF] Request finished in 1.4978ms 200 text/css +2018-08-02 13:40:13.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:40:13.573 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:40:13.574 +03:00 [INF] Request finished in 2.4411ms 200 text/css +2018-08-02 13:40:13.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:40:13.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:40:13.580 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:40:13.580 +03:00 [INF] Request finished in 0.8727ms 200 text/css +2018-08-02 13:40:13.581 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:40:13.581 +03:00 [INF] Request finished in 1.2234ms 200 text/css +2018-08-02 13:40:13.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:40:13.597 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:40:13.597 +03:00 [INF] Request finished in 1.3662ms 200 text/css +2018-08-02 13:40:13.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:40:13.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:40:13.605 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:40:13.606 +03:00 [INF] Request finished in 0.8883ms 200 application/javascript +2018-08-02 13:40:13.607 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:40:13.608 +03:00 [INF] Request finished in 2.8578ms 200 application/javascript +2018-08-02 13:40:13.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:40:13.617 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:40:13.617 +03:00 [INF] Request finished in 0.9742ms 200 application/javascript +2018-08-02 13:40:13.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:40:13.623 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:40:13.623 +03:00 [INF] Request finished in 3.5257ms 200 application/javascript +2018-08-02 13:40:13.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:40:13.626 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:40:13.626 +03:00 [INF] Request finished in 2.4181ms 200 application/javascript +2018-08-02 13:40:13.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:40:13.638 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:40:13.638 +03:00 [INF] Request finished in 1.1584ms 200 application/javascript +2018-08-02 13:40:13.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:40:13.669 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:40:13.670 +03:00 [INF] Request finished in 1.6368ms 200 application/javascript +2018-08-02 13:40:13.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:40:13.671 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:40:13.672 +03:00 [INF] Request finished in 0.9092ms 200 application/javascript +2018-08-02 13:40:13.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:40:13.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:40:13.674 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:40:13.675 +03:00 [INF] Request finished in 2.9334ms 200 application/javascript +2018-08-02 13:40:13.683 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:40:13.683 +03:00 [INF] Request finished in 9.4673ms 200 application/javascript +2018-08-02 13:40:13.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:40:13.697 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:40:13.697 +03:00 [INF] Request finished in 1.0059ms 200 application/javascript +2018-08-02 13:40:13.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:40:13.705 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:40:13.705 +03:00 [INF] Request finished in 1.2798ms 200 application/javascript +2018-08-02 13:40:13.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:40:13.706 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:40:13.707 +03:00 [INF] Request finished in 0.6993ms 200 application/javascript +2018-08-02 13:40:13.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:40:13.711 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:40:13.711 +03:00 [INF] Request finished in 5.3825ms 200 application/javascript +2018-08-02 13:40:13.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:40:13.730 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:40:13.730 +03:00 [INF] Request finished in 5.7053ms 200 application/javascript +2018-08-02 13:40:13.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:40:13.731 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:40:13.731 +03:00 [INF] Request finished in 1.0397ms 200 application/javascript +2018-08-02 13:40:13.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:40:13.764 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:40:13.764 +03:00 [INF] Request finished in 1.8368ms 200 application/javascript +2018-08-02 13:40:13.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:40:13.771 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:40:13.771 +03:00 [INF] Request finished in 2.7408ms 200 application/javascript +2018-08-02 13:40:13.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:40:13.778 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:40:13.778 +03:00 [INF] Request finished in 2.2689ms 200 application/javascript +2018-08-02 13:40:13.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:40:13.808 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:40:13.808 +03:00 [INF] Request finished in 1.1034ms 200 application/javascript +2018-08-02 13:40:13.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:40:13.827 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:40:13.828 +03:00 [INF] Request finished in 2.4027ms 200 application/javascript +2018-08-02 13:40:13.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:40:13.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:40:13.850 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:40:13.851 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:40:13.852 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:40:13.852 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7127ms. +2018-08-02 13:40:13.852 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:40:13.852 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2337000000000002ms +2018-08-02 13:40:13.852 +03:00 [INF] Request finished in 5.8569ms 200 text/plain; charset=utf-8 +2018-08-02 13:40:13.854 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:40:13.855 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0034ms. +2018-08-02 13:40:13.855 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:40:13.855 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.4676ms +2018-08-02 13:40:13.855 +03:00 [INF] Request finished in 9.3917ms 200 text/plain; charset=utf-8 +2018-08-02 13:40:13.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:40:13.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:40:13.860 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:40:13.860 +03:00 [INF] Request finished in 1.5199ms 200 application/javascript +2018-08-02 13:40:13.863 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:40:13.863 +03:00 [INF] Request finished in 3.8984ms 200 application/javascript +2018-08-02 13:40:13.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:40:13.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:40:13.868 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:40:13.868 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:40:13.868 +03:00 [INF] Request finished in 0.9157ms 200 image/png +2018-08-02 13:40:13.868 +03:00 [INF] Request finished in 1.6698ms 200 image/png +2018-08-02 13:40:13.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:40:13.874 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:40:13.874 +03:00 [INF] Request finished in 2.7329ms 200 image/png +2018-08-02 13:40:13.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:40:13.875 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:40:13.875 +03:00 [INF] Request finished in 1.2011ms 200 image/svg+xml +2018-08-02 13:40:13.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:40:13.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:40:13.880 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:40:13.880 +03:00 [INF] Request finished in 1.9112ms 200 image/png +2018-08-02 13:40:13.880 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:40:13.880 +03:00 [INF] Request finished in 4.5154ms 200 image/png +2018-08-02 13:40:13.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:40:13.888 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:40:13.888 +03:00 [INF] Request finished in 1.2742ms 200 image/png +2018-08-02 13:40:13.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:40:13.889 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:40:13.889 +03:00 [INF] Request finished in 0.7894ms 200 image/png +2018-08-02 13:40:13.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:40:13.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:40:13.902 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:40:13.902 +03:00 [INF] Request finished in 1.6537ms 200 image/png +2018-08-02 13:40:13.903 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:40:13.904 +03:00 [INF] Request finished in 2.7232ms 200 image/png +2018-08-02 13:40:13.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:40:13.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:40:13.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:40:13.905 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:40:13.906 +03:00 [INF] Request finished in 0.8132ms 200 image/png +2018-08-02 13:40:13.906 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:40:13.906 +03:00 [INF] Request finished in 1.4923ms 200 image/png +2018-08-02 13:40:13.908 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:40:13.908 +03:00 [INF] Request finished in 2.828ms 200 image/png +2018-08-02 13:40:13.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:40:13.914 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:40:13.914 +03:00 [INF] Request finished in 1.0473ms 200 image/png +2018-08-02 13:40:13.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:40:13.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:40:13.920 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:40:13.920 +03:00 [INF] Request finished in 0.858ms 200 image/svg+xml +2018-08-02 13:40:13.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:40:13.921 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:40:13.921 +03:00 [INF] Request finished in 0.8212ms 200 image/png +2018-08-02 13:40:13.922 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:40:13.922 +03:00 [INF] Request finished in 2.627ms 200 image/png +2018-08-02 13:40:13.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:40:13.927 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:40:13.927 +03:00 [INF] Request finished in 1.4336ms 200 image/png +2018-08-02 13:40:13.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:40:13.937 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:40:13.937 +03:00 [INF] Request finished in 0.9288ms 200 image/png +2018-08-02 13:40:13.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:40:13.938 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:40:13.939 +03:00 [INF] Request finished in 1.1109ms 200 image/png +2018-08-02 13:40:13.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:40:13.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:40:13.940 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:40:13.940 +03:00 [INF] Request finished in 0.7837ms 200 image/png +2018-08-02 13:40:13.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:40:13.941 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:40:13.941 +03:00 [INF] Request finished in 1.6629ms 200 image/png +2018-08-02 13:40:13.941 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:40:13.941 +03:00 [INF] Request finished in 0.7993ms 200 image/png +2018-08-02 13:40:13.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:40:13.944 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:40:13.945 +03:00 [INF] Request finished in 2.0336ms 200 image/png +2018-08-02 13:40:13.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:40:13.952 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:40:13.952 +03:00 [INF] Request finished in 1.8193ms 200 image/png +2018-08-02 13:40:13.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:40:13.956 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:40:13.956 +03:00 [INF] Request finished in 1.027ms 200 image/png +2018-08-02 13:40:13.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:40:13.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:40:13.960 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:40:13.960 +03:00 [INF] Request finished in 1.1664ms 200 image/png +2018-08-02 13:40:13.960 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:40:13.961 +03:00 [INF] Request finished in 1.6266ms 200 image/png +2018-08-02 13:40:13.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:40:13.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:40:13.966 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:40:13.966 +03:00 [INF] Request finished in 1.2392ms 200 image/png +2018-08-02 13:40:13.966 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:40:13.966 +03:00 [INF] Request finished in 1.8128ms 200 image/png +2018-08-02 13:40:13.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:40:13.968 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:40:13.968 +03:00 [INF] Request finished in 0.9489ms 200 image/png +2018-08-02 13:40:13.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:40:13.980 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:40:13.980 +03:00 [INF] Request finished in 0.9032ms 200 image/png +2018-08-02 13:40:13.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:40:13.986 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:40:13.986 +03:00 [INF] Request finished in 0.9977ms 200 image/png +2018-08-02 13:40:13.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:40:13.996 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:40:13.997 +03:00 [INF] Request finished in 1.043ms 200 image/png +2018-08-02 13:40:14.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:40:14.003 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:40:14.004 +03:00 [INF] Request finished in 2.1338ms 200 image/png +2018-08-02 13:40:14.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:40:14.005 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:40:14.005 +03:00 [INF] Request finished in 1.1358ms 200 image/png +2018-08-02 13:40:14.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:40:14.016 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:40:14.016 +03:00 [INF] Request finished in 1.6326ms 200 image/png +2018-08-02 13:40:14.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:40:14.018 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:40:14.018 +03:00 [INF] Request finished in 1.2198ms 200 image/png +2018-08-02 13:40:14.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:40:14.038 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:40:14.038 +03:00 [INF] Request finished in 0.9448ms 200 image/png +2018-08-02 13:40:14.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:40:14.051 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:40:14.051 +03:00 [INF] Request finished in 9.9002ms 200 image/jpeg +2018-08-02 13:40:14.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:40:14.057 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:40:14.057 +03:00 [INF] Request finished in 2.4312ms 200 font/woff2 +2018-08-02 13:40:15.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:40:15.020 +03:00 [INF] Request finished in 0.7458ms 404 +2018-08-02 13:41:13.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:41:13.873 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:41:13.874 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:41:13.888 +03:00 [INF] Executed action /Index in 14.1346ms +2018-08-02 13:41:13.888 +03:00 [INF] Request finished in 282.6597ms 200 text/html; charset=utf-8 +2018-08-02 13:41:13.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:41:13.940 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:41:13.940 +03:00 [INF] Request finished in 3.6849ms 200 text/css +2018-08-02 13:41:13.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:41:13.943 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:41:13.943 +03:00 [INF] Request finished in 1.7989ms 200 text/css +2018-08-02 13:41:13.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:41:13.946 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:41:13.946 +03:00 [INF] Request finished in 1.0997ms 200 text/css +2018-08-02 13:41:13.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:41:13.953 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:41:13.953 +03:00 [INF] Request finished in 3.2944ms 200 text/css +2018-08-02 13:41:13.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:41:13.962 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:41:13.962 +03:00 [INF] Request finished in 4.7298ms 200 text/css +2018-08-02 13:41:13.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:41:13.970 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:41:13.970 +03:00 [INF] Request finished in 1.6665ms 200 text/css +2018-08-02 13:41:13.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:41:13.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:41:13.984 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:41:13.984 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:41:13.984 +03:00 [INF] Request finished in 0.9828ms 200 text/css +2018-08-02 13:41:13.984 +03:00 [INF] Request finished in 1.0212ms 200 text/css +2018-08-02 13:41:13.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:41:13.993 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:41:13.993 +03:00 [INF] Request finished in 1.2979ms 200 application/javascript +2018-08-02 13:41:13.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:41:13.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:41:13.997 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:41:13.998 +03:00 [INF] Request finished in 0.8626ms 200 application/javascript +2018-08-02 13:41:14.005 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:41:14.005 +03:00 [INF] Request finished in 8.4062ms 200 application/javascript +2018-08-02 13:41:14.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:41:14.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:41:14.053 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:41:14.053 +03:00 [INF] Request finished in 2.9706ms 200 application/javascript +2018-08-02 13:41:14.054 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:41:14.055 +03:00 [INF] Request finished in 8.4255ms 200 application/javascript +2018-08-02 13:41:14.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:41:14.068 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:41:14.068 +03:00 [INF] Request finished in 0.9253ms 200 application/javascript +2018-08-02 13:41:14.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:41:14.075 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:41:14.075 +03:00 [INF] Request finished in 0.9861ms 200 application/javascript +2018-08-02 13:41:14.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:41:14.087 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:41:14.087 +03:00 [INF] Request finished in 1.4296ms 200 application/javascript +2018-08-02 13:41:14.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:41:14.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:41:14.111 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:41:14.111 +03:00 [INF] Request finished in 0.7934ms 200 application/javascript +2018-08-02 13:41:14.113 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:41:14.113 +03:00 [INF] Request finished in 3.414ms 200 application/javascript +2018-08-02 13:41:14.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:41:14.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:41:14.132 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:41:14.133 +03:00 [INF] Request finished in 0.8473ms 200 application/javascript +2018-08-02 13:41:14.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:41:14.134 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:41:14.134 +03:00 [INF] Request finished in 21.1603ms 200 application/javascript +2018-08-02 13:41:14.135 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:41:14.135 +03:00 [INF] Request finished in 0.9311ms 200 application/javascript +2018-08-02 13:41:14.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:41:14.138 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:41:14.139 +03:00 [INF] Request finished in 1.3961ms 200 application/javascript +2018-08-02 13:41:14.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:41:14.147 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:41:14.147 +03:00 [INF] Request finished in 3.0903ms 200 application/javascript +2018-08-02 13:41:14.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:41:14.153 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:41:14.153 +03:00 [INF] Request finished in 1.0375ms 200 application/javascript +2018-08-02 13:41:14.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:41:14.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:41:14.157 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:41:14.157 +03:00 [INF] Request finished in 0.988ms 200 application/javascript +2018-08-02 13:41:14.157 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:41:14.158 +03:00 [INF] Request finished in 3.6669ms 200 application/javascript +2018-08-02 13:41:14.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:41:14.163 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:41:14.163 +03:00 [INF] Request finished in 1.0901ms 200 application/javascript +2018-08-02 13:41:14.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:41:14.196 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:41:14.197 +03:00 [INF] Request finished in 1.2084ms 200 application/javascript +2018-08-02 13:41:14.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:41:14.212 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:41:14.212 +03:00 [INF] Request finished in 1.07ms 200 application/javascript +2018-08-02 13:41:14.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:41:14.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:41:14.238 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:41:14.240 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:41:14.240 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:41:14.241 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4166ms. +2018-08-02 13:41:14.241 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:41:14.241 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12240000000000001ms. +2018-08-02 13:41:14.241 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:41:14.242 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:41:14.242 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6367ms +2018-08-02 13:41:14.242 +03:00 [INF] Request finished in 6.644ms 200 text/plain; charset=utf-8 +2018-08-02 13:41:14.242 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.6422000000000003ms +2018-08-02 13:41:14.242 +03:00 [INF] Request finished in 12.4882ms 200 text/plain; charset=utf-8 +2018-08-02 13:41:14.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:41:14.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:41:14.251 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:41:14.251 +03:00 [INF] Request finished in 1.1288ms 200 application/javascript +2018-08-02 13:41:14.252 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:41:14.252 +03:00 [INF] Request finished in 0.8031ms 200 application/javascript +2018-08-02 13:41:14.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:41:14.259 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:41:14.259 +03:00 [INF] Request finished in 1.3586ms 200 image/svg+xml +2018-08-02 13:41:14.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:41:14.263 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:41:14.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:41:14.266 +03:00 [INF] Request finished in 3.732ms 200 image/png +2018-08-02 13:41:14.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:41:14.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:41:14.266 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:41:14.267 +03:00 [INF] Request finished in 0.7438ms 200 image/png +2018-08-02 13:41:14.267 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:41:14.267 +03:00 [INF] Request finished in 1.6105ms 200 image/png +2018-08-02 13:41:14.267 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:41:14.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:41:14.267 +03:00 [INF] Request finished in 1.0539ms 200 image/png +2018-08-02 13:41:14.271 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:41:14.271 +03:00 [INF] Request finished in 3.9111ms 200 image/png +2018-08-02 13:41:14.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:41:14.281 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:41:14.281 +03:00 [INF] Request finished in 0.7738ms 200 image/png +2018-08-02 13:41:14.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:41:14.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:41:14.282 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:41:14.282 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:41:14.282 +03:00 [INF] Request finished in 0.89ms 200 image/png +2018-08-02 13:41:14.283 +03:00 [INF] Request finished in 1.7178ms 200 image/png +2018-08-02 13:41:14.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:41:14.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:41:14.284 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:41:14.285 +03:00 [INF] Request finished in 0.9345ms 200 image/png +2018-08-02 13:41:14.288 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:41:14.288 +03:00 [INF] Request finished in 3.7064ms 200 image/png +2018-08-02 13:41:14.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:41:14.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:41:14.294 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:41:14.294 +03:00 [INF] Request finished in 0.8945ms 200 image/png +2018-08-02 13:41:14.294 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:41:14.294 +03:00 [INF] Request finished in 0.887ms 200 image/png +2018-08-02 13:41:14.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:41:14.299 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:41:14.299 +03:00 [INF] Request finished in 0.888ms 200 image/png +2018-08-02 13:41:14.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:41:14.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:41:14.301 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:41:14.301 +03:00 [INF] Request finished in 0.7911ms 200 image/png +2018-08-02 13:41:14.301 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:41:14.301 +03:00 [INF] Request finished in 0.9719ms 200 image/png +2018-08-02 13:41:14.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:41:14.309 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:41:14.309 +03:00 [INF] Request finished in 1.0779ms 200 image/png +2018-08-02 13:41:14.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:41:14.310 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:41:14.310 +03:00 [INF] Request finished in 1.451ms 200 image/svg+xml +2018-08-02 13:41:14.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:41:14.317 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:41:14.317 +03:00 [INF] Request finished in 2.3246ms 200 image/png +2018-08-02 13:41:14.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:41:14.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:41:14.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:41:14.323 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:41:14.323 +03:00 [INF] Request finished in 0.9991ms 200 image/png +2018-08-02 13:41:14.323 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:41:14.323 +03:00 [INF] Request finished in 1.6678ms 200 image/png +2018-08-02 13:41:14.324 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:41:14.324 +03:00 [INF] Request finished in 1.7313ms 200 image/png +2018-08-02 13:41:14.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:41:14.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:41:14.333 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:41:14.334 +03:00 [INF] Request finished in 0.8702ms 200 image/png +2018-08-02 13:41:14.334 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:41:14.334 +03:00 [INF] Request finished in 0.8053ms 200 image/png +2018-08-02 13:41:14.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:41:14.335 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:41:14.335 +03:00 [INF] Request finished in 0.7682ms 200 image/png +2018-08-02 13:41:14.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:41:14.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:41:14.339 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:41:14.339 +03:00 [INF] Request finished in 2.0639ms 200 image/png +2018-08-02 13:41:14.339 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:41:14.339 +03:00 [INF] Request finished in 3.133ms 200 image/png +2018-08-02 13:41:14.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:41:14.342 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:41:14.342 +03:00 [INF] Request finished in 1.004ms 200 image/png +2018-08-02 13:41:14.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:41:14.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:41:14.346 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:41:14.346 +03:00 [INF] Request finished in 0.9358ms 200 image/png +2018-08-02 13:41:14.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:41:14.347 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:41:14.348 +03:00 [INF] Request finished in 1.3083ms 200 image/png +2018-08-02 13:41:14.348 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:41:14.348 +03:00 [INF] Request finished in 1.184ms 200 image/png +2018-08-02 13:41:14.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:41:14.353 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:41:14.353 +03:00 [INF] Request finished in 1.3563ms 200 image/png +2018-08-02 13:41:14.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:41:14.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:41:14.356 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:41:14.356 +03:00 [INF] Request finished in 1.5436ms 200 image/png +2018-08-02 13:41:14.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:41:14.359 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:41:14.359 +03:00 [INF] Request finished in 2.7064ms 200 image/png +2018-08-02 13:41:14.359 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:41:14.359 +03:00 [INF] Request finished in 4.0442ms 200 image/png +2018-08-02 13:41:14.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:41:14.363 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:41:14.363 +03:00 [INF] Request finished in 0.7792ms 200 image/png +2018-08-02 13:41:14.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:41:14.364 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:41:14.364 +03:00 [INF] Request finished in 1.0487ms 200 image/png +2018-08-02 13:41:14.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:41:14.370 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:41:14.370 +03:00 [INF] Request finished in 1.5927ms 200 image/png +2018-08-02 13:41:14.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:41:14.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:41:14.384 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:41:14.384 +03:00 [INF] Request finished in 2.1479ms 200 image/png +2018-08-02 13:41:14.391 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:41:14.391 +03:00 [INF] Request finished in 10.0211ms 200 image/jpeg +2018-08-02 13:41:14.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:41:14.401 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:41:14.401 +03:00 [INF] Request finished in 2.7714ms 200 font/woff2 +2018-08-02 13:41:15.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:41:15.465 +03:00 [INF] Request finished in 0.7615ms 404 +2018-08-02 13:44:38.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:44:38.824 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:44:38.825 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:44:38.839 +03:00 [INF] Executed action /Index in 14.0433ms +2018-08-02 13:44:38.839 +03:00 [INF] Request finished in 284.9352ms 200 text/html; charset=utf-8 +2018-08-02 13:44:38.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:44:38.877 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:44:38.877 +03:00 [INF] Request finished in 4.7092ms 200 text/css +2018-08-02 13:44:38.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:44:38.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:44:38.885 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:44:38.885 +03:00 [INF] Request finished in 2.3047ms 200 text/css +2018-08-02 13:44:38.886 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:44:38.886 +03:00 [INF] Request finished in 3.0214ms 200 text/css +2018-08-02 13:44:38.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:44:38.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:44:38.898 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:44:38.898 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:44:38.898 +03:00 [INF] Request finished in 3.0743ms 200 text/css +2018-08-02 13:44:38.898 +03:00 [INF] Request finished in 1.7419ms 200 text/css +2018-08-02 13:44:38.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:44:38.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:44:38.905 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:44:38.905 +03:00 [INF] Request finished in 1.736ms 200 text/css +2018-08-02 13:44:38.905 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:44:38.905 +03:00 [INF] Request finished in 1.0092ms 200 text/css +2018-08-02 13:44:38.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:44:38.919 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:44:38.919 +03:00 [INF] Request finished in 0.8542ms 200 text/css +2018-08-02 13:44:38.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:44:38.927 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:44:38.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:44:38.927 +03:00 [INF] Request finished in 2.2515ms 200 application/javascript +2018-08-02 13:44:38.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:44:38.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:44:38.928 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:44:38.928 +03:00 [INF] Request finished in 0.7116ms 200 application/javascript +2018-08-02 13:44:38.930 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:44:38.931 +03:00 [INF] Request finished in 3.4819ms 200 application/javascript +2018-08-02 13:44:38.936 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:44:38.936 +03:00 [INF] Request finished in 9.2324ms 200 application/javascript +2018-08-02 13:44:38.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:44:38.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:44:38.948 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:44:38.949 +03:00 [INF] Request finished in 3.158ms 200 application/javascript +2018-08-02 13:44:38.950 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:44:38.951 +03:00 [INF] Request finished in 8.3015ms 200 application/javascript +2018-08-02 13:44:38.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:44:38.951 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:44:38.951 +03:00 [INF] Request finished in 0.8784ms 200 application/javascript +2018-08-02 13:44:38.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:44:38.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:44:38.973 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:44:38.973 +03:00 [INF] Request finished in 1.5985ms 200 application/javascript +2018-08-02 13:44:38.974 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:44:38.975 +03:00 [INF] Request finished in 4.2785ms 200 application/javascript +2018-08-02 13:44:38.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:44:38.995 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:44:38.996 +03:00 [INF] Request finished in 1.0391ms 200 application/javascript +2018-08-02 13:44:39.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:44:39.011 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:44:39.011 +03:00 [INF] Request finished in 10.8558ms 200 application/javascript +2018-08-02 13:44:39.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:44:39.015 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:44:39.015 +03:00 [INF] Request finished in 1.5648ms 200 application/javascript +2018-08-02 13:44:39.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:44:39.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:44:39.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:44:39.034 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:44:39.035 +03:00 [INF] Request finished in 1.8792ms 200 application/javascript +2018-08-02 13:44:39.035 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:44:39.035 +03:00 [INF] Request finished in 1.5914ms 200 application/javascript +2018-08-02 13:44:39.036 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:44:39.036 +03:00 [INF] Request finished in 2.3737ms 200 application/javascript +2018-08-02 13:44:39.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:44:39.046 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:44:39.046 +03:00 [INF] Request finished in 1.077ms 200 application/javascript +2018-08-02 13:44:39.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:44:39.047 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:44:39.047 +03:00 [INF] Request finished in 1.3167ms 200 application/javascript +2018-08-02 13:44:39.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:44:39.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:44:39.064 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:44:39.064 +03:00 [INF] Request finished in 6.3656ms 200 application/javascript +2018-08-02 13:44:39.065 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:44:39.069 +03:00 [INF] Request finished in 1.3441ms 200 application/javascript +2018-08-02 13:44:39.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:44:39.071 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:44:39.071 +03:00 [INF] Request finished in 1.0606ms 200 application/javascript +2018-08-02 13:44:39.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:44:39.072 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:44:39.072 +03:00 [INF] Request finished in 1.0507ms 200 application/javascript +2018-08-02 13:44:39.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:44:39.084 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:44:39.087 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:44:39.088 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.39440000000000003ms. +2018-08-02 13:44:39.088 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:44:39.088 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.0081ms +2018-08-02 13:44:39.088 +03:00 [INF] Request finished in 14.6085ms 200 text/plain; charset=utf-8 +2018-08-02 13:44:39.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:44:39.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:44:39.093 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:44:39.094 +03:00 [INF] Request finished in 7.2256ms 200 application/javascript +2018-08-02 13:44:39.096 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:44:39.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:44:39.100 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11850000000000001ms. +2018-08-02 13:44:39.100 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:44:39.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.8419000000000003ms +2018-08-02 13:44:39.100 +03:00 [INF] Request finished in 11.2134ms 200 text/plain; charset=utf-8 +2018-08-02 13:44:39.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:44:39.102 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:44:39.102 +03:00 [INF] Request finished in 0.9007ms 200 application/javascript +2018-08-02 13:44:39.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:44:39.124 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:44:39.124 +03:00 [INF] Request finished in 1.0163ms 200 image/svg+xml +2018-08-02 13:44:39.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:44:39.150 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:44:39.150 +03:00 [INF] Request finished in 1.2661ms 200 image/png +2018-08-02 13:44:39.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:44:39.168 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:44:39.169 +03:00 [INF] Request finished in 1.1819ms 200 image/png +2018-08-02 13:44:39.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:44:39.176 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:44:39.176 +03:00 [INF] Request finished in 1.8098ms 200 image/png +2018-08-02 13:44:39.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:44:39.215 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:44:39.215 +03:00 [INF] Request finished in 1.085ms 200 image/png +2018-08-02 13:44:39.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:44:39.224 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:44:39.224 +03:00 [INF] Request finished in 1.0124ms 200 image/png +2018-08-02 13:44:39.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:44:39.232 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:44:39.232 +03:00 [INF] Request finished in 0.9223ms 200 image/png +2018-08-02 13:44:39.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:44:39.242 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:44:39.243 +03:00 [INF] Request finished in 2.0016ms 200 image/png +2018-08-02 13:44:39.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:44:39.249 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:44:39.249 +03:00 [INF] Request finished in 0.9761ms 200 image/png +2018-08-02 13:44:39.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:44:39.254 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:44:39.255 +03:00 [INF] Request finished in 1.3825ms 200 image/png +2018-08-02 13:44:39.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:44:39.259 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:44:39.260 +03:00 [INF] Request finished in 1.7626ms 200 image/png +2018-08-02 13:44:39.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:44:39.265 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:44:39.265 +03:00 [INF] Request finished in 1.41ms 200 image/png +2018-08-02 13:44:39.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:44:39.266 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:44:39.266 +03:00 [INF] Request finished in 1.1266ms 200 image/png +2018-08-02 13:44:39.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:44:39.267 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:44:39.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:44:39.267 +03:00 [INF] Request finished in 0.897ms 200 image/png +2018-08-02 13:44:39.268 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:44:39.268 +03:00 [INF] Request finished in 0.9652ms 200 image/png +2018-08-02 13:44:39.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:44:39.273 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:44:39.273 +03:00 [INF] Request finished in 0.9838ms 200 image/png +2018-08-02 13:44:39.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:44:39.274 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:44:39.274 +03:00 [INF] Request finished in 1.6719ms 200 image/png +2018-08-02 13:44:39.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:44:39.279 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:44:39.279 +03:00 [INF] Request finished in 0.82ms 200 image/svg+xml +2018-08-02 13:44:39.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:44:39.284 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:44:39.284 +03:00 [INF] Request finished in 1.7136ms 200 image/png +2018-08-02 13:44:39.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:44:39.287 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:44:39.287 +03:00 [INF] Request finished in 0.8823ms 200 image/png +2018-08-02 13:44:39.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:44:39.290 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:44:39.290 +03:00 [INF] Request finished in 3.3811ms 200 image/png +2018-08-02 13:44:39.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:44:39.293 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:44:39.293 +03:00 [INF] Request finished in 1.2553ms 200 image/png +2018-08-02 13:44:39.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:44:39.296 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:44:39.296 +03:00 [INF] Request finished in 1.3038ms 200 image/png +2018-08-02 13:44:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:44:39.302 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:44:39.303 +03:00 [INF] Request finished in 2.1261ms 200 image/png +2018-08-02 13:44:39.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:44:39.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:44:39.305 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:44:39.305 +03:00 [INF] Request finished in 0.9738ms 200 image/png +2018-08-02 13:44:39.305 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:44:39.305 +03:00 [INF] Request finished in 1.0685ms 200 image/png +2018-08-02 13:44:39.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:44:39.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:44:39.308 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:44:39.308 +03:00 [INF] Request finished in 2.4377ms 200 image/png +2018-08-02 13:44:39.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:44:39.309 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:44:39.310 +03:00 [INF] Request finished in 1.5101ms 200 image/png +2018-08-02 13:44:39.310 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:44:39.310 +03:00 [INF] Request finished in 3.5841ms 200 image/png +2018-08-02 13:44:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:44:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:44:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:44:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:44:39.323 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:44:39.323 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:44:39.323 +03:00 [INF] Request finished in 1.3605ms 200 image/png +2018-08-02 13:44:39.323 +03:00 [INF] Request finished in 1.3911ms 200 image/png +2018-08-02 13:44:39.323 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:44:39.323 +03:00 [INF] Request finished in 1.4782ms 200 image/png +2018-08-02 13:44:39.324 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:44:39.325 +03:00 [INF] Request finished in 2.4973ms 200 image/png +2018-08-02 13:44:39.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:44:39.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:44:39.329 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:44:39.329 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:44:39.329 +03:00 [INF] Request finished in 0.7776ms 200 image/png +2018-08-02 13:44:39.329 +03:00 [INF] Request finished in 0.8087ms 200 image/png +2018-08-02 13:44:39.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:44:39.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:44:39.334 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:44:39.334 +03:00 [INF] Request finished in 1.5589ms 200 image/png +2018-08-02 13:44:39.335 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:44:39.335 +03:00 [INF] Request finished in 2.4716ms 200 image/png +2018-08-02 13:44:39.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:44:39.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:44:39.337 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:44:39.337 +03:00 [INF] Request finished in 0.9384ms 200 image/png +2018-08-02 13:44:39.337 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:44:39.337 +03:00 [INF] Request finished in 1.1546ms 200 image/png +2018-08-02 13:44:39.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:44:39.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:44:39.460 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:44:39.461 +03:00 [INF] Request finished in 8.3667ms 200 image/jpeg +2018-08-02 13:44:39.463 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:44:39.464 +03:00 [INF] Request finished in 3.7283ms 200 font/woff2 +2018-08-02 13:44:40.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:44:40.259 +03:00 [INF] Request finished in 1.4041ms 404 +2018-08-02 13:45:14.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:45:14.862 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:45:14.863 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:45:14.875 +03:00 [INF] Executed action /Index in 12.463000000000001ms +2018-08-02 13:45:14.875 +03:00 [INF] Request finished in 365.7196ms 200 text/html; charset=utf-8 +2018-08-02 13:45:14.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:45:14.926 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:45:14.927 +03:00 [INF] Request finished in 4.2951ms 200 text/css +2018-08-02 13:45:14.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:45:14.929 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:45:14.930 +03:00 [INF] Request finished in 1.0133ms 200 text/css +2018-08-02 13:45:14.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:45:14.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:45:14.934 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:45:14.935 +03:00 [INF] Request finished in 1.5779ms 200 text/css +2018-08-02 13:45:14.935 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:45:14.935 +03:00 [INF] Request finished in 1.1812ms 200 text/css +2018-08-02 13:45:14.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:45:14.938 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:45:14.938 +03:00 [INF] Request finished in 2.0803ms 200 text/css +2018-08-02 13:45:14.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:45:14.950 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:45:14.951 +03:00 [INF] Request finished in 1.1715ms 200 text/css +2018-08-02 13:45:14.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:45:14.955 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:45:14.955 +03:00 [INF] Request finished in 4.5121ms 200 text/css +2018-08-02 13:45:14.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:45:14.973 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:45:14.973 +03:00 [INF] Request finished in 1.4477ms 200 text/css +2018-08-02 13:45:14.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:45:14.984 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:45:14.985 +03:00 [INF] Request finished in 2.6681ms 200 application/javascript +2018-08-02 13:45:14.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:45:14.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:45:14.993 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:45:14.993 +03:00 [INF] Request finished in 1.1403ms 200 application/javascript +2018-08-02 13:45:14.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:45:14.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:45:14.997 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:45:14.998 +03:00 [INF] Request finished in 5.8577ms 200 application/javascript +2018-08-02 13:45:14.999 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:45:14.999 +03:00 [INF] Request finished in 4.235ms 200 application/javascript +2018-08-02 13:45:14.999 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:45:15.000 +03:00 [INF] Request finished in 3.3984ms 200 application/javascript +2018-08-02 13:45:15.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:45:15.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:45:15.029 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:45:15.029 +03:00 [INF] Request finished in 1.8815ms 200 application/javascript +2018-08-02 13:45:15.029 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:45:15.029 +03:00 [INF] Request finished in 2.6698ms 200 application/javascript +2018-08-02 13:45:15.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:45:15.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:45:15.042 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:45:15.042 +03:00 [INF] Request finished in 1.7108ms 200 application/javascript +2018-08-02 13:45:15.044 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:45:15.044 +03:00 [INF] Request finished in 3.0704ms 200 application/javascript +2018-08-02 13:45:15.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:45:15.074 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:45:15.075 +03:00 [INF] Request finished in 12.1025ms 200 application/javascript +2018-08-02 13:45:15.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:45:15.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:45:15.082 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:45:15.082 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:45:15.082 +03:00 [INF] Request finished in 1.107ms 200 application/javascript +2018-08-02 13:45:15.082 +03:00 [INF] Request finished in 0.9271ms 200 application/javascript +2018-08-02 13:45:15.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:45:15.086 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:45:15.086 +03:00 [INF] Request finished in 1.3817ms 200 application/javascript +2018-08-02 13:45:15.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:45:15.094 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:45:15.094 +03:00 [INF] Request finished in 3.0699ms 200 application/javascript +2018-08-02 13:45:15.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:45:15.108 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:45:15.108 +03:00 [INF] Request finished in 3.198ms 200 application/javascript +2018-08-02 13:45:15.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:45:15.120 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:45:15.121 +03:00 [INF] Request finished in 1.8742ms 200 application/javascript +2018-08-02 13:45:15.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:45:15.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:45:15.135 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:45:15.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:45:15.137 +03:00 [INF] Request finished in 2.7466ms 200 application/javascript +2018-08-02 13:45:15.137 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:45:15.137 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:45:15.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:45:15.138 +03:00 [INF] Request finished in 2.2956ms 200 application/javascript +2018-08-02 13:45:15.138 +03:00 [INF] Request finished in 4.1574ms 200 application/javascript +2018-08-02 13:45:15.139 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:45:15.140 +03:00 [INF] Request finished in 2.1654ms 200 application/javascript +2018-08-02 13:45:15.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:45:15.150 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:45:15.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:45:15.150 +03:00 [INF] Request finished in 2.8149ms 200 application/javascript +2018-08-02 13:45:15.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:45:15.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:45:15.152 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:45:15.152 +03:00 [INF] Request finished in 0.8045ms 200 application/javascript +2018-08-02 13:45:15.155 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:15.156 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:45:15.157 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13770000000000002ms. +2018-08-02 13:45:15.157 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:15.157 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8268ms +2018-08-02 13:45:15.157 +03:00 [INF] Request finished in 6.7817ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:15.157 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:15.158 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:45:15.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:45:15.159 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.41960000000000003ms. +2018-08-02 13:45:15.159 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:15.159 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.5583ms +2018-08-02 13:45:15.159 +03:00 [INF] Request finished in 8.2747ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:15.161 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:45:15.161 +03:00 [INF] Request finished in 2.1233ms 200 application/javascript +2018-08-02 13:45:15.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:45:15.197 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:45:15.197 +03:00 [INF] Request finished in 1.5536ms 200 image/svg+xml +2018-08-02 13:45:15.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:45:15.200 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:45:15.201 +03:00 [INF] Request finished in 2.0902ms 200 image/png +2018-08-02 13:45:15.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:45:15.205 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:45:15.205 +03:00 [INF] Request finished in 0.9655ms 200 image/png +2018-08-02 13:45:15.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:45:15.215 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:45:15.215 +03:00 [INF] Request finished in 1.668ms 200 image/png +2018-08-02 13:45:15.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:45:15.223 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:45:15.223 +03:00 [INF] Request finished in 1.7016ms 200 image/png +2018-08-02 13:45:15.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:45:15.226 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:45:15.226 +03:00 [INF] Request finished in 1.0689ms 200 image/png +2018-08-02 13:45:15.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:45:15.241 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:45:15.242 +03:00 [INF] Request finished in 0.9989ms 200 image/png +2018-08-02 13:45:15.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:45:15.270 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:45:15.271 +03:00 [INF] Request finished in 1.0738ms 200 image/png +2018-08-02 13:45:15.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:45:15.274 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:45:15.275 +03:00 [INF] Request finished in 1.0494ms 200 image/png +2018-08-02 13:45:15.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:45:15.282 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:45:15.283 +03:00 [INF] Request finished in 1.8201ms 200 image/png +2018-08-02 13:45:15.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:45:15.286 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:45:15.287 +03:00 [INF] Request finished in 1.5835ms 200 image/png +2018-08-02 13:45:15.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:45:15.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:45:15.289 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:45:15.289 +03:00 [INF] Request finished in 1.2432ms 200 image/png +2018-08-02 13:45:15.289 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:45:15.289 +03:00 [INF] Request finished in 1.5546ms 200 image/png +2018-08-02 13:45:15.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:45:15.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:45:15.292 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:45:15.292 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:45:15.292 +03:00 [INF] Request finished in 1.3218ms 200 image/png +2018-08-02 13:45:15.292 +03:00 [INF] Request finished in 0.9037ms 200 image/png +2018-08-02 13:45:15.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:45:15.296 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:45:15.296 +03:00 [INF] Request finished in 2.9158ms 200 image/png +2018-08-02 13:45:15.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:45:15.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:45:15.300 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:45:15.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:45:15.300 +03:00 [INF] Request finished in 1.3583ms 200 image/svg+xml +2018-08-02 13:45:15.301 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:45:15.301 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:45:15.301 +03:00 [INF] Request finished in 0.7856ms 200 image/png +2018-08-02 13:45:15.301 +03:00 [INF] Request finished in 1.4473ms 200 image/png +2018-08-02 13:45:15.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:45:15.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:45:15.306 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:45:15.306 +03:00 [INF] Request finished in 0.8093ms 200 image/png +2018-08-02 13:45:15.307 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:45:15.307 +03:00 [INF] Request finished in 1.9469ms 200 image/png +2018-08-02 13:45:15.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:45:15.317 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:45:15.317 +03:00 [INF] Request finished in 1.6133ms 200 image/png +2018-08-02 13:45:15.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:45:15.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:45:15.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:45:15.323 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:45:15.323 +03:00 [INF] Request finished in 1.0559ms 200 image/png +2018-08-02 13:45:15.323 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:45:15.323 +03:00 [INF] Request finished in 1.952ms 200 image/png +2018-08-02 13:45:15.323 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:45:15.323 +03:00 [INF] Request finished in 1.363ms 200 image/png +2018-08-02 13:45:15.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:45:15.326 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:45:15.326 +03:00 [INF] Request finished in 0.8338ms 200 image/png +2018-08-02 13:45:15.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:45:15.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:45:15.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:45:15.334 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:45:15.334 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:45:15.334 +03:00 [INF] Request finished in 0.7772ms 200 image/png +2018-08-02 13:45:15.334 +03:00 [INF] Request finished in 1.0227ms 200 image/png +2018-08-02 13:45:15.335 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:45:15.335 +03:00 [INF] Request finished in 1.6662ms 200 image/png +2018-08-02 13:45:15.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:45:15.342 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:45:15.342 +03:00 [INF] Request finished in 0.8673ms 200 image/png +2018-08-02 13:45:15.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:45:15.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:45:15.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:45:15.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:45:15.367 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:45:15.368 +03:00 [INF] Request finished in 0.8139ms 200 image/png +2018-08-02 13:45:15.368 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:45:15.368 +03:00 [INF] Request finished in 1.1956ms 200 image/png +2018-08-02 13:45:15.368 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:45:15.368 +03:00 [INF] Request finished in 0.6384ms 200 image/png +2018-08-02 13:45:15.368 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:45:15.368 +03:00 [INF] Request finished in 0.9043ms 200 image/png +2018-08-02 13:45:15.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:45:15.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:45:15.376 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:45:15.376 +03:00 [INF] Request finished in 1.0833ms 200 image/png +2018-08-02 13:45:15.376 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:45:15.376 +03:00 [INF] Request finished in 0.6535ms 200 image/png +2018-08-02 13:45:15.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:45:15.382 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:45:15.382 +03:00 [INF] Request finished in 3.6002ms 200 font/woff2 +2018-08-02 13:45:15.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:45:15.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:45:15.385 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:45:15.385 +03:00 [INF] Request finished in 0.899ms 200 image/png +2018-08-02 13:45:15.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:45:15.386 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:45:15.386 +03:00 [INF] Request finished in 0.6783ms 200 image/png +2018-08-02 13:45:15.386 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:45:15.386 +03:00 [INF] Request finished in 1.1339ms 200 image/png +2018-08-02 13:45:15.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:45:15.399 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:45:15.400 +03:00 [INF] Request finished in 11.1101ms 200 image/jpeg +2018-08-02 13:45:16.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:45:16.294 +03:00 [INF] Request finished in 0.6079ms 404 +2018-08-02 13:45:26.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:45:27.020 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:45:27.021 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:45:27.036 +03:00 [INF] Executed action /Index in 15.481800000000002ms +2018-08-02 13:45:27.036 +03:00 [INF] Request finished in 302.9953ms 200 text/html; charset=utf-8 +2018-08-02 13:45:27.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:45:27.083 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:45:27.084 +03:00 [INF] Request finished in 3.4648ms 200 text/css +2018-08-02 13:45:27.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:45:27.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:45:27.088 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:45:27.088 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:45:27.088 +03:00 [INF] Request finished in 0.8781ms 200 text/css +2018-08-02 13:45:27.088 +03:00 [INF] Request finished in 0.9135ms 200 text/css +2018-08-02 13:45:27.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:45:27.097 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:45:27.097 +03:00 [INF] Request finished in 1.2175ms 200 text/css +2018-08-02 13:45:27.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:45:27.099 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:45:27.099 +03:00 [INF] Request finished in 1.1557ms 200 text/css +2018-08-02 13:45:27.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:45:27.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:45:27.109 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:45:27.109 +03:00 [INF] Request finished in 0.6498ms 200 text/css +2018-08-02 13:45:27.109 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:45:27.109 +03:00 [INF] Request finished in 0.9816ms 200 text/css +2018-08-02 13:45:27.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:45:27.121 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:45:27.121 +03:00 [INF] Request finished in 1.1046ms 200 text/css +2018-08-02 13:45:27.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:45:27.131 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:45:27.131 +03:00 [INF] Request finished in 4.6446ms 200 application/javascript +2018-08-02 13:45:27.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:45:27.147 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:45:27.149 +03:00 [INF] Request finished in 6.5605ms 200 application/javascript +2018-08-02 13:45:27.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:45:27.150 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:45:27.150 +03:00 [INF] Request finished in 1.0812ms 200 application/javascript +2018-08-02 13:45:27.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:45:27.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:45:27.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:45:27.155 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:45:27.156 +03:00 [INF] Request finished in 1.8863ms 200 application/javascript +2018-08-02 13:45:27.156 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:45:27.156 +03:00 [INF] Request finished in 4.5366ms 200 application/javascript +2018-08-02 13:45:27.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:45:27.159 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:45:27.159 +03:00 [INF] Request finished in 6.2913ms 200 application/javascript +2018-08-02 13:45:27.160 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:45:27.160 +03:00 [INF] Request finished in 3.4048ms 200 application/javascript +2018-08-02 13:45:27.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:45:27.181 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:45:27.181 +03:00 [INF] Request finished in 1.3971ms 200 application/javascript +2018-08-02 13:45:27.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:45:27.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:45:27.197 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:45:27.197 +03:00 [INF] Request finished in 4.7253ms 200 application/javascript +2018-08-02 13:45:27.202 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:45:27.202 +03:00 [INF] Request finished in 8.9828ms 200 application/javascript +2018-08-02 13:45:27.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:45:27.211 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:45:27.211 +03:00 [INF] Request finished in 2.0798ms 200 application/javascript +2018-08-02 13:45:27.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:45:27.214 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:45:27.214 +03:00 [INF] Request finished in 1.145ms 200 application/javascript +2018-08-02 13:45:27.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:45:27.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:45:27.244 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:45:27.244 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:45:27.244 +03:00 [INF] Request finished in 0.8571ms 200 application/javascript +2018-08-02 13:45:27.244 +03:00 [INF] Request finished in 0.8586ms 200 application/javascript +2018-08-02 13:45:27.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:45:27.252 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:45:27.252 +03:00 [INF] Request finished in 1.039ms 200 application/javascript +2018-08-02 13:45:27.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:45:27.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:45:27.261 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:45:27.261 +03:00 [INF] Request finished in 1.024ms 200 application/javascript +2018-08-02 13:45:27.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:45:27.265 +03:00 [INF] Request finished in 5.01ms 200 application/javascript +2018-08-02 13:45:27.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:45:27.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:45:27.276 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:45:27.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:45:27.276 +03:00 [INF] Request finished in 1.5597ms 200 application/javascript +2018-08-02 13:45:27.277 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:45:27.277 +03:00 [INF] Request finished in 1.9455ms 200 application/javascript +2018-08-02 13:45:27.277 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:45:27.277 +03:00 [INF] Request finished in 1.075ms 200 application/javascript +2018-08-02 13:45:27.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:45:27.293 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:27.294 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:45:27.295 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7134ms. +2018-08-02 13:45:27.295 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:27.295 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.9265ms +2018-08-02 13:45:27.295 +03:00 [INF] Request finished in 10.8856ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:27.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:45:27.305 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:45:27.306 +03:00 [INF] Request finished in 1.2003ms 200 application/javascript +2018-08-02 13:45:27.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:45:27.313 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:45:27.314 +03:00 [INF] Request finished in 1.1605ms 200 application/javascript +2018-08-02 13:45:27.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:45:27.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:45:27.321 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:45:27.321 +03:00 [INF] Request finished in 4.2018ms 200 application/javascript +2018-08-02 13:45:27.326 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:27.328 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:45:27.328 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1444ms. +2018-08-02 13:45:27.328 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:27.328 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8717000000000001ms +2018-08-02 13:45:27.328 +03:00 [INF] Request finished in 9.4335ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:27.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:45:27.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:45:27.334 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:45:27.334 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:45:27.335 +03:00 [INF] Request finished in 1.5061ms 200 image/png +2018-08-02 13:45:27.335 +03:00 [INF] Request finished in 4.992ms 200 image/svg+xml +2018-08-02 13:45:27.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:45:27.344 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:45:27.344 +03:00 [INF] Request finished in 1.3723ms 200 image/png +2018-08-02 13:45:27.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:45:27.351 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:45:27.351 +03:00 [INF] Request finished in 1.5178ms 200 image/png +2018-08-02 13:45:27.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:45:27.367 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:45:27.367 +03:00 [INF] Request finished in 1.3728ms 200 image/png +2018-08-02 13:45:27.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:45:27.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:45:27.429 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:45:27.429 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:45:27.429 +03:00 [INF] Request finished in 1.0498ms 200 image/png +2018-08-02 13:45:27.429 +03:00 [INF] Request finished in 1.0687ms 200 image/png +2018-08-02 13:45:27.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:45:27.439 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:45:27.439 +03:00 [INF] Request finished in 0.9951ms 200 image/png +2018-08-02 13:45:27.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:45:27.448 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:45:27.448 +03:00 [INF] Request finished in 1.2208ms 200 image/png +2018-08-02 13:45:27.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:45:27.458 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:45:27.458 +03:00 [INF] Request finished in 1.6513ms 200 image/png +2018-08-02 13:45:27.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:45:27.461 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:45:27.461 +03:00 [INF] Request finished in 1.038ms 200 image/png +2018-08-02 13:45:27.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:45:27.468 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:45:27.468 +03:00 [INF] Request finished in 1.0868ms 200 image/png +2018-08-02 13:45:27.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:45:27.471 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:45:27.471 +03:00 [INF] Request finished in 1.5265ms 200 image/png +2018-08-02 13:45:27.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:45:27.479 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:45:27.479 +03:00 [INF] Request finished in 1.0071ms 200 image/png +2018-08-02 13:45:27.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:45:27.484 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:45:27.484 +03:00 [INF] Request finished in 0.9635ms 200 image/png +2018-08-02 13:45:27.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:45:27.491 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:45:27.491 +03:00 [INF] Request finished in 2.5095ms 200 image/png +2018-08-02 13:45:27.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:45:27.498 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:45:27.498 +03:00 [INF] Request finished in 0.9121ms 200 image/png +2018-08-02 13:45:27.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:45:27.500 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:45:27.500 +03:00 [INF] Request finished in 0.868ms 200 image/svg+xml +2018-08-02 13:45:27.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:45:27.509 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:45:27.509 +03:00 [INF] Request finished in 1.6418ms 200 image/png +2018-08-02 13:45:27.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:45:27.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:45:27.511 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:45:27.511 +03:00 [INF] Request finished in 1.3158ms 200 image/png +2018-08-02 13:45:27.511 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:45:27.511 +03:00 [INF] Request finished in 0.6744ms 200 image/png +2018-08-02 13:45:27.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:45:27.516 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:45:27.516 +03:00 [INF] Request finished in 0.9993ms 200 image/png +2018-08-02 13:45:27.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:45:27.525 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:45:27.525 +03:00 [INF] Request finished in 1.9429ms 200 image/png +2018-08-02 13:45:27.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:45:27.529 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:45:27.529 +03:00 [INF] Request finished in 0.7984ms 200 image/png +2018-08-02 13:45:27.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:45:27.538 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:45:27.538 +03:00 [INF] Request finished in 1.8787ms 200 image/png +2018-08-02 13:45:27.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:45:27.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:45:27.548 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:45:27.548 +03:00 [INF] Request finished in 1.1478ms 200 image/png +2018-08-02 13:45:27.549 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:45:27.549 +03:00 [INF] Request finished in 0.7034ms 200 image/png +2018-08-02 13:45:27.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:45:27.560 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:45:27.560 +03:00 [INF] Request finished in 0.9674ms 200 image/png +2018-08-02 13:45:27.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:45:27.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:45:27.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:45:27.568 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:45:27.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:45:27.568 +03:00 [INF] Request finished in 0.9375ms 200 image/png +2018-08-02 13:45:27.568 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:45:27.568 +03:00 [INF] Request finished in 0.8772ms 200 image/png +2018-08-02 13:45:27.568 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:45:27.568 +03:00 [INF] Request finished in 0.6225ms 200 image/png +2018-08-02 13:45:27.568 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:45:27.568 +03:00 [INF] Request finished in 0.685ms 200 image/png +2018-08-02 13:45:27.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:45:27.570 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:45:27.571 +03:00 [INF] Request finished in 2.5915ms 200 image/png +2018-08-02 13:45:27.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:45:27.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:45:27.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:45:27.578 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:45:27.578 +03:00 [INF] Request finished in 0.7611ms 200 image/png +2018-08-02 13:45:27.578 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:45:27.578 +03:00 [INF] Request finished in 0.9237ms 200 image/png +2018-08-02 13:45:27.578 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:45:27.579 +03:00 [INF] Request finished in 1.903ms 200 image/png +2018-08-02 13:45:27.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:45:27.584 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:45:27.585 +03:00 [INF] Request finished in 1.296ms 200 image/png +2018-08-02 13:45:27.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:45:27.601 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:45:27.601 +03:00 [INF] Request finished in 1.2418ms 200 image/png +2018-08-02 13:45:27.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:45:27.603 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:45:27.603 +03:00 [INF] Request finished in 1.4139ms 200 image/png +2018-08-02 13:45:27.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:45:27.684 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:45:27.685 +03:00 [INF] Request finished in 5.9165ms 200 image/jpeg +2018-08-02 13:45:27.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:45:27.696 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:45:27.696 +03:00 [INF] Request finished in 3.1514ms 200 font/woff2 +2018-08-02 13:45:28.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:45:28.536 +03:00 [INF] Request finished in 0.6082ms 404 +2018-08-02 13:45:44.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:45:44.804 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:45:44.804 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:45:44.820 +03:00 [INF] Executed action /Index in 15.8772ms +2018-08-02 13:45:44.820 +03:00 [INF] Request finished in 292.9175ms 200 text/html; charset=utf-8 +2018-08-02 13:45:44.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:45:44.876 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:45:44.876 +03:00 [INF] Request finished in 3.2404ms 200 text/css +2018-08-02 13:45:44.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:45:44.881 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:45:44.881 +03:00 [INF] Request finished in 2.4206ms 200 text/css +2018-08-02 13:45:44.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:45:44.883 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:45:44.883 +03:00 [INF] Request finished in 1.1812ms 200 text/css +2018-08-02 13:45:44.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:45:44.897 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:45:44.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:45:44.898 +03:00 [INF] Request finished in 2.2321ms 200 text/css +2018-08-02 13:45:44.898 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:45:44.898 +03:00 [INF] Request finished in 1.4189ms 200 text/css +2018-08-02 13:45:44.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:45:44.903 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:45:44.903 +03:00 [INF] Request finished in 1.8058ms 200 text/css +2018-08-02 13:45:44.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:45:44.906 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:45:44.906 +03:00 [INF] Request finished in 1.195ms 200 text/css +2018-08-02 13:45:44.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:45:44.920 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:45:44.920 +03:00 [INF] Request finished in 1.1215ms 200 text/css +2018-08-02 13:45:44.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:45:44.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:45:44.930 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:45:44.930 +03:00 [INF] Request finished in 5.4429ms 200 application/javascript +2018-08-02 13:45:44.931 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:45:44.931 +03:00 [INF] Request finished in 1.9886ms 200 application/javascript +2018-08-02 13:45:44.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:45:44.936 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:45:44.936 +03:00 [INF] Request finished in 0.9883ms 200 application/javascript +2018-08-02 13:45:44.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:45:44.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:45:44.940 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:45:44.940 +03:00 [INF] Request finished in 1.4282ms 200 application/javascript +2018-08-02 13:45:44.943 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:45:44.943 +03:00 [INF] Request finished in 5.9172ms 200 application/javascript +2018-08-02 13:45:44.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:45:44.950 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:45:44.950 +03:00 [INF] Request finished in 1.3104ms 200 application/javascript +2018-08-02 13:45:44.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:45:44.974 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:45:44.974 +03:00 [INF] Request finished in 1.7913ms 200 application/javascript +2018-08-02 13:45:44.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:45:44.980 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:45:44.980 +03:00 [INF] Request finished in 1.4631ms 200 application/javascript +2018-08-02 13:45:44.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:45:44.985 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:45:44.985 +03:00 [INF] Request finished in 3.9004ms 200 application/javascript +2018-08-02 13:45:44.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:45:45.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:45:45.004 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:45:45.004 +03:00 [INF] Request finished in 1.7758ms 200 application/javascript +2018-08-02 13:45:45.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:45:45.006 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:45:45.006 +03:00 [INF] Request finished in 0.8723ms 200 application/javascript +2018-08-02 13:45:45.010 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:45:45.010 +03:00 [INF] Request finished in 20.4883ms 200 application/javascript +2018-08-02 13:45:45.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:45:45.028 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:45:45.028 +03:00 [INF] Request finished in 1.1048ms 200 application/javascript +2018-08-02 13:45:45.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:45:45.034 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:45:45.035 +03:00 [INF] Request finished in 1.8223ms 200 application/javascript +2018-08-02 13:45:45.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:45:45.037 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:45:45.038 +03:00 [INF] Request finished in 2.588ms 200 application/javascript +2018-08-02 13:45:45.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:45:45.047 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:45:45.047 +03:00 [INF] Request finished in 1.4196ms 200 application/javascript +2018-08-02 13:45:45.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:45:45.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:45:45.056 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:45:45.056 +03:00 [INF] Request finished in 1.0576ms 200 application/javascript +2018-08-02 13:45:45.062 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:45:45.062 +03:00 [INF] Request finished in 7.1665ms 200 application/javascript +2018-08-02 13:45:45.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:45:45.063 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:45:45.063 +03:00 [INF] Request finished in 1.4834ms 200 application/javascript +2018-08-02 13:45:45.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:45:45.070 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:45:45.071 +03:00 [INF] Request finished in 1.7659ms 200 application/javascript +2018-08-02 13:45:45.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:45:45.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:45:45.083 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:45.084 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:45:45.084 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:45:45.085 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.35810000000000003ms. +2018-08-02 13:45:45.085 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:45.086 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1803ms +2018-08-02 13:45:45.086 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:45:45.086 +03:00 [INF] Request finished in 11.9439ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:45.086 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1259ms. +2018-08-02 13:45:45.086 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:45:45.086 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6203ms +2018-08-02 13:45:45.086 +03:00 [INF] Request finished in 4.2446ms 200 text/plain; charset=utf-8 +2018-08-02 13:45:45.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:45:45.088 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:45:45.088 +03:00 [INF] Request finished in 1.9523ms 200 application/javascript +2018-08-02 13:45:45.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:45:45.095 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:45:45.095 +03:00 [INF] Request finished in 0.8774ms 200 application/javascript +2018-08-02 13:45:45.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:45:45.105 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:45:45.105 +03:00 [INF] Request finished in 1.9157ms 200 application/javascript +2018-08-02 13:45:45.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:45:45.109 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:45:45.110 +03:00 [INF] Request finished in 1.6323ms 200 image/svg+xml +2018-08-02 13:45:45.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:45:45.122 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:45:45.123 +03:00 [INF] Request finished in 1.3713ms 200 image/png +2018-08-02 13:45:45.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:45:45.143 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:45:45.144 +03:00 [INF] Request finished in 1.6112ms 200 image/png +2018-08-02 13:45:45.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:45:45.177 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:45:45.178 +03:00 [INF] Request finished in 1.0814ms 200 image/png +2018-08-02 13:45:45.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:45:45.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:45:45.195 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:45:45.195 +03:00 [INF] Request finished in 1.848ms 200 image/png +2018-08-02 13:45:45.196 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:45:45.196 +03:00 [INF] Request finished in 1.2321ms 200 image/png +2018-08-02 13:45:45.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:45:45.205 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:45:45.205 +03:00 [INF] Request finished in 0.8493ms 200 image/png +2018-08-02 13:45:45.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:45:45.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:45:45.218 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:45:45.219 +03:00 [INF] Request finished in 1.108ms 200 image/png +2018-08-02 13:45:45.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:45:45.219 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:45:45.219 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:45:45.219 +03:00 [INF] Request finished in 0.8623ms 200 image/png +2018-08-02 13:45:45.219 +03:00 [INF] Request finished in 0.6148ms 200 image/png +2018-08-02 13:45:45.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:45:45.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:45:45.252 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:45:45.252 +03:00 [INF] Request finished in 0.9001ms 200 image/png +2018-08-02 13:45:45.252 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:45:45.252 +03:00 [INF] Request finished in 0.8247ms 200 image/png +2018-08-02 13:45:45.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:45:45.260 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:45:45.260 +03:00 [INF] Request finished in 3.0576ms 200 image/png +2018-08-02 13:45:45.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:45:45.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:45:45.267 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:45:45.267 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:45:45.267 +03:00 [INF] Request finished in 1.9321ms 200 image/png +2018-08-02 13:45:45.267 +03:00 [INF] Request finished in 0.9315ms 200 image/png +2018-08-02 13:45:45.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:45:45.269 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:45:45.269 +03:00 [INF] Request finished in 0.9141ms 200 image/png +2018-08-02 13:45:45.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:45:45.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:45:45.272 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:45:45.272 +03:00 [INF] Request finished in 0.8068ms 200 image/svg+xml +2018-08-02 13:45:45.273 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:45:45.273 +03:00 [INF] Request finished in 0.8888ms 200 image/png +2018-08-02 13:45:45.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:45:45.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:45:45.281 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:45:45.281 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:45:45.281 +03:00 [INF] Request finished in 0.6623ms 200 image/png +2018-08-02 13:45:45.281 +03:00 [INF] Request finished in 0.8564ms 200 image/png +2018-08-02 13:45:45.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:45:45.285 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:45:45.285 +03:00 [INF] Request finished in 1.0796ms 200 image/png +2018-08-02 13:45:45.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:45:45.288 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:45:45.288 +03:00 [INF] Request finished in 0.9153ms 200 image/png +2018-08-02 13:45:45.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:45:45.289 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:45:45.289 +03:00 [INF] Request finished in 0.9227ms 200 image/png +2018-08-02 13:45:45.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:45:45.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:45:45.294 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:45:45.294 +03:00 [INF] Request finished in 1.5527ms 200 image/png +2018-08-02 13:45:45.294 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:45:45.295 +03:00 [INF] Request finished in 0.8103ms 200 image/png +2018-08-02 13:45:45.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:45:45.302 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:45:45.302 +03:00 [INF] Request finished in 1.2972ms 200 image/png +2018-08-02 13:45:45.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:45:45.303 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:45:45.303 +03:00 [INF] Request finished in 0.8484ms 200 image/png +2018-08-02 13:45:45.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:45:45.306 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:45:45.307 +03:00 [INF] Request finished in 2.0021ms 200 image/png +2018-08-02 13:45:45.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:45:45.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:45:45.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:45:45.312 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:45:45.312 +03:00 [INF] Request finished in 3.1935ms 200 image/png +2018-08-02 13:45:45.312 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:45:45.313 +03:00 [INF] Request finished in 0.9138ms 200 image/png +2018-08-02 13:45:45.313 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:45:45.314 +03:00 [INF] Request finished in 2.0618ms 200 image/png +2018-08-02 13:45:45.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:45:45.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:45:45.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:45:45.319 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:45:45.319 +03:00 [INF] Request finished in 1.8261ms 200 image/png +2018-08-02 13:45:45.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:45:45.320 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:45:45.322 +03:00 [INF] Request finished in 2.4944ms 200 image/png +2018-08-02 13:45:45.322 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:45:45.322 +03:00 [INF] Request finished in 3.4296ms 200 image/png +2018-08-02 13:45:45.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:45:45.326 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:45:45.326 +03:00 [INF] Request finished in 9.0362ms 200 image/png +2018-08-02 13:45:45.327 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:45:45.327 +03:00 [INF] Request finished in 1.5842ms 200 image/png +2018-08-02 13:45:45.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:45:45.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:45:45.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:45:45.330 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:45:45.330 +03:00 [INF] Request finished in 1.0787ms 200 image/png +2018-08-02 13:45:45.331 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:45:45.331 +03:00 [INF] Request finished in 1.434ms 200 image/png +2018-08-02 13:45:45.332 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:45:45.332 +03:00 [INF] Request finished in 2.4436ms 200 image/png +2018-08-02 13:45:45.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:45:45.472 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:45:45.472 +03:00 [INF] Request finished in 6.2004ms 200 image/jpeg +2018-08-02 13:45:45.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:45:45.480 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:45:45.480 +03:00 [INF] Request finished in 2.9467ms 200 font/woff2 +2018-08-02 13:45:46.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:45:46.405 +03:00 [INF] Request finished in 0.7328ms 404 +2018-08-02 13:46:37.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:46:37.801 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:46:37.801 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:46:37.818 +03:00 [INF] Executed action /Index in 17.5993ms +2018-08-02 13:46:37.819 +03:00 [INF] Request finished in 445.8407ms 200 text/html; charset=utf-8 +2018-08-02 13:46:37.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:46:37.877 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:46:37.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:46:37.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:46:37.878 +03:00 [INF] Request finished in 5.7905ms 200 text/css +2018-08-02 13:46:37.880 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:46:37.880 +03:00 [INF] Request finished in 3.7468ms 200 text/css +2018-08-02 13:46:37.880 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:46:37.880 +03:00 [INF] Request finished in 1.704ms 200 text/css +2018-08-02 13:46:37.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:46:37.882 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:46:37.882 +03:00 [INF] Request finished in 1.1829ms 200 text/css +2018-08-02 13:46:37.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:46:37.892 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:46:37.893 +03:00 [INF] Request finished in 2.2442ms 200 text/css +2018-08-02 13:46:37.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:46:37.903 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:46:37.903 +03:00 [INF] Request finished in 1.4377ms 200 text/css +2018-08-02 13:46:37.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:46:37.916 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:46:37.916 +03:00 [INF] Request finished in 1.6973ms 200 text/css +2018-08-02 13:46:37.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:46:37.919 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:46:37.919 +03:00 [INF] Request finished in 1.0098ms 200 text/css +2018-08-02 13:46:37.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:46:37.930 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:46:37.930 +03:00 [INF] Request finished in 1.681ms 200 application/javascript +2018-08-02 13:46:37.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:46:37.940 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:46:37.940 +03:00 [INF] Request finished in 7.0782ms 200 application/javascript +2018-08-02 13:46:37.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:46:37.956 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:46:37.956 +03:00 [INF] Request finished in 0.8336ms 200 application/javascript +2018-08-02 13:46:37.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:46:37.973 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:46:37.974 +03:00 [INF] Request finished in 5.2444ms 200 application/javascript +2018-08-02 13:46:37.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:46:37.984 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:46:37.984 +03:00 [INF] Request finished in 0.9127ms 200 application/javascript +2018-08-02 13:46:37.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:46:37.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:46:37.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:46:37.988 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:46:37.988 +03:00 [INF] Request finished in 2.4535ms 200 application/javascript +2018-08-02 13:46:37.988 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:46:37.988 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:46:37.989 +03:00 [INF] Request finished in 1.5713ms 200 application/javascript +2018-08-02 13:46:37.989 +03:00 [INF] Request finished in 0.778ms 200 application/javascript +2018-08-02 13:46:38.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:46:38.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:46:38.008 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:46:38.008 +03:00 [INF] Request finished in 3.7002ms 200 application/javascript +2018-08-02 13:46:38.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:46:38.017 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:46:38.017 +03:00 [INF] Request finished in 1.1739ms 200 application/javascript +2018-08-02 13:46:38.019 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:46:38.019 +03:00 [INF] Request finished in 11.5421ms 200 application/javascript +2018-08-02 13:46:38.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:46:38.032 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:46:38.033 +03:00 [INF] Request finished in 2.4449ms 200 application/javascript +2018-08-02 13:46:38.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:46:38.047 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:46:38.047 +03:00 [INF] Request finished in 4.5599ms 200 application/javascript +2018-08-02 13:46:38.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:46:38.054 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:46:38.054 +03:00 [INF] Request finished in 1.4415ms 200 application/javascript +2018-08-02 13:46:38.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:46:38.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:46:38.066 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:46:38.066 +03:00 [INF] Request finished in 1.177ms 200 application/javascript +2018-08-02 13:46:38.066 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:46:38.066 +03:00 [INF] Request finished in 0.9734ms 200 application/javascript +2018-08-02 13:46:38.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:46:38.076 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:46:38.076 +03:00 [INF] Request finished in 1.0586ms 200 application/javascript +2018-08-02 13:46:38.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:46:38.083 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:46:38.083 +03:00 [INF] Request finished in 1.1184ms 200 application/javascript +2018-08-02 13:46:38.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:46:38.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:46:38.096 +03:00 [INF] Request finished in 1.6154ms 200 application/javascript +2018-08-02 13:46:38.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:46:38.104 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:46:38.104 +03:00 [INF] Request finished in 2.7839ms 200 application/javascript +2018-08-02 13:46:38.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:46:38.109 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:46:38.110 +03:00 [INF] Request finished in 1.2742ms 200 application/javascript +2018-08-02 13:46:38.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:46:38.145 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:46:38.147 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:46:38.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:46:38.148 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.9938ms. +2018-08-02 13:46:38.148 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:46:38.149 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.4160000000000004ms +2018-08-02 13:46:38.149 +03:00 [INF] Request finished in 13.2057ms 200 text/plain; charset=utf-8 +2018-08-02 13:46:38.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:46:38.153 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:46:38.154 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:46:38.155 +03:00 [INF] Request finished in 1.3282ms 200 application/javascript +2018-08-02 13:46:38.155 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:46:38.155 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12040000000000001ms. +2018-08-02 13:46:38.155 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:46:38.155 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6963000000000001ms +2018-08-02 13:46:38.155 +03:00 [INF] Request finished in 7.8463ms 200 text/plain; charset=utf-8 +2018-08-02 13:46:38.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:46:38.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:46:38.218 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:46:38.218 +03:00 [INF] Request finished in 0.8134ms 200 image/svg+xml +2018-08-02 13:46:38.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:46:38.234 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:46:38.234 +03:00 [INF] Request finished in 0.9605ms 200 image/png +2018-08-02 13:46:38.237 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:46:38.238 +03:00 [INF] Request finished in 22.5426ms 200 application/javascript +2018-08-02 13:46:38.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:46:38.247 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:46:38.247 +03:00 [INF] Request finished in 4.6714ms 200 image/png +2018-08-02 13:46:38.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:46:38.257 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:46:38.257 +03:00 [INF] Request finished in 3.8584ms 200 image/png +2018-08-02 13:46:38.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:46:38.262 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:46:38.262 +03:00 [INF] Request finished in 1.6936ms 200 image/png +2018-08-02 13:46:38.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:46:38.268 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:46:38.268 +03:00 [INF] Request finished in 1.006ms 200 image/png +2018-08-02 13:46:38.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:46:38.286 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:46:38.286 +03:00 [INF] Request finished in 6.4338ms 200 image/png +2018-08-02 13:46:38.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:46:38.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:46:38.289 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:46:38.289 +03:00 [INF] Request finished in 2.1593ms 200 image/png +2018-08-02 13:46:38.289 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:46:38.289 +03:00 [INF] Request finished in 1.0281ms 200 image/png +2018-08-02 13:46:38.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:46:38.291 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:46:38.291 +03:00 [INF] Request finished in 0.9068ms 200 image/png +2018-08-02 13:46:38.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:46:38.293 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:46:38.294 +03:00 [INF] Request finished in 2.4879ms 200 image/png +2018-08-02 13:46:38.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:46:38.296 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:46:38.296 +03:00 [INF] Request finished in 1.8763ms 200 image/png +2018-08-02 13:46:38.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:46:38.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:46:38.298 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:46:38.298 +03:00 [INF] Request finished in 0.8525ms 200 image/png +2018-08-02 13:46:38.298 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:46:38.298 +03:00 [INF] Request finished in 0.7136ms 200 image/png +2018-08-02 13:46:38.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:46:38.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:46:38.309 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:46:38.310 +03:00 [INF] Request finished in 0.7584ms 200 image/png +2018-08-02 13:46:38.310 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:46:38.310 +03:00 [INF] Request finished in 0.6873ms 200 image/png +2018-08-02 13:46:38.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:46:38.314 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:46:38.314 +03:00 [INF] Request finished in 1.6939ms 200 image/png +2018-08-02 13:46:38.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:46:38.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:46:38.316 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:46:38.316 +03:00 [INF] Request finished in 1.8491ms 200 image/png +2018-08-02 13:46:38.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:46:38.317 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:46:38.317 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:46:38.317 +03:00 [INF] Request finished in 3.5663ms 200 image/png +2018-08-02 13:46:38.317 +03:00 [INF] Request finished in 1.3293ms 200 image/png +2018-08-02 13:46:38.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:46:38.320 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:46:38.320 +03:00 [INF] Request finished in 1.7376ms 200 image/png +2018-08-02 13:46:38.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:46:38.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:46:38.323 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:46:38.324 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:46:38.324 +03:00 [INF] Request finished in 1.4713ms 200 image/png +2018-08-02 13:46:38.324 +03:00 [INF] Request finished in 1.2802ms 200 image/png +2018-08-02 13:46:38.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:46:38.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:46:38.329 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:46:38.329 +03:00 [INF] Request finished in 1.0434ms 200 image/svg+xml +2018-08-02 13:46:38.330 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:46:38.330 +03:00 [INF] Request finished in 1.8581ms 200 image/png +2018-08-02 13:46:38.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:46:38.367 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:46:38.367 +03:00 [INF] Request finished in 0.8371ms 200 image/png +2018-08-02 13:46:38.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:46:38.384 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:46:38.384 +03:00 [INF] Request finished in 0.9196ms 200 image/png +2018-08-02 13:46:38.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:46:38.391 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:46:38.391 +03:00 [INF] Request finished in 0.9779ms 200 image/png +2018-08-02 13:46:38.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:46:38.392 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:46:38.392 +03:00 [INF] Request finished in 0.87ms 200 image/png +2018-08-02 13:46:38.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:46:38.398 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:46:38.398 +03:00 [INF] Request finished in 0.8418ms 200 image/png +2018-08-02 13:46:38.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:46:38.403 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:46:38.403 +03:00 [INF] Request finished in 0.9456ms 200 image/png +2018-08-02 13:46:38.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:46:38.417 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:46:38.417 +03:00 [INF] Request finished in 0.9414ms 200 image/png +2018-08-02 13:46:38.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:46:38.423 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:46:38.423 +03:00 [INF] Request finished in 1.5025ms 200 image/png +2018-08-02 13:46:38.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:46:38.436 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:46:38.436 +03:00 [INF] Request finished in 0.7874ms 200 image/png +2018-08-02 13:46:38.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:46:38.447 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:46:38.447 +03:00 [INF] Request finished in 1.5942ms 200 image/png +2018-08-02 13:46:38.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:46:38.452 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:46:38.452 +03:00 [INF] Request finished in 0.8639ms 200 image/png +2018-08-02 13:46:38.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:46:38.458 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:46:38.458 +03:00 [INF] Request finished in 1.1099ms 200 image/png +2018-08-02 13:46:38.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:46:38.460 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:46:38.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:46:38.461 +03:00 [INF] Request finished in 1.4908ms 200 image/png +2018-08-02 13:46:38.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:46:38.462 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:46:38.462 +03:00 [INF] Request finished in 1.251ms 200 image/png +2018-08-02 13:46:38.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:46:38.465 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:46:38.465 +03:00 [INF] Request finished in 1.8171ms 200 font/woff2 +2018-08-02 13:46:38.471 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:46:38.471 +03:00 [INF] Request finished in 10.008ms 200 image/jpeg +2018-08-02 13:46:39.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:46:39.194 +03:00 [INF] Request finished in 0.7916ms 404 +2018-08-02 13:55:29.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:55:29.757 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:55:29.757 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:55:29.773 +03:00 [INF] Executed action /Index in 15.348600000000001ms +2018-08-02 13:55:29.773 +03:00 [INF] Request finished in 310.5741ms 200 text/html; charset=utf-8 +2018-08-02 13:55:29.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:55:29.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:55:29.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:55:29.824 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:55:29.824 +03:00 [INF] Request finished in 1.9675ms 200 text/css +2018-08-02 13:55:29.824 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:55:29.825 +03:00 [INF] Request finished in 1.4342ms 200 text/css +2018-08-02 13:55:29.825 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:55:29.826 +03:00 [INF] Request finished in 6.4441ms 200 text/css +2018-08-02 13:55:29.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:55:29.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:55:29.832 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:55:29.832 +03:00 [INF] Request finished in 1.6593ms 200 text/css +2018-08-02 13:55:29.833 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:55:29.833 +03:00 [INF] Request finished in 1.0339ms 200 text/css +2018-08-02 13:55:29.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:55:29.844 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:55:29.845 +03:00 [INF] Request finished in 2.0307ms 200 text/css +2018-08-02 13:55:29.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:55:29.856 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:55:29.857 +03:00 [INF] Request finished in 2.3527ms 200 text/css +2018-08-02 13:55:29.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:55:29.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:55:29.863 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:55:29.863 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:55:29.863 +03:00 [INF] Request finished in 1.1437ms 200 application/javascript +2018-08-02 13:55:29.863 +03:00 [INF] Request finished in 1.124ms 200 text/css +2018-08-02 13:55:29.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:55:29.877 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:55:29.877 +03:00 [INF] Request finished in 8.2576ms 200 application/javascript +2018-08-02 13:55:29.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:55:29.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:55:29.881 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:55:29.881 +03:00 [INF] Request finished in 0.8966ms 200 application/javascript +2018-08-02 13:55:29.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:55:29.883 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:55:29.883 +03:00 [INF] Request finished in 1.3727ms 200 application/javascript +2018-08-02 13:55:29.884 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:55:29.884 +03:00 [INF] Request finished in 6.392ms 200 application/javascript +2018-08-02 13:55:29.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:55:29.904 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:55:29.905 +03:00 [INF] Request finished in 0.9433ms 200 application/javascript +2018-08-02 13:55:29.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:55:29.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:55:29.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:55:29.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:55:29.966 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:55:29.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:55:29.966 +03:00 [INF] Request finished in 2.1171ms 200 application/javascript +2018-08-02 13:55:29.967 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:55:29.967 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:55:29.967 +03:00 [INF] Request finished in 0.6934ms 200 application/javascript +2018-08-02 13:55:29.967 +03:00 [INF] Request finished in 1.3643ms 200 application/javascript +2018-08-02 13:55:29.972 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:55:29.972 +03:00 [INF] Request finished in 7.3933ms 200 application/javascript +2018-08-02 13:55:29.979 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:55:29.979 +03:00 [INF] Request finished in 13.7195ms 200 application/javascript +2018-08-02 13:55:29.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:55:29.995 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:55:29.996 +03:00 [INF] Request finished in 3.0472ms 200 application/javascript +2018-08-02 13:55:29.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:55:29.998 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:55:29.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:55:29.998 +03:00 [INF] Request finished in 2.5367ms 200 application/javascript +2018-08-02 13:55:29.999 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:55:29.999 +03:00 [INF] Request finished in 1.0344ms 200 application/javascript +2018-08-02 13:55:30.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:55:30.009 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:55:30.009 +03:00 [INF] Request finished in 1.9442ms 200 application/javascript +2018-08-02 13:55:30.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:55:30.012 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:55:30.012 +03:00 [INF] Request finished in 2.1851ms 200 application/javascript +2018-08-02 13:55:30.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:55:30.019 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:55:30.020 +03:00 [INF] Request finished in 2.0051ms 200 application/javascript +2018-08-02 13:55:30.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:55:30.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:55:30.059 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:55:30.059 +03:00 [INF] Request finished in 3.5197ms 200 application/javascript +2018-08-02 13:55:30.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:55:30.061 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:55:30.061 +03:00 [INF] Request finished in 4.468ms 200 application/javascript +2018-08-02 13:55:30.061 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:55:30.066 +03:00 [INF] Request finished in 1.7269ms 200 application/javascript +2018-08-02 13:55:30.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:55:30.076 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:55:30.077 +03:00 [INF] Request finished in 3.0236ms 200 application/javascript +2018-08-02 13:55:30.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:55:30.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:55:30.089 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:55:30.090 +03:00 [INF] Request finished in 2.0967ms 200 application/javascript +2018-08-02 13:55:30.093 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:55:30.095 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:55:30.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:55:30.096 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.545ms. +2018-08-02 13:55:30.096 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:55:30.096 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.7488ms +2018-08-02 13:55:30.096 +03:00 [INF] Request finished in 15.1732ms 200 text/plain; charset=utf-8 +2018-08-02 13:55:30.098 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:55:30.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:55:30.099 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11270000000000001ms. +2018-08-02 13:55:30.100 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:55:30.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8027000000000002ms +2018-08-02 13:55:30.100 +03:00 [INF] Request finished in 4.5775ms 200 text/plain; charset=utf-8 +2018-08-02 13:55:30.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:55:30.102 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:55:30.102 +03:00 [INF] Request finished in 1.3355ms 200 application/javascript +2018-08-02 13:55:30.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:55:30.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:55:30.111 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:55:30.112 +03:00 [INF] Request finished in 2.7561ms 200 image/svg+xml +2018-08-02 13:55:30.112 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:55:30.112 +03:00 [INF] Request finished in 2.398ms 200 image/png +2018-08-02 13:55:30.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:55:30.114 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:55:30.114 +03:00 [INF] Request finished in 1.2076ms 200 image/png +2018-08-02 13:55:30.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:55:30.126 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:55:30.127 +03:00 [INF] Request finished in 2.1768ms 200 image/png +2018-08-02 13:55:30.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:55:30.132 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:55:30.132 +03:00 [INF] Request finished in 0.9328ms 200 image/png +2018-08-02 13:55:30.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:55:30.162 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:55:30.162 +03:00 [INF] Request finished in 3.1029ms 200 image/png +2018-08-02 13:55:30.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:55:30.164 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:55:30.165 +03:00 [INF] Request finished in 1.865ms 200 image/png +2018-08-02 13:55:30.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:55:30.169 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:55:30.170 +03:00 [INF] Request finished in 1.3393ms 200 image/png +2018-08-02 13:55:30.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:55:30.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:55:30.174 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:55:30.174 +03:00 [INF] Request finished in 1.493ms 200 image/png +2018-08-02 13:55:30.174 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:55:30.174 +03:00 [INF] Request finished in 1.1441ms 200 image/png +2018-08-02 13:55:30.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:55:30.177 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:55:30.177 +03:00 [INF] Request finished in 0.7526ms 200 image/png +2018-08-02 13:55:30.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:55:30.185 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:55:30.186 +03:00 [INF] Request finished in 2.3638ms 200 image/png +2018-08-02 13:55:30.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:55:30.187 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:55:30.187 +03:00 [INF] Request finished in 0.9142ms 200 image/png +2018-08-02 13:55:30.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:55:30.194 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:55:30.194 +03:00 [INF] Request finished in 0.9129ms 200 image/png +2018-08-02 13:55:30.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:55:30.202 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:55:30.202 +03:00 [INF] Request finished in 0.9945ms 200 image/png +2018-08-02 13:55:30.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:55:30.207 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:55:30.207 +03:00 [INF] Request finished in 1.8633ms 200 image/png +2018-08-02 13:55:30.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:55:30.218 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:55:30.219 +03:00 [INF] Request finished in 0.9737ms 200 image/png +2018-08-02 13:55:30.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:55:30.237 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:55:30.237 +03:00 [INF] Request finished in 1.0393ms 200 image/svg+xml +2018-08-02 13:55:30.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:55:30.252 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:55:30.252 +03:00 [INF] Request finished in 0.9413ms 200 image/png +2018-08-02 13:55:30.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:55:30.270 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:55:30.270 +03:00 [INF] Request finished in 0.8705ms 200 image/png +2018-08-02 13:55:30.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:55:30.275 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:55:30.275 +03:00 [INF] Request finished in 1.1417ms 200 image/png +2018-08-02 13:55:30.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:55:30.283 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:55:30.283 +03:00 [INF] Request finished in 0.8601ms 200 image/png +2018-08-02 13:55:30.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:55:30.293 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:55:30.293 +03:00 [INF] Request finished in 1.3232ms 200 image/png +2018-08-02 13:55:30.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:55:30.307 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:55:30.307 +03:00 [INF] Request finished in 1.1597ms 200 image/png +2018-08-02 13:55:30.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:55:30.322 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:55:30.322 +03:00 [INF] Request finished in 0.8272ms 200 image/png +2018-08-02 13:55:30.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:55:30.326 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:55:30.327 +03:00 [INF] Request finished in 1.512ms 200 image/png +2018-08-02 13:55:30.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:55:30.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:55:30.338 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:55:30.338 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:55:30.338 +03:00 [INF] Request finished in 0.8193ms 200 image/png +2018-08-02 13:55:30.338 +03:00 [INF] Request finished in 0.8569ms 200 image/png +2018-08-02 13:55:30.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:55:30.339 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:55:30.340 +03:00 [INF] Request finished in 0.8606ms 200 image/png +2018-08-02 13:55:30.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:55:30.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:55:30.358 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:55:30.358 +03:00 [INF] Request finished in 1.2926ms 200 image/png +2018-08-02 13:55:30.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:55:30.360 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:55:30.360 +03:00 [INF] Request finished in 2.5423ms 200 image/png +2018-08-02 13:55:30.361 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:55:30.361 +03:00 [INF] Request finished in 2.6606ms 200 image/png +2018-08-02 13:55:30.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:55:30.367 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:55:30.367 +03:00 [INF] Request finished in 1.5145ms 200 image/png +2018-08-02 13:55:30.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:55:30.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:55:30.369 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:55:30.369 +03:00 [INF] Request finished in 1.2893ms 200 image/png +2018-08-02 13:55:30.373 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:55:30.373 +03:00 [INF] Request finished in 4.839ms 200 image/png +2018-08-02 13:55:30.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:55:30.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:55:30.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:55:30.381 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:55:30.381 +03:00 [INF] Request finished in 0.6234ms 200 image/png +2018-08-02 13:55:30.381 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:55:30.381 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:55:30.381 +03:00 [INF] Request finished in 1.1525ms 200 image/png +2018-08-02 13:55:30.382 +03:00 [INF] Request finished in 0.8767ms 200 image/png +2018-08-02 13:55:30.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:55:30.384 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:55:30.384 +03:00 [INF] Request finished in 1.5268ms 200 image/png +2018-08-02 13:55:30.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:55:30.434 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:55:30.434 +03:00 [INF] Request finished in 4.0304ms 200 image/jpeg +2018-08-02 13:55:30.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:55:30.439 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:55:30.439 +03:00 [INF] Request finished in 2.2257ms 200 font/woff2 +2018-08-02 13:55:31.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:55:31.356 +03:00 [INF] Request finished in 0.804ms 404 +2018-08-02 13:56:01.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:56:02.088 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:56:02.089 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:56:02.102 +03:00 [INF] Executed action /Index in 13.843900000000001ms +2018-08-02 13:56:02.103 +03:00 [INF] Request finished in 329.6401ms 200 text/html; charset=utf-8 +2018-08-02 13:56:02.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:56:02.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:56:02.140 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:56:02.140 +03:00 [INF] Request finished in 4.513ms 200 text/css +2018-08-02 13:56:02.141 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:56:02.141 +03:00 [INF] Request finished in 1.1349ms 200 text/css +2018-08-02 13:56:02.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:56:02.147 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:56:02.147 +03:00 [INF] Request finished in 1.4685ms 200 text/css +2018-08-02 13:56:02.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:56:02.152 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:56:02.152 +03:00 [INF] Request finished in 1.3935ms 200 text/css +2018-08-02 13:56:02.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:56:02.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:56:02.163 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:56:02.163 +03:00 [INF] Request finished in 2.4385ms 200 text/css +2018-08-02 13:56:02.164 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:56:02.165 +03:00 [INF] Request finished in 2.98ms 200 text/css +2018-08-02 13:56:02.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:56:02.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:56:02.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:56:02.172 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:56:02.172 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:56:02.172 +03:00 [INF] Request finished in 0.776ms 200 text/css +2018-08-02 13:56:02.172 +03:00 [INF] Request finished in 0.8082ms 200 text/css +2018-08-02 13:56:02.174 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:56:02.175 +03:00 [INF] Request finished in 2.343ms 200 application/javascript +2018-08-02 13:56:02.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:56:02.176 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:56:02.176 +03:00 [INF] Request finished in 1.148ms 200 application/javascript +2018-08-02 13:56:02.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:56:02.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:56:02.188 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:56:02.188 +03:00 [INF] Request finished in 9.1729ms 200 application/javascript +2018-08-02 13:56:02.191 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:56:02.193 +03:00 [INF] Request finished in 7.1303ms 200 application/javascript +2018-08-02 13:56:02.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:56:02.197 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:56:02.197 +03:00 [INF] Request finished in 2.1562ms 200 application/javascript +2018-08-02 13:56:02.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:56:02.201 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:56:02.201 +03:00 [INF] Request finished in 3.0514ms 200 application/javascript +2018-08-02 13:56:02.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:56:02.254 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:56:02.255 +03:00 [INF] Request finished in 2.1955ms 200 application/javascript +2018-08-02 13:56:02.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:56:02.264 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:56:02.264 +03:00 [INF] Request finished in 1.4383ms 200 application/javascript +2018-08-02 13:56:02.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:56:02.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:56:02.269 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:56:02.269 +03:00 [INF] Request finished in 3.0993ms 200 application/javascript +2018-08-02 13:56:02.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:56:02.280 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:56:02.280 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:56:02.280 +03:00 [INF] Request finished in 11.4331ms 200 application/javascript +2018-08-02 13:56:02.280 +03:00 [INF] Request finished in 1.0685ms 200 application/javascript +2018-08-02 13:56:02.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:56:02.283 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:56:02.283 +03:00 [INF] Request finished in 1.3572ms 200 application/javascript +2018-08-02 13:56:02.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:56:02.284 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:56:02.284 +03:00 [INF] Request finished in 1.0685ms 200 application/javascript +2018-08-02 13:56:02.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:56:02.289 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:56:02.289 +03:00 [INF] Request finished in 1.2995ms 200 application/javascript +2018-08-02 13:56:02.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:56:02.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:56:02.298 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:56:02.298 +03:00 [INF] Request finished in 1.8344ms 200 application/javascript +2018-08-02 13:56:02.300 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:56:02.300 +03:00 [INF] Request finished in 4.2529ms 200 application/javascript +2018-08-02 13:56:02.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:56:02.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:56:02.306 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:56:02.306 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:56:02.306 +03:00 [INF] Request finished in 1.3168ms 200 application/javascript +2018-08-02 13:56:02.306 +03:00 [INF] Request finished in 1.2661ms 200 application/javascript +2018-08-02 13:56:02.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:56:02.312 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:56:02.312 +03:00 [INF] Request finished in 1.4156ms 200 application/javascript +2018-08-02 13:56:02.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:56:02.316 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:56:02.317 +03:00 [INF] Request finished in 4.4707ms 200 application/javascript +2018-08-02 13:56:02.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:56:02.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:56:02.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:56:02.319 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:56:02.319 +03:00 [INF] Request finished in 2.1432ms 200 application/javascript +2018-08-02 13:56:02.325 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:56:02.326 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:56:02.327 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:56:02.327 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1469ms. +2018-08-02 13:56:02.328 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:56:02.328 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.0338000000000003ms +2018-08-02 13:56:02.329 +03:00 [INF] Request finished in 9.466ms 200 text/plain; charset=utf-8 +2018-08-02 13:56:02.329 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:56:02.329 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3613ms. +2018-08-02 13:56:02.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:56:02.330 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:56:02.330 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.581ms +2018-08-02 13:56:02.330 +03:00 [INF] Request finished in 11.5185ms 200 text/plain; charset=utf-8 +2018-08-02 13:56:02.331 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:56:02.332 +03:00 [INF] Request finished in 1.9358ms 200 application/javascript +2018-08-02 13:56:02.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:56:02.334 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:56:02.335 +03:00 [INF] Request finished in 1.345ms 200 application/javascript +2018-08-02 13:56:02.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:56:02.353 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:56:02.353 +03:00 [INF] Request finished in 1.0024ms 200 image/svg+xml +2018-08-02 13:56:02.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:56:02.363 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:56:02.363 +03:00 [INF] Request finished in 1.3245ms 200 image/png +2018-08-02 13:56:02.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:56:02.382 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:56:02.382 +03:00 [INF] Request finished in 0.9802ms 200 image/png +2018-08-02 13:56:02.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:56:02.391 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:56:02.391 +03:00 [INF] Request finished in 1.7843ms 200 image/png +2018-08-02 13:56:02.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:56:02.405 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:56:02.405 +03:00 [INF] Request finished in 0.9016ms 200 image/png +2018-08-02 13:56:02.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:56:02.411 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:56:02.411 +03:00 [INF] Request finished in 1.179ms 200 image/png +2018-08-02 13:56:02.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:56:02.426 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:56:02.426 +03:00 [INF] Request finished in 1.2578ms 200 image/png +2018-08-02 13:56:02.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:56:02.428 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:56:02.428 +03:00 [INF] Request finished in 1.2122ms 200 image/png +2018-08-02 13:56:02.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:56:02.439 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:56:02.439 +03:00 [INF] Request finished in 1.4416ms 200 image/png +2018-08-02 13:56:02.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:56:02.442 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:56:02.442 +03:00 [INF] Request finished in 2.0422ms 200 image/png +2018-08-02 13:56:02.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:56:02.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:56:02.458 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:56:02.458 +03:00 [INF] Request finished in 1.9915ms 200 image/png +2018-08-02 13:56:02.458 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:56:02.458 +03:00 [INF] Request finished in 2.2783ms 200 image/png +2018-08-02 13:56:02.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:56:02.462 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:56:02.462 +03:00 [INF] Request finished in 0.8228ms 200 image/png +2018-08-02 13:56:02.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:56:02.466 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:56:02.467 +03:00 [INF] Request finished in 1.5773ms 200 image/png +2018-08-02 13:56:02.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:56:02.468 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:56:02.469 +03:00 [INF] Request finished in 1.4418ms 200 image/png +2018-08-02 13:56:02.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:56:02.474 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:56:02.474 +03:00 [INF] Request finished in 0.9901ms 200 image/png +2018-08-02 13:56:02.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:56:02.480 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:56:02.480 +03:00 [INF] Request finished in 1.0539ms 200 image/png +2018-08-02 13:56:02.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:56:02.503 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:56:02.503 +03:00 [INF] Request finished in 1.7723ms 200 image/svg+xml +2018-08-02 13:56:02.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:56:02.515 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:56:02.515 +03:00 [INF] Request finished in 1.9576ms 200 image/png +2018-08-02 13:56:02.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:56:02.516 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:56:02.516 +03:00 [INF] Request finished in 0.7958ms 200 image/png +2018-08-02 13:56:02.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:56:02.520 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:56:02.520 +03:00 [INF] Request finished in 1.2613ms 200 image/png +2018-08-02 13:56:02.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:56:02.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:56:02.523 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:56:02.523 +03:00 [INF] Request finished in 1.8818ms 200 image/png +2018-08-02 13:56:02.523 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:56:02.523 +03:00 [INF] Request finished in 1.2611ms 200 image/png +2018-08-02 13:56:02.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:56:02.533 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:56:02.533 +03:00 [INF] Request finished in 2.7528ms 200 image/png +2018-08-02 13:56:02.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:56:02.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:56:02.539 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:56:02.539 +03:00 [INF] Request finished in 1.4254ms 200 image/png +2018-08-02 13:56:02.539 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:56:02.540 +03:00 [INF] Request finished in 1.7772ms 200 image/png +2018-08-02 13:56:02.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:56:02.543 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:56:02.543 +03:00 [INF] Request finished in 1.8216ms 200 image/png +2018-08-02 13:56:02.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:56:02.545 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:56:02.546 +03:00 [INF] Request finished in 0.8587ms 200 image/png +2018-08-02 13:56:02.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:56:02.548 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:56:02.548 +03:00 [INF] Request finished in 0.8781ms 200 image/png +2018-08-02 13:56:02.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:56:02.551 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:56:02.551 +03:00 [INF] Request finished in 1.1548ms 200 image/png +2018-08-02 13:56:02.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:56:02.559 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:56:02.559 +03:00 [INF] Request finished in 3.8463ms 200 image/png +2018-08-02 13:56:02.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:56:02.561 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:56:02.561 +03:00 [INF] Request finished in 1.1702ms 200 image/png +2018-08-02 13:56:02.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:56:02.568 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:56:02.568 +03:00 [INF] Request finished in 3.2082ms 200 image/png +2018-08-02 13:56:02.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:56:02.570 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:56:02.570 +03:00 [INF] Request finished in 1.9882ms 200 image/png +2018-08-02 13:56:02.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:56:02.578 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:56:02.578 +03:00 [INF] Request finished in 2.7956ms 200 image/png +2018-08-02 13:56:02.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:56:02.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:56:02.585 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:56:02.586 +03:00 [INF] Request finished in 2.1418ms 200 image/png +2018-08-02 13:56:02.586 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:56:02.586 +03:00 [INF] Request finished in 1.4214ms 200 image/png +2018-08-02 13:56:02.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:56:02.592 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:56:02.593 +03:00 [INF] Request finished in 2.3099ms 200 image/png +2018-08-02 13:56:02.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:56:02.597 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:56:02.597 +03:00 [INF] Request finished in 0.8445ms 200 image/png +2018-08-02 13:56:02.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:56:02.676 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:56:02.676 +03:00 [INF] Request finished in 5.53ms 200 image/jpeg +2018-08-02 13:56:02.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:56:02.689 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:56:02.690 +03:00 [INF] Request finished in 2.8884ms 200 font/woff2 +2018-08-02 13:56:03.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:56:03.566 +03:00 [INF] Request finished in 1.2808ms 404 +2018-08-02 13:56:20.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:56:20.967 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:56:20.967 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:56:20.980 +03:00 [INF] Executed action /Index in 13.0763ms +2018-08-02 13:56:20.980 +03:00 [INF] Request finished in 354.7297ms 200 text/html; charset=utf-8 +2018-08-02 13:56:21.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:56:21.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:56:21.025 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:56:21.025 +03:00 [INF] Request finished in 4.5018ms 200 text/css +2018-08-02 13:56:21.025 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:56:21.026 +03:00 [INF] Request finished in 1.0116ms 200 text/css +2018-08-02 13:56:21.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:56:21.029 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:56:21.030 +03:00 [INF] Request finished in 1.3985ms 200 text/css +2018-08-02 13:56:21.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:56:21.038 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:56:21.038 +03:00 [INF] Request finished in 1.0664ms 200 text/css +2018-08-02 13:56:21.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:56:21.046 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:56:21.046 +03:00 [INF] Request finished in 1.5321ms 200 text/css +2018-08-02 13:56:21.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:56:21.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:56:21.053 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:56:21.053 +03:00 [INF] Request finished in 0.8367ms 200 text/css +2018-08-02 13:56:21.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:56:21.054 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:56:21.054 +03:00 [INF] Request finished in 1.8851ms 200 text/css +2018-08-02 13:56:21.054 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:56:21.054 +03:00 [INF] Request finished in 1.2144ms 200 text/css +2018-08-02 13:56:21.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:56:21.058 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:56:21.058 +03:00 [INF] Request finished in 0.9552ms 200 application/javascript +2018-08-02 13:56:21.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:56:21.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:56:21.074 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:56:21.074 +03:00 [INF] Request finished in 3.021ms 200 application/javascript +2018-08-02 13:56:21.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:56:21.077 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:56:21.077 +03:00 [INF] Request finished in 1.4339ms 200 application/javascript +2018-08-02 13:56:21.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:56:21.080 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:56:21.080 +03:00 [INF] Request finished in 9.666ms 200 application/javascript +2018-08-02 13:56:21.081 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:56:21.082 +03:00 [INF] Request finished in 3.5995ms 200 application/javascript +2018-08-02 13:56:21.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:56:21.091 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:56:21.091 +03:00 [INF] Request finished in 1.7524ms 200 application/javascript +2018-08-02 13:56:21.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:56:21.099 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:56:21.099 +03:00 [INF] Request finished in 1.794ms 200 application/javascript +2018-08-02 13:56:21.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:56:21.106 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:56:21.107 +03:00 [INF] Request finished in 1.0493ms 200 application/javascript +2018-08-02 13:56:21.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:56:21.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:56:21.134 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:56:21.134 +03:00 [INF] Request finished in 4.1008ms 200 application/javascript +2018-08-02 13:56:21.138 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:56:21.138 +03:00 [INF] Request finished in 8.016ms 200 application/javascript +2018-08-02 13:56:21.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:56:21.145 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:56:21.145 +03:00 [INF] Request finished in 1.3963ms 200 application/javascript +2018-08-02 13:56:21.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:56:21.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:56:21.153 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:56:21.154 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:56:21.154 +03:00 [INF] Request finished in 0.8835ms 200 application/javascript +2018-08-02 13:56:21.154 +03:00 [INF] Request finished in 0.9238ms 200 application/javascript +2018-08-02 13:56:21.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:56:21.164 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:56:21.164 +03:00 [INF] Request finished in 1.0707ms 200 application/javascript +2018-08-02 13:56:21.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:56:21.170 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:56:21.171 +03:00 [INF] Request finished in 1.4492ms 200 application/javascript +2018-08-02 13:56:21.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:56:21.176 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:56:21.176 +03:00 [INF] Request finished in 3.6415ms 200 application/javascript +2018-08-02 13:56:21.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:56:21.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:56:21.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:56:21.188 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:56:21.188 +03:00 [INF] Request finished in 1.0371ms 200 application/javascript +2018-08-02 13:56:21.188 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:56:21.188 +03:00 [INF] Request finished in 1.3884ms 200 application/javascript +2018-08-02 13:56:21.189 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:56:21.189 +03:00 [INF] Request finished in 1.3054ms 200 application/javascript +2018-08-02 13:56:21.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:56:21.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:56:21.195 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:56:21.196 +03:00 [INF] Request finished in 1.5617ms 200 application/javascript +2018-08-02 13:56:21.197 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:56:21.197 +03:00 [INF] Request finished in 3.2649ms 200 application/javascript +2018-08-02 13:56:21.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:56:21.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:56:21.208 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:56:21.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:56:21.211 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:56:21.211 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:56:21.211 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1414ms. +2018-08-02 13:56:21.212 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:56:21.212 +03:00 [INF] Request finished in 3.6576ms 200 application/javascript +2018-08-02 13:56:21.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:56:21.213 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.1523ms +2018-08-02 13:56:21.213 +03:00 [INF] Request finished in 8.1456ms 200 text/plain; charset=utf-8 +2018-08-02 13:56:21.213 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:56:21.213 +03:00 [INF] Request finished in 0.7797ms 200 application/javascript +2018-08-02 13:56:21.217 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:56:21.220 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:56:21.221 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.98510000000000009ms. +2018-08-02 13:56:21.222 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:56:21.222 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.4131ms +2018-08-02 13:56:21.222 +03:00 [INF] Request finished in 16.3469ms 200 text/plain; charset=utf-8 +2018-08-02 13:56:21.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:56:21.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:56:21.228 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:56:21.228 +03:00 [INF] Request finished in 1.8566ms 200 image/png +2018-08-02 13:56:21.229 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:56:21.229 +03:00 [INF] Request finished in 1.6578ms 200 image/svg+xml +2018-08-02 13:56:21.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:56:21.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:56:21.237 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:56:21.237 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:56:21.237 +03:00 [INF] Request finished in 0.8137ms 200 image/png +2018-08-02 13:56:21.237 +03:00 [INF] Request finished in 0.8493ms 200 image/png +2018-08-02 13:56:21.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:56:21.238 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:56:21.239 +03:00 [INF] Request finished in 1.373ms 200 image/png +2018-08-02 13:56:21.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:56:21.246 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:56:21.247 +03:00 [INF] Request finished in 1.4417ms 200 image/png +2018-08-02 13:56:21.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:56:21.256 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:56:21.256 +03:00 [INF] Request finished in 1.7564ms 200 image/png +2018-08-02 13:56:21.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:56:21.260 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:56:21.260 +03:00 [INF] Request finished in 1.4059ms 200 image/png +2018-08-02 13:56:21.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:56:21.269 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:56:21.269 +03:00 [INF] Request finished in 1.2713ms 200 image/png +2018-08-02 13:56:21.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:56:21.284 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:56:21.284 +03:00 [INF] Request finished in 1.4023ms 200 image/png +2018-08-02 13:56:21.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:56:21.304 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:56:21.304 +03:00 [INF] Request finished in 1.0267ms 200 image/png +2018-08-02 13:56:21.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:56:21.315 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:56:21.315 +03:00 [INF] Request finished in 0.8653ms 200 image/png +2018-08-02 13:56:21.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:56:21.334 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:56:21.334 +03:00 [INF] Request finished in 0.9043ms 200 image/png +2018-08-02 13:56:21.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:56:21.345 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:56:21.346 +03:00 [INF] Request finished in 0.8519ms 200 image/png +2018-08-02 13:56:21.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:56:21.352 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:56:21.352 +03:00 [INF] Request finished in 0.9211ms 200 image/png +2018-08-02 13:56:21.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:56:21.358 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:56:21.358 +03:00 [INF] Request finished in 0.9493ms 200 image/png +2018-08-02 13:56:21.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:56:21.375 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:56:21.376 +03:00 [INF] Request finished in 1.2589ms 200 image/png +2018-08-02 13:56:21.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:56:21.386 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:56:21.386 +03:00 [INF] Request finished in 1.0547ms 200 image/svg+xml +2018-08-02 13:56:21.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:56:21.392 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:56:21.393 +03:00 [INF] Request finished in 1.4957ms 200 image/png +2018-08-02 13:56:21.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:56:21.398 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:56:21.398 +03:00 [INF] Request finished in 0.8568ms 200 image/png +2018-08-02 13:56:21.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:56:21.406 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:56:21.406 +03:00 [INF] Request finished in 1.7289ms 200 image/png +2018-08-02 13:56:21.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:56:21.415 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:56:21.415 +03:00 [INF] Request finished in 3.606ms 200 image/png +2018-08-02 13:56:21.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:56:21.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:56:21.419 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:56:21.419 +03:00 [INF] Request finished in 0.9508ms 200 image/png +2018-08-02 13:56:21.419 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:56:21.419 +03:00 [INF] Request finished in 1.2568ms 200 image/png +2018-08-02 13:56:21.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:56:21.423 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:56:21.423 +03:00 [INF] Request finished in 1.4033ms 200 image/png +2018-08-02 13:56:21.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:56:21.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:56:21.426 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:56:21.426 +03:00 [INF] Request finished in 1.0249ms 200 image/png +2018-08-02 13:56:21.425 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:56:21.428 +03:00 [INF] Request finished in 3.4666ms 200 image/png +2018-08-02 13:56:21.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:56:21.432 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:56:21.433 +03:00 [INF] Request finished in 1.4482ms 200 image/png +2018-08-02 13:56:21.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:56:21.436 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:56:21.436 +03:00 [INF] Request finished in 1.6672ms 200 image/png +2018-08-02 13:56:21.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:56:21.437 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:56:21.438 +03:00 [INF] Request finished in 1.5128ms 200 image/png +2018-08-02 13:56:21.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:56:21.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:56:21.440 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:56:21.440 +03:00 [INF] Request finished in 0.86ms 200 image/png +2018-08-02 13:56:21.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:56:21.441 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:56:21.441 +03:00 [INF] Request finished in 1.854ms 200 image/png +2018-08-02 13:56:21.442 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:56:21.442 +03:00 [INF] Request finished in 2.0937ms 200 image/png +2018-08-02 13:56:21.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:56:21.447 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:56:21.447 +03:00 [INF] Request finished in 1.3983ms 200 image/png +2018-08-02 13:56:21.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:56:21.448 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:56:21.448 +03:00 [INF] Request finished in 0.7076ms 200 image/png +2018-08-02 13:56:21.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:56:21.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:56:21.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:56:21.450 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:56:21.451 +03:00 [INF] Request finished in 0.8707ms 200 image/png +2018-08-02 13:56:21.451 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:56:21.451 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:56:21.451 +03:00 [INF] Request finished in 1.1263ms 200 image/png +2018-08-02 13:56:21.451 +03:00 [INF] Request finished in 0.9701ms 200 image/png +2018-08-02 13:56:21.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:56:21.453 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:56:21.453 +03:00 [INF] Request finished in 1.3308ms 200 image/png +2018-08-02 13:56:21.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:56:21.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:56:21.584 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:56:21.584 +03:00 [INF] Request finished in 9.7912ms 200 image/jpeg +2018-08-02 13:56:21.585 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:56:21.585 +03:00 [INF] Request finished in 2.6199ms 200 font/woff2 +2018-08-02 13:56:22.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:56:22.542 +03:00 [INF] Request finished in 0.7097ms 404 +2018-08-02 13:57:09.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:57:09.734 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:57:09.734 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:57:09.747 +03:00 [INF] Executed action /Index in 13.2612ms +2018-08-02 13:57:09.748 +03:00 [INF] Request finished in 277.234ms 200 text/html; charset=utf-8 +2018-08-02 13:57:09.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:57:09.813 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:57:09.813 +03:00 [INF] Request finished in 3.8955ms 200 text/css +2018-08-02 13:57:09.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:57:09.819 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:57:09.819 +03:00 [INF] Request finished in 1.0861ms 200 text/css +2018-08-02 13:57:09.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:57:09.823 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:57:09.823 +03:00 [INF] Request finished in 1.5956ms 200 text/css +2018-08-02 13:57:09.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:57:09.828 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:57:09.828 +03:00 [INF] Request finished in 1.2739ms 200 text/css +2018-08-02 13:57:09.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:57:09.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:57:09.839 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:57:09.840 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:57:09.840 +03:00 [INF] Request finished in 1.0634ms 200 text/css +2018-08-02 13:57:09.841 +03:00 [INF] Request finished in 1.8798ms 200 text/css +2018-08-02 13:57:09.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:57:09.844 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:57:09.844 +03:00 [INF] Request finished in 1.2968ms 200 text/css +2018-08-02 13:57:09.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:57:09.845 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:57:09.845 +03:00 [INF] Request finished in 0.6889ms 200 text/css +2018-08-02 13:57:09.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:57:09.876 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:57:09.876 +03:00 [INF] Request finished in 1.9523ms 200 application/javascript +2018-08-02 13:57:09.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:57:09.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:57:09.886 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:57:09.886 +03:00 [INF] Request finished in 0.7779ms 200 application/javascript +2018-08-02 13:57:09.895 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:57:09.895 +03:00 [INF] Request finished in 10.0654ms 200 application/javascript +2018-08-02 13:57:09.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:57:09.912 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:57:09.912 +03:00 [INF] Request finished in 6.3971ms 200 application/javascript +2018-08-02 13:57:09.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:57:09.918 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:57:09.918 +03:00 [INF] Request finished in 2.4084ms 200 application/javascript +2018-08-02 13:57:09.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:57:09.928 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:57:09.928 +03:00 [INF] Request finished in 3.502ms 200 application/javascript +2018-08-02 13:57:09.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:57:09.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:57:09.931 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:57:09.932 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:57:09.932 +03:00 [INF] Request finished in 1.2431ms 200 application/javascript +2018-08-02 13:57:09.931 +03:00 [INF] Request finished in 2.0463ms 200 application/javascript +2018-08-02 13:57:09.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:57:09.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:57:09.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:57:09.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:57:09.961 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:57:09.961 +03:00 [INF] Request finished in 1.2444ms 200 application/javascript +2018-08-02 13:57:09.963 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:57:09.963 +03:00 [INF] Request finished in 2.4017ms 200 application/javascript +2018-08-02 13:57:09.963 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:57:09.963 +03:00 [INF] Request finished in 3.3801ms 200 application/javascript +2018-08-02 13:57:09.970 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:57:09.971 +03:00 [INF] Request finished in 10.4825ms 200 application/javascript +2018-08-02 13:57:09.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:57:09.974 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:57:09.974 +03:00 [INF] Request finished in 1.7394ms 200 application/javascript +2018-08-02 13:57:09.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:57:09.980 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:57:09.980 +03:00 [INF] Request finished in 1.53ms 200 application/javascript +2018-08-02 13:57:09.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:57:09.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:57:09.988 +03:00 [INF] Request finished in 1.2604ms 200 application/javascript +2018-08-02 13:57:10.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:57:10.021 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:57:10.021 +03:00 [INF] Request finished in 1.2616ms 200 application/javascript +2018-08-02 13:57:10.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:57:10.026 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:57:10.027 +03:00 [INF] Request finished in 2.8595ms 200 application/javascript +2018-08-02 13:57:10.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:57:10.048 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:57:10.048 +03:00 [INF] Request finished in 1.3404ms 200 application/javascript +2018-08-02 13:57:10.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:57:10.056 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:57:10.056 +03:00 [INF] Request finished in 0.904ms 200 application/javascript +2018-08-02 13:57:10.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:57:10.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:57:10.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:57:10.081 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:57:10.081 +03:00 [INF] Request finished in 1.1784ms 200 application/javascript +2018-08-02 13:57:10.083 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:57:10.084 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:57:10.084 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1422ms. +2018-08-02 13:57:10.085 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:57:10.085 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7564000000000002ms +2018-08-02 13:57:10.085 +03:00 [INF] Request finished in 4.6785ms 200 text/plain; charset=utf-8 +2018-08-02 13:57:10.090 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:57:10.091 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:57:10.091 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.36360000000000003ms. +2018-08-02 13:57:10.091 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:57:10.092 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.8198ms +2018-08-02 13:57:10.092 +03:00 [INF] Request finished in 11.1911ms 200 text/plain; charset=utf-8 +2018-08-02 13:57:10.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:57:10.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:57:10.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:57:10.105 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:57:10.105 +03:00 [INF] Request finished in 2.2158ms 200 application/javascript +2018-08-02 13:57:10.105 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:57:10.105 +03:00 [INF] Request finished in 0.9741ms 200 image/svg+xml +2018-08-02 13:57:10.105 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:57:10.105 +03:00 [INF] Request finished in 1.0221ms 200 application/javascript +2018-08-02 13:57:10.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:57:10.106 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:57:10.106 +03:00 [INF] Request finished in 0.9335ms 200 application/javascript +2018-08-02 13:57:10.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:57:10.112 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:57:10.112 +03:00 [INF] Request finished in 1.521ms 200 image/png +2018-08-02 13:57:10.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:57:10.117 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:57:10.117 +03:00 [INF] Request finished in 0.7645ms 200 image/png +2018-08-02 13:57:10.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:57:10.120 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:57:10.120 +03:00 [INF] Request finished in 0.9116ms 200 image/png +2018-08-02 13:57:10.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:57:10.122 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:57:10.123 +03:00 [INF] Request finished in 1.1242ms 200 image/png +2018-08-02 13:57:10.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:57:10.128 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:57:10.128 +03:00 [INF] Request finished in 1.9871ms 200 image/png +2018-08-02 13:57:10.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:57:10.130 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:57:10.130 +03:00 [INF] Request finished in 1.1344ms 200 image/png +2018-08-02 13:57:10.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:57:10.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:57:10.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:57:10.141 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:57:10.142 +03:00 [INF] Request finished in 3.5839ms 200 image/png +2018-08-02 13:57:10.142 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:57:10.143 +03:00 [INF] Request finished in 2.0331ms 200 image/png +2018-08-02 13:57:10.143 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:57:10.143 +03:00 [INF] Request finished in 1.9117ms 200 image/png +2018-08-02 13:57:10.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:57:10.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:57:10.149 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:57:10.149 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:57:10.149 +03:00 [INF] Request finished in 0.9362ms 200 image/png +2018-08-02 13:57:10.149 +03:00 [INF] Request finished in 0.663ms 200 image/png +2018-08-02 13:57:10.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:57:10.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:57:10.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:57:10.160 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:57:10.160 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:57:10.161 +03:00 [INF] Request finished in 0.9496ms 200 image/svg+xml +2018-08-02 13:57:10.161 +03:00 [INF] Request finished in 1.0682ms 200 image/png +2018-08-02 13:57:10.161 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:57:10.161 +03:00 [INF] Request finished in 2.0329ms 200 image/png +2018-08-02 13:57:10.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:57:10.164 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:57:10.164 +03:00 [INF] Request finished in 0.861ms 200 image/png +2018-08-02 13:57:10.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:57:10.164 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:57:10.164 +03:00 [INF] Request finished in 0.6243ms 200 image/png +2018-08-02 13:57:10.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:57:10.167 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:57:10.167 +03:00 [INF] Request finished in 0.9838ms 200 image/png +2018-08-02 13:57:10.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:57:10.188 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:57:10.188 +03:00 [INF] Request finished in 1.3998ms 200 image/png +2018-08-02 13:57:10.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:57:10.199 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:57:10.199 +03:00 [INF] Request finished in 0.8971ms 200 image/png +2018-08-02 13:57:10.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:57:10.208 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:57:10.208 +03:00 [INF] Request finished in 1.6029ms 200 image/png +2018-08-02 13:57:10.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:57:10.212 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:57:10.212 +03:00 [INF] Request finished in 0.8297ms 200 image/png +2018-08-02 13:57:10.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:57:10.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:57:10.225 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:57:10.226 +03:00 [INF] Request finished in 1.5849ms 200 image/png +2018-08-02 13:57:10.227 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:57:10.228 +03:00 [INF] Request finished in 2.3113ms 200 image/png +2018-08-02 13:57:10.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:57:10.233 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:57:10.233 +03:00 [INF] Request finished in 0.9981ms 200 image/png +2018-08-02 13:57:10.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:57:10.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:57:10.240 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:57:10.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:57:10.240 +03:00 [INF] Request finished in 1.1857ms 200 image/png +2018-08-02 13:57:10.240 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:57:10.240 +03:00 [INF] Request finished in 1.4197ms 200 image/png +2018-08-02 13:57:10.241 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:57:10.241 +03:00 [INF] Request finished in 1.0253ms 200 image/png +2018-08-02 13:57:10.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:57:10.244 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:57:10.244 +03:00 [INF] Request finished in 1.6456ms 200 image/png +2018-08-02 13:57:10.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:57:10.249 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:57:10.249 +03:00 [INF] Request finished in 1.2412ms 200 image/png +2018-08-02 13:57:10.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:57:10.253 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:57:10.254 +03:00 [INF] Request finished in 2.1141ms 200 image/png +2018-08-02 13:57:10.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:57:10.259 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:57:10.259 +03:00 [INF] Request finished in 0.9364ms 200 image/png +2018-08-02 13:57:10.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:57:10.261 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:57:10.261 +03:00 [INF] Request finished in 1.4039ms 200 image/png +2018-08-02 13:57:10.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:57:10.265 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:57:10.265 +03:00 [INF] Request finished in 1.1141ms 200 image/png +2018-08-02 13:57:10.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:57:10.267 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:57:10.267 +03:00 [INF] Request finished in 1.4334ms 200 image/png +2018-08-02 13:57:10.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:57:10.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:57:10.273 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:57:10.274 +03:00 [INF] Request finished in 2.7072ms 200 image/png +2018-08-02 13:57:10.275 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:57:10.275 +03:00 [INF] Request finished in 2.5407ms 200 image/png +2018-08-02 13:57:10.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:57:10.278 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:57:10.278 +03:00 [INF] Request finished in 0.8863ms 200 image/png +2018-08-02 13:57:10.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:57:10.279 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:57:10.279 +03:00 [INF] Request finished in 0.768ms 200 image/png +2018-08-02 13:57:10.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:57:10.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:57:10.286 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:57:10.286 +03:00 [INF] Request finished in 2.9768ms 200 font/woff2 +2018-08-02 13:57:10.286 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:57:10.286 +03:00 [INF] Request finished in 7.4585ms 200 image/jpeg +2018-08-02 13:57:11.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:57:11.139 +03:00 [INF] Request finished in 0.6983ms 404 +2018-08-02 13:59:14.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 13:59:14.805 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 13:59:14.805 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 13:59:14.818 +03:00 [INF] Executed action /Index in 12.6338ms +2018-08-02 13:59:14.818 +03:00 [INF] Request finished in 302.6355ms 200 text/html; charset=utf-8 +2018-08-02 13:59:14.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 13:59:14.853 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 13:59:14.854 +03:00 [INF] Request finished in 3.1718ms 200 text/css +2018-08-02 13:59:14.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 13:59:14.861 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 13:59:14.861 +03:00 [INF] Request finished in 1.3814ms 200 text/css +2018-08-02 13:59:14.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 13:59:14.865 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 13:59:14.865 +03:00 [INF] Request finished in 1.7601ms 200 text/css +2018-08-02 13:59:14.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 13:59:14.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 13:59:14.869 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 13:59:14.869 +03:00 [INF] Request finished in 0.9175ms 200 text/css +2018-08-02 13:59:14.869 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 13:59:14.870 +03:00 [INF] Request finished in 1.6712ms 200 text/css +2018-08-02 13:59:14.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 13:59:14.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 13:59:14.877 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 13:59:14.877 +03:00 [INF] Request finished in 2.0742ms 200 text/css +2018-08-02 13:59:14.878 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 13:59:14.878 +03:00 [INF] Request finished in 1.4875ms 200 text/css +2018-08-02 13:59:14.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 13:59:14.894 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 13:59:14.894 +03:00 [INF] Request finished in 1.5643ms 200 text/css +2018-08-02 13:59:14.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 13:59:14.897 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 13:59:14.897 +03:00 [INF] Request finished in 2.3383ms 200 application/javascript +2018-08-02 13:59:14.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 13:59:14.908 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 13:59:14.908 +03:00 [INF] Request finished in 8.2874ms 200 application/javascript +2018-08-02 13:59:14.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 13:59:14.922 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 13:59:14.922 +03:00 [INF] Request finished in 1.1714ms 200 application/javascript +2018-08-02 13:59:14.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 13:59:14.947 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 13:59:14.947 +03:00 [INF] Request finished in 5.1332ms 200 application/javascript +2018-08-02 13:59:14.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 13:59:14.952 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 13:59:14.952 +03:00 [INF] Request finished in 4.027ms 200 application/javascript +2018-08-02 13:59:14.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 13:59:14.955 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 13:59:14.955 +03:00 [INF] Request finished in 1.2871ms 200 application/javascript +2018-08-02 13:59:14.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 13:59:14.967 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 13:59:14.967 +03:00 [INF] Request finished in 1.5083ms 200 application/javascript +2018-08-02 13:59:14.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 13:59:14.972 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 13:59:14.972 +03:00 [INF] Request finished in 1.3305ms 200 application/javascript +2018-08-02 13:59:14.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 13:59:14.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 13:59:14.986 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 13:59:14.986 +03:00 [INF] Request finished in 2.5915ms 200 application/javascript +2018-08-02 13:59:14.986 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 13:59:14.986 +03:00 [INF] Request finished in 4.7791ms 200 application/javascript +2018-08-02 13:59:15.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 13:59:15.003 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 13:59:15.003 +03:00 [INF] Request finished in 1.9082ms 200 application/javascript +2018-08-02 13:59:15.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 13:59:15.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 13:59:15.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 13:59:15.009 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 13:59:15.009 +03:00 [INF] Request finished in 1.0525ms 200 application/javascript +2018-08-02 13:59:15.009 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 13:59:15.009 +03:00 [INF] Request finished in 0.8495ms 200 application/javascript +2018-08-02 13:59:15.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 13:59:15.023 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 13:59:15.023 +03:00 [INF] Request finished in 1.0393ms 200 application/javascript +2018-08-02 13:59:15.024 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 13:59:15.024 +03:00 [INF] Request finished in 16.7465ms 200 application/javascript +2018-08-02 13:59:15.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 13:59:15.036 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 13:59:15.036 +03:00 [INF] Request finished in 1.5025ms 200 application/javascript +2018-08-02 13:59:15.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 13:59:15.041 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 13:59:15.041 +03:00 [INF] Request finished in 1.139ms 200 application/javascript +2018-08-02 13:59:15.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 13:59:15.043 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 13:59:15.043 +03:00 [INF] Request finished in 1.1738ms 200 application/javascript +2018-08-02 13:59:15.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 13:59:15.052 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 13:59:15.052 +03:00 [INF] Request finished in 1.9708ms 200 application/javascript +2018-08-02 13:59:15.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 13:59:15.068 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 13:59:15.069 +03:00 [INF] Request finished in 2.1246ms 200 application/javascript +2018-08-02 13:59:15.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 13:59:15.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 13:59:15.070 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 13:59:15.071 +03:00 [INF] Request finished in 0.9903ms 200 application/javascript +2018-08-02 13:59:15.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 13:59:15.074 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:59:15.076 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 13:59:15.077 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.39440000000000003ms. +2018-08-02 13:59:15.077 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 13:59:15.077 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:59:15.077 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.3129ms +2018-08-02 13:59:15.077 +03:00 [INF] Request finished in 6.3934ms 200 text/plain; charset=utf-8 +2018-08-02 13:59:15.078 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 13:59:15.078 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.39790000000000003ms. +2018-08-02 13:59:15.078 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 13:59:15.079 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.5733000000000001ms +2018-08-02 13:59:15.079 +03:00 [INF] Request finished in 9.24ms 200 text/plain; charset=utf-8 +2018-08-02 13:59:15.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 13:59:15.109 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 13:59:15.109 +03:00 [INF] Request finished in 0.8368ms 200 application/javascript +2018-08-02 13:59:15.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 13:59:15.113 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 13:59:15.114 +03:00 [INF] Request finished in 1.3581ms 200 application/javascript +2018-08-02 13:59:15.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 13:59:15.115 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 13:59:15.115 +03:00 [INF] Request finished in 1.0461ms 200 image/svg+xml +2018-08-02 13:59:15.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 13:59:15.149 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 13:59:15.149 +03:00 [INF] Request finished in 1.2471ms 200 image/png +2018-08-02 13:59:15.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 13:59:15.157 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 13:59:15.157 +03:00 [INF] Request finished in 1.4502ms 200 image/png +2018-08-02 13:59:15.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 13:59:15.169 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 13:59:15.169 +03:00 [INF] Request finished in 1.5535ms 200 image/png +2018-08-02 13:59:15.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 13:59:15.179 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 13:59:15.179 +03:00 [INF] Request finished in 1.302ms 200 image/png +2018-08-02 13:59:15.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 13:59:15.181 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 13:59:15.181 +03:00 [INF] Request finished in 0.8512ms 200 image/png +2018-08-02 13:59:15.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 13:59:15.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 13:59:15.197 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 13:59:15.197 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 13:59:15.197 +03:00 [INF] Request finished in 0.9567ms 200 image/png +2018-08-02 13:59:15.197 +03:00 [INF] Request finished in 2.015ms 200 image/png +2018-08-02 13:59:15.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 13:59:15.205 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 13:59:15.206 +03:00 [INF] Request finished in 3.0422ms 200 image/png +2018-08-02 13:59:15.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 13:59:15.209 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 13:59:15.209 +03:00 [INF] Request finished in 1.0677ms 200 image/png +2018-08-02 13:59:15.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 13:59:15.214 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 13:59:15.214 +03:00 [INF] Request finished in 1.6846ms 200 image/png +2018-08-02 13:59:15.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 13:59:15.217 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 13:59:15.217 +03:00 [INF] Request finished in 2.0844ms 200 image/png +2018-08-02 13:59:15.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 13:59:15.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 13:59:15.223 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 13:59:15.223 +03:00 [INF] Request finished in 1.3457ms 200 image/png +2018-08-02 13:59:15.227 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 13:59:15.228 +03:00 [INF] Request finished in 6.4191ms 200 image/png +2018-08-02 13:59:15.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 13:59:15.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 13:59:15.236 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 13:59:15.236 +03:00 [INF] Request finished in 2.9608ms 200 image/png +2018-08-02 13:59:15.236 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 13:59:15.236 +03:00 [INF] Request finished in 5.6183ms 200 image/png +2018-08-02 13:59:15.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 13:59:15.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 13:59:15.240 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 13:59:15.240 +03:00 [INF] Request finished in 1.4429ms 200 image/png +2018-08-02 13:59:15.240 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 13:59:15.240 +03:00 [INF] Request finished in 0.869ms 200 image/png +2018-08-02 13:59:15.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 13:59:15.243 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 13:59:15.243 +03:00 [INF] Request finished in 1.0736ms 200 image/png +2018-08-02 13:59:15.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 13:59:15.244 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 13:59:15.244 +03:00 [INF] Request finished in 0.9397ms 200 image/png +2018-08-02 13:59:15.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 13:59:15.249 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 13:59:15.249 +03:00 [INF] Request finished in 3.0307ms 200 image/png +2018-08-02 13:59:15.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 13:59:15.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 13:59:15.254 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 13:59:15.255 +03:00 [INF] Request finished in 1.4519ms 200 image/png +2018-08-02 13:59:15.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 13:59:15.255 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 13:59:15.255 +03:00 [INF] Request finished in 1.1615ms 200 image/png +2018-08-02 13:59:15.257 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 13:59:15.257 +03:00 [INF] Request finished in 2.1806ms 200 image/png +2018-08-02 13:59:15.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 13:59:15.259 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 13:59:15.259 +03:00 [INF] Request finished in 1.0078ms 200 image/png +2018-08-02 13:59:15.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 13:59:15.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 13:59:15.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 13:59:15.270 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 13:59:15.270 +03:00 [INF] Request finished in 2.1222ms 200 image/png +2018-08-02 13:59:15.270 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 13:59:15.270 +03:00 [INF] Request finished in 1.7105ms 200 image/png +2018-08-02 13:59:15.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 13:59:15.273 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 13:59:15.273 +03:00 [INF] Request finished in 1.1376ms 200 image/png +2018-08-02 13:59:15.274 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 13:59:15.274 +03:00 [INF] Request finished in 5.4617ms 200 image/png +2018-08-02 13:59:15.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 13:59:15.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 13:59:15.279 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 13:59:15.280 +03:00 [INF] Request finished in 2.0133ms 200 image/png +2018-08-02 13:59:15.280 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 13:59:15.280 +03:00 [INF] Request finished in 3.8407ms 200 image/png +2018-08-02 13:59:15.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 13:59:15.282 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 13:59:15.282 +03:00 [INF] Request finished in 0.9378ms 200 image/png +2018-08-02 13:59:15.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 13:59:15.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 13:59:15.285 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 13:59:15.285 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 13:59:15.285 +03:00 [INF] Request finished in 2.3338ms 200 image/png +2018-08-02 13:59:15.285 +03:00 [INF] Request finished in 2.423ms 200 image/png +2018-08-02 13:59:15.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 13:59:15.287 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 13:59:15.287 +03:00 [INF] Request finished in 4.6279ms 200 image/png +2018-08-02 13:59:15.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 13:59:15.292 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 13:59:15.293 +03:00 [INF] Request finished in 1.6956ms 200 image/svg+xml +2018-08-02 13:59:15.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 13:59:15.300 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 13:59:15.300 +03:00 [INF] Request finished in 1.4748ms 200 image/png +2018-08-02 13:59:15.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 13:59:15.337 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 13:59:15.337 +03:00 [INF] Request finished in 2.1734ms 200 image/png +2018-08-02 13:59:15.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 13:59:15.347 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 13:59:15.347 +03:00 [INF] Request finished in 0.8382ms 200 image/png +2018-08-02 13:59:15.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 13:59:15.359 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 13:59:15.359 +03:00 [INF] Request finished in 10.5195ms 200 image/jpeg +2018-08-02 13:59:15.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 13:59:15.363 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 13:59:15.363 +03:00 [INF] Request finished in 2.2162ms 200 font/woff2 +2018-08-02 13:59:16.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 13:59:16.401 +03:00 [INF] Request finished in 0.7286ms 404 +2018-08-02 14:01:31.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:01:32.250 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:01:32.250 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:01:32.284 +03:00 [INF] Executed action /Index in 34.542300000000004ms +2018-08-02 14:01:32.285 +03:00 [INF] Request finished in 336.641ms 200 text/html; charset=utf-8 +2018-08-02 14:01:32.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:01:32.326 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:01:32.327 +03:00 [INF] Request finished in 3.5966ms 200 text/css +2018-08-02 14:01:32.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:01:32.334 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:01:32.334 +03:00 [INF] Request finished in 1.4276ms 200 text/css +2018-08-02 14:01:32.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:01:32.335 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:01:32.335 +03:00 [INF] Request finished in 0.9898ms 200 text/css +2018-08-02 14:01:32.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:01:32.349 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:01:32.349 +03:00 [INF] Request finished in 3.3891ms 200 text/css +2018-08-02 14:01:32.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:01:32.356 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:01:32.356 +03:00 [INF] Request finished in 2.5337ms 200 text/css +2018-08-02 14:01:32.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:01:32.358 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:01:32.358 +03:00 [INF] Request finished in 1.4088ms 200 text/css +2018-08-02 14:01:32.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:01:32.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:01:32.361 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:01:32.361 +03:00 [INF] Request finished in 1.0018ms 200 text/css +2018-08-02 14:01:32.363 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:01:32.363 +03:00 [INF] Request finished in 3.1747ms 200 text/css +2018-08-02 14:01:32.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:01:32.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:01:32.371 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:01:32.371 +03:00 [INF] Request finished in 6.1214ms 200 application/javascript +2018-08-02 14:01:32.374 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:01:32.374 +03:00 [INF] Request finished in 9.3813ms 200 application/javascript +2018-08-02 14:01:32.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:01:32.379 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:01:32.379 +03:00 [INF] Request finished in 1.241ms 200 application/javascript +2018-08-02 14:01:32.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/imgs/demo/286x180.png +2018-08-02 14:01:32.379 +03:00 [INF] Request finished in 0.7305ms 404 +2018-08-02 14:01:32.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:01:32.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:01:32.387 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:01:32.387 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:01:32.388 +03:00 [INF] Request finished in 6.1721ms 200 application/javascript +2018-08-02 14:01:32.388 +03:00 [INF] Request finished in 6.9193ms 200 application/javascript +2018-08-02 14:01:32.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:01:32.392 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:01:32.393 +03:00 [INF] Request finished in 1.4486ms 200 application/javascript +2018-08-02 14:01:32.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:01:32.397 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:01:32.397 +03:00 [INF] Request finished in 1.0178ms 200 application/javascript +2018-08-02 14:01:32.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:01:32.407 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:01:32.408 +03:00 [INF] Request finished in 2.2431ms 200 application/javascript +2018-08-02 14:01:32.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:01:32.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:01:32.458 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:01:32.459 +03:00 [INF] Request finished in 2.1957ms 200 application/javascript +2018-08-02 14:01:32.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:01:32.467 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:01:32.467 +03:00 [INF] Request finished in 10.5978ms 200 application/javascript +2018-08-02 14:01:32.467 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:01:32.467 +03:00 [INF] Request finished in 1.5579ms 200 application/javascript +2018-08-02 14:01:32.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:01:32.476 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:01:32.476 +03:00 [INF] Request finished in 1.5286ms 200 application/javascript +2018-08-02 14:01:32.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:01:32.483 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:01:32.483 +03:00 [INF] Request finished in 1.8047ms 200 application/javascript +2018-08-02 14:01:32.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:01:32.486 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:01:32.486 +03:00 [INF] Request finished in 1.2627ms 200 application/javascript +2018-08-02 14:01:32.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:01:32.498 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:01:32.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:01:32.499 +03:00 [INF] Request finished in 2.1075ms 200 application/javascript +2018-08-02 14:01:32.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:01:32.499 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:01:32.499 +03:00 [INF] Request finished in 1.3992ms 200 application/javascript +2018-08-02 14:01:32.499 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:01:32.500 +03:00 [INF] Request finished in 0.9631ms 200 application/javascript +2018-08-02 14:01:32.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:01:32.516 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:01:32.516 +03:00 [INF] Request finished in 1.4011ms 200 application/javascript +2018-08-02 14:01:32.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:01:32.520 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:01:32.520 +03:00 [INF] Request finished in 1.6702ms 200 application/javascript +2018-08-02 14:01:32.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:01:32.524 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:01:32.525 +03:00 [INF] Request finished in 2.269ms 200 application/javascript +2018-08-02 14:01:32.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:01:32.526 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:01:32.526 +03:00 [INF] Request finished in 1.2536ms 200 application/javascript +2018-08-02 14:01:32.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:01:32.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:01:32.536 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:32.539 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:01:32.539 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1423ms. +2018-08-02 14:01:32.539 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:32.540 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.9669000000000003ms +2018-08-02 14:01:32.541 +03:00 [INF] Request finished in 8.147ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:32.544 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:32.545 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:01:32.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:01:32.545 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.55790000000000006ms. +2018-08-02 14:01:32.546 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:32.546 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:01:32.546 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.9715ms +2018-08-02 14:01:32.546 +03:00 [INF] Request finished in 1.1558ms 200 application/javascript +2018-08-02 14:01:32.546 +03:00 [INF] Request finished in 15.7327ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:32.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:01:32.559 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:01:32.559 +03:00 [INF] Request finished in 1.8984ms 200 application/javascript +2018-08-02 14:01:32.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:01:32.563 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:01:32.563 +03:00 [INF] Request finished in 2.1741ms 200 image/svg+xml +2018-08-02 14:01:32.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:01:32.567 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:01:32.567 +03:00 [INF] Request finished in 2.7535ms 200 image/png +2018-08-02 14:01:32.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:01:32.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:01:32.574 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:01:32.574 +03:00 [INF] Request finished in 1.4745ms 200 image/png +2018-08-02 14:01:32.575 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:01:32.575 +03:00 [INF] Request finished in 1.5878ms 200 image/png +2018-08-02 14:01:32.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:01:32.576 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:01:32.576 +03:00 [INF] Request finished in 0.8439ms 200 image/png +2018-08-02 14:01:32.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:01:32.577 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:01:32.577 +03:00 [INF] Request finished in 0.8614ms 200 image/png +2018-08-02 14:01:32.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:01:32.578 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:01:32.578 +03:00 [INF] Request finished in 0.7003ms 200 image/png +2018-08-02 14:01:32.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:01:32.589 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:01:32.589 +03:00 [INF] Request finished in 2.5901ms 200 image/png +2018-08-02 14:01:32.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:01:32.602 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:01:32.602 +03:00 [INF] Request finished in 1.5873ms 200 image/png +2018-08-02 14:01:32.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:01:32.607 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:01:32.607 +03:00 [INF] Request finished in 3.1712ms 200 image/png +2018-08-02 14:01:32.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:01:32.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:01:32.610 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:01:32.610 +03:00 [INF] Request finished in 1.0775ms 200 image/png +2018-08-02 14:01:32.611 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:01:32.611 +03:00 [INF] Request finished in 0.931ms 200 image/png +2018-08-02 14:01:32.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:01:32.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:01:32.627 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:01:32.627 +03:00 [INF] Request finished in 1.0822ms 200 image/png +2018-08-02 14:01:32.627 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:01:32.627 +03:00 [INF] Request finished in 0.9195ms 200 image/png +2018-08-02 14:01:32.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:01:32.644 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:01:32.644 +03:00 [INF] Request finished in 0.9925ms 200 image/png +2018-08-02 14:01:32.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:01:32.646 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:01:32.646 +03:00 [INF] Request finished in 1.716ms 200 image/png +2018-08-02 14:01:32.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:01:32.666 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:01:32.667 +03:00 [INF] Request finished in 1.2285ms 200 image/png +2018-08-02 14:01:32.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:01:32.675 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:01:32.675 +03:00 [INF] Request finished in 0.7955ms 200 image/png +2018-08-02 14:01:32.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:01:32.680 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:01:32.680 +03:00 [INF] Request finished in 0.8367ms 200 image/png +2018-08-02 14:01:32.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:01:32.682 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:01:32.682 +03:00 [INF] Request finished in 1.0119ms 200 image/png +2018-08-02 14:01:32.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:01:32.683 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:01:32.683 +03:00 [INF] Request finished in 0.7545ms 200 image/png +2018-08-02 14:01:32.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:01:32.710 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:01:32.710 +03:00 [INF] Request finished in 0.8805ms 200 image/png +2018-08-02 14:01:32.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:01:32.729 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:01:32.730 +03:00 [INF] Request finished in 0.7828ms 200 image/png +2018-08-02 14:01:32.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:01:32.744 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:01:32.745 +03:00 [INF] Request finished in 1.4826ms 200 image/png +2018-08-02 14:01:32.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:01:32.749 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 14:01:32.749 +03:00 [INF] Request finished in 0.999ms 200 image/png +2018-08-02 14:01:32.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:01:32.754 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 14:01:32.755 +03:00 [INF] Request finished in 1.5694ms 200 image/png +2018-08-02 14:01:32.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:01:32.763 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 14:01:32.764 +03:00 [INF] Request finished in 1.1957ms 200 image/png +2018-08-02 14:01:32.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:01:32.765 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:01:32.765 +03:00 [INF] Request finished in 1.7404ms 200 image/png +2018-08-02 14:01:32.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:01:32.767 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:01:32.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:01:32.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:01:32.768 +03:00 [INF] Request finished in 2.0083ms 200 image/png +2018-08-02 14:01:32.768 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:01:32.768 +03:00 [INF] Request finished in 1.1392ms 200 image/png +2018-08-02 14:01:32.769 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:01:32.769 +03:00 [INF] Request finished in 2.0295ms 200 image/png +2018-08-02 14:01:32.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:01:32.777 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:01:32.777 +03:00 [INF] Request finished in 2.6558ms 200 image/png +2018-08-02 14:01:32.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:01:32.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:01:32.781 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:01:32.781 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 14:01:32.781 +03:00 [INF] Request finished in 1.343ms 200 image/png +2018-08-02 14:01:32.781 +03:00 [INF] Request finished in 1.3801ms 200 image/png +2018-08-02 14:01:32.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:01:32.783 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:01:32.784 +03:00 [INF] Request finished in 1.8113ms 200 image/png +2018-08-02 14:01:32.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:01:32.791 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:01:32.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:01:32.791 +03:00 [INF] Request finished in 1.6488ms 200 image/png +2018-08-02 14:01:32.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:01:32.793 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:01:32.794 +03:00 [INF] Request finished in 1.9595ms 200 image/png +2018-08-02 14:01:32.794 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:01:32.795 +03:00 [INF] Request finished in 3.8309ms 200 image/png +2018-08-02 14:01:32.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:01:32.841 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:01:32.841 +03:00 [INF] Request finished in 8.5658ms 200 image/jpeg +2018-08-02 14:01:32.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:01:32.851 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:01:32.851 +03:00 [INF] Request finished in 2.5669ms 200 font/woff2 +2018-08-02 14:01:33.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:01:33.720 +03:00 [INF] Request finished in 0.6594ms 404 +2018-08-02 14:01:42.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:01:42.449 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:01:42.449 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:01:42.476 +03:00 [INF] Executed action /Index in 26.7601ms +2018-08-02 14:01:42.476 +03:00 [INF] Request finished in 332.1982ms 200 text/html; charset=utf-8 +2018-08-02 14:01:42.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:01:42.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:01:42.522 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:01:42.522 +03:00 [INF] Request finished in 5.3578ms 200 text/css +2018-08-02 14:01:42.522 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:01:42.522 +03:00 [INF] Request finished in 1.5577ms 200 text/css +2018-08-02 14:01:42.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:01:42.531 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:01:42.531 +03:00 [INF] Request finished in 4.6326ms 200 text/css +2018-08-02 14:01:42.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:01:42.534 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:01:42.534 +03:00 [INF] Request finished in 1.3496ms 200 text/css +2018-08-02 14:01:42.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:01:42.545 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:01:42.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:01:42.546 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:01:42.546 +03:00 [INF] Request finished in 0.8822ms 200 text/css +2018-08-02 14:01:42.546 +03:00 [INF] Request finished in 1.5696ms 200 text/css +2018-08-02 14:01:42.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:01:42.552 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:01:42.552 +03:00 [INF] Request finished in 0.9432ms 200 text/css +2018-08-02 14:01:42.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:01:42.557 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:01:42.557 +03:00 [INF] Request finished in 0.9227ms 200 text/css +2018-08-02 14:01:42.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:01:42.559 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:01:42.559 +03:00 [INF] Request finished in 0.9905ms 200 application/javascript +2018-08-02 14:01:42.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:01:42.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:01:42.579 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:01:42.580 +03:00 [INF] Request finished in 1.1215ms 200 application/javascript +2018-08-02 14:01:42.584 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:01:42.584 +03:00 [INF] Request finished in 6.7877ms 200 application/javascript +2018-08-02 14:01:42.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:01:42.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:01:42.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:01:42.595 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:01:42.596 +03:00 [INF] Request finished in 0.8839ms 200 application/javascript +2018-08-02 14:01:42.598 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:01:42.599 +03:00 [INF] Request finished in 5.675ms 200 application/javascript +2018-08-02 14:01:42.604 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:01:42.604 +03:00 [INF] Request finished in 10.5997ms 200 application/javascript +2018-08-02 14:01:42.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:01:42.625 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:01:42.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/imgs/demo/286x180.png +2018-08-02 14:01:42.625 +03:00 [INF] Request finished in 0.899ms 200 application/javascript +2018-08-02 14:01:42.626 +03:00 [INF] Request finished in 0.7182ms 404 +2018-08-02 14:01:42.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:01:42.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:01:42.644 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:01:42.644 +03:00 [INF] Request finished in 1.7697ms 200 application/javascript +2018-08-02 14:01:42.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:01:42.647 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:01:42.648 +03:00 [INF] Request finished in 4.1593ms 200 application/javascript +2018-08-02 14:01:42.645 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:01:42.657 +03:00 [INF] Request finished in 13.3469ms 200 application/javascript +2018-08-02 14:01:42.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:01:42.672 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:01:42.672 +03:00 [INF] Request finished in 0.9708ms 200 application/javascript +2018-08-02 14:01:42.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:01:42.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:01:42.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:01:42.675 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:01:42.675 +03:00 [INF] Request finished in 0.8358ms 200 application/javascript +2018-08-02 14:01:42.675 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:01:42.675 +03:00 [INF] Request finished in 0.7319ms 200 application/javascript +2018-08-02 14:01:42.687 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:01:42.687 +03:00 [INF] Request finished in 14.8211ms 200 application/javascript +2018-08-02 14:01:42.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:01:42.703 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:01:42.703 +03:00 [INF] Request finished in 1.5128ms 200 application/javascript +2018-08-02 14:01:42.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:01:42.751 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:01:42.751 +03:00 [INF] Request finished in 1.144ms 200 application/javascript +2018-08-02 14:01:42.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:01:42.770 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:01:42.770 +03:00 [INF] Request finished in 2.1619ms 200 application/javascript +2018-08-02 14:01:42.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:01:42.784 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:01:42.784 +03:00 [INF] Request finished in 2.4403ms 200 application/javascript +2018-08-02 14:01:42.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:01:42.795 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:01:42.795 +03:00 [INF] Request finished in 1.9805ms 200 application/javascript +2018-08-02 14:01:42.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:01:42.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:01:42.800 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:01:42.801 +03:00 [INF] Request finished in 3.2481ms 200 application/javascript +2018-08-02 14:01:42.801 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:01:42.801 +03:00 [INF] Request finished in 1.8694ms 200 application/javascript +2018-08-02 14:01:42.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:01:42.809 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:42.810 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:01:42.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:01:42.811 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.5232ms. +2018-08-02 14:01:42.811 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:42.812 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.8405ms +2018-08-02 14:01:42.812 +03:00 [INF] Request finished in 9.3498ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:42.815 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:42.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:01:42.817 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:01:42.817 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.125ms. +2018-08-02 14:01:42.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:01:42.817 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:42.817 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.202ms +2018-08-02 14:01:42.817 +03:00 [INF] Request finished in 6.191ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:42.818 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:01:42.818 +03:00 [INF] Request finished in 3.307ms 200 application/javascript +2018-08-02 14:01:42.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:01:42.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:01:42.823 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:01:42.823 +03:00 [INF] Request finished in 6.1958ms 200 application/javascript +2018-08-02 14:01:42.824 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:01:42.824 +03:00 [INF] Request finished in 1.0096ms 200 image/svg+xml +2018-08-02 14:01:42.824 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:01:42.824 +03:00 [INF] Request finished in 1.3931ms 200 image/png +2018-08-02 14:01:42.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:01:42.832 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:01:42.832 +03:00 [INF] Request finished in 1.8354ms 200 image/png +2018-08-02 14:01:42.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:01:42.833 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:01:42.833 +03:00 [INF] Request finished in 0.7902ms 200 image/png +2018-08-02 14:01:42.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:01:42.839 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:01:42.839 +03:00 [INF] Request finished in 1.7884ms 200 image/png +2018-08-02 14:01:42.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:01:42.849 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:01:42.849 +03:00 [INF] Request finished in 3.371ms 200 image/png +2018-08-02 14:01:42.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:01:42.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:01:42.856 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:01:42.856 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:01:42.857 +03:00 [INF] Request finished in 0.6368ms 200 image/png +2018-08-02 14:01:42.857 +03:00 [INF] Request finished in 0.7894ms 200 image/png +2018-08-02 14:01:42.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:01:42.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:01:42.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:01:42.873 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:01:42.873 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:01:42.873 +03:00 [INF] Request finished in 2.4561ms 200 image/png +2018-08-02 14:01:42.873 +03:00 [INF] Request finished in 5.7596ms 200 image/png +2018-08-02 14:01:42.875 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:01:42.875 +03:00 [INF] Request finished in 8.3004ms 200 image/png +2018-08-02 14:01:42.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:01:42.877 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:01:42.877 +03:00 [INF] Request finished in 0.8326ms 200 image/png +2018-08-02 14:01:42.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:01:42.878 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:01:42.878 +03:00 [INF] Request finished in 1.1292ms 200 image/png +2018-08-02 14:01:42.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:01:42.893 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:01:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:01:42.894 +03:00 [INF] Request finished in 1.7479ms 200 image/png +2018-08-02 14:01:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:01:42.894 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:01:42.894 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:01:42.895 +03:00 [INF] Request finished in 1.0552ms 200 image/png +2018-08-02 14:01:42.895 +03:00 [INF] Request finished in 1.8245ms 200 image/png +2018-08-02 14:01:42.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:01:42.898 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:01:42.898 +03:00 [INF] Request finished in 1.4456ms 200 image/png +2018-08-02 14:01:42.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:01:42.905 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:01:42.905 +03:00 [INF] Request finished in 1.6275ms 200 image/png +2018-08-02 14:01:42.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:01:42.914 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:01:42.914 +03:00 [INF] Request finished in 0.8094ms 200 image/png +2018-08-02 14:01:42.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:01:42.916 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 14:01:42.916 +03:00 [INF] Request finished in 1.1805ms 200 image/png +2018-08-02 14:01:42.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:01:42.919 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:01:42.919 +03:00 [INF] Request finished in 2.1042ms 200 image/png +2018-08-02 14:01:42.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:01:42.926 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 14:01:42.926 +03:00 [INF] Request finished in 1.412ms 200 image/png +2018-08-02 14:01:42.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:01:42.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:01:42.929 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:01:42.930 +03:00 [INF] Request finished in 0.8071ms 200 image/png +2018-08-02 14:01:42.930 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:01:42.930 +03:00 [INF] Request finished in 1.8035ms 200 image/png +2018-08-02 14:01:42.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:01:42.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:01:42.937 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:01:42.937 +03:00 [INF] Request finished in 1.53ms 200 image/png +2018-08-02 14:01:42.937 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 14:01:42.937 +03:00 [INF] Request finished in 0.8709ms 200 image/png +2018-08-02 14:01:42.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:01:42.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:01:42.942 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:01:42.942 +03:00 [INF] Request finished in 0.6905ms 200 image/png +2018-08-02 14:01:42.942 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:01:42.942 +03:00 [INF] Request finished in 0.6208ms 200 image/png +2018-08-02 14:01:42.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:01:42.944 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:01:42.944 +03:00 [INF] Request finished in 0.8447ms 200 image/png +2018-08-02 14:01:42.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:01:42.949 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:01:42.949 +03:00 [INF] Request finished in 1.5911ms 200 image/png +2018-08-02 14:01:42.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:01:42.977 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:01:42.978 +03:00 [INF] Request finished in 0.8564ms 200 image/png +2018-08-02 14:01:42.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:01:42.991 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:01:42.991 +03:00 [INF] Request finished in 0.8401ms 200 image/png +2018-08-02 14:01:43.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:01:43.022 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:01:43.023 +03:00 [INF] Request finished in 1.6852ms 200 image/png +2018-08-02 14:01:43.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:01:43.025 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 14:01:43.025 +03:00 [INF] Request finished in 1.3573ms 200 image/png +2018-08-02 14:01:43.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:01:43.046 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:01:43.046 +03:00 [INF] Request finished in 1.6543ms 200 image/png +2018-08-02 14:01:43.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:01:43.052 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:01:43.052 +03:00 [INF] Request finished in 1.2728ms 200 image/png +2018-08-02 14:01:43.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:01:43.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:01:43.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:01:43.054 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:01:43.054 +03:00 [INF] Request finished in 1.3905ms 200 image/png +2018-08-02 14:01:43.054 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:01:43.054 +03:00 [INF] Request finished in 1.2562ms 200 image/png +2018-08-02 14:01:43.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:01:43.063 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:01:43.063 +03:00 [INF] Request finished in 2.0836ms 200 font/woff2 +2018-08-02 14:01:43.072 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:01:43.072 +03:00 [INF] Request finished in 19.3492ms 200 image/jpeg +2018-08-02 14:01:43.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:01:43.972 +03:00 [INF] Request finished in 0.7459ms 404 +2018-08-02 14:01:47.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:01:48.232 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:01:48.232 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:01:48.245 +03:00 [INF] Executed action /Index in 12.8527ms +2018-08-02 14:01:48.245 +03:00 [INF] Request finished in 376.8325ms 200 text/html; charset=utf-8 +2018-08-02 14:01:48.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:01:48.291 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:01:48.291 +03:00 [INF] Request finished in 3.9456ms 200 text/css +2018-08-02 14:01:48.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:01:48.292 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:01:48.292 +03:00 [INF] Request finished in 1.0178ms 200 text/css +2018-08-02 14:01:48.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:01:48.296 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:01:48.297 +03:00 [INF] Request finished in 2.5982ms 200 text/css +2018-08-02 14:01:48.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:01:48.301 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:01:48.302 +03:00 [INF] Request finished in 1.1931ms 200 text/css +2018-08-02 14:01:48.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:01:48.310 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:01:48.310 +03:00 [INF] Request finished in 1.1092ms 200 text/css +2018-08-02 14:01:48.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:01:48.314 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:01:48.314 +03:00 [INF] Request finished in 2.6723ms 200 text/css +2018-08-02 14:01:48.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:01:48.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:01:48.321 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:01:48.321 +03:00 [INF] Request finished in 1.8361ms 200 text/css +2018-08-02 14:01:48.321 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:01:48.321 +03:00 [INF] Request finished in 1.6036ms 200 text/css +2018-08-02 14:01:48.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:01:48.325 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:01:48.326 +03:00 [INF] Request finished in 1.871ms 200 application/javascript +2018-08-02 14:01:48.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:01:48.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:01:48.335 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:01:48.335 +03:00 [INF] Request finished in 2.0435ms 200 application/javascript +2018-08-02 14:01:48.337 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:01:48.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:01:48.338 +03:00 [INF] Request finished in 9.2158ms 200 application/javascript +2018-08-02 14:01:48.341 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:01:48.341 +03:00 [INF] Request finished in 4.0612ms 200 application/javascript +2018-08-02 14:01:48.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:01:48.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:01:48.346 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:01:48.346 +03:00 [INF] Request finished in 0.8809ms 200 application/javascript +2018-08-02 14:01:48.350 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:01:48.350 +03:00 [INF] Request finished in 9.0023ms 200 application/javascript +2018-08-02 14:01:48.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:01:48.357 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:01:48.357 +03:00 [INF] Request finished in 1.3325ms 200 application/javascript +2018-08-02 14:01:48.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:01:48.362 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:01:48.363 +03:00 [INF] Request finished in 1.3981ms 200 application/javascript +2018-08-02 14:01:48.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:01:48.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:01:48.373 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:01:48.373 +03:00 [INF] Request finished in 4.7587ms 200 application/javascript +2018-08-02 14:01:48.380 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:01:48.380 +03:00 [INF] Request finished in 9.9777ms 200 application/javascript +2018-08-02 14:01:48.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:01:48.392 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:01:48.392 +03:00 [INF] Request finished in 1.2639ms 200 application/javascript +2018-08-02 14:01:48.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:01:48.401 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:01:48.401 +03:00 [INF] Request finished in 1.3068ms 200 application/javascript +2018-08-02 14:01:48.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:01:48.428 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:01:48.428 +03:00 [INF] Request finished in 1.5782ms 200 application/javascript +2018-08-02 14:01:48.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:01:48.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:01:48.445 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:01:48.445 +03:00 [INF] Request finished in 1.6527ms 200 application/javascript +2018-08-02 14:01:48.445 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:01:48.446 +03:00 [INF] Request finished in 1.0974ms 200 application/javascript +2018-08-02 14:01:48.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:01:48.451 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:01:48.452 +03:00 [INF] Request finished in 0.9706ms 200 application/javascript +2018-08-02 14:01:48.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:01:48.462 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:01:48.462 +03:00 [INF] Request finished in 0.9601ms 200 application/javascript +2018-08-02 14:01:48.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:01:48.464 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:01:48.464 +03:00 [INF] Request finished in 1.096ms 200 application/javascript +2018-08-02 14:01:48.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:01:48.466 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:01:48.466 +03:00 [INF] Request finished in 1.5157ms 200 application/javascript +2018-08-02 14:01:48.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:01:48.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:01:48.469 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:01:48.469 +03:00 [INF] Request finished in 1.4685ms 200 application/javascript +2018-08-02 14:01:48.474 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:01:48.474 +03:00 [INF] Request finished in 6.4371ms 200 application/javascript +2018-08-02 14:01:48.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:01:48.478 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:01:48.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:01:48.479 +03:00 [INF] Request finished in 1.2869ms 200 application/javascript +2018-08-02 14:01:48.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:01:48.487 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:01:48.487 +03:00 [INF] Request finished in 1.4165ms 200 image/svg+xml +2018-08-02 14:01:48.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:01:48.492 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:48.493 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:48.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:01:48.494 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:01:48.495 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3886ms. +2018-08-02 14:01:48.495 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:01:48.495 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:48.495 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:01:48.495 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.099100000000000008ms. +2018-08-02 14:01:48.495 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.4328ms +2018-08-02 14:01:48.495 +03:00 [INF] Request finished in 0.8936ms 200 application/javascript +2018-08-02 14:01:48.495 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:48.495 +03:00 [INF] Request finished in 17.0482ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:48.495 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6840000000000002ms +2018-08-02 14:01:48.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:01:48.495 +03:00 [INF] Request finished in 6.1293ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:48.496 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:01:48.496 +03:00 [INF] Request finished in 0.8429ms 200 image/png +2018-08-02 14:01:48.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:01:48.500 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:01:48.500 +03:00 [INF] Request finished in 0.8446ms 200 image/png +2018-08-02 14:01:48.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:01:48.505 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:01:48.506 +03:00 [INF] Request finished in 1.2858ms 200 image/png +2018-08-02 14:01:48.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:01:48.508 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:01:48.508 +03:00 [INF] Request finished in 1.1184ms 200 image/png +2018-08-02 14:01:48.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:01:48.518 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:01:48.521 +03:00 [INF] Request finished in 3.8919ms 200 image/png +2018-08-02 14:01:48.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:01:48.525 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:01:48.525 +03:00 [INF] Request finished in 1.3216ms 200 image/png +2018-08-02 14:01:48.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:01:48.531 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:01:48.531 +03:00 [INF] Request finished in 2.7027ms 200 image/png +2018-08-02 14:01:48.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:01:48.540 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:01:48.541 +03:00 [INF] Request finished in 3.4778ms 200 image/png +2018-08-02 14:01:48.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:01:48.548 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:01:48.548 +03:00 [INF] Request finished in 1.3994ms 200 image/png +2018-08-02 14:01:48.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:01:48.552 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:01:48.552 +03:00 [INF] Request finished in 2.754ms 200 image/png +2018-08-02 14:01:48.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:01:48.564 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:01:48.564 +03:00 [INF] Request finished in 1.0655ms 200 image/png +2018-08-02 14:01:48.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:01:48.573 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:01:48.573 +03:00 [INF] Request finished in 1.842ms 200 image/png +2018-08-02 14:01:48.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:01:48.586 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:01:48.587 +03:00 [INF] Request finished in 2.1671ms 200 image/png +2018-08-02 14:01:48.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:01:48.590 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:01:48.590 +03:00 [INF] Request finished in 0.8833ms 200 image/png +2018-08-02 14:01:48.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:01:48.597 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:01:48.597 +03:00 [INF] Request finished in 0.8509ms 200 image/png +2018-08-02 14:01:48.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:01:48.612 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:01:48.612 +03:00 [INF] Request finished in 1.3203ms 200 image/png +2018-08-02 14:01:48.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:01:48.633 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:01:48.634 +03:00 [INF] Request finished in 1.2481ms 200 image/svg+xml +2018-08-02 14:01:48.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:01:48.645 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:01:48.645 +03:00 [INF] Request finished in 0.9056ms 200 image/png +2018-08-02 14:01:48.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:01:48.650 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:01:48.650 +03:00 [INF] Request finished in 1.9337ms 200 image/png +2018-08-02 14:01:48.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:01:48.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:01:48.651 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:01:48.651 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:01:48.651 +03:00 [INF] Request finished in 1.016ms 200 image/png +2018-08-02 14:01:48.651 +03:00 [INF] Request finished in 0.926ms 200 image/png +2018-08-02 14:01:48.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:01:48.662 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:01:48.662 +03:00 [INF] Request finished in 0.8231ms 200 image/png +2018-08-02 14:01:48.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:01:48.662 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:01:48.663 +03:00 [INF] Request finished in 0.5863ms 200 image/png +2018-08-02 14:01:48.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:01:48.669 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:01:48.669 +03:00 [INF] Request finished in 0.9237ms 200 image/png +2018-08-02 14:01:48.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:01:48.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:01:48.696 +03:00 [INF] Sending file. Request path: '/assets/tools/3.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\3.png' +2018-08-02 14:01:48.697 +03:00 [INF] Request finished in 1.0257ms 200 image/png +2018-08-02 14:01:48.698 +03:00 [INF] Sending file. Request path: '/assets/tools/4.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\4.png' +2018-08-02 14:01:48.698 +03:00 [INF] Request finished in 1.9378ms 200 image/png +2018-08-02 14:01:48.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:01:48.699 +03:00 [INF] Sending file. Request path: '/assets/tools/5.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\5.png' +2018-08-02 14:01:48.700 +03:00 [INF] Request finished in 0.986ms 200 image/png +2018-08-02 14:01:48.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:01:48.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:01:48.706 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:01:48.706 +03:00 [INF] Request finished in 0.9223ms 200 image/png +2018-08-02 14:01:48.707 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:01:48.707 +03:00 [INF] Request finished in 1.082ms 200 image/png +2018-08-02 14:01:48.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:01:48.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:01:48.710 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:01:48.711 +03:00 [INF] Request finished in 0.8411ms 200 image/png +2018-08-02 14:01:48.711 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:01:48.711 +03:00 [INF] Request finished in 1.7076ms 200 image/png +2018-08-02 14:01:48.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:01:48.715 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:01:48.715 +03:00 [INF] Request finished in 0.8924ms 200 image/png +2018-08-02 14:01:48.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:01:48.728 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:01:48.728 +03:00 [INF] Request finished in 1.2517ms 200 image/png +2018-08-02 14:01:48.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:01:48.731 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:01:48.731 +03:00 [INF] Request finished in 0.952ms 200 image/png +2018-08-02 14:01:48.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:01:48.732 +03:00 [INF] Sending file. Request path: '/assets/tools/12.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\12.png' +2018-08-02 14:01:48.732 +03:00 [INF] Request finished in 1.2724ms 200 image/png +2018-08-02 14:01:48.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:01:48.734 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:01:48.734 +03:00 [INF] Request finished in 1.4587ms 200 image/png +2018-08-02 14:01:48.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:01:48.740 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:01:48.741 +03:00 [INF] Request finished in 1.0169ms 200 image/png +2018-08-02 14:01:48.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:01:48.742 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:01:48.742 +03:00 [INF] Request finished in 1.2283ms 200 image/png +2018-08-02 14:01:48.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:01:48.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:01:48.876 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:01:48.876 +03:00 [INF] Request finished in 2.6257ms 200 font/woff2 +2018-08-02 14:01:48.880 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:01:48.880 +03:00 [INF] Request finished in 10.0468ms 200 image/jpeg +2018-08-02 14:01:49.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:01:49.832 +03:00 [INF] Request finished in 1.0546ms 404 +2018-08-02 14:01:56.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:01:56.929 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:01:56.930 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:01:56.958 +03:00 [INF] Executed action /Index in 28.1142ms +2018-08-02 14:01:56.958 +03:00 [INF] Request finished in 410.718ms 200 text/html; charset=utf-8 +2018-08-02 14:01:57.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:01:57.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:01:57.058 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:01:57.058 +03:00 [INF] Request finished in 2.3741ms 304 text/css +2018-08-02 14:01:57.059 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:01:57.059 +03:00 [INF] Request finished in 3.7899ms 304 text/css +2018-08-02 14:01:57.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:01:57.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:01:57.071 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:01:57.071 +03:00 [INF] Request finished in 0.4628ms 304 image/png +2018-08-02 14:01:57.071 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:01:57.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:01:57.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:01:57.072 +03:00 [INF] Request finished in 0.8672ms 304 image/png +2018-08-02 14:01:57.072 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:01:57.072 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:01:57.072 +03:00 [INF] Request finished in 0.3603ms 304 image/png +2018-08-02 14:01:57.072 +03:00 [INF] Request finished in 0.6251ms 304 image/svg+xml +2018-08-02 14:01:57.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:01:57.076 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:01:57.076 +03:00 [INF] Request finished in 0.6558ms 304 image/png +2018-08-02 14:01:57.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:01:57.080 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:01:57.080 +03:00 [INF] Request finished in 1.6069ms 304 image/png +2018-08-02 14:01:57.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:01:57.085 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:01:57.085 +03:00 [INF] Request finished in 0.5257ms 304 image/png +2018-08-02 14:01:57.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:01:57.089 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:01:57.089 +03:00 [INF] Request finished in 2.2228ms 304 image/png +2018-08-02 14:01:57.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:01:57.094 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:01:57.094 +03:00 [INF] Request finished in 0.577ms 304 image/png +2018-08-02 14:01:57.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:01:57.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:01:57.100 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:01:57.100 +03:00 [INF] Request finished in 1.1368ms 304 image/png +2018-08-02 14:01:57.100 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:01:57.100 +03:00 [INF] Request finished in 1.8913ms 304 image/png +2018-08-02 14:01:57.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:01:57.103 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:01:57.103 +03:00 [INF] Request finished in 1.8903ms 304 image/png +2018-08-02 14:01:57.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:01:57.108 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:01:57.108 +03:00 [INF] Request finished in 0.6666ms 304 image/png +2018-08-02 14:01:57.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:01:57.116 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:01:57.117 +03:00 [INF] Request finished in 0.9453ms 304 image/png +2018-08-02 14:01:57.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/imgs/demo/286x180.png +2018-08-02 14:01:57.122 +03:00 [INF] Request finished in 0.633ms 404 +2018-08-02 14:01:57.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:01:57.126 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:01:57.126 +03:00 [INF] Request finished in 1.9097ms 304 image/png +2018-08-02 14:01:57.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:01:57.130 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:01:57.130 +03:00 [INF] Request finished in 1.8288ms 304 image/png +2018-08-02 14:01:57.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:01:57.133 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:01:57.133 +03:00 [INF] Request finished in 0.6942ms 304 image/png +2018-08-02 14:01:57.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:01:57.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:01:57.137 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:01:57.137 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:01:57.137 +03:00 [INF] Request finished in 1.5679ms 304 image/png +2018-08-02 14:01:57.137 +03:00 [INF] Request finished in 1.5471ms 304 image/png +2018-08-02 14:01:57.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:01:57.145 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:01:57.145 +03:00 [INF] Request finished in 0.7014ms 304 image/png +2018-08-02 14:01:57.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:01:57.153 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:01:57.153 +03:00 [INF] Request finished in 1.3851ms 304 image/png +2018-08-02 14:01:57.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:01:57.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:01:57.160 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:01:57.160 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:01:57.162 +03:00 [INF] Request finished in 2.7945ms 304 image/png +2018-08-02 14:01:57.162 +03:00 [INF] Request finished in 3.3133ms 304 image/png +2018-08-02 14:01:57.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:01:57.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:01:57.169 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:01:57.169 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:01:57.169 +03:00 [INF] Request finished in 1.263ms 304 image/png +2018-08-02 14:01:57.169 +03:00 [INF] Request finished in 4.3614ms 304 image/png +2018-08-02 14:01:57.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:01:57.173 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:01:57.173 +03:00 [INF] Request finished in 1.7717ms 304 image/png +2018-08-02 14:01:57.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:01:57.175 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:01:57.175 +03:00 [INF] Request finished in 1.0232ms 304 image/png +2018-08-02 14:01:57.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:01:57.177 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:01:57.177 +03:00 [INF] Request finished in 0.5894ms 304 image/png +2018-08-02 14:01:57.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:01:57.183 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:01:57.183 +03:00 [INF] Request finished in 0.5943ms 304 image/png +2018-08-02 14:01:57.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:01:57.185 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:01:57.185 +03:00 [INF] Request finished in 1.1982ms 304 image/png +2018-08-02 14:01:57.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:01:57.187 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:01:57.187 +03:00 [INF] Request finished in 0.782ms 304 image/png +2018-08-02 14:01:57.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:01:57.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:01:57.189 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:01:57.189 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:01:57.189 +03:00 [INF] Request finished in 0.4858ms 304 image/png +2018-08-02 14:01:57.189 +03:00 [INF] Request finished in 0.4387ms 304 image/png +2018-08-02 14:01:57.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:01:57.189 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:01:57.189 +03:00 [INF] Request finished in 0.5644ms 304 image/png +2018-08-02 14:01:57.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:01:57.201 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:01:57.202 +03:00 [INF] Request finished in 4.4078ms 304 image/png +2018-08-02 14:01:57.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:01:57.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:01:57.261 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:57.262 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:01:57.263 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:01:57.264 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5279ms. +2018-08-02 14:01:57.264 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:57.264 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:01:57.264 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.8735000000000002ms +2018-08-02 14:01:57.264 +03:00 [INF] Request finished in 12.2914ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:57.265 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.65470000000000006ms. +2018-08-02 14:01:57.265 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:01:57.266 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.4056000000000006ms +2018-08-02 14:01:57.266 +03:00 [INF] Request finished in 9.824ms 200 text/plain; charset=utf-8 +2018-08-02 14:01:57.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:01:57.274 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:01:57.274 +03:00 [INF] Request finished in 0.5674ms 304 application/javascript +2018-08-02 14:01:57.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:01:57.277 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:01:57.277 +03:00 [INF] Request finished in 1.0072ms 304 image/jpeg +2018-08-02 14:02:29.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:02:30.032 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:02:30.033 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:02:30.052 +03:00 [INF] Executed action /Index in 19.8189ms +2018-08-02 14:02:30.053 +03:00 [INF] Request finished in 258.609ms 200 text/html; charset=utf-8 +2018-08-02 14:02:30.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:02:30.085 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 14:02:30.086 +03:00 [INF] Request finished in 0.638ms 304 text/css +2018-08-02 14:02:30.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:02:30.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:02:30.091 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 14:02:30.092 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 14:02:30.092 +03:00 [INF] Request finished in 0.7025ms 304 text/css +2018-08-02 14:02:30.092 +03:00 [INF] Request finished in 1.0756ms 304 text/css +2018-08-02 14:02:30.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:02:30.096 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 14:02:30.097 +03:00 [INF] Request finished in 3.9098ms 304 text/css +2018-08-02 14:02:30.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:02:30.107 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:02:30.107 +03:00 [INF] Request finished in 1.3753ms 304 text/css +2018-08-02 14:02:30.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:02:30.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:02:30.108 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 14:02:30.108 +03:00 [INF] Request finished in 0.6594ms 304 text/css +2018-08-02 14:02:30.108 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 14:02:30.112 +03:00 [INF] Request finished in 4.8379ms 304 text/css +2018-08-02 14:02:30.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:02:30.113 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:02:30.113 +03:00 [INF] Request finished in 0.5564ms 304 text/css +2018-08-02 14:02:30.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:02:30.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:02:30.120 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 14:02:30.121 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 14:02:30.121 +03:00 [INF] Request finished in 0.8042ms 304 application/javascript +2018-08-02 14:02:30.121 +03:00 [INF] Request finished in 0.9174ms 304 application/javascript +2018-08-02 14:02:30.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:02:30.123 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 14:02:30.124 +03:00 [INF] Request finished in 0.7531ms 304 image/svg+xml +2018-08-02 14:02:30.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:02:30.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:02:30.125 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 14:02:30.125 +03:00 [INF] Request finished in 0.7554ms 304 application/javascript +2018-08-02 14:02:30.126 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 14:02:30.129 +03:00 [INF] Request finished in 1.5475ms 304 application/javascript +2018-08-02 14:02:30.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:02:30.136 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:02:30.136 +03:00 [INF] Request finished in 0.5317ms 304 image/svg+xml +2018-08-02 14:02:30.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:02:30.137 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 14:02:30.137 +03:00 [INF] Request finished in 0.447ms 304 image/png +2018-08-02 14:02:30.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:02:30.142 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:02:30.142 +03:00 [INF] Request finished in 1.944ms 304 image/png +2018-08-02 14:02:30.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:02:30.145 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:02:30.146 +03:00 [INF] Request finished in 3.5156ms 304 image/png +2018-08-02 14:02:30.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:02:30.148 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:02:30.149 +03:00 [INF] Request finished in 0.5457ms 304 image/png +2018-08-02 14:02:30.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:02:30.153 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:02:30.153 +03:00 [INF] Request finished in 1.0509ms 304 image/png +2018-08-02 14:02:30.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:02:30.155 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:02:30.155 +03:00 [INF] Request finished in 0.6233ms 304 image/png +2018-08-02 14:02:30.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:02:30.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:02:30.166 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:02:30.166 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:02:30.166 +03:00 [INF] Request finished in 0.5381ms 304 image/png +2018-08-02 14:02:30.166 +03:00 [INF] Request finished in 0.3839ms 304 image/png +2018-08-02 14:02:30.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:02:30.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:02:30.172 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:02:30.172 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:02:30.172 +03:00 [INF] Request finished in 0.8786ms 304 image/png +2018-08-02 14:02:30.172 +03:00 [INF] Request finished in 1.084ms 304 image/png +2018-08-02 14:02:30.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:02:30.184 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:02:30.185 +03:00 [INF] Request finished in 1.3873ms 304 image/png +2018-08-02 14:02:30.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:02:30.188 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:02:30.189 +03:00 [INF] Request finished in 1.4818ms 304 image/png +2018-08-02 14:02:30.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:02:30.193 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:02:30.193 +03:00 [INF] Request finished in 0.6934ms 304 image/png +2018-08-02 14:02:30.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:02:30.195 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 14:02:30.195 +03:00 [INF] Request finished in 1.4947ms 304 image/png +2018-08-02 14:02:30.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:02:30.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:02:30.204 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 14:02:30.204 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:02:30.204 +03:00 [INF] Request finished in 0.6549ms 304 image/png +2018-08-02 14:02:30.204 +03:00 [INF] Request finished in 0.4506ms 304 image/png +2018-08-02 14:02:30.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:02:30.208 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:02:30.208 +03:00 [INF] Request finished in 0.5161ms 304 image/png +2018-08-02 14:02:30.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:02:30.212 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:02:30.213 +03:00 [INF] Request finished in 2.8553ms 304 image/png +2018-08-02 14:02:30.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:02:30.215 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:02:30.215 +03:00 [INF] Request finished in 1.6778ms 304 image/png +2018-08-02 14:02:30.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:02:30.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:02:30.219 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:02:30.219 +03:00 [INF] Request finished in 1.1381ms 304 image/png +2018-08-02 14:02:30.219 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:02:30.219 +03:00 [INF] Request finished in 1.2331ms 304 image/png +2018-08-02 14:02:30.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:02:30.224 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:02:30.225 +03:00 [INF] Request finished in 0.604ms 304 image/png +2018-08-02 14:02:30.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:02:30.226 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:02:30.226 +03:00 [INF] Request finished in 1.0488ms 304 image/png +2018-08-02 14:02:30.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:02:30.230 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:02:30.230 +03:00 [INF] Request finished in 1.2014ms 304 image/png +2018-08-02 14:02:30.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:02:30.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:02:30.238 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:02:30.238 +03:00 [INF] Request finished in 0.6404ms 304 image/png +2018-08-02 14:02:30.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:02:30.238 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:02:30.239 +03:00 [INF] Request finished in 1.2488ms 304 image/png +2018-08-02 14:02:30.239 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:02:30.239 +03:00 [INF] Request finished in 1.4938ms 304 image/png +2018-08-02 14:02:30.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:02:30.242 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:02:30.242 +03:00 [INF] Request finished in 0.5778ms 304 image/png +2018-08-02 14:02:30.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:02:30.247 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:02:30.247 +03:00 [INF] Request finished in 0.8482ms 304 image/png +2018-08-02 14:02:30.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:02:30.253 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:02:30.254 +03:00 [INF] Request finished in 1.1435ms 304 image/png +2018-08-02 14:02:30.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:02:30.256 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:02:30.256 +03:00 [INF] Request finished in 1.1866ms 304 image/png +2018-08-02 14:02:30.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:02:30.258 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:02:30.258 +03:00 [INF] Request finished in 1.0342ms 304 image/png +2018-08-02 14:02:30.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:02:30.259 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:02:30.259 +03:00 [INF] Request finished in 0.4509ms 304 image/png +2018-08-02 14:02:30.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:02:30.285 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:02:30.285 +03:00 [INF] Request finished in 0.8798ms 304 image/png +2018-08-02 14:02:30.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:02:30.286 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:02:30.286 +03:00 [INF] Request finished in 0.6096ms 304 image/png +2018-08-02 14:02:30.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:02:30.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:02:30.289 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:02:30.290 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 14:02:30.290 +03:00 [INF] Request finished in 1.8025ms 304 application/javascript +2018-08-02 14:02:30.290 +03:00 [INF] Request finished in 1.787ms 304 image/png +2018-08-02 14:02:30.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:02:30.294 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:02:30.294 +03:00 [INF] Request finished in 0.6999ms 304 image/png +2018-08-02 14:02:30.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:02:30.300 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 14:02:30.301 +03:00 [INF] Request finished in 1.3185ms 304 application/javascript +2018-08-02 14:02:30.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:02:30.307 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 14:02:30.307 +03:00 [INF] Request finished in 0.7105ms 304 application/javascript +2018-08-02 14:02:30.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:02:30.308 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 14:02:30.308 +03:00 [INF] Request finished in 0.8946ms 304 application/javascript +2018-08-02 14:02:30.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:02:30.316 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 14:02:30.316 +03:00 [INF] Request finished in 0.7024ms 304 application/javascript +2018-08-02 14:02:30.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:02:30.320 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 14:02:30.320 +03:00 [INF] Request finished in 0.7087ms 304 application/javascript +2018-08-02 14:02:30.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:02:30.327 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 14:02:30.327 +03:00 [INF] Request finished in 0.5677ms 304 application/javascript +2018-08-02 14:02:30.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:02:30.336 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 14:02:30.340 +03:00 [INF] Request finished in 3.4671ms 304 application/javascript +2018-08-02 14:02:30.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:02:30.350 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 14:02:30.351 +03:00 [INF] Request finished in 0.915ms 304 application/javascript +2018-08-02 14:02:30.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:02:30.354 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 14:02:30.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:02:30.357 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 14:02:30.357 +03:00 [INF] Request finished in 2.8203ms 304 application/javascript +2018-08-02 14:02:30.357 +03:00 [INF] Request finished in 5.1531ms 304 application/javascript +2018-08-02 14:02:30.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:02:30.359 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 14:02:30.359 +03:00 [INF] Request finished in 0.7641ms 304 application/javascript +2018-08-02 14:02:30.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:02:30.373 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 14:02:30.374 +03:00 [INF] Request finished in 0.8699ms 304 application/javascript +2018-08-02 14:02:30.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:02:30.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:02:30.382 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 14:02:30.382 +03:00 [INF] Request finished in 1.3093ms 304 application/javascript +2018-08-02 14:02:30.383 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 14:02:30.383 +03:00 [INF] Request finished in 2.2697ms 304 application/javascript +2018-08-02 14:02:30.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:02:30.386 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 14:02:30.386 +03:00 [INF] Request finished in 2.216ms 304 application/javascript +2018-08-02 14:02:30.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:02:30.393 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 14:02:30.393 +03:00 [INF] Request finished in 1.6877ms 304 application/javascript +2018-08-02 14:02:30.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:02:30.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:02:30.406 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:02:30.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:02:30.414 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 14:02:30.414 +03:00 [INF] Request finished in 1.2266ms 304 application/javascript +2018-08-02 14:02:30.415 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:02:30.416 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.46690000000000004ms. +2018-08-02 14:02:30.416 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:02:30.417 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 10.0557ms +2018-08-02 14:02:30.417 +03:00 [INF] Request finished in 16.6395ms 200 text/plain; charset=utf-8 +2018-08-02 14:02:30.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:02:30.419 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:02:30.419 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:02:30.420 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:02:30.420 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.45840000000000003ms. +2018-08-02 14:02:30.421 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:02:30.421 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.9600000000000002ms +2018-08-02 14:02:30.421 +03:00 [INF] Request finished in 22.336ms 200 text/plain; charset=utf-8 +2018-08-02 14:02:30.425 +03:00 [INF] Request finished in 0.5877ms 304 application/javascript +2018-08-02 14:02:30.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:02:30.430 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:02:30.430 +03:00 [INF] Request finished in 1.4805ms 304 image/jpeg +2018-08-02 14:02:49.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:02:49.576 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:02:49.576 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:02:49.597 +03:00 [INF] Executed action /Index in 20.4831ms +2018-08-02 14:02:49.597 +03:00 [INF] Request finished in 351.8105ms 200 text/html; charset=utf-8 +2018-08-02 14:02:49.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:02:49.626 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 14:02:49.626 +03:00 [INF] Request finished in 1.4546ms 304 text/css +2018-08-02 14:02:49.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:02:49.629 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 14:02:49.629 +03:00 [INF] Request finished in 0.7253ms 304 text/css +2018-08-02 14:02:49.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:02:49.634 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 14:02:49.634 +03:00 [INF] Request finished in 0.6322ms 304 text/css +2018-08-02 14:02:49.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:02:49.649 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:02:49.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:02:49.649 +03:00 [INF] Request finished in 3.0634ms 304 text/css +2018-08-02 14:02:49.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:02:49.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:02:49.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:02:49.650 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 14:02:49.650 +03:00 [INF] Request finished in 1.0477ms 304 text/css +2018-08-02 14:02:49.650 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:02:49.650 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 14:02:49.650 +03:00 [INF] Request finished in 0.6725ms 304 text/css +2018-08-02 14:02:49.650 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 14:02:49.650 +03:00 [INF] Request finished in 0.597ms 304 text/css +2018-08-02 14:02:49.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:02:49.650 +03:00 [INF] Request finished in 0.7435ms 304 application/javascript +2018-08-02 14:02:49.651 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 14:02:49.651 +03:00 [INF] Request finished in 0.7679ms 304 text/css +2018-08-02 14:02:49.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:02:49.659 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 14:02:49.659 +03:00 [INF] Request finished in 0.8472ms 304 application/javascript +2018-08-02 14:02:49.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:02:49.660 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 14:02:49.660 +03:00 [INF] Request finished in 0.5884ms 304 application/javascript +2018-08-02 14:02:49.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:02:49.664 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 14:02:49.665 +03:00 [INF] Request finished in 2.0824ms 304 application/javascript +2018-08-02 14:02:49.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:02:49.672 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 14:02:49.672 +03:00 [INF] Request finished in 0.6385ms 304 application/javascript +2018-08-02 14:02:49.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:02:49.674 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 14:02:49.674 +03:00 [INF] Request finished in 0.6169ms 304 application/javascript +2018-08-02 14:02:49.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:02:49.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:02:49.679 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 14:02:49.679 +03:00 [INF] Request finished in 0.5003ms 304 application/javascript +2018-08-02 14:02:49.679 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 14:02:49.679 +03:00 [INF] Request finished in 0.4593ms 304 application/javascript +2018-08-02 14:02:49.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:02:49.682 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 14:02:49.682 +03:00 [INF] Request finished in 1.1484ms 304 application/javascript +2018-08-02 14:02:49.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:02:49.685 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 14:02:49.686 +03:00 [INF] Request finished in 1.0232ms 304 application/javascript +2018-08-02 14:02:49.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:02:49.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:02:49.694 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 14:02:49.694 +03:00 [INF] Request finished in 2.5693ms 304 application/javascript +2018-08-02 14:02:49.694 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 14:02:49.694 +03:00 [INF] Request finished in 0.7551ms 304 application/javascript +2018-08-02 14:02:49.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:02:49.701 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 14:02:49.701 +03:00 [INF] Request finished in 0.6646ms 304 application/javascript +2018-08-02 14:02:49.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:02:49.703 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 14:02:49.704 +03:00 [INF] Request finished in 0.6438ms 304 application/javascript +2018-08-02 14:02:49.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:02:49.707 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 14:02:49.707 +03:00 [INF] Request finished in 1.4458ms 304 application/javascript +2018-08-02 14:02:49.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:02:49.712 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 14:02:49.713 +03:00 [INF] Request finished in 1.8281ms 304 application/javascript +2018-08-02 14:02:49.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:02:49.721 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 14:02:49.721 +03:00 [INF] Request finished in 3.7146ms 304 application/javascript +2018-08-02 14:02:49.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:02:49.725 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 14:02:49.725 +03:00 [INF] Request finished in 2.6077ms 304 application/javascript +2018-08-02 14:02:49.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:02:49.727 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 14:02:49.727 +03:00 [INF] Request finished in 0.7815ms 304 application/javascript +2018-08-02 14:02:49.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:02:49.734 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 14:02:49.735 +03:00 [INF] Request finished in 2.0931ms 304 application/javascript +2018-08-02 14:02:49.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:02:49.737 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 14:02:49.737 +03:00 [INF] Request finished in 1.5312ms 304 application/javascript +2018-08-02 14:02:49.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:02:49.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:02:49.749 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:02:49.749 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:02:49.751 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:02:49.751 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:02:49.751 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12390000000000001ms. +2018-08-02 14:02:49.751 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:02:49.751 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5229ms +2018-08-02 14:02:49.752 +03:00 [INF] Request finished in 7.0424ms 200 text/plain; charset=utf-8 +2018-08-02 14:02:49.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:02:49.752 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7431ms. +2018-08-02 14:02:49.752 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:02:49.752 +03:00 [INF] Request finished in 0.6134ms 304 application/javascript +2018-08-02 14:02:49.753 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:02:49.753 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.8023000000000002ms +2018-08-02 14:02:49.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:02:49.753 +03:00 [INF] Request finished in 13.6512ms 200 text/plain; charset=utf-8 +2018-08-02 14:02:49.753 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 14:02:49.753 +03:00 [INF] Request finished in 0.5579ms 304 application/javascript +2018-08-02 14:02:49.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:02:49.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:02:49.759 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:02:49.759 +03:00 [INF] Request finished in 1.5275ms 304 image/svg+xml +2018-08-02 14:02:49.759 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 14:02:49.759 +03:00 [INF] Request finished in 0.6601ms 304 image/png +2018-08-02 14:02:49.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:02:49.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:02:49.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:02:49.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:02:49.773 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:02:49.773 +03:00 [INF] Request finished in 0.9562ms 304 image/png +2018-08-02 14:02:49.773 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:02:49.773 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:02:49.773 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:02:49.773 +03:00 [INF] Request finished in 1.1171ms 304 image/png +2018-08-02 14:02:49.773 +03:00 [INF] Request finished in 1.1803ms 304 image/png +2018-08-02 14:02:49.773 +03:00 [INF] Request finished in 1.1476ms 304 image/png +2018-08-02 14:02:49.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:02:49.783 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:02:49.783 +03:00 [INF] Request finished in 1.1663ms 304 image/png +2018-08-02 14:02:49.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:02:49.786 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:02:49.786 +03:00 [INF] Request finished in 0.7128ms 304 image/png +2018-08-02 14:02:49.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:02:49.789 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:02:49.789 +03:00 [INF] Request finished in 0.552ms 304 image/png +2018-08-02 14:02:49.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:02:49.792 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:02:49.793 +03:00 [INF] Request finished in 1.3047ms 304 image/png +2018-08-02 14:02:49.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:02:49.796 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:02:49.797 +03:00 [INF] Request finished in 2.4754ms 304 image/png +2018-08-02 14:02:49.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:02:49.801 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:02:49.801 +03:00 [INF] Request finished in 0.9146ms 304 image/png +2018-08-02 14:02:49.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:02:49.808 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:02:49.808 +03:00 [INF] Request finished in 0.574ms 304 image/png +2018-08-02 14:02:49.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:02:49.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:02:49.818 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 14:02:49.818 +03:00 [INF] Request finished in 0.5414ms 304 image/png +2018-08-02 14:02:49.818 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 14:02:49.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:02:49.818 +03:00 [INF] Request finished in 0.7538ms 304 image/png +2018-08-02 14:02:49.819 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:02:49.819 +03:00 [INF] Request finished in 0.9766ms 304 image/png +2018-08-02 14:02:49.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:02:49.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:02:49.826 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:02:49.826 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 14:02:49.827 +03:00 [INF] Request finished in 1.7716ms 304 image/svg+xml +2018-08-02 14:02:49.827 +03:00 [INF] Request finished in 1.3819ms 304 image/png +2018-08-02 14:02:49.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:02:49.840 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:02:49.841 +03:00 [INF] Request finished in 1.2558ms 304 image/png +2018-08-02 14:02:49.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:02:49.841 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:02:49.841 +03:00 [INF] Request finished in 1.7587ms 304 image/png +2018-08-02 14:02:49.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:02:49.842 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:02:49.842 +03:00 [INF] Request finished in 0.744ms 304 image/png +2018-08-02 14:02:49.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:02:49.852 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:02:49.853 +03:00 [INF] Request finished in 2.465ms 304 image/png +2018-08-02 14:02:49.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:02:49.854 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:02:49.854 +03:00 [INF] Request finished in 0.6897ms 304 image/png +2018-08-02 14:02:49.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:02:49.861 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:02:49.861 +03:00 [INF] Request finished in 0.7644ms 304 image/png +2018-08-02 14:02:49.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:02:49.864 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:02:49.864 +03:00 [INF] Request finished in 0.8788ms 304 image/png +2018-08-02 14:02:49.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:02:49.865 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:02:49.866 +03:00 [INF] Request finished in 0.9947ms 304 image/png +2018-08-02 14:02:49.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:02:49.868 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:02:49.868 +03:00 [INF] Request finished in 1.6686ms 304 image/png +2018-08-02 14:02:49.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:02:49.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:02:49.876 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:02:49.876 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:02:49.876 +03:00 [INF] Request finished in 0.555ms 304 image/png +2018-08-02 14:02:49.876 +03:00 [INF] Request finished in 0.5925ms 304 image/png +2018-08-02 14:02:49.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:02:49.877 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:02:49.877 +03:00 [INF] Request finished in 0.4061ms 304 image/png +2018-08-02 14:02:49.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:02:49.888 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:02:49.888 +03:00 [INF] Request finished in 0.5489ms 304 image/png +2018-08-02 14:02:49.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:02:49.891 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:02:49.891 +03:00 [INF] Request finished in 0.5712ms 304 image/png +2018-08-02 14:02:49.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:02:49.893 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:02:49.893 +03:00 [INF] Request finished in 0.6302ms 304 image/png +2018-08-02 14:02:49.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:02:49.896 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:02:49.896 +03:00 [INF] Request finished in 1.147ms 304 image/png +2018-08-02 14:02:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:02:49.902 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:02:49.904 +03:00 [INF] Request finished in 2.3296ms 304 image/png +2018-08-02 14:02:49.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:02:49.905 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:02:49.905 +03:00 [INF] Request finished in 0.5877ms 304 image/png +2018-08-02 14:02:49.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:02:49.909 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:02:49.909 +03:00 [INF] Request finished in 0.9184ms 304 image/png +2018-08-02 14:02:49.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:02:49.913 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:02:49.913 +03:00 [INF] Request finished in 0.6065ms 304 image/png +2018-08-02 14:02:49.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:02:49.915 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:02:49.916 +03:00 [INF] Request finished in 1.3264ms 304 image/png +2018-08-02 14:02:49.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:02:49.920 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:02:49.920 +03:00 [INF] Request finished in 0.9261ms 304 image/jpeg +2018-08-02 14:03:43.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:03:43.900 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:03:43.900 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:03:43.922 +03:00 [INF] Executed action /Index in 21.5307ms +2018-08-02 14:03:43.922 +03:00 [INF] Request finished in 314.8731ms 200 text/html; charset=utf-8 +2018-08-02 14:03:43.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:03:43.960 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 14:03:43.960 +03:00 [INF] Request finished in 0.6927ms 304 text/css +2018-08-02 14:03:43.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:03:43.965 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 14:03:43.966 +03:00 [INF] Request finished in 1.0688ms 304 text/css +2018-08-02 14:03:43.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:03:43.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:03:43.974 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 14:03:43.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:03:43.974 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 14:03:43.974 +03:00 [INF] Request finished in 0.8609ms 304 text/css +2018-08-02 14:03:43.974 +03:00 [INF] Request finished in 0.8488ms 304 text/css +2018-08-02 14:03:43.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:03:43.974 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 14:03:43.974 +03:00 [INF] Request finished in 0.5187ms 304 text/css +2018-08-02 14:03:43.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:03:43.975 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:03:43.975 +03:00 [INF] Request finished in 0.4472ms 304 text/css +2018-08-02 14:03:43.974 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 14:03:43.977 +03:00 [INF] Request finished in 3.04ms 304 text/css +2018-08-02 14:03:43.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:03:43.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:03:43.992 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 14:03:43.992 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:03:43.992 +03:00 [INF] Request finished in 0.9002ms 304 application/javascript +2018-08-02 14:03:43.992 +03:00 [INF] Request finished in 0.3938ms 304 text/css +2018-08-02 14:03:43.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:03:43.994 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 14:03:43.994 +03:00 [INF] Request finished in 0.8109ms 304 application/javascript +2018-08-02 14:03:43.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:03:43.999 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 14:03:43.999 +03:00 [INF] Request finished in 1.4197ms 304 application/javascript +2018-08-02 14:03:44.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:03:44.009 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 14:03:44.009 +03:00 [INF] Request finished in 0.8732ms 304 application/javascript +2018-08-02 14:03:44.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:03:44.010 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 14:03:44.010 +03:00 [INF] Request finished in 0.5553ms 304 application/javascript +2018-08-02 14:03:44.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:03:44.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:03:44.020 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 14:03:44.020 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 14:03:44.020 +03:00 [INF] Request finished in 0.75ms 304 application/javascript +2018-08-02 14:03:44.020 +03:00 [INF] Request finished in 2.9726ms 304 application/javascript +2018-08-02 14:03:44.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:03:44.022 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:03:44.023 +03:00 [INF] Request finished in 0.5575ms 304 image/svg+xml +2018-08-02 14:03:44.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:03:44.030 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 14:03:44.031 +03:00 [INF] Request finished in 0.9327ms 304 image/png +2018-08-02 14:03:44.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:03:44.032 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:03:44.032 +03:00 [INF] Request finished in 0.6416ms 304 image/png +2018-08-02 14:03:44.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:03:44.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:03:44.041 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:03:44.041 +03:00 [INF] Request finished in 0.6071ms 304 image/png +2018-08-02 14:03:44.041 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:03:44.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:03:44.041 +03:00 [INF] Request finished in 0.5195ms 304 image/png +2018-08-02 14:03:44.041 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:03:44.042 +03:00 [INF] Request finished in 0.3897ms 304 image/png +2018-08-02 14:03:44.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:03:44.051 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:03:44.051 +03:00 [INF] Request finished in 0.7636ms 304 image/png +2018-08-02 14:03:44.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:03:44.053 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:03:44.053 +03:00 [INF] Request finished in 1.1854ms 304 image/png +2018-08-02 14:03:44.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:03:44.054 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:03:44.054 +03:00 [INF] Request finished in 0.522ms 304 image/png +2018-08-02 14:03:44.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:03:44.061 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:03:44.062 +03:00 [INF] Request finished in 5.9396ms 304 image/png +2018-08-02 14:03:44.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:03:44.065 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:03:44.065 +03:00 [INF] Request finished in 0.9251ms 304 image/png +2018-08-02 14:03:44.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:03:44.066 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:03:44.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:03:44.066 +03:00 [INF] Request finished in 0.6231ms 304 image/png +2018-08-02 14:03:44.067 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:03:44.067 +03:00 [INF] Request finished in 2.6234ms 304 image/png +2018-08-02 14:03:44.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:03:44.095 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:03:44.096 +03:00 [INF] Request finished in 0.9724ms 304 image/png +2018-08-02 14:03:44.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:03:44.098 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 14:03:44.098 +03:00 [INF] Request finished in 1.8271ms 304 image/png +2018-08-02 14:03:44.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:03:44.098 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 14:03:44.099 +03:00 [INF] Request finished in 0.7046ms 304 image/png +2018-08-02 14:03:44.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:03:44.108 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:03:44.108 +03:00 [INF] Request finished in 0.9936ms 304 image/png +2018-08-02 14:03:44.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:03:44.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:03:44.132 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:03:44.132 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 14:03:44.132 +03:00 [INF] Request finished in 0.5492ms 304 image/png +2018-08-02 14:03:44.132 +03:00 [INF] Request finished in 0.6402ms 304 image/svg+xml +2018-08-02 14:03:44.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:03:44.141 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:03:44.141 +03:00 [INF] Request finished in 0.7936ms 304 image/png +2018-08-02 14:03:44.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:03:44.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:03:44.142 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:03:44.143 +03:00 [INF] Request finished in 0.5805ms 304 image/png +2018-08-02 14:03:44.143 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:03:44.143 +03:00 [INF] Request finished in 0.4631ms 304 image/png +2018-08-02 14:03:44.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:03:44.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:03:44.144 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:03:44.144 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:03:44.144 +03:00 [INF] Request finished in 0.4416ms 304 image/png +2018-08-02 14:03:44.144 +03:00 [INF] Request finished in 0.6486ms 304 image/png +2018-08-02 14:03:44.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:03:44.159 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:03:44.159 +03:00 [INF] Request finished in 0.6061ms 304 image/png +2018-08-02 14:03:44.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:03:44.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:03:44.179 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:03:44.179 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:03:44.179 +03:00 [INF] Request finished in 0.8048ms 304 image/png +2018-08-02 14:03:44.179 +03:00 [INF] Request finished in 0.5783ms 304 image/png +2018-08-02 14:03:44.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:03:44.183 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:03:44.183 +03:00 [INF] Request finished in 3.2738ms 304 image/png +2018-08-02 14:03:44.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:03:44.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:03:44.197 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:03:44.197 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:03:44.198 +03:00 [INF] Request finished in 0.9173ms 304 image/png +2018-08-02 14:03:44.198 +03:00 [INF] Request finished in 1.0211ms 304 image/png +2018-08-02 14:03:44.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:03:44.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:03:44.217 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:03:44.217 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:03:44.218 +03:00 [INF] Request finished in 1.3499ms 304 image/png +2018-08-02 14:03:44.218 +03:00 [INF] Request finished in 1.2341ms 304 image/png +2018-08-02 14:03:44.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:03:44.222 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:03:44.222 +03:00 [INF] Request finished in 1.0872ms 304 image/png +2018-08-02 14:03:44.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:03:44.233 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:03:44.234 +03:00 [INF] Request finished in 1.3247ms 304 image/png +2018-08-02 14:03:44.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:03:44.248 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:03:44.248 +03:00 [INF] Request finished in 1.1913ms 304 image/png +2018-08-02 14:03:44.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:03:44.259 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:03:44.260 +03:00 [INF] Request finished in 1.1404ms 304 image/png +2018-08-02 14:03:44.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:03:44.274 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:03:44.274 +03:00 [INF] Request finished in 2.3455ms 304 image/png +2018-08-02 14:03:44.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:03:44.281 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:03:44.282 +03:00 [INF] Request finished in 2.479ms 304 image/png +2018-08-02 14:03:44.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:03:44.305 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:03:44.305 +03:00 [INF] Request finished in 9.811ms 304 image/png +2018-08-02 14:03:44.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:03:44.315 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 14:03:44.315 +03:00 [INF] Request finished in 4.2521ms 304 application/javascript +2018-08-02 14:03:44.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:03:44.328 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 14:03:44.328 +03:00 [INF] Request finished in 1.3513ms 304 application/javascript +2018-08-02 14:03:44.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:03:44.340 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 14:03:44.340 +03:00 [INF] Request finished in 1.5558ms 304 application/javascript +2018-08-02 14:03:44.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:03:44.343 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 14:03:44.343 +03:00 [INF] Request finished in 1.3691ms 304 application/javascript +2018-08-02 14:03:44.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:03:44.356 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 14:03:44.356 +03:00 [INF] Request finished in 2.1895ms 304 application/javascript +2018-08-02 14:03:44.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:03:44.373 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 14:03:44.374 +03:00 [INF] Request finished in 1.1022ms 304 application/javascript +2018-08-02 14:03:44.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:03:44.378 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 14:03:44.378 +03:00 [INF] Request finished in 1.4623ms 304 application/javascript +2018-08-02 14:03:44.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:03:44.406 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 14:03:44.408 +03:00 [INF] Request finished in 12.5456ms 304 application/javascript +2018-08-02 14:03:44.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:03:44.424 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 14:03:44.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:03:44.428 +03:00 [INF] Request finished in 4.077ms 304 application/javascript +2018-08-02 14:03:44.429 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 14:03:44.429 +03:00 [INF] Request finished in 1.0427ms 304 application/javascript +2018-08-02 14:03:44.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:03:44.434 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 14:03:44.434 +03:00 [INF] Request finished in 2.5927ms 304 application/javascript +2018-08-02 14:03:44.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:03:44.437 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 14:03:44.438 +03:00 [INF] Request finished in 1.504ms 304 application/javascript +2018-08-02 14:03:44.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:03:44.442 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 14:03:44.442 +03:00 [INF] Request finished in 0.7494ms 304 application/javascript +2018-08-02 14:03:44.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:03:44.455 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 14:03:44.455 +03:00 [INF] Request finished in 0.9134ms 304 application/javascript +2018-08-02 14:03:44.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:03:44.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:03:44.460 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:03:44.460 +03:00 [INF] Request finished in 0.5891ms 304 application/javascript +2018-08-02 14:03:44.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:03:44.463 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:03:44.464 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:03:44.465 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:03:44.465 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.18150000000000002ms. +2018-08-02 14:03:44.466 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:03:44.466 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.9885ms +2018-08-02 14:03:44.466 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:03:44.466 +03:00 [INF] Request finished in 5.9147ms 200 text/plain; charset=utf-8 +2018-08-02 14:03:44.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:03:44.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:03:44.466 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 14:03:44.466 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.45470000000000005ms. +2018-08-02 14:03:44.467 +03:00 [INF] Request finished in 0.4635ms 304 application/javascript +2018-08-02 14:03:44.467 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:03:44.467 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2873ms +2018-08-02 14:03:44.467 +03:00 [INF] Request finished in 11.135ms 200 text/plain; charset=utf-8 +2018-08-02 14:03:44.467 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:03:44.468 +03:00 [INF] Request finished in 1.745ms 304 image/jpeg +2018-08-02 14:05:55.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:05:56.261 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:05:56.261 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:05:56.282 +03:00 [INF] Executed action /Index in 20.5225ms +2018-08-02 14:05:56.282 +03:00 [INF] Request finished in 311.4316ms 200 text/html; charset=utf-8 +2018-08-02 14:05:56.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:05:56.319 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 14:05:56.319 +03:00 [INF] Request finished in 0.7806ms 304 text/css +2018-08-02 14:05:56.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:05:56.324 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 14:05:56.325 +03:00 [INF] Request finished in 0.8836ms 304 text/css +2018-08-02 14:05:56.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:05:56.333 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 14:05:56.333 +03:00 [INF] Request finished in 2.1291ms 304 text/css +2018-08-02 14:05:56.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:05:56.340 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 14:05:56.340 +03:00 [INF] Request finished in 3.6845ms 304 text/css +2018-08-02 14:05:56.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:05:56.343 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 14:05:56.343 +03:00 [INF] Request finished in 2.6123ms 304 text/css +2018-08-02 14:05:56.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:05:56.344 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 14:05:56.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:05:56.344 +03:00 [INF] Request finished in 0.5608ms 304 text/css +2018-08-02 14:05:56.345 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:05:56.345 +03:00 [INF] Request finished in 0.6282ms 304 text/css +2018-08-02 14:05:56.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:05:56.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:05:56.345 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:05:56.345 +03:00 [INF] Request finished in 0.4067ms 304 text/css +2018-08-02 14:05:56.345 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 14:05:56.346 +03:00 [INF] Request finished in 0.4928ms 304 application/javascript +2018-08-02 14:05:56.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:05:56.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:05:56.362 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 14:05:56.362 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 14:05:56.362 +03:00 [INF] Request finished in 0.5266ms 304 application/javascript +2018-08-02 14:05:56.362 +03:00 [INF] Request finished in 0.5346ms 304 application/javascript +2018-08-02 14:05:56.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:05:56.364 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 14:05:56.365 +03:00 [INF] Request finished in 0.9452ms 304 application/javascript +2018-08-02 14:05:56.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:05:56.366 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 14:05:56.366 +03:00 [INF] Request finished in 0.4599ms 304 application/javascript +2018-08-02 14:05:56.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:05:56.372 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 14:05:56.372 +03:00 [INF] Request finished in 0.5741ms 304 application/javascript +2018-08-02 14:05:56.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:05:56.380 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 14:05:56.380 +03:00 [INF] Request finished in 1.2775ms 304 application/javascript +2018-08-02 14:05:56.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:05:56.389 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 14:05:56.389 +03:00 [INF] Request finished in 0.579ms 304 application/javascript +2018-08-02 14:05:56.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:05:56.392 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 14:05:56.392 +03:00 [INF] Request finished in 1.0497ms 304 application/javascript +2018-08-02 14:05:56.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:05:56.402 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 14:05:56.403 +03:00 [INF] Request finished in 0.7383ms 304 application/javascript +2018-08-02 14:05:56.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:05:56.406 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 14:05:56.406 +03:00 [INF] Request finished in 0.6424ms 304 application/javascript +2018-08-02 14:05:56.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:05:56.407 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 14:05:56.407 +03:00 [INF] Request finished in 0.5289ms 304 application/javascript +2018-08-02 14:05:56.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:05:56.417 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 14:05:56.417 +03:00 [INF] Request finished in 0.6847ms 304 application/javascript +2018-08-02 14:05:56.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:05:56.421 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 14:05:56.421 +03:00 [INF] Request finished in 2.141ms 304 application/javascript +2018-08-02 14:05:56.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:05:56.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:05:56.432 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 14:05:56.432 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 14:05:56.432 +03:00 [INF] Request finished in 1.0299ms 304 application/javascript +2018-08-02 14:05:56.432 +03:00 [INF] Request finished in 1.1311ms 304 application/javascript +2018-08-02 14:05:56.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:05:56.440 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 14:05:56.442 +03:00 [INF] Request finished in 2.6357ms 304 application/javascript +2018-08-02 14:05:56.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:05:56.454 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 14:05:56.454 +03:00 [INF] Request finished in 1.4925ms 304 application/javascript +2018-08-02 14:05:56.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:05:56.457 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 14:05:56.458 +03:00 [INF] Request finished in 1.1182ms 304 application/javascript +2018-08-02 14:05:56.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:05:56.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:05:56.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:05:56.472 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 14:05:56.473 +03:00 [INF] Request finished in 0.8864ms 304 application/javascript +2018-08-02 14:05:56.473 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 14:05:56.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:05:56.473 +03:00 [INF] Request finished in 0.6851ms 304 application/javascript +2018-08-02 14:05:56.473 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 14:05:56.473 +03:00 [INF] Request finished in 0.5864ms 304 application/javascript +2018-08-02 14:05:56.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:05:56.476 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:05:56.480 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:05:56.480 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:05:56.480 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.202ms. +2018-08-02 14:05:56.480 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:05:56.481 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:05:56.481 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.5563ms +2018-08-02 14:05:56.481 +03:00 [INF] Request finished in 7.3314ms 200 text/plain; charset=utf-8 +2018-08-02 14:05:56.481 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4383ms. +2018-08-02 14:05:56.482 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:05:56.482 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7922ms +2018-08-02 14:05:56.482 +03:00 [INF] Request finished in 12.0561ms 200 text/plain; charset=utf-8 +2018-08-02 14:05:56.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:05:56.484 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:05:56.484 +03:00 [INF] Request finished in 2.0801ms 304 application/javascript +2018-08-02 14:05:56.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:05:56.492 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 14:05:56.492 +03:00 [INF] Request finished in 0.6932ms 304 image/png +2018-08-02 14:05:56.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:05:56.493 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:05:56.493 +03:00 [INF] Request finished in 0.4246ms 304 image/svg+xml +2018-08-02 14:05:56.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:05:56.513 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:05:56.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:05:56.513 +03:00 [INF] Request finished in 1.154ms 304 image/png +2018-08-02 14:05:56.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:05:56.514 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:05:56.514 +03:00 [INF] Request finished in 0.4761ms 304 image/png +2018-08-02 14:05:56.514 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:05:56.514 +03:00 [INF] Request finished in 0.296ms 304 image/png +2018-08-02 14:05:56.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:05:56.515 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:05:56.515 +03:00 [INF] Request finished in 0.8528ms 304 image/png +2018-08-02 14:05:56.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:05:56.521 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:05:56.522 +03:00 [INF] Request finished in 3.1073ms 304 image/png +2018-08-02 14:05:56.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:05:56.527 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:05:56.527 +03:00 [INF] Request finished in 0.5654ms 304 image/png +2018-08-02 14:05:56.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:05:56.529 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:05:56.529 +03:00 [INF] Request finished in 0.5182ms 304 image/png +2018-08-02 14:05:56.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:05:56.539 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:05:56.539 +03:00 [INF] Request finished in 0.7791ms 304 image/png +2018-08-02 14:05:56.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:05:56.543 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:05:56.544 +03:00 [INF] Request finished in 0.6229ms 304 image/png +2018-08-02 14:05:56.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:05:56.544 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:05:56.544 +03:00 [INF] Request finished in 0.8028ms 304 image/png +2018-08-02 14:05:56.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:05:56.552 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:05:56.552 +03:00 [INF] Request finished in 1.557ms 304 image/png +2018-08-02 14:05:56.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:05:56.573 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 14:05:56.573 +03:00 [INF] Request finished in 1.4968ms 304 image/png +2018-08-02 14:05:56.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:05:56.574 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:05:56.574 +03:00 [INF] Request finished in 0.4593ms 304 image/png +2018-08-02 14:05:56.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:05:56.576 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 14:05:56.576 +03:00 [INF] Request finished in 2.0151ms 304 image/png +2018-08-02 14:05:56.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:05:56.583 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:05:56.583 +03:00 [INF] Request finished in 0.5752ms 304 image/png +2018-08-02 14:05:56.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:05:56.584 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 14:05:56.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:05:56.585 +03:00 [INF] Request finished in 1.1538ms 304 image/svg+xml +2018-08-02 14:05:56.585 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:05:56.585 +03:00 [INF] Request finished in 1.06ms 304 image/png +2018-08-02 14:05:56.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:05:56.596 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:05:56.596 +03:00 [INF] Request finished in 0.5952ms 304 image/png +2018-08-02 14:05:56.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:05:56.609 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:05:56.610 +03:00 [INF] Request finished in 0.8549ms 304 image/png +2018-08-02 14:05:56.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:05:56.612 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:05:56.612 +03:00 [INF] Request finished in 0.7164ms 304 image/png +2018-08-02 14:05:56.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:05:56.615 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:05:56.616 +03:00 [INF] Request finished in 4.2096ms 304 image/png +2018-08-02 14:05:56.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:05:56.618 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:05:56.618 +03:00 [INF] Request finished in 1.0225ms 304 image/png +2018-08-02 14:05:56.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:05:56.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:05:56.638 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:05:56.639 +03:00 [INF] Request finished in 0.5451ms 304 image/png +2018-08-02 14:05:56.639 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:05:56.639 +03:00 [INF] Request finished in 0.4444ms 304 image/png +2018-08-02 14:05:56.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:05:56.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:05:56.648 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:05:56.649 +03:00 [INF] Request finished in 0.6005ms 304 image/png +2018-08-02 14:05:56.649 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:05:56.649 +03:00 [INF] Request finished in 0.4138ms 304 image/png +2018-08-02 14:05:56.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:05:56.650 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:05:56.650 +03:00 [INF] Request finished in 0.9549ms 304 image/png +2018-08-02 14:05:56.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:05:56.657 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:05:56.657 +03:00 [INF] Request finished in 0.6768ms 304 image/png +2018-08-02 14:05:56.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:05:56.672 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:05:56.672 +03:00 [INF] Request finished in 2.599ms 304 image/png +2018-08-02 14:05:56.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:05:56.673 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:05:56.673 +03:00 [INF] Request finished in 0.6271ms 304 image/png +2018-08-02 14:05:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:05:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:05:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:05:56.681 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:05:56.681 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:05:56.681 +03:00 [INF] Request finished in 0.3536ms 304 image/png +2018-08-02 14:05:56.681 +03:00 [INF] Request finished in 0.5521ms 304 image/png +2018-08-02 14:05:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:05:56.681 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:05:56.681 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:05:56.681 +03:00 [INF] Request finished in 0.5305ms 304 image/png +2018-08-02 14:05:56.681 +03:00 [INF] Request finished in 0.3217ms 304 image/png +2018-08-02 14:05:56.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:05:56.689 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:05:56.691 +03:00 [INF] Request finished in 1.6229ms 304 image/png +2018-08-02 14:05:56.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:05:56.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:05:56.697 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:05:56.697 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:05:56.697 +03:00 [INF] Request finished in 0.4896ms 304 image/png +2018-08-02 14:05:56.697 +03:00 [INF] Request finished in 0.7663ms 304 image/jpeg +2018-08-02 14:05:56.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:05:56.698 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:05:56.698 +03:00 [INF] Request finished in 0.7187ms 304 image/png +2018-08-02 14:08:01.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:08:02.034 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:08:02.035 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:08:02.058 +03:00 [INF] Executed action /Index in 23.142200000000003ms +2018-08-02 14:08:02.058 +03:00 [INF] Request finished in 374.3319ms 200 text/html; charset=utf-8 +2018-08-02 14:08:02.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:08:02.087 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-02 14:08:02.087 +03:00 [INF] Request finished in 0.636ms 304 text/css +2018-08-02 14:08:02.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:08:02.092 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-02 14:08:02.092 +03:00 [INF] Request finished in 1.6302ms 304 text/css +2018-08-02 14:08:02.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:08:02.093 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-02 14:08:02.093 +03:00 [INF] Request finished in 1.1902ms 304 text/css +2018-08-02 14:08:02.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:08:02.096 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-02 14:08:02.096 +03:00 [INF] Request finished in 0.8846ms 304 text/css +2018-08-02 14:08:02.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:08:02.111 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-02 14:08:02.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:08:02.111 +03:00 [INF] Request finished in 2.1106ms 304 text/css +2018-08-02 14:08:02.113 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-02 14:08:02.113 +03:00 [INF] Request finished in 1.0851ms 304 text/css +2018-08-02 14:08:02.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:08:02.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:08:02.118 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-02 14:08:02.118 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-02 14:08:02.118 +03:00 [INF] Request finished in 2.9985ms 304 text/css +2018-08-02 14:08:02.118 +03:00 [INF] Request finished in 0.3784ms 304 text/css +2018-08-02 14:08:02.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:08:02.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:08:02.122 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-02 14:08:02.122 +03:00 [INF] Request finished in 1.397ms 304 application/javascript +2018-08-02 14:08:02.122 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-02 14:08:02.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:08:02.122 +03:00 [INF] Request finished in 1.6469ms 304 application/javascript +2018-08-02 14:08:02.123 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-02 14:08:02.123 +03:00 [INF] Request finished in 0.4357ms 304 application/javascript +2018-08-02 14:08:02.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:08:02.129 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-02 14:08:02.129 +03:00 [INF] Request finished in 1.4413ms 304 application/javascript +2018-08-02 14:08:02.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:08:02.137 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-02 14:08:02.137 +03:00 [INF] Request finished in 0.6199ms 304 application/javascript +2018-08-02 14:08:02.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:08:02.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:08:02.140 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-02 14:08:02.140 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-02 14:08:02.140 +03:00 [INF] Request finished in 0.5269ms 304 application/javascript +2018-08-02 14:08:02.140 +03:00 [INF] Request finished in 1.0099ms 304 application/javascript +2018-08-02 14:08:02.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:08:02.142 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-02 14:08:02.142 +03:00 [INF] Request finished in 0.6104ms 304 application/javascript +2018-08-02 14:08:02.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:08:02.147 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-02 14:08:02.147 +03:00 [INF] Request finished in 0.8203ms 304 application/javascript +2018-08-02 14:08:02.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:08:02.152 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-02 14:08:02.152 +03:00 [INF] Request finished in 1.1804ms 304 application/javascript +2018-08-02 14:08:02.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:08:02.154 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-02 14:08:02.154 +03:00 [INF] Request finished in 0.5642ms 304 application/javascript +2018-08-02 14:08:02.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:08:02.156 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-02 14:08:02.156 +03:00 [INF] Request finished in 1.0383ms 304 application/javascript +2018-08-02 14:08:02.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:08:02.163 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-02 14:08:02.163 +03:00 [INF] Request finished in 0.7693ms 304 application/javascript +2018-08-02 14:08:02.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:08:02.166 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-02 14:08:02.166 +03:00 [INF] Request finished in 1.886ms 304 application/javascript +2018-08-02 14:08:02.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:08:02.172 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-02 14:08:02.172 +03:00 [INF] Request finished in 0.6588ms 304 application/javascript +2018-08-02 14:08:02.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:08:02.178 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-02 14:08:02.178 +03:00 [INF] Request finished in 3.7529ms 304 application/javascript +2018-08-02 14:08:02.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:08:02.180 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-02 14:08:02.181 +03:00 [INF] Request finished in 1.5457ms 304 application/javascript +2018-08-02 14:08:02.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:08:02.188 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-02 14:08:02.188 +03:00 [INF] Request finished in 1.4506ms 304 application/javascript +2018-08-02 14:08:02.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:08:02.190 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-02 14:08:02.192 +03:00 [INF] Request finished in 1.2723ms 304 application/javascript +2018-08-02 14:08:02.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:08:02.198 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-02 14:08:02.199 +03:00 [INF] Request finished in 4.1192ms 304 application/javascript +2018-08-02 14:08:02.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:08:02.201 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-02 14:08:02.201 +03:00 [INF] Request finished in 1.6314ms 304 application/javascript +2018-08-02 14:08:02.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:08:02.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:08:02.224 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:08:02.226 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:08:02.226 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:08:02.227 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22790000000000002ms. +2018-08-02 14:08:02.227 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:08:02.227 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:08:02.227 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.6105ms +2018-08-02 14:08:02.228 +03:00 [INF] Request finished in 8.9294ms 200 text/plain; charset=utf-8 +2018-08-02 14:08:02.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:08:02.228 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.75450000000000006ms. +2018-08-02 14:08:02.228 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:08:02.229 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-02 14:08:02.229 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.7884ms +2018-08-02 14:08:02.229 +03:00 [INF] Request finished in 20.1717ms 200 text/plain; charset=utf-8 +2018-08-02 14:08:02.229 +03:00 [INF] Request finished in 0.602ms 304 application/javascript +2018-08-02 14:08:02.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:08:02.234 +03:00 [INF] The file /js/vs.js was not modified +2018-08-02 14:08:02.234 +03:00 [INF] Request finished in 1.063ms 304 application/javascript +2018-08-02 14:08:02.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:08:02.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:08:02.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:08:02.256 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-02 14:08:02.256 +03:00 [INF] The file /img/modular.png was not modified +2018-08-02 14:08:02.260 +03:00 [INF] Request finished in 4.2305ms 304 image/png +2018-08-02 14:08:02.260 +03:00 [INF] Request finished in 4.6364ms 304 image/png +2018-08-02 14:08:02.260 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-02 14:08:02.260 +03:00 [INF] Request finished in 4.5121ms 304 image/svg+xml +2018-08-02 14:08:02.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:08:02.264 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-02 14:08:02.264 +03:00 [INF] Request finished in 1.0946ms 304 image/png +2018-08-02 14:08:02.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:08:02.270 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-02 14:08:02.270 +03:00 [INF] Request finished in 3.1292ms 304 image/png +2018-08-02 14:08:02.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:08:02.276 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-02 14:08:02.276 +03:00 [INF] Request finished in 1.3974ms 304 image/png +2018-08-02 14:08:02.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:08:02.280 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-02 14:08:02.281 +03:00 [INF] Request finished in 1.3556ms 304 image/png +2018-08-02 14:08:02.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:08:02.289 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-02 14:08:02.289 +03:00 [INF] Request finished in 0.6018ms 304 image/png +2018-08-02 14:08:02.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:08:02.294 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-02 14:08:02.294 +03:00 [INF] Request finished in 2.5148ms 304 image/png +2018-08-02 14:08:02.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:08:02.298 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-02 14:08:02.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:08:02.298 +03:00 [INF] Request finished in 0.7298ms 304 image/png +2018-08-02 14:08:02.299 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-02 14:08:02.299 +03:00 [INF] Request finished in 1.0166ms 304 image/png +2018-08-02 14:08:02.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:08:02.303 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-02 14:08:02.303 +03:00 [INF] Request finished in 0.5002ms 304 image/png +2018-08-02 14:08:02.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:08:02.304 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-02 14:08:02.304 +03:00 [INF] Request finished in 0.5149ms 304 image/png +2018-08-02 14:08:02.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:08:02.307 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-02 14:08:02.307 +03:00 [INF] Request finished in 0.7868ms 304 image/png +2018-08-02 14:08:02.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:08:02.308 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-02 14:08:02.309 +03:00 [INF] Request finished in 0.5463ms 304 image/png +2018-08-02 14:08:02.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:08:02.316 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-02 14:08:02.316 +03:00 [INF] Request finished in 0.8183ms 304 image/png +2018-08-02 14:08:02.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:08:02.317 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-02 14:08:02.317 +03:00 [INF] Request finished in 0.5994ms 304 image/png +2018-08-02 14:08:02.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:08:02.320 +03:00 [INF] The file /img/demo.svg was not modified +2018-08-02 14:08:02.320 +03:00 [INF] Request finished in 0.7494ms 304 image/svg+xml +2018-08-02 14:08:02.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:08:02.322 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-02 14:08:02.322 +03:00 [INF] Request finished in 1.4476ms 304 image/png +2018-08-02 14:08:02.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:08:02.328 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-02 14:08:02.329 +03:00 [INF] Request finished in 0.7292ms 304 image/png +2018-08-02 14:08:02.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:08:02.331 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-02 14:08:02.331 +03:00 [INF] Request finished in 0.5447ms 304 image/png +2018-08-02 14:08:02.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:08:02.332 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-02 14:08:02.332 +03:00 [INF] Request finished in 0.5067ms 304 image/png +2018-08-02 14:08:02.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:08:02.338 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-02 14:08:02.339 +03:00 [INF] Request finished in 0.8912ms 304 image/png +2018-08-02 14:08:02.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:08:02.341 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-02 14:08:02.341 +03:00 [INF] Request finished in 2.5674ms 304 image/png +2018-08-02 14:08:02.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:08:02.344 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-02 14:08:02.344 +03:00 [INF] Request finished in 1.0267ms 304 image/png +2018-08-02 14:08:02.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/3.png +2018-08-02 14:08:02.345 +03:00 [INF] The file /assets/tools/3.png was not modified +2018-08-02 14:08:02.345 +03:00 [INF] Request finished in 0.5682ms 304 image/png +2018-08-02 14:08:02.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/4.png +2018-08-02 14:08:02.352 +03:00 [INF] The file /assets/tools/4.png was not modified +2018-08-02 14:08:02.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/5.png +2018-08-02 14:08:02.353 +03:00 [INF] Request finished in 1.3928ms 304 image/png +2018-08-02 14:08:02.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:08:02.353 +03:00 [INF] The file /assets/tools/5.png was not modified +2018-08-02 14:08:02.353 +03:00 [INF] Request finished in 0.6854ms 304 image/png +2018-08-02 14:08:02.353 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-02 14:08:02.353 +03:00 [INF] Request finished in 0.4206ms 304 image/png +2018-08-02 14:08:02.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:08:02.355 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-02 14:08:02.355 +03:00 [INF] Request finished in 0.7037ms 304 image/png +2018-08-02 14:08:02.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:08:02.362 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-02 14:08:02.362 +03:00 [INF] Request finished in 1.7441ms 304 image/png +2018-08-02 14:08:02.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:08:02.369 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-02 14:08:02.369 +03:00 [INF] Request finished in 0.6646ms 304 image/png +2018-08-02 14:08:02.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/12.png +2018-08-02 14:08:02.378 +03:00 [INF] The file /assets/tools/12.png was not modified +2018-08-02 14:08:02.378 +03:00 [INF] Request finished in 2.49ms 304 image/png +2018-08-02 14:08:02.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:08:02.380 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-02 14:08:02.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:08:02.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:08:02.381 +03:00 [INF] The file /assets/tools/11.png was not modified +2018-08-02 14:08:02.381 +03:00 [INF] Request finished in 1.061ms 304 image/png +2018-08-02 14:08:02.382 +03:00 [INF] Request finished in 3.7613ms 304 image/png +2018-08-02 14:08:02.385 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-02 14:08:02.385 +03:00 [INF] Request finished in 4.3521ms 304 image/png +2018-08-02 14:08:02.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:08:02.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:08:02.394 +03:00 [INF] The file /assets/tools/14.png was not modified +2018-08-02 14:08:02.394 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-02 14:08:02.394 +03:00 [INF] Request finished in 0.5914ms 304 image/png +2018-08-02 14:08:02.395 +03:00 [INF] Request finished in 1.5124ms 304 image/png +2018-08-02 14:08:02.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:08:02.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:08:02.397 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-02 14:08:02.397 +03:00 [INF] Request finished in 1.8988ms 304 image/jpeg +2018-08-02 14:08:02.397 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-02 14:08:02.398 +03:00 [INF] Request finished in 2.3392ms 304 image/png +2018-08-02 14:08:51.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:08:51.251 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:08:51.251 +03:00 [INF] Request finished in 1.1251ms 200 text/css +2018-08-02 14:08:51.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:08:51.303 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:08:51.303 +03:00 [INF] Request finished in 6.8243ms 200 text/css +2018-08-02 14:08:52.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:08:52.012 +03:00 [INF] Request finished in 1.6635ms 404 +2018-08-02 14:12:06.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:12:06.523 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:12:06.523 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:12:06.544 +03:00 [INF] Executed action /Index in 21.3655ms +2018-08-02 14:12:06.544 +03:00 [INF] Request finished in 289.5517ms 200 text/html; charset=utf-8 +2018-08-02 14:12:06.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:12:06.585 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:12:06.585 +03:00 [INF] Request finished in 4.8367ms 200 text/css +2018-08-02 14:12:06.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:12:06.590 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:12:06.591 +03:00 [INF] Request finished in 1.3909ms 200 text/css +2018-08-02 14:12:06.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:12:06.596 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:12:06.597 +03:00 [INF] Request finished in 1.3244ms 200 text/css +2018-08-02 14:12:06.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:12:06.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:12:06.606 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:12:06.606 +03:00 [INF] Request finished in 2.0067ms 200 text/css +2018-08-02 14:12:06.607 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:12:06.607 +03:00 [INF] Request finished in 1.2732ms 200 text/css +2018-08-02 14:12:06.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:12:06.616 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:12:06.616 +03:00 [INF] Request finished in 3.2851ms 200 text/css +2018-08-02 14:12:06.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:12:06.621 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:12:06.621 +03:00 [INF] Request finished in 2.1754ms 200 text/css +2018-08-02 14:12:06.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:12:06.650 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:12:06.650 +03:00 [INF] Request finished in 0.9856ms 200 text/css +2018-08-02 14:12:06.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:12:06.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:12:06.660 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:12:06.660 +03:00 [INF] Request finished in 4.7542ms 200 application/javascript +2018-08-02 14:12:06.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:12:06.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:12:06.668 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:12:06.668 +03:00 [INF] Request finished in 1.6282ms 200 application/javascript +2018-08-02 14:12:06.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:12:06.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass-128.png +2018-08-02 14:12:06.677 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:12:06.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:12:06.683 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:12:06.684 +03:00 [INF] Request finished in 25.3237ms 200 application/javascript +2018-08-02 14:12:06.684 +03:00 [INF] Request finished in 11.9502ms 200 application/javascript +2018-08-02 14:12:06.685 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:12:06.685 +03:00 [INF] Request finished in 2.0729ms 200 application/javascript +2018-08-02 14:12:06.685 +03:00 [INF] Sending file. Request path: '/assets/tools/sass-128.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass-128.png' +2018-08-02 14:12:06.685 +03:00 [INF] Request finished in 9.9322ms 200 image/png +2018-08-02 14:12:06.685 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:12:06.685 +03:00 [INF] Request finished in 19.2599ms 200 application/javascript +2018-08-02 14:12:06.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:12:06.690 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:12:06.690 +03:00 [INF] Request finished in 0.9781ms 200 application/javascript +2018-08-02 14:12:06.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:12:06.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:12:06.701 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:12:06.702 +03:00 [INF] Request finished in 0.8383ms 200 application/javascript +2018-08-02 14:12:06.704 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:12:06.705 +03:00 [INF] Request finished in 4.1666ms 200 application/javascript +2018-08-02 14:12:06.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:12:06.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:12:06.719 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:12:06.721 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:12:06.722 +03:00 [INF] Request finished in 12.2804ms 200 application/javascript +2018-08-02 14:12:06.722 +03:00 [INF] Request finished in 3.3241ms 200 application/javascript +2018-08-02 14:12:06.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:12:06.729 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:12:06.729 +03:00 [INF] Request finished in 1.2396ms 200 application/javascript +2018-08-02 14:12:06.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:12:06.747 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:12:06.747 +03:00 [INF] Request finished in 1.4426ms 200 application/javascript +2018-08-02 14:12:06.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:12:06.758 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:12:06.759 +03:00 [INF] Request finished in 2.0559ms 200 application/javascript +2018-08-02 14:12:06.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:12:06.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:12:06.772 +03:00 [INF] Request finished in 4.5374ms 200 application/javascript +2018-08-02 14:12:06.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:12:06.783 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:12:06.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:12:06.784 +03:00 [INF] Request finished in 2.6758ms 200 application/javascript +2018-08-02 14:12:06.789 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:12:06.790 +03:00 [INF] Request finished in 6.5898ms 200 application/javascript +2018-08-02 14:12:06.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:12:06.794 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:12:06.794 +03:00 [INF] Request finished in 3.6331ms 200 application/javascript +2018-08-02 14:12:06.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:12:06.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:12:06.808 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:12:06.808 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:12:06.809 +03:00 [INF] Request finished in 2.505ms 200 application/javascript +2018-08-02 14:12:06.809 +03:00 [INF] Request finished in 2.1989ms 200 application/javascript +2018-08-02 14:12:06.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:12:06.836 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:12:06.837 +03:00 [INF] Request finished in 2.4744ms 200 application/javascript +2018-08-02 14:12:06.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:12:06.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:12:06.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:12:06.858 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:12:06.859 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:12:06.859 +03:00 [INF] Request finished in 1.4016ms 200 application/javascript +2018-08-02 14:12:06.860 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:12:06.860 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12290000000000001ms. +2018-08-02 14:12:06.860 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:12:06.860 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8714000000000002ms +2018-08-02 14:12:06.861 +03:00 [INF] Request finished in 7.9025ms 200 text/plain; charset=utf-8 +2018-08-02 14:12:06.861 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:12:06.862 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:12:06.862 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3909ms. +2018-08-02 14:12:06.863 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:12:06.863 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7878ms +2018-08-02 14:12:06.863 +03:00 [INF] Request finished in 15.49ms 200 text/plain; charset=utf-8 +2018-08-02 14:12:06.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:12:06.865 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:12:06.865 +03:00 [INF] Request finished in 1.1554ms 200 application/javascript +2018-08-02 14:12:06.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:12:06.878 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:12:06.878 +03:00 [INF] Request finished in 1.8263ms 200 image/svg+xml +2018-08-02 14:12:06.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:12:06.889 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:12:06.890 +03:00 [INF] Request finished in 2.7766ms 200 image/png +2018-08-02 14:12:06.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:12:06.906 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:12:06.906 +03:00 [INF] Request finished in 1.7377ms 200 image/png +2018-08-02 14:12:06.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:12:06.924 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:12:06.924 +03:00 [INF] Request finished in 2.2602ms 200 image/png +2018-08-02 14:12:06.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:12:06.926 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:12:06.926 +03:00 [INF] Request finished in 0.8148ms 200 image/png +2018-08-02 14:12:06.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:12:06.933 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:12:06.933 +03:00 [INF] Request finished in 0.9609ms 200 image/png +2018-08-02 14:12:06.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:12:06.937 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:12:06.937 +03:00 [INF] Request finished in 0.9557ms 200 image/png +2018-08-02 14:12:06.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:12:06.949 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:12:06.949 +03:00 [INF] Request finished in 0.8752ms 200 image/png +2018-08-02 14:12:06.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:12:06.956 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:12:06.956 +03:00 [INF] Request finished in 2.6017ms 200 image/png +2018-08-02 14:12:06.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:12:06.958 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:12:06.958 +03:00 [INF] Request finished in 1.0551ms 200 image/png +2018-08-02 14:12:06.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:12:06.965 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:12:06.965 +03:00 [INF] Request finished in 1.4126ms 200 image/png +2018-08-02 14:12:06.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:12:06.966 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:12:06.966 +03:00 [INF] Request finished in 1.0135ms 200 image/png +2018-08-02 14:12:06.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:12:06.970 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:12:06.970 +03:00 [INF] Request finished in 1.1638ms 200 image/png +2018-08-02 14:12:06.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:12:06.975 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:12:06.975 +03:00 [INF] Request finished in 0.9023ms 200 image/png +2018-08-02 14:12:06.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:12:06.980 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:12:06.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:12:06.980 +03:00 [INF] Request finished in 0.981ms 200 image/png +2018-08-02 14:12:06.981 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:12:06.981 +03:00 [INF] Request finished in 0.904ms 200 image/png +2018-08-02 14:12:06.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:12:06.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:12:06.987 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:12:06.988 +03:00 [INF] Request finished in 2.4824ms 200 image/svg+xml +2018-08-02 14:12:06.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:12:06.989 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:12:06.989 +03:00 [INF] Request finished in 3.6226ms 200 image/png +2018-08-02 14:12:06.989 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:12:06.990 +03:00 [INF] Request finished in 1.4417ms 200 image/png +2018-08-02 14:12:06.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:12:06.993 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:12:06.993 +03:00 [INF] Request finished in 0.8656ms 200 image/png +2018-08-02 14:12:06.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:12:06.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:12:06.996 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:12:06.996 +03:00 [INF] Request finished in 0.8927ms 200 image/png +2018-08-02 14:12:07.002 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:12:07.002 +03:00 [INF] Request finished in 6.6802ms 200 image/png +2018-08-02 14:12:07.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:12:07.007 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:12:07.007 +03:00 [INF] Request finished in 2.5039ms 200 image/png +2018-08-02 14:12:07.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:12:07.009 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:12:07.009 +03:00 [INF] Request finished in 2.5121ms 200 image/png +2018-08-02 14:12:07.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:12:07.010 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:12:07.011 +03:00 [INF] Request finished in 0.849ms 200 image/png +2018-08-02 14:12:07.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:12:07.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:12:07.012 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:12:07.012 +03:00 [INF] Request finished in 0.8881ms 200 image/png +2018-08-02 14:12:07.012 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:12:07.012 +03:00 [INF] Request finished in 1.3738ms 200 image/png +2018-08-02 14:12:07.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:12:07.016 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:12:07.017 +03:00 [INF] Request finished in 1.6671ms 200 image/png +2018-08-02 14:12:07.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:12:07.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:12:07.018 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:12:07.018 +03:00 [INF] Request finished in 1.309ms 200 image/png +2018-08-02 14:12:07.019 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:12:07.019 +03:00 [INF] Request finished in 1.4679ms 200 image/png +2018-08-02 14:12:07.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:12:07.023 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:12:07.023 +03:00 [INF] Request finished in 1.6903ms 200 image/png +2018-08-02 14:12:07.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:12:07.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:12:07.028 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:12:07.029 +03:00 [INF] Request finished in 1.6824ms 200 image/png +2018-08-02 14:12:07.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:12:07.030 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:12:07.030 +03:00 [INF] Request finished in 1.685ms 200 image/png +2018-08-02 14:12:07.031 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:12:07.031 +03:00 [INF] Request finished in 1.5834ms 200 image/png +2018-08-02 14:12:07.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:12:07.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:12:07.035 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:12:07.035 +03:00 [INF] Request finished in 3.0657ms 200 font/woff2 +2018-08-02 14:12:07.047 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:12:07.047 +03:00 [INF] Request finished in 11.8608ms 200 image/jpeg +2018-08-02 14:12:08.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:12:08.369 +03:00 [INF] Request finished in 0.8471ms 404 +2018-08-02 14:12:30.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:12:30.702 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:12:30.702 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:12:30.726 +03:00 [INF] Executed action /Index in 24.038700000000002ms +2018-08-02 14:12:30.726 +03:00 [INF] Request finished in 277.6367ms 200 text/html; charset=utf-8 +2018-08-02 14:12:30.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:12:30.769 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:12:30.770 +03:00 [INF] Request finished in 4.2841ms 200 text/css +2018-08-02 14:12:30.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:12:30.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:12:30.772 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:12:30.773 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:12:30.773 +03:00 [INF] Request finished in 1.1236ms 200 text/css +2018-08-02 14:12:30.773 +03:00 [INF] Request finished in 1.5279ms 200 text/css +2018-08-02 14:12:30.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:12:30.779 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:12:30.779 +03:00 [INF] Request finished in 2.7733ms 200 text/css +2018-08-02 14:12:30.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:12:30.786 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:12:30.786 +03:00 [INF] Request finished in 0.9512ms 200 text/css +2018-08-02 14:12:30.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:12:30.791 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:12:30.791 +03:00 [INF] Request finished in 1.4755ms 200 text/css +2018-08-02 14:12:30.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:12:30.801 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:12:30.802 +03:00 [INF] Request finished in 1.1996ms 200 text/css +2018-08-02 14:12:30.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:12:30.815 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:12:30.815 +03:00 [INF] Request finished in 1.1304ms 200 text/css +2018-08-02 14:12:30.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:12:30.824 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:12:30.824 +03:00 [INF] Request finished in 1.2694ms 200 image/png +2018-08-02 14:12:30.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:12:30.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:12:30.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:12:30.829 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:12:30.829 +03:00 [INF] Request finished in 1.5724ms 200 application/javascript +2018-08-02 14:12:30.829 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:12:30.829 +03:00 [INF] Request finished in 3.1685ms 200 application/javascript +2018-08-02 14:12:30.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:12:30.835 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:12:30.836 +03:00 [INF] Request finished in 9.5171ms 200 application/javascript +2018-08-02 14:12:30.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:12:30.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:12:30.840 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:12:30.841 +03:00 [INF] Request finished in 0.994ms 200 application/javascript +2018-08-02 14:12:30.841 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:12:30.841 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:12:30.841 +03:00 [INF] Request finished in 3.7696ms 200 application/javascript +2018-08-02 14:12:30.841 +03:00 [INF] Request finished in 6.6234ms 200 application/javascript +2018-08-02 14:12:30.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:12:30.848 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:12:30.848 +03:00 [INF] Request finished in 1.0634ms 200 application/javascript +2018-08-02 14:12:30.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:12:30.854 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:12:30.854 +03:00 [INF] Request finished in 1.186ms 200 application/javascript +2018-08-02 14:12:30.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:12:30.866 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:12:30.866 +03:00 [INF] Request finished in 2.6814ms 200 application/javascript +2018-08-02 14:12:30.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:12:30.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:12:30.868 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:12:30.868 +03:00 [INF] Request finished in 0.8365ms 200 application/javascript +2018-08-02 14:12:30.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:12:30.874 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:12:30.875 +03:00 [INF] Request finished in 1.3208ms 200 application/javascript +2018-08-02 14:12:30.876 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:12:30.876 +03:00 [INF] Request finished in 9.4416ms 200 application/javascript +2018-08-02 14:12:30.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:12:30.884 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:12:30.884 +03:00 [INF] Request finished in 1.0383ms 200 application/javascript +2018-08-02 14:12:30.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:12:30.901 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:12:30.901 +03:00 [INF] Request finished in 1.7989ms 200 application/javascript +2018-08-02 14:12:30.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:12:30.903 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:12:30.903 +03:00 [INF] Request finished in 1.2705ms 200 application/javascript +2018-08-02 14:12:30.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:12:30.904 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:12:30.904 +03:00 [INF] Request finished in 1.1909ms 200 application/javascript +2018-08-02 14:12:30.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:12:30.921 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:12:30.921 +03:00 [INF] Request finished in 1.0615ms 200 application/javascript +2018-08-02 14:12:30.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:12:30.938 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:12:30.938 +03:00 [INF] Request finished in 1.3049ms 200 application/javascript +2018-08-02 14:12:30.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:12:30.973 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:12:30.973 +03:00 [INF] Request finished in 2.0407ms 200 application/javascript +2018-08-02 14:12:30.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:12:30.990 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:12:30.990 +03:00 [INF] Request finished in 5.9312ms 200 application/javascript +2018-08-02 14:12:30.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:12:30.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:12:30.998 +03:00 [INF] Request finished in 7.5571ms 200 application/javascript +2018-08-02 14:12:31.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:12:31.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:12:31.016 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:12:31.017 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:12:31.018 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:12:31.018 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:12:31.018 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0805ms. +2018-08-02 14:12:31.018 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.34190000000000004ms. +2018-08-02 14:12:31.019 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:12:31.019 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:12:31.019 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7166000000000001ms +2018-08-02 14:12:31.019 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.6815ms +2018-08-02 14:12:31.019 +03:00 [INF] Request finished in 15.6618ms 200 text/plain; charset=utf-8 +2018-08-02 14:12:31.019 +03:00 [INF] Request finished in 9.5667ms 200 text/plain; charset=utf-8 +2018-08-02 14:12:31.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:12:31.029 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:12:31.029 +03:00 [INF] Request finished in 2.8357ms 200 application/javascript +2018-08-02 14:12:31.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:12:31.031 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:12:31.035 +03:00 [INF] Request finished in 1.4999ms 200 application/javascript +2018-08-02 14:12:31.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:12:31.048 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:12:31.049 +03:00 [INF] Request finished in 1.1836ms 200 image/svg+xml +2018-08-02 14:12:31.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:12:31.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:12:31.056 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:12:31.057 +03:00 [INF] Request finished in 1.8578ms 200 image/png +2018-08-02 14:12:31.058 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:12:31.058 +03:00 [INF] Request finished in 2.1986ms 200 image/png +2018-08-02 14:12:31.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:12:31.065 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:12:31.065 +03:00 [INF] Request finished in 1.8729ms 200 image/png +2018-08-02 14:12:31.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:12:31.072 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:12:31.072 +03:00 [INF] Request finished in 1.2453ms 200 image/png +2018-08-02 14:12:31.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:12:31.075 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:12:31.076 +03:00 [INF] Request finished in 0.8872ms 200 image/png +2018-08-02 14:12:31.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:12:31.083 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:12:31.084 +03:00 [INF] Request finished in 0.8907ms 200 image/png +2018-08-02 14:12:31.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:12:31.091 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:12:31.091 +03:00 [INF] Request finished in 1.4578ms 200 image/png +2018-08-02 14:12:31.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:12:31.096 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:12:31.096 +03:00 [INF] Request finished in 1.781ms 200 image/png +2018-08-02 14:12:31.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:12:31.099 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:12:31.099 +03:00 [INF] Request finished in 0.9577ms 200 image/png +2018-08-02 14:12:31.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:12:31.105 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:12:31.105 +03:00 [INF] Request finished in 1.8913ms 200 image/png +2018-08-02 14:12:31.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:12:31.109 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:12:31.109 +03:00 [INF] Request finished in 1.2892ms 200 image/png +2018-08-02 14:12:31.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:12:31.116 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:12:31.116 +03:00 [INF] Request finished in 1.5443ms 200 image/png +2018-08-02 14:12:31.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:12:31.121 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:12:31.122 +03:00 [INF] Request finished in 1.1265ms 200 image/png +2018-08-02 14:12:31.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:12:31.123 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:12:31.123 +03:00 [INF] Request finished in 0.8599ms 200 image/png +2018-08-02 14:12:31.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:12:31.127 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:12:31.127 +03:00 [INF] Request finished in 1.4098ms 200 image/png +2018-08-02 14:12:31.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:12:31.130 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:12:31.130 +03:00 [INF] Request finished in 1.0136ms 200 image/png +2018-08-02 14:12:31.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:12:31.134 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:12:31.135 +03:00 [INF] Request finished in 0.947ms 200 image/svg+xml +2018-08-02 14:12:31.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:12:31.137 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:12:31.138 +03:00 [INF] Request finished in 1.2419ms 200 image/png +2018-08-02 14:12:31.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:12:31.139 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:12:31.139 +03:00 [INF] Request finished in 0.9722ms 200 image/png +2018-08-02 14:12:31.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:12:31.151 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:12:31.151 +03:00 [INF] Request finished in 1.1536ms 200 image/png +2018-08-02 14:12:31.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:12:31.153 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:12:31.153 +03:00 [INF] Request finished in 0.8564ms 200 image/png +2018-08-02 14:12:31.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:12:31.159 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:12:31.159 +03:00 [INF] Request finished in 0.9342ms 200 image/png +2018-08-02 14:12:31.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:12:31.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:12:31.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:12:31.171 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:12:31.171 +03:00 [INF] Request finished in 1.2325ms 200 image/png +2018-08-02 14:12:31.171 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:12:31.171 +03:00 [INF] Request finished in 0.6991ms 200 image/png +2018-08-02 14:12:31.171 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:12:31.171 +03:00 [INF] Request finished in 0.8137ms 200 image/png +2018-08-02 14:12:31.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:12:31.173 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:12:31.173 +03:00 [INF] Request finished in 1.0265ms 200 image/png +2018-08-02 14:12:31.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:12:31.180 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:12:31.180 +03:00 [INF] Request finished in 1.2892ms 200 image/png +2018-08-02 14:12:31.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:12:31.181 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:12:31.182 +03:00 [INF] Request finished in 1.0928ms 200 image/png +2018-08-02 14:12:31.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:12:31.186 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:12:31.186 +03:00 [INF] Request finished in 1.3958ms 200 image/png +2018-08-02 14:12:31.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:12:31.190 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:12:31.190 +03:00 [INF] Request finished in 1.1085ms 200 image/png +2018-08-02 14:12:31.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:12:31.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:12:31.195 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:12:31.195 +03:00 [INF] Request finished in 1.0341ms 200 image/png +2018-08-02 14:12:31.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:12:31.196 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:12:31.196 +03:00 [INF] Request finished in 1.6104ms 200 image/png +2018-08-02 14:12:31.198 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:12:31.198 +03:00 [INF] Request finished in 2.6389ms 200 image/png +2018-08-02 14:12:31.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:12:31.259 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:12:31.259 +03:00 [INF] Request finished in 9.0552ms 200 image/jpeg +2018-08-02 14:12:31.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:12:31.270 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:12:31.270 +03:00 [INF] Request finished in 2.7639ms 200 font/woff2 +2018-08-02 14:12:32.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:12:32.323 +03:00 [INF] Request finished in 0.6729ms 404 +2018-08-02 14:13:14.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:13:14.467 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:13:14.468 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:13:14.472 +03:00 [INF] Executed action /Index in 4.2296000000000005ms +2018-08-02 14:13:14.472 +03:00 [INF] Request finished in 5.5974ms 200 text/html; charset=utf-8 +2018-08-02 14:13:14.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:13:14.526 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:13:14.526 +03:00 [INF] Request finished in 3.8647ms 200 text/css +2018-08-02 14:13:14.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:13:14.530 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:13:14.530 +03:00 [INF] Request finished in 2.4433ms 200 text/css +2018-08-02 14:13:14.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:13:14.533 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:13:14.533 +03:00 [INF] Request finished in 0.8397ms 200 text/css +2018-08-02 14:13:14.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:13:14.535 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:13:14.535 +03:00 [INF] Request finished in 0.9201ms 200 text/css +2018-08-02 14:13:14.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:13:14.543 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:13:14.544 +03:00 [INF] Request finished in 1.0121ms 200 text/css +2018-08-02 14:13:14.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:13:14.560 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:13:14.560 +03:00 [INF] Request finished in 3.0413ms 200 text/css +2018-08-02 14:13:14.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:13:14.564 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:13:14.564 +03:00 [INF] Request finished in 1.4254ms 200 text/css +2018-08-02 14:13:14.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:13:14.575 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:13:14.575 +03:00 [INF] Request finished in 1.223ms 200 text/css +2018-08-02 14:13:14.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:13:14.581 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:13:14.582 +03:00 [INF] Request finished in 2.9046ms 200 application/javascript +2018-08-02 14:13:14.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:13:14.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:13:14.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:13:14.587 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:13:14.587 +03:00 [INF] Request finished in 1.3847ms 200 application/javascript +2018-08-02 14:13:14.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:13:14.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:13:14.590 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:13:14.590 +03:00 [INF] Request finished in 1.1079ms 200 application/javascript +2018-08-02 14:13:14.590 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:13:14.590 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:13:14.590 +03:00 [INF] Request finished in 4.833ms 200 application/javascript +2018-08-02 14:13:14.591 +03:00 [INF] Request finished in 1.7568ms 200 application/javascript +2018-08-02 14:13:14.593 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:13:14.594 +03:00 [INF] Request finished in 8.1633ms 200 application/javascript +2018-08-02 14:13:14.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:13:14.597 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:13:14.597 +03:00 [INF] Request finished in 1.3886ms 200 application/javascript +2018-08-02 14:13:14.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:13:14.604 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:13:14.604 +03:00 [INF] Request finished in 4.4602ms 200 application/javascript +2018-08-02 14:13:14.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:13:14.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:13:14.614 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:13:14.615 +03:00 [INF] Request finished in 2.7257ms 200 application/javascript +2018-08-02 14:13:14.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:13:14.618 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:13:14.618 +03:00 [INF] Request finished in 8.462ms 200 application/javascript +2018-08-02 14:13:14.621 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:13:14.621 +03:00 [INF] Request finished in 7.0358ms 200 application/javascript +2018-08-02 14:13:14.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:13:14.627 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:13:14.627 +03:00 [INF] Request finished in 0.9585ms 200 application/javascript +2018-08-02 14:13:14.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:13:14.641 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:13:14.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:13:14.643 +03:00 [INF] Request finished in 4.2988ms 200 application/javascript +2018-08-02 14:13:14.645 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:13:14.645 +03:00 [INF] Request finished in 2.5967ms 200 application/javascript +2018-08-02 14:13:14.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:13:14.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:13:14.648 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:13:14.648 +03:00 [INF] Request finished in 2.0765ms 200 application/javascript +2018-08-02 14:13:14.649 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:13:14.649 +03:00 [INF] Request finished in 1.1889ms 200 application/javascript +2018-08-02 14:13:14.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:13:14.656 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:13:14.656 +03:00 [INF] Request finished in 1.4012ms 200 application/javascript +2018-08-02 14:13:14.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:13:14.658 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:13:14.660 +03:00 [INF] Request finished in 1.8956ms 200 application/javascript +2018-08-02 14:13:14.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:13:14.665 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:13:14.665 +03:00 [INF] Request finished in 1.215ms 200 application/javascript +2018-08-02 14:13:14.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:13:14.670 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:13:14.670 +03:00 [INF] Request finished in 1.0389ms 200 application/javascript +2018-08-02 14:13:14.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:13:14.673 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:13:14.673 +03:00 [INF] Request finished in 4.3757ms 200 application/javascript +2018-08-02 14:13:14.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:13:14.679 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:13:14.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:13:14.680 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:13:14.680 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:13:14.681 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6662ms. +2018-08-02 14:13:14.681 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:13:14.681 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2595ms +2018-08-02 14:13:14.681 +03:00 [INF] Request finished in 3.3383ms 200 text/plain; charset=utf-8 +2018-08-02 14:13:14.682 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:13:14.682 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2369ms. +2018-08-02 14:13:14.683 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:13:14.683 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6251ms +2018-08-02 14:13:14.683 +03:00 [INF] Request finished in 3.6863ms 200 text/plain; charset=utf-8 +2018-08-02 14:13:14.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:13:14.716 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:13:14.718 +03:00 [INF] Request finished in 6.2927ms 200 application/javascript +2018-08-02 14:13:14.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:13:14.747 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:13:14.747 +03:00 [INF] Request finished in 1.5175ms 200 application/javascript +2018-08-02 14:13:14.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:13:14.756 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:13:14.756 +03:00 [INF] Request finished in 5.518ms 200 image/svg+xml +2018-08-02 14:13:14.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:13:14.763 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:13:14.764 +03:00 [INF] Request finished in 0.8649ms 200 image/png +2018-08-02 14:13:14.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:13:14.773 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:13:14.773 +03:00 [INF] Request finished in 2.0654ms 200 image/png +2018-08-02 14:13:14.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:13:14.782 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:13:14.782 +03:00 [INF] Request finished in 1.5809ms 200 image/png +2018-08-02 14:13:14.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:13:14.786 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:13:14.786 +03:00 [INF] Request finished in 0.9385ms 200 image/png +2018-08-02 14:13:14.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:13:14.791 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:13:14.792 +03:00 [INF] Request finished in 1.7567ms 200 image/png +2018-08-02 14:13:14.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:13:14.796 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:13:14.796 +03:00 [INF] Request finished in 0.9595ms 200 image/png +2018-08-02 14:13:14.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:13:14.801 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:13:14.802 +03:00 [INF] Request finished in 1.006ms 200 image/png +2018-08-02 14:13:14.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:13:14.805 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:13:14.806 +03:00 [INF] Request finished in 1.136ms 200 image/png +2018-08-02 14:13:14.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:13:14.809 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:13:14.809 +03:00 [INF] Request finished in 0.9487ms 200 image/png +2018-08-02 14:13:14.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:13:14.813 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:13:14.813 +03:00 [INF] Request finished in 2.48ms 200 image/png +2018-08-02 14:13:14.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:13:14.814 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:13:14.814 +03:00 [INF] Request finished in 1.2094ms 200 image/png +2018-08-02 14:13:14.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:13:14.822 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:13:14.822 +03:00 [INF] Request finished in 1.3513ms 200 image/png +2018-08-02 14:13:14.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:13:14.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:13:14.824 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:13:14.824 +03:00 [INF] Request finished in 1.0457ms 200 image/png +2018-08-02 14:13:14.826 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:13:14.826 +03:00 [INF] Request finished in 2.0492ms 200 image/png +2018-08-02 14:13:14.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:13:14.837 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:13:14.837 +03:00 [INF] Request finished in 4.2455ms 200 image/png +2018-08-02 14:13:14.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:13:14.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:13:14.839 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:13:14.839 +03:00 [INF] Request finished in 1.6079ms 200 image/png +2018-08-02 14:13:14.840 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:13:14.840 +03:00 [INF] Request finished in 1.379ms 200 image/svg+xml +2018-08-02 14:13:14.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:13:14.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:13:14.843 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:13:14.843 +03:00 [INF] Request finished in 1.3561ms 200 image/png +2018-08-02 14:13:14.843 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:13:14.846 +03:00 [INF] Request finished in 3.2904ms 200 image/png +2018-08-02 14:13:14.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:13:14.848 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:13:14.848 +03:00 [INF] Request finished in 0.7747ms 200 image/png +2018-08-02 14:13:14.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:13:14.850 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:13:14.851 +03:00 [INF] Request finished in 1.9053ms 200 image/png +2018-08-02 14:13:14.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:13:14.854 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:13:14.854 +03:00 [INF] Request finished in 0.9745ms 200 image/png +2018-08-02 14:13:14.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:13:14.861 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:13:14.861 +03:00 [INF] Request finished in 2.1518ms 200 image/png +2018-08-02 14:13:14.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:13:14.865 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:13:14.866 +03:00 [INF] Request finished in 1.5359ms 200 image/png +2018-08-02 14:13:14.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:13:14.867 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:13:14.867 +03:00 [INF] Request finished in 1.4396ms 200 image/png +2018-08-02 14:13:14.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:13:14.871 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:13:14.871 +03:00 [INF] Request finished in 1.047ms 200 image/png +2018-08-02 14:13:14.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:13:14.883 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:13:14.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:13:14.883 +03:00 [INF] Request finished in 1.6989ms 200 image/png +2018-08-02 14:13:14.884 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:13:14.885 +03:00 [INF] Request finished in 1.5432ms 200 image/png +2018-08-02 14:13:14.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:13:14.890 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:13:14.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:13:14.891 +03:00 [INF] Request finished in 2.8137ms 200 image/png +2018-08-02 14:13:14.892 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:13:14.892 +03:00 [INF] Request finished in 0.955ms 200 image/png +2018-08-02 14:13:14.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:13:14.893 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:13:14.894 +03:00 [INF] Request finished in 1.592ms 200 image/png +2018-08-02 14:13:14.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:13:14.899 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:13:14.899 +03:00 [INF] Request finished in 0.8329ms 200 image/png +2018-08-02 14:13:14.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:13:14.903 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:13:14.903 +03:00 [INF] Request finished in 0.8118ms 200 image/png +2018-08-02 14:13:14.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:13:14.909 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:13:14.909 +03:00 [INF] Request finished in 1.3847ms 200 image/png +2018-08-02 14:13:14.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:13:14.981 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:13:14.981 +03:00 [INF] Request finished in 8.9153ms 200 image/jpeg +2018-08-02 14:13:14.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:13:14.990 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:13:14.990 +03:00 [INF] Request finished in 3.5133ms 200 font/woff2 +2018-08-02 14:13:15.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:13:15.916 +03:00 [INF] Request finished in 0.7848ms 404 +2018-08-02 14:13:28.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:13:28.648 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:13:28.648 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:13:28.653 +03:00 [INF] Executed action /Index in 5.0365ms +2018-08-02 14:13:28.654 +03:00 [INF] Request finished in 6.3842ms 200 text/html; charset=utf-8 +2018-08-02 14:13:28.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:13:28.752 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:13:28.752 +03:00 [INF] Request finished in 0.952ms 200 text/css +2018-08-02 14:13:28.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:13:28.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:13:28.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:13:28.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:13:28.755 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:13:28.755 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:13:28.755 +03:00 [INF] Request finished in 1.4374ms 200 text/css +2018-08-02 14:13:28.755 +03:00 [INF] Request finished in 1.2886ms 200 text/css +2018-08-02 14:13:28.755 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:13:28.756 +03:00 [INF] Request finished in 1.4964ms 200 text/css +2018-08-02 14:13:28.756 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:13:28.756 +03:00 [INF] Request finished in 5.2882ms 200 text/css +2018-08-02 14:13:28.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:13:28.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:13:28.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:13:28.769 +03:00 [INF] Request finished in 1.4492ms 200 text/css +2018-08-02 14:13:28.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:13:28.770 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:13:28.770 +03:00 [INF] Request finished in 1.0808ms 200 text/css +2018-08-02 14:13:28.771 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:13:28.771 +03:00 [INF] Request finished in 1.7318ms 200 application/javascript +2018-08-02 14:13:28.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:13:28.774 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:13:28.774 +03:00 [INF] Request finished in 0.8312ms 200 text/css +2018-08-02 14:13:28.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:13:28.783 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:13:28.783 +03:00 [INF] Request finished in 7.1893ms 200 application/javascript +2018-08-02 14:13:28.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:13:28.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:13:28.794 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:13:28.794 +03:00 [INF] Request finished in 1.273ms 200 application/javascript +2018-08-02 14:13:28.795 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:13:28.795 +03:00 [INF] Request finished in 2.6182ms 200 application/javascript +2018-08-02 14:13:28.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:13:28.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:13:28.799 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:13:28.799 +03:00 [INF] Request finished in 0.9185ms 200 application/javascript +2018-08-02 14:13:28.801 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:13:28.802 +03:00 [INF] Request finished in 5.6644ms 200 application/javascript +2018-08-02 14:13:28.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:13:28.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:13:28.821 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:13:28.821 +03:00 [INF] Request finished in 1.1317ms 200 application/javascript +2018-08-02 14:13:28.822 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:13:28.823 +03:00 [INF] Request finished in 11.6046ms 200 application/javascript +2018-08-02 14:13:28.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:13:28.827 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:13:28.827 +03:00 [INF] Request finished in 2.2647ms 200 application/javascript +2018-08-02 14:13:28.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:13:28.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:13:28.855 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:13:28.856 +03:00 [INF] Request finished in 1.6762ms 200 application/javascript +2018-08-02 14:13:28.863 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:13:28.863 +03:00 [INF] Request finished in 10.5352ms 200 application/javascript +2018-08-02 14:13:28.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:13:28.884 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:13:28.884 +03:00 [INF] Request finished in 1.1977ms 200 application/javascript +2018-08-02 14:13:28.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:13:28.893 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:13:28.893 +03:00 [INF] Request finished in 1.4055ms 200 application/javascript +2018-08-02 14:13:28.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:13:28.927 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:13:28.928 +03:00 [INF] Request finished in 2.5721ms 200 application/javascript +2018-08-02 14:13:28.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:13:28.953 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:13:28.954 +03:00 [INF] Request finished in 4.9025ms 200 application/javascript +2018-08-02 14:13:28.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:13:28.968 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:13:28.968 +03:00 [INF] Request finished in 1.6561ms 200 application/javascript +2018-08-02 14:13:28.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:13:28.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:13:28.972 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:13:28.973 +03:00 [INF] Request finished in 1.06ms 200 application/javascript +2018-08-02 14:13:28.973 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:13:28.973 +03:00 [INF] Request finished in 1.3654ms 200 application/javascript +2018-08-02 14:13:28.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:13:28.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:13:28.978 +03:00 [INF] Request finished in 2.5694ms 200 application/javascript +2018-08-02 14:13:28.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:13:28.982 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:13:28.984 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:13:28.985 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0295ms. +2018-08-02 14:13:28.985 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:13:28.985 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.7537000000000003ms +2018-08-02 14:13:28.985 +03:00 [INF] Request finished in 3.8066ms 200 text/plain; charset=utf-8 +2018-08-02 14:13:28.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:13:28.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:13:28.988 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:13:28.988 +03:00 [INF] Request finished in 2.7562ms 200 application/javascript +2018-08-02 14:13:28.989 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:13:28.989 +03:00 [INF] Request finished in 3.7131ms 200 application/javascript +2018-08-02 14:13:28.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:13:28.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:13:28.996 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:13:28.996 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:13:28.996 +03:00 [INF] Request finished in 0.9589ms 200 application/javascript +2018-08-02 14:13:28.997 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:13:28.997 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12430000000000001ms. +2018-08-02 14:13:28.997 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:13:28.997 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5678ms +2018-08-02 14:13:28.997 +03:00 [INF] Request finished in 2.7481ms 200 text/plain; charset=utf-8 +2018-08-02 14:13:29.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:13:29.006 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:13:29.006 +03:00 [INF] Request finished in 1.0149ms 200 application/javascript +2018-08-02 14:13:29.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:13:29.009 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:13:29.009 +03:00 [INF] Request finished in 0.9338ms 200 image/svg+xml +2018-08-02 14:13:29.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:13:29.014 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:13:29.014 +03:00 [INF] Request finished in 0.9934ms 200 image/png +2018-08-02 14:13:29.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:13:29.024 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:13:29.024 +03:00 [INF] Request finished in 0.938ms 200 image/png +2018-08-02 14:13:29.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:13:29.026 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:13:29.026 +03:00 [INF] Request finished in 0.9249ms 200 image/png +2018-08-02 14:13:29.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:13:29.039 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:13:29.039 +03:00 [INF] Request finished in 1.0801ms 200 image/png +2018-08-02 14:13:29.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:13:29.040 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:13:29.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:13:29.040 +03:00 [INF] Request finished in 1.453ms 200 image/png +2018-08-02 14:13:29.041 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:13:29.041 +03:00 [INF] Request finished in 1.2544ms 200 image/png +2018-08-02 14:13:29.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:13:29.047 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:13:29.047 +03:00 [INF] Request finished in 0.8218ms 200 image/png +2018-08-02 14:13:29.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:13:29.053 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:13:29.053 +03:00 [INF] Request finished in 1.4078ms 200 image/png +2018-08-02 14:13:29.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:13:29.072 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:13:29.072 +03:00 [INF] Request finished in 0.8888ms 200 image/png +2018-08-02 14:13:29.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:13:29.075 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:13:29.075 +03:00 [INF] Request finished in 1.1538ms 200 image/png +2018-08-02 14:13:29.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:13:29.078 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:13:29.078 +03:00 [INF] Request finished in 1.7466ms 200 image/png +2018-08-02 14:13:29.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:13:29.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:13:29.096 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:13:29.096 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:13:29.096 +03:00 [INF] Request finished in 0.6633ms 200 image/png +2018-08-02 14:13:29.096 +03:00 [INF] Request finished in 0.8436ms 200 image/png +2018-08-02 14:13:29.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:13:29.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:13:29.115 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:13:29.115 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:13:29.115 +03:00 [INF] Request finished in 0.9416ms 200 image/png +2018-08-02 14:13:29.115 +03:00 [INF] Request finished in 0.9651ms 200 image/png +2018-08-02 14:13:29.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:13:29.124 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:13:29.124 +03:00 [INF] Request finished in 1.273ms 200 image/png +2018-08-02 14:13:29.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:13:29.129 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:13:29.129 +03:00 [INF] Request finished in 0.9145ms 200 image/svg+xml +2018-08-02 14:13:29.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:13:29.143 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:13:29.144 +03:00 [INF] Request finished in 1.9257ms 200 image/png +2018-08-02 14:13:29.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:13:29.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:13:29.151 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:13:29.152 +03:00 [INF] Request finished in 3.2492ms 200 image/png +2018-08-02 14:13:29.153 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:13:29.153 +03:00 [INF] Request finished in 4.5768ms 200 image/png +2018-08-02 14:13:29.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:13:29.158 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:13:29.158 +03:00 [INF] Request finished in 2.377ms 200 image/png +2018-08-02 14:13:29.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:13:29.159 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:13:29.159 +03:00 [INF] Request finished in 0.9591ms 200 image/png +2018-08-02 14:13:29.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:13:29.175 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:13:29.175 +03:00 [INF] Request finished in 1.8317ms 200 image/png +2018-08-02 14:13:29.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:13:29.178 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:13:29.178 +03:00 [INF] Request finished in 1.1104ms 200 image/png +2018-08-02 14:13:29.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:13:29.183 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:13:29.183 +03:00 [INF] Request finished in 1.3383ms 200 image/png +2018-08-02 14:13:29.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:13:29.184 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:13:29.184 +03:00 [INF] Request finished in 1.1229ms 200 image/png +2018-08-02 14:13:29.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:13:29.187 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:13:29.188 +03:00 [INF] Request finished in 2.099ms 200 image/png +2018-08-02 14:13:29.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:13:29.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:13:29.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:13:29.195 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:13:29.195 +03:00 [INF] Request finished in 1.0818ms 200 image/png +2018-08-02 14:13:29.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:13:29.196 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:13:29.196 +03:00 [INF] Request finished in 1.2847ms 200 image/png +2018-08-02 14:13:29.197 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:13:29.197 +03:00 [INF] Request finished in 9.3744ms 200 image/png +2018-08-02 14:13:29.198 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:13:29.198 +03:00 [INF] Request finished in 4.0976ms 200 image/png +2018-08-02 14:13:29.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/14.png +2018-08-02 14:13:29.209 +03:00 [INF] Sending file. Request path: '/assets/tools/14.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\14.png' +2018-08-02 14:13:29.209 +03:00 [INF] Request finished in 1.1175ms 200 image/png +2018-08-02 14:13:29.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:13:29.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:13:29.219 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:13:29.219 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:13:29.219 +03:00 [INF] Request finished in 1.2296ms 200 image/png +2018-08-02 14:13:29.219 +03:00 [INF] Request finished in 1.2796ms 200 image/png +2018-08-02 14:13:29.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:13:29.238 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:13:29.238 +03:00 [INF] Request finished in 7.5825ms 200 image/jpeg +2018-08-02 14:13:29.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:13:29.244 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:13:29.245 +03:00 [INF] Request finished in 3.2294ms 200 font/woff2 +2018-08-02 14:13:30.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:13:30.337 +03:00 [INF] Request finished in 0.6563ms 404 +2018-08-02 14:14:14.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:14:14.596 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:14:14.596 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:14:14.621 +03:00 [INF] Executed action /Index in 25.4813ms +2018-08-02 14:14:14.622 +03:00 [INF] Request finished in 326.3323ms 200 text/html; charset=utf-8 +2018-08-02 14:14:14.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:14:14.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:14:14.668 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:14:14.669 +03:00 [INF] Request finished in 0.9869ms 200 text/css +2018-08-02 14:14:14.669 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:14:14.669 +03:00 [INF] Request finished in 4.5789ms 200 text/css +2018-08-02 14:14:14.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:14:14.678 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:14:14.678 +03:00 [INF] Request finished in 0.8883ms 200 text/css +2018-08-02 14:14:14.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:14:14.685 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:14:14.685 +03:00 [INF] Request finished in 0.9775ms 200 text/css +2018-08-02 14:14:14.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:14:14.687 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:14:14.687 +03:00 [INF] Request finished in 0.8683ms 200 text/css +2018-08-02 14:14:14.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:14:14.698 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:14:14.699 +03:00 [INF] Request finished in 2.2248ms 200 text/css +2018-08-02 14:14:14.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:14:14.703 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:14:14.703 +03:00 [INF] Request finished in 0.9202ms 200 text/css +2018-08-02 14:14:14.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:14:14.714 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:14:14.714 +03:00 [INF] Request finished in 2.1985ms 200 text/css +2018-08-02 14:14:14.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:14:14.718 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:14:14.718 +03:00 [INF] Request finished in 0.9671ms 200 application/javascript +2018-08-02 14:14:14.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:14:14.726 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:14:14.726 +03:00 [INF] Request finished in 6.9855ms 200 application/javascript +2018-08-02 14:14:14.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:14:14.729 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:14:14.729 +03:00 [INF] Request finished in 1.6207ms 200 application/javascript +2018-08-02 14:14:14.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:14:14.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:14:14.735 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:14:14.736 +03:00 [INF] Request finished in 4.9126ms 200 application/javascript +2018-08-02 14:14:14.736 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:14:14.736 +03:00 [INF] Request finished in 3.6159ms 200 application/javascript +2018-08-02 14:14:14.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:14:14.741 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:14:14.741 +03:00 [INF] Request finished in 1.1926ms 200 application/javascript +2018-08-02 14:14:14.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:14:14.747 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:14:14.748 +03:00 [INF] Request finished in 0.9903ms 200 application/javascript +2018-08-02 14:14:14.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:14:14.767 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:14:14.768 +03:00 [INF] Request finished in 6.5863ms 200 application/javascript +2018-08-02 14:14:14.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:14:14.774 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:14:14.774 +03:00 [INF] Request finished in 2.3194ms 200 application/javascript +2018-08-02 14:14:14.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:14:14.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:14:14.784 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:14:14.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:14:14.785 +03:00 [INF] Request finished in 8.9461ms 200 application/javascript +2018-08-02 14:14:14.786 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:14:14.786 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:14:14.786 +03:00 [INF] Request finished in 1.6455ms 200 application/javascript +2018-08-02 14:14:14.786 +03:00 [INF] Request finished in 4.8419ms 200 application/javascript +2018-08-02 14:14:14.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:14:14.802 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:14:14.803 +03:00 [INF] Request finished in 3.5822ms 200 application/javascript +2018-08-02 14:14:14.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:14:14.817 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:14:14.817 +03:00 [INF] Request finished in 3.6512ms 200 application/javascript +2018-08-02 14:14:14.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:14:14.831 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:14:14.831 +03:00 [INF] Request finished in 3.8984ms 200 application/javascript +2018-08-02 14:14:14.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:14:14.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:14:14.858 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:14:14.859 +03:00 [INF] Request finished in 2.1903ms 200 application/javascript +2018-08-02 14:14:14.861 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:14:14.862 +03:00 [INF] Request finished in 4.5663ms 200 application/javascript +2018-08-02 14:14:14.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:14:14.871 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:14:14.871 +03:00 [INF] Request finished in 1.1693ms 200 application/javascript +2018-08-02 14:14:14.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:14:14.896 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:14:14.896 +03:00 [INF] Request finished in 1.269ms 200 application/javascript +2018-08-02 14:14:14.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:14:14.909 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:14:14.909 +03:00 [INF] Request finished in 1.376ms 200 application/javascript +2018-08-02 14:14:14.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:14:14.917 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:14:14.917 +03:00 [INF] Request finished in 1.8429ms 200 application/javascript +2018-08-02 14:14:14.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:14:14.935 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:14:14.936 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:14:14.937 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6109ms. +2018-08-02 14:14:14.937 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:14:14.937 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.186ms +2018-08-02 14:14:14.937 +03:00 [INF] Request finished in 14.0832ms 200 text/plain; charset=utf-8 +2018-08-02 14:14:14.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:14:14.956 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:14:14.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:14:14.958 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:14:14.959 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1564ms. +2018-08-02 14:14:14.959 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:14:14.959 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:14:14.959 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7197ms +2018-08-02 14:14:14.959 +03:00 [INF] Request finished in 0.992ms 200 application/javascript +2018-08-02 14:14:14.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:14:14.959 +03:00 [INF] Request finished in 9.223ms 200 text/plain; charset=utf-8 +2018-08-02 14:14:14.960 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:14:14.960 +03:00 [INF] Request finished in 1.0397ms 200 application/javascript +2018-08-02 14:14:14.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:14:14.978 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:14:14.978 +03:00 [INF] Request finished in 1.7102ms 200 image/png +2018-08-02 14:14:14.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:14:14.979 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:14:14.979 +03:00 [INF] Request finished in 1.0267ms 200 image/svg+xml +2018-08-02 14:14:14.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:14:14.980 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:14:14.980 +03:00 [INF] Request finished in 0.8286ms 200 image/png +2018-08-02 14:14:14.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:14:14.985 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:14:14.985 +03:00 [INF] Request finished in 1.6742ms 200 image/png +2018-08-02 14:14:14.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:14:14.988 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:14:14.989 +03:00 [INF] Request finished in 1.3595ms 200 image/png +2018-08-02 14:14:14.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:14:14.991 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:14:14.991 +03:00 [INF] Request finished in 1.8726ms 200 image/png +2018-08-02 14:14:14.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:14:14.995 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:14:14.995 +03:00 [INF] Request finished in 1.0829ms 200 image/png +2018-08-02 14:14:15.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:14:15.002 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:14:15.002 +03:00 [INF] Request finished in 0.9482ms 200 image/png +2018-08-02 14:14:15.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:14:15.005 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:14:15.005 +03:00 [INF] Request finished in 0.8074ms 200 image/png +2018-08-02 14:14:15.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:14:15.013 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:14:15.013 +03:00 [INF] Request finished in 1.2879ms 200 image/png +2018-08-02 14:14:15.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:14:15.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:14:15.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:14:15.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:14:15.018 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:14:15.018 +03:00 [INF] Request finished in 0.776ms 200 image/png +2018-08-02 14:14:15.018 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:14:15.018 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:14:15.018 +03:00 [INF] Request finished in 0.7896ms 200 image/png +2018-08-02 14:14:15.018 +03:00 [INF] Request finished in 1.1552ms 200 image/png +2018-08-02 14:14:15.019 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:14:15.019 +03:00 [INF] Request finished in 1.0558ms 200 image/png +2018-08-02 14:14:15.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:14:15.025 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:14:15.025 +03:00 [INF] Request finished in 1.1228ms 200 image/png +2018-08-02 14:14:15.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:14:15.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:14:15.029 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:14:15.029 +03:00 [INF] Request finished in 3.5057ms 200 image/png +2018-08-02 14:14:15.030 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:14:15.030 +03:00 [INF] Request finished in 1.9206ms 200 image/png +2018-08-02 14:14:15.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:14:15.031 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:14:15.031 +03:00 [INF] Request finished in 1.0256ms 200 image/svg+xml +2018-08-02 14:14:15.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:14:15.034 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:14:15.034 +03:00 [INF] Request finished in 2.0516ms 200 image/png +2018-08-02 14:14:15.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:14:15.037 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:14:15.038 +03:00 [INF] Request finished in 1.2308ms 200 image/png +2018-08-02 14:14:15.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:14:15.040 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:14:15.041 +03:00 [INF] Request finished in 2.9028ms 200 image/png +2018-08-02 14:14:15.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:14:15.055 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:14:15.055 +03:00 [INF] Request finished in 0.7726ms 200 image/png +2018-08-02 14:14:15.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:14:15.058 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:14:15.058 +03:00 [INF] Request finished in 0.819ms 200 image/png +2018-08-02 14:14:15.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:14:15.059 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:14:15.060 +03:00 [INF] Request finished in 1.1828ms 200 image/png +2018-08-02 14:14:15.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:14:15.064 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:14:15.064 +03:00 [INF] Request finished in 1.5456ms 200 image/png +2018-08-02 14:14:15.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:14:15.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:14:15.076 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:14:15.076 +03:00 [INF] Request finished in 2.631ms 200 image/png +2018-08-02 14:14:15.076 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:14:15.077 +03:00 [INF] Request finished in 2.7923ms 200 image/png +2018-08-02 14:14:15.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:14:15.079 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:14:15.079 +03:00 [INF] Request finished in 1.8595ms 200 image/png +2018-08-02 14:14:15.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:14:15.083 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:14:15.083 +03:00 [INF] Request finished in 2.3912ms 200 image/png +2018-08-02 14:14:15.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:14:15.086 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:14:15.086 +03:00 [INF] Request finished in 2.5987ms 200 image/png +2018-08-02 14:14:15.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:14:15.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:14:15.089 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:14:15.090 +03:00 [INF] Request finished in 2.4605ms 200 font/woff2 +2018-08-02 14:14:15.090 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:14:15.090 +03:00 [INF] Request finished in 1.7718ms 200 image/png +2018-08-02 14:14:15.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:14:15.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:14:15.095 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:14:15.095 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:14:15.095 +03:00 [INF] Request finished in 0.8207ms 200 image/png +2018-08-02 14:14:15.096 +03:00 [INF] Request finished in 0.9555ms 200 image/png +2018-08-02 14:14:15.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:14:15.098 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:14:15.100 +03:00 [INF] Request finished in 4.1588ms 200 image/png +2018-08-02 14:14:15.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:14:15.124 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:14:15.124 +03:00 [INF] Request finished in 11.7273ms 200 image/jpeg +2018-08-02 14:14:16.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:14:16.322 +03:00 [INF] Request finished in 0.6634ms 404 +2018-08-02 14:14:43.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:14:44.119 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:14:44.120 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:14:44.150 +03:00 [INF] Executed action /Index in 30.3409ms +2018-08-02 14:14:44.150 +03:00 [INF] Request finished in 395.0293ms 200 text/html; charset=utf-8 +2018-08-02 14:14:44.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:14:44.215 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:14:44.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:14:44.215 +03:00 [INF] Request finished in 5.515ms 200 text/css +2018-08-02 14:14:44.215 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:14:44.216 +03:00 [INF] Request finished in 0.9983ms 200 text/css +2018-08-02 14:14:44.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:14:44.221 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:14:44.221 +03:00 [INF] Request finished in 2.2822ms 200 text/css +2018-08-02 14:14:44.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:14:44.233 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:14:44.233 +03:00 [INF] Request finished in 1.3723ms 200 text/css +2018-08-02 14:14:44.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:14:44.238 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:14:44.238 +03:00 [INF] Request finished in 0.955ms 200 text/css +2018-08-02 14:14:44.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:14:44.247 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:14:44.247 +03:00 [INF] Request finished in 2.5513ms 200 text/css +2018-08-02 14:14:44.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:14:44.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:14:44.254 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:14:44.254 +03:00 [INF] Request finished in 1.0922ms 200 text/css +2018-08-02 14:14:44.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:14:44.257 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:14:44.257 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:14:44.257 +03:00 [INF] Request finished in 1.2212ms 200 application/javascript +2018-08-02 14:14:44.257 +03:00 [INF] Request finished in 3.0925ms 200 text/css +2018-08-02 14:14:44.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:14:44.265 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:14:44.265 +03:00 [INF] Request finished in 1.6498ms 200 application/javascript +2018-08-02 14:14:44.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:14:44.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:14:44.273 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:14:44.273 +03:00 [INF] Request finished in 5.7068ms 200 application/javascript +2018-08-02 14:14:44.273 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:14:44.274 +03:00 [INF] Request finished in 4.3085ms 200 application/javascript +2018-08-02 14:14:44.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:14:44.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:14:44.280 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:14:44.280 +03:00 [INF] Request finished in 2.4147ms 200 application/javascript +2018-08-02 14:14:44.281 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:14:44.281 +03:00 [INF] Request finished in 7.4114ms 200 application/javascript +2018-08-02 14:14:44.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:14:44.287 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:14:44.287 +03:00 [INF] Request finished in 1.3348ms 200 application/javascript +2018-08-02 14:14:44.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:14:44.300 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:14:44.300 +03:00 [INF] Request finished in 1.4507ms 200 application/javascript +2018-08-02 14:14:44.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:14:44.304 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:14:44.304 +03:00 [INF] Request finished in 3.3633ms 200 application/javascript +2018-08-02 14:14:44.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:14:44.326 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:14:44.326 +03:00 [INF] Request finished in 8.5435ms 200 application/javascript +2018-08-02 14:14:44.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:14:44.337 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:14:44.337 +03:00 [INF] Request finished in 3.2622ms 200 application/javascript +2018-08-02 14:14:44.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:14:44.356 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:14:44.356 +03:00 [INF] Request finished in 3.6362ms 200 application/javascript +2018-08-02 14:14:44.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:14:44.360 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:14:44.360 +03:00 [INF] Request finished in 0.9433ms 200 application/javascript +2018-08-02 14:14:44.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:14:44.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:14:44.369 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:14:44.369 +03:00 [INF] Request finished in 1.3767ms 200 application/javascript +2018-08-02 14:14:44.369 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:14:44.370 +03:00 [INF] Request finished in 1.9893ms 200 application/javascript +2018-08-02 14:14:44.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:14:44.377 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:14:44.377 +03:00 [INF] Request finished in 1.9141ms 200 application/javascript +2018-08-02 14:14:44.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:14:44.386 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:14:44.386 +03:00 [INF] Request finished in 1.4554ms 200 application/javascript +2018-08-02 14:14:44.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:14:44.420 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:14:44.420 +03:00 [INF] Request finished in 2.3263ms 200 application/javascript +2018-08-02 14:14:44.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:14:44.436 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:14:44.436 +03:00 [INF] Request finished in 1.5336ms 200 application/javascript +2018-08-02 14:14:44.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:14:44.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:14:44.451 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:14:44.451 +03:00 [INF] Request finished in 2.15ms 200 application/javascript +2018-08-02 14:14:44.451 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:14:44.452 +03:00 [INF] Request finished in 2.007ms 200 application/javascript +2018-08-02 14:14:44.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:14:44.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:14:44.458 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:14:44.460 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:14:44.460 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1855ms. +2018-08-02 14:14:44.463 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:14:44.464 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.2286ms +2018-08-02 14:14:44.464 +03:00 [INF] Request finished in 9.3323ms 200 text/plain; charset=utf-8 +2018-08-02 14:14:44.464 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:14:44.465 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:14:44.467 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8445ms. +2018-08-02 14:14:44.467 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:14:44.467 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.9450000000000003ms +2018-08-02 14:14:44.467 +03:00 [INF] Request finished in 13.1774ms 200 text/plain; charset=utf-8 +2018-08-02 14:14:44.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:14:44.470 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:14:44.470 +03:00 [INF] Request finished in 0.9478ms 200 application/javascript +2018-08-02 14:14:44.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:14:44.484 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:14:44.484 +03:00 [INF] Request finished in 1.0132ms 200 application/javascript +2018-08-02 14:14:44.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:14:44.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:14:44.501 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:14:44.501 +03:00 [INF] Request finished in 1.0721ms 200 image/svg+xml +2018-08-02 14:14:44.501 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:14:44.501 +03:00 [INF] Request finished in 0.6905ms 200 image/png +2018-08-02 14:14:44.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:14:44.506 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:14:44.506 +03:00 [INF] Request finished in 1.832ms 200 image/png +2018-08-02 14:14:44.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:14:44.514 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:14:44.514 +03:00 [INF] Request finished in 0.9522ms 200 image/png +2018-08-02 14:14:44.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:14:44.531 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:14:44.531 +03:00 [INF] Request finished in 1.4065ms 200 image/png +2018-08-02 14:14:44.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:14:44.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:14:44.547 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:14:44.548 +03:00 [INF] Request finished in 2.3431ms 200 image/png +2018-08-02 14:14:44.548 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:14:44.548 +03:00 [INF] Request finished in 1.6625ms 200 image/png +2018-08-02 14:14:44.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:14:44.556 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:14:44.556 +03:00 [INF] Request finished in 0.8652ms 200 image/png +2018-08-02 14:14:44.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:14:44.570 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:14:44.571 +03:00 [INF] Request finished in 1.0784ms 200 image/png +2018-08-02 14:14:44.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:14:44.576 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:14:44.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:14:44.576 +03:00 [INF] Request finished in 1.5852ms 200 image/png +2018-08-02 14:14:44.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:14:44.576 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:14:44.576 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:14:44.576 +03:00 [INF] Request finished in 0.7777ms 200 image/png +2018-08-02 14:14:44.576 +03:00 [INF] Request finished in 0.808ms 200 image/png +2018-08-02 14:14:44.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:14:44.585 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:14:44.585 +03:00 [INF] Request finished in 0.7743ms 200 image/png +2018-08-02 14:14:44.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:14:44.588 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:14:44.588 +03:00 [INF] Request finished in 0.8237ms 200 image/png +2018-08-02 14:14:44.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:14:44.590 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:14:44.590 +03:00 [INF] Request finished in 1.458ms 200 image/png +2018-08-02 14:14:44.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:14:44.593 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:14:44.593 +03:00 [INF] Request finished in 1.0455ms 200 image/png +2018-08-02 14:14:44.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:14:44.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:14:44.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:14:44.604 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:14:44.604 +03:00 [INF] Request finished in 1.9473ms 200 image/png +2018-08-02 14:14:44.604 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:14:44.605 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:14:44.605 +03:00 [INF] Request finished in 0.8083ms 200 image/svg+xml +2018-08-02 14:14:44.605 +03:00 [INF] Request finished in 1.5154ms 200 image/png +2018-08-02 14:14:44.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:14:44.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:14:44.612 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:14:44.612 +03:00 [INF] Request finished in 1.9354ms 200 image/png +2018-08-02 14:14:44.613 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:14:44.613 +03:00 [INF] Request finished in 1.7004ms 200 image/png +2018-08-02 14:14:44.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:14:44.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:14:44.616 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:14:44.616 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:14:44.616 +03:00 [INF] Request finished in 0.8432ms 200 image/png +2018-08-02 14:14:44.616 +03:00 [INF] Request finished in 2.235ms 200 image/png +2018-08-02 14:14:44.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:14:44.622 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:14:44.622 +03:00 [INF] Request finished in 0.7671ms 200 image/png +2018-08-02 14:14:44.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:14:44.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:14:44.623 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:14:44.623 +03:00 [INF] Request finished in 1.3779ms 200 image/png +2018-08-02 14:14:44.624 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:14:44.624 +03:00 [INF] Request finished in 0.9361ms 200 image/png +2018-08-02 14:14:44.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:14:44.625 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:14:44.625 +03:00 [INF] Request finished in 0.9839ms 200 image/png +2018-08-02 14:14:44.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:14:44.641 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:14:44.641 +03:00 [INF] Request finished in 1.0377ms 200 image/png +2018-08-02 14:14:44.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:14:44.642 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:14:44.642 +03:00 [INF] Request finished in 0.9775ms 200 image/png +2018-08-02 14:14:44.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:14:44.647 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:14:44.647 +03:00 [INF] Request finished in 1.9719ms 200 image/png +2018-08-02 14:14:44.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:14:44.650 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:14:44.650 +03:00 [INF] Request finished in 1.9226ms 200 image/png +2018-08-02 14:14:44.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:14:44.659 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:14:44.659 +03:00 [INF] Request finished in 0.9076ms 200 image/png +2018-08-02 14:14:44.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:14:44.664 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:14:44.664 +03:00 [INF] Request finished in 1.8692ms 200 image/png +2018-08-02 14:14:44.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:14:44.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:14:44.671 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:14:44.671 +03:00 [INF] Request finished in 4.1125ms 200 image/jpeg +2018-08-02 14:14:44.672 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:14:44.672 +03:00 [INF] Request finished in 1.7332ms 200 image/png +2018-08-02 14:14:44.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:14:44.684 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:14:44.685 +03:00 [INF] Request finished in 6.0434ms 200 font/woff2 +2018-08-02 14:14:45.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:14:45.866 +03:00 [INF] Request finished in 2.1125ms 404 +2018-08-02 14:17:28.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:17:28.618 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:17:28.619 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:17:28.641 +03:00 [INF] Executed action /Index in 22.2523ms +2018-08-02 14:17:28.641 +03:00 [INF] Request finished in 320.2507ms 200 text/html; charset=utf-8 +2018-08-02 14:17:28.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:17:28.694 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:17:28.694 +03:00 [INF] Request finished in 4.7348ms 200 text/css +2018-08-02 14:17:28.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:17:28.698 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:17:28.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:17:28.699 +03:00 [INF] Request finished in 1.102ms 200 text/css +2018-08-02 14:17:28.699 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:17:28.700 +03:00 [INF] Request finished in 1.1756ms 200 text/css +2018-08-02 14:17:28.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:17:28.715 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:17:28.715 +03:00 [INF] Request finished in 3.483ms 200 text/css +2018-08-02 14:17:28.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:17:28.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:17:28.722 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:17:28.722 +03:00 [INF] Request finished in 1.1043ms 200 text/css +2018-08-02 14:17:28.723 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:17:28.723 +03:00 [INF] Request finished in 1.7616ms 200 text/css +2018-08-02 14:17:28.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:17:28.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:17:28.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:17:28.734 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:17:28.734 +03:00 [INF] Request finished in 1.4493ms 200 text/css +2018-08-02 14:17:28.735 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:17:28.736 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:17:28.737 +03:00 [INF] Request finished in 3.1247ms 200 application/javascript +2018-08-02 14:17:28.735 +03:00 [INF] Request finished in 1.2906ms 200 text/css +2018-08-02 14:17:28.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:17:28.750 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:17:28.750 +03:00 [INF] Request finished in 9.1106ms 200 application/javascript +2018-08-02 14:17:28.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:17:28.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:17:28.752 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:17:28.752 +03:00 [INF] Request finished in 1.1875ms 200 application/javascript +2018-08-02 14:17:28.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:17:28.761 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:17:28.761 +03:00 [INF] Request finished in 10.8523ms 200 application/javascript +2018-08-02 14:17:28.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:17:28.764 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:17:28.765 +03:00 [INF] Request finished in 2.2128ms 200 application/javascript +2018-08-02 14:17:28.765 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:17:28.765 +03:00 [INF] Request finished in 8.9513ms 200 application/javascript +2018-08-02 14:17:28.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:17:28.775 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:17:28.775 +03:00 [INF] Request finished in 3.6929ms 200 application/javascript +2018-08-02 14:17:28.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:17:28.777 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:17:28.777 +03:00 [INF] Request finished in 2.0423ms 200 application/javascript +2018-08-02 14:17:28.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:17:28.786 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:17:28.787 +03:00 [INF] Request finished in 3.1564ms 200 application/javascript +2018-08-02 14:17:28.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:17:28.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:17:28.798 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:17:28.798 +03:00 [INF] Request finished in 5.8281ms 200 application/javascript +2018-08-02 14:17:28.810 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:17:28.811 +03:00 [INF] Request finished in 20.7414ms 200 application/javascript +2018-08-02 14:17:28.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:17:28.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:17:28.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:17:28.818 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:17:28.818 +03:00 [INF] Request finished in 3.2779ms 200 application/javascript +2018-08-02 14:17:28.818 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:17:28.818 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:17:28.818 +03:00 [INF] Request finished in 6.7556ms 200 application/javascript +2018-08-02 14:17:28.818 +03:00 [INF] Request finished in 1.8907ms 200 application/javascript +2018-08-02 14:17:28.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:17:28.831 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:17:28.832 +03:00 [INF] Request finished in 1.9184ms 200 application/javascript +2018-08-02 14:17:28.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:17:28.851 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:17:28.852 +03:00 [INF] Request finished in 1.0832ms 200 application/javascript +2018-08-02 14:17:28.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:17:28.856 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:17:28.856 +03:00 [INF] Request finished in 1.1342ms 200 application/javascript +2018-08-02 14:17:28.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:17:28.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:17:28.863 +03:00 [INF] Request finished in 2.3116ms 200 application/javascript +2018-08-02 14:17:28.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:17:28.866 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:17:28.866 +03:00 [INF] Request finished in 1.1898ms 200 application/javascript +2018-08-02 14:17:28.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:17:28.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:17:28.874 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:17:28.874 +03:00 [INF] Request finished in 2.3724ms 200 application/javascript +2018-08-02 14:17:28.874 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:17:28.874 +03:00 [INF] Request finished in 1.6212ms 200 application/javascript +2018-08-02 14:17:28.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:17:28.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:17:28.895 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:17:28.896 +03:00 [INF] Request finished in 6.9101ms 200 application/javascript +2018-08-02 14:17:28.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:17:28.901 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:17:28.904 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:17:28.905 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:17:28.906 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8498ms. +2018-08-02 14:17:28.907 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:17:28.907 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:17:28.908 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.3425ms +2018-08-02 14:17:28.908 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.529ms. +2018-08-02 14:17:28.908 +03:00 [INF] Request finished in 29.6405ms 200 text/plain; charset=utf-8 +2018-08-02 14:17:28.909 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:17:28.909 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.3921ms +2018-08-02 14:17:28.910 +03:00 [INF] Request finished in 10.2314ms 200 text/plain; charset=utf-8 +2018-08-02 14:17:28.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:17:28.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:17:28.912 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:17:28.913 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:17:28.913 +03:00 [INF] Request finished in 1.5717ms 200 application/javascript +2018-08-02 14:17:28.914 +03:00 [INF] Request finished in 3.4672ms 200 image/svg+xml +2018-08-02 14:17:28.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:17:28.929 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:17:28.929 +03:00 [INF] Request finished in 4.4389ms 200 image/png +2018-08-02 14:17:28.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:17:28.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:17:28.933 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:17:28.934 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:17:28.934 +03:00 [INF] Request finished in 1.6031ms 200 image/png +2018-08-02 14:17:28.934 +03:00 [INF] Request finished in 2.2132ms 200 image/png +2018-08-02 14:17:28.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:17:28.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:17:28.941 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:17:28.941 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:17:28.941 +03:00 [INF] Request finished in 1.333ms 200 image/png +2018-08-02 14:17:28.941 +03:00 [INF] Request finished in 1.516ms 200 image/png +2018-08-02 14:17:28.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:17:28.952 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:17:28.952 +03:00 [INF] Request finished in 2.2007ms 200 image/png +2018-08-02 14:17:28.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:17:28.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:17:28.964 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:17:28.965 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:17:28.965 +03:00 [INF] Request finished in 1.6641ms 200 image/png +2018-08-02 14:17:28.965 +03:00 [INF] Request finished in 1.0499ms 200 image/png +2018-08-02 14:17:28.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:17:28.967 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:17:28.968 +03:00 [INF] Request finished in 2.1019ms 200 image/png +2018-08-02 14:17:28.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:17:28.969 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:17:28.969 +03:00 [INF] Request finished in 1.2779ms 200 image/png +2018-08-02 14:17:28.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:17:28.973 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:17:28.974 +03:00 [INF] Request finished in 2.9856ms 200 image/png +2018-08-02 14:17:28.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:17:28.977 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:17:28.977 +03:00 [INF] Request finished in 1.4624ms 200 image/png +2018-08-02 14:17:28.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:17:28.979 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:17:28.980 +03:00 [INF] Request finished in 1.7744ms 200 image/png +2018-08-02 14:17:28.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:17:28.981 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:17:28.981 +03:00 [INF] Request finished in 1.5775ms 200 image/png +2018-08-02 14:17:28.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:17:28.995 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:17:28.995 +03:00 [INF] Request finished in 2.7455ms 200 image/png +2018-08-02 14:17:29.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:17:29.011 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:17:29.011 +03:00 [INF] Request finished in 3.656ms 200 image/png +2018-08-02 14:17:29.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:17:29.018 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:17:29.019 +03:00 [INF] Request finished in 1.2943ms 200 image/svg+xml +2018-08-02 14:17:29.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:17:29.037 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:17:29.037 +03:00 [INF] Request finished in 1.258ms 200 image/png +2018-08-02 14:17:29.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:17:29.053 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:17:29.053 +03:00 [INF] Request finished in 0.8426ms 200 image/png +2018-08-02 14:17:29.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:17:29.057 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:17:29.057 +03:00 [INF] Request finished in 0.8372ms 200 image/png +2018-08-02 14:17:29.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:17:29.066 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:17:29.066 +03:00 [INF] Request finished in 0.8348ms 200 image/png +2018-08-02 14:17:29.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:17:29.069 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:17:29.069 +03:00 [INF] Request finished in 2.2741ms 200 image/png +2018-08-02 14:17:29.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:17:29.082 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:17:29.082 +03:00 [INF] Request finished in 1.1502ms 200 image/png +2018-08-02 14:17:29.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:17:29.094 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:17:29.094 +03:00 [INF] Request finished in 2.4875ms 200 image/png +2018-08-02 14:17:29.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:17:29.106 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:17:29.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:17:29.106 +03:00 [INF] Request finished in 1.3837ms 200 image/png +2018-08-02 14:17:29.106 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:17:29.106 +03:00 [INF] Request finished in 0.8535ms 200 image/png +2018-08-02 14:17:29.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:17:29.125 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:17:29.126 +03:00 [INF] Request finished in 1.1413ms 200 image/png +2018-08-02 14:17:29.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:17:29.138 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:17:29.138 +03:00 [INF] Request finished in 1.6649ms 200 image/png +2018-08-02 14:17:29.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:17:29.140 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:17:29.140 +03:00 [INF] Request finished in 0.9243ms 200 image/png +2018-08-02 14:17:29.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:17:29.147 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:17:29.147 +03:00 [INF] Request finished in 1.2762ms 200 image/png +2018-08-02 14:17:29.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:17:29.154 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:17:29.155 +03:00 [INF] Request finished in 2.349ms 200 image/png +2018-08-02 14:17:29.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:17:29.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:17:29.156 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:17:29.156 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:17:29.156 +03:00 [INF] Request finished in 0.6529ms 200 image/png +2018-08-02 14:17:29.156 +03:00 [INF] Request finished in 1.1176ms 200 image/png +2018-08-02 14:17:29.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:17:29.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:17:29.225 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:17:29.225 +03:00 [INF] Request finished in 2.1159ms 200 font/woff2 +2018-08-02 14:17:29.231 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:17:29.231 +03:00 [INF] Request finished in 10.7963ms 200 image/jpeg +2018-08-02 14:17:30.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:17:30.433 +03:00 [INF] Request finished in 2.4435ms 404 +2018-08-02 14:17:37.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:17:37.867 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:17:37.867 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:17:37.887 +03:00 [INF] Executed action /Index in 20.0589ms +2018-08-02 14:17:37.887 +03:00 [INF] Request finished in 300.7317ms 200 text/html; charset=utf-8 +2018-08-02 14:17:37.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:17:37.931 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:17:37.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:17:37.932 +03:00 [INF] Request finished in 4.0833ms 200 text/css +2018-08-02 14:17:37.932 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:17:37.933 +03:00 [INF] Request finished in 0.8869ms 200 text/css +2018-08-02 14:17:37.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:17:37.940 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:17:37.940 +03:00 [INF] Request finished in 1.7149ms 200 text/css +2018-08-02 14:17:37.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:17:37.942 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:17:37.942 +03:00 [INF] Request finished in 1.2105ms 200 text/css +2018-08-02 14:17:37.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:17:37.945 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:17:37.945 +03:00 [INF] Request finished in 0.8879ms 200 text/css +2018-08-02 14:17:37.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:17:37.956 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:17:37.956 +03:00 [INF] Request finished in 1.7701ms 200 text/css +2018-08-02 14:17:37.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:17:37.976 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:17:37.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:17:37.976 +03:00 [INF] Request finished in 1.4911ms 200 text/css +2018-08-02 14:17:37.977 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:17:37.978 +03:00 [INF] Request finished in 1.1648ms 200 text/css +2018-08-02 14:17:37.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:17:37.991 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:17:37.991 +03:00 [INF] Request finished in 1.1306ms 200 application/javascript +2018-08-02 14:17:37.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:17:37.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:17:37.997 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:17:37.997 +03:00 [INF] Request finished in 1.018ms 200 application/javascript +2018-08-02 14:17:38.000 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:17:38.000 +03:00 [INF] Request finished in 7.4194ms 200 application/javascript +2018-08-02 14:17:38.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:17:38.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:17:38.011 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:17:38.011 +03:00 [INF] Request finished in 3.1039ms 200 application/javascript +2018-08-02 14:17:38.012 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:17:38.012 +03:00 [INF] Request finished in 8.4809ms 200 application/javascript +2018-08-02 14:17:38.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:17:38.023 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:17:38.023 +03:00 [INF] Request finished in 1.9557ms 200 application/javascript +2018-08-02 14:17:38.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:17:38.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:17:38.024 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:17:38.024 +03:00 [INF] Request finished in 1.2576ms 200 application/javascript +2018-08-02 14:17:38.025 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:17:38.025 +03:00 [INF] Request finished in 0.9405ms 200 application/javascript +2018-08-02 14:17:38.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:17:38.041 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:17:38.041 +03:00 [INF] Request finished in 4.8492ms 200 application/javascript +2018-08-02 14:17:38.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:17:38.050 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:17:38.050 +03:00 [INF] Request finished in 1.9308ms 200 application/javascript +2018-08-02 14:17:38.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:17:38.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:17:38.055 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:17:38.055 +03:00 [INF] Request finished in 1.6238ms 200 application/javascript +2018-08-02 14:17:38.074 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:17:38.074 +03:00 [INF] Request finished in 20.6756ms 200 application/javascript +2018-08-02 14:17:38.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:17:38.078 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:17:38.079 +03:00 [INF] Request finished in 2.0097ms 200 application/javascript +2018-08-02 14:17:38.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:17:38.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:17:38.087 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:17:38.087 +03:00 [INF] Request finished in 1.6605ms 200 application/javascript +2018-08-02 14:17:38.089 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:17:38.089 +03:00 [INF] Request finished in 1.8164ms 200 application/javascript +2018-08-02 14:17:38.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:17:38.111 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:17:38.111 +03:00 [INF] Request finished in 3.3595ms 200 application/javascript +2018-08-02 14:17:38.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:17:38.115 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:17:38.115 +03:00 [INF] Request finished in 2.0984ms 200 application/javascript +2018-08-02 14:17:38.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:17:38.127 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:17:38.127 +03:00 [INF] Request finished in 2.1778ms 200 application/javascript +2018-08-02 14:17:38.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:17:38.139 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:17:38.139 +03:00 [INF] Request finished in 4.7007ms 200 application/javascript +2018-08-02 14:17:38.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:17:38.148 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:17:38.148 +03:00 [INF] Request finished in 1.4381ms 200 application/javascript +2018-08-02 14:17:38.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:17:38.174 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:17:38.175 +03:00 [INF] Request finished in 2.4517ms 200 application/javascript +2018-08-02 14:17:38.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:17:38.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:17:38.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:17:38.206 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:17:38.206 +03:00 [INF] Request finished in 1.7221ms 200 application/javascript +2018-08-02 14:17:38.207 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:17:38.207 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:17:38.208 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:17:38.208 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1149ms. +2018-08-02 14:17:38.209 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:17:38.209 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0502000000000002ms +2018-08-02 14:17:38.209 +03:00 [INF] Request finished in 5.3408ms 200 text/plain; charset=utf-8 +2018-08-02 14:17:38.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:17:38.214 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:17:38.215 +03:00 [INF] Request finished in 1.763ms 200 image/svg+xml +2018-08-02 14:17:38.215 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:17:38.217 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.2344000000000002ms. +2018-08-02 14:17:38.217 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:17:38.217 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.0516ms +2018-08-02 14:17:38.217 +03:00 [INF] Request finished in 25.6636ms 200 text/plain; charset=utf-8 +2018-08-02 14:17:38.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:17:38.224 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:17:38.224 +03:00 [INF] Request finished in 1.5092ms 200 application/javascript +2018-08-02 14:17:38.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:17:38.230 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:17:38.231 +03:00 [INF] Request finished in 1.1088ms 200 image/png +2018-08-02 14:17:38.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:17:38.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:17:38.233 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:17:38.233 +03:00 [INF] Request finished in 1.7481ms 200 image/png +2018-08-02 14:17:38.233 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:17:38.233 +03:00 [INF] Request finished in 1.9429ms 200 image/png +2018-08-02 14:17:38.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:17:38.247 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:17:38.247 +03:00 [INF] Request finished in 1.5003ms 200 image/png +2018-08-02 14:17:38.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:17:38.249 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:17:38.249 +03:00 [INF] Request finished in 1.4385ms 200 image/png +2018-08-02 14:17:38.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:17:38.254 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:17:38.254 +03:00 [INF] Request finished in 1.515ms 200 image/png +2018-08-02 14:17:38.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:17:38.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:17:38.255 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:17:38.255 +03:00 [INF] Request finished in 1.1848ms 200 image/png +2018-08-02 14:17:38.255 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:17:38.256 +03:00 [INF] Request finished in 1.4926ms 200 image/png +2018-08-02 14:17:38.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:17:38.257 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:17:38.257 +03:00 [INF] Request finished in 1.2856ms 200 image/png +2018-08-02 14:17:38.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:17:38.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:17:38.263 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:17:38.263 +03:00 [INF] Request finished in 3.9204ms 200 image/png +2018-08-02 14:17:38.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:17:38.265 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:17:38.266 +03:00 [INF] Request finished in 3.0105ms 200 image/png +2018-08-02 14:17:38.267 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:17:38.267 +03:00 [INF] Request finished in 2.5018ms 200 image/png +2018-08-02 14:17:38.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:17:38.272 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:17:38.272 +03:00 [INF] Request finished in 1.0821ms 200 image/png +2018-08-02 14:17:38.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:17:38.277 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:17:38.277 +03:00 [INF] Request finished in 1.3129ms 200 image/png +2018-08-02 14:17:38.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:17:38.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:17:38.284 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:17:38.284 +03:00 [INF] Request finished in 0.8662ms 200 image/png +2018-08-02 14:17:38.286 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:17:38.287 +03:00 [INF] Request finished in 2.3807ms 200 image/png +2018-08-02 14:17:38.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:17:38.298 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:17:38.298 +03:00 [INF] Request finished in 0.7897ms 200 image/svg+xml +2018-08-02 14:17:38.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:17:38.305 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:17:38.305 +03:00 [INF] Request finished in 0.9965ms 200 image/png +2018-08-02 14:17:38.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:17:38.316 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:17:38.316 +03:00 [INF] Request finished in 0.9213ms 200 image/png +2018-08-02 14:17:38.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:17:38.333 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:17:38.333 +03:00 [INF] Request finished in 0.9364ms 200 image/png +2018-08-02 14:17:38.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:17:38.340 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:17:38.340 +03:00 [INF] Request finished in 1.1161ms 200 image/png +2018-08-02 14:17:38.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:17:38.352 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:17:38.352 +03:00 [INF] Request finished in 1.2136ms 200 image/png +2018-08-02 14:17:38.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:17:38.367 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:17:38.367 +03:00 [INF] Request finished in 1.1177ms 200 image/png +2018-08-02 14:17:38.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:17:38.383 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:17:38.384 +03:00 [INF] Request finished in 1.6676ms 200 image/png +2018-08-02 14:17:38.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:17:38.386 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:17:38.387 +03:00 [INF] Request finished in 1.7055ms 200 image/png +2018-08-02 14:17:38.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:17:38.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:17:38.398 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:17:38.398 +03:00 [INF] Request finished in 2.2303ms 200 image/png +2018-08-02 14:17:38.400 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:17:38.401 +03:00 [INF] Request finished in 2.7294ms 200 image/png +2018-08-02 14:17:38.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:17:38.403 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:17:38.404 +03:00 [INF] Request finished in 1.6667ms 200 image/png +2018-08-02 14:17:38.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:17:38.412 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:17:38.413 +03:00 [INF] Request finished in 1.6214ms 200 image/png +2018-08-02 14:17:38.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:17:38.415 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:17:38.415 +03:00 [INF] Request finished in 1.4315ms 200 image/png +2018-08-02 14:17:38.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:17:38.417 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:17:38.417 +03:00 [INF] Request finished in 1.6763ms 200 image/png +2018-08-02 14:17:38.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:17:38.424 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:17:38.424 +03:00 [INF] Request finished in 0.8898ms 200 image/png +2018-08-02 14:17:38.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:17:38.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:17:38.430 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:17:38.431 +03:00 [INF] Request finished in 0.8872ms 200 image/png +2018-08-02 14:17:38.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:17:38.435 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:17:38.436 +03:00 [INF] Request finished in 2.6324ms 200 font/woff2 +2018-08-02 14:17:38.440 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:17:38.440 +03:00 [INF] Request finished in 10.7482ms 200 image/jpeg +2018-08-02 14:17:39.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:17:39.604 +03:00 [INF] Request finished in 1.0994ms 404 +2018-08-02 14:18:50.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:18:50.811 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:18:50.812 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:18:50.832 +03:00 [INF] Executed action /Index in 20.122700000000002ms +2018-08-02 14:18:50.832 +03:00 [INF] Request finished in 284.6502ms 200 text/html; charset=utf-8 +2018-08-02 14:18:50.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:18:50.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:18:50.877 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:18:50.877 +03:00 [INF] Request finished in 1.6059ms 200 text/css +2018-08-02 14:18:50.878 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:18:50.878 +03:00 [INF] Request finished in 6.5628ms 200 text/css +2018-08-02 14:18:50.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:18:50.880 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:18:50.880 +03:00 [INF] Request finished in 1.096ms 200 text/css +2018-08-02 14:18:50.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:18:50.884 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:18:50.884 +03:00 [INF] Request finished in 0.8872ms 200 text/css +2018-08-02 14:18:50.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:18:50.894 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:18:50.894 +03:00 [INF] Request finished in 1.0898ms 200 text/css +2018-08-02 14:18:50.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:18:50.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:18:50.896 +03:00 [INF] Request finished in 1.2848ms 200 text/css +2018-08-02 14:18:50.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:18:50.905 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:18:50.906 +03:00 [INF] Request finished in 1.5922ms 200 text/css +2018-08-02 14:18:50.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:18:50.919 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:18:50.919 +03:00 [INF] Request finished in 1.686ms 200 text/css +2018-08-02 14:18:50.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:18:50.928 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:18:50.928 +03:00 [INF] Request finished in 2.5058ms 200 application/javascript +2018-08-02 14:18:50.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:18:50.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:18:50.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:18:50.935 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:18:50.935 +03:00 [INF] Request finished in 0.841ms 200 application/javascript +2018-08-02 14:18:50.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:18:50.944 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:18:50.944 +03:00 [INF] Request finished in 1.29ms 200 application/javascript +2018-08-02 14:18:50.944 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:18:50.944 +03:00 [INF] Request finished in 9.2058ms 200 application/javascript +2018-08-02 14:18:50.945 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:18:50.945 +03:00 [INF] Request finished in 9.8187ms 200 application/javascript +2018-08-02 14:18:50.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:18:50.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:18:50.949 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:18:50.949 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:18:50.949 +03:00 [INF] Request finished in 2.936ms 200 application/javascript +2018-08-02 14:18:50.950 +03:00 [INF] Request finished in 1.9612ms 200 application/javascript +2018-08-02 14:18:50.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:18:50.953 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:18:50.953 +03:00 [INF] Request finished in 1.0703ms 200 application/javascript +2018-08-02 14:18:50.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:18:50.961 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:18:50.961 +03:00 [INF] Request finished in 2.8247ms 200 application/javascript +2018-08-02 14:18:50.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:18:50.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:18:50.987 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:18:50.987 +03:00 [INF] Request finished in 2.3965ms 200 application/javascript +2018-08-02 14:18:50.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:18:50.996 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:18:50.997 +03:00 [INF] Request finished in 1.5327ms 200 application/javascript +2018-08-02 14:18:50.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:18:50.997 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:18:50.997 +03:00 [INF] Request finished in 0.7333ms 200 application/javascript +2018-08-02 14:18:50.999 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:18:50.999 +03:00 [INF] Request finished in 12.4807ms 200 application/javascript +2018-08-02 14:18:51.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:18:51.013 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:18:51.013 +03:00 [INF] Request finished in 1.961ms 200 application/javascript +2018-08-02 14:18:51.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:18:51.021 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:18:51.021 +03:00 [INF] Request finished in 1.9047ms 200 application/javascript +2018-08-02 14:18:51.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:18:51.036 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:18:51.037 +03:00 [INF] Request finished in 2.8447ms 200 application/javascript +2018-08-02 14:18:51.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:18:51.047 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:18:51.047 +03:00 [INF] Request finished in 4.3122ms 200 application/javascript +2018-08-02 14:18:51.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:18:51.064 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:18:51.064 +03:00 [INF] Request finished in 2.6649ms 200 application/javascript +2018-08-02 14:18:51.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:18:51.091 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:18:51.091 +03:00 [INF] Request finished in 1.3075ms 200 application/javascript +2018-08-02 14:18:51.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:18:51.114 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:18:51.114 +03:00 [INF] Request finished in 1.3135ms 200 application/javascript +2018-08-02 14:18:51.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:18:51.126 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:18:51.126 +03:00 [INF] Request finished in 1.8922ms 200 application/javascript +2018-08-02 14:18:51.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:18:51.139 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:18:51.140 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:18:51.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:18:51.143 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.7621ms. +2018-08-02 14:18:51.144 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:18:51.144 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.9319000000000006ms +2018-08-02 14:18:51.145 +03:00 [INF] Request finished in 11.5189ms 200 text/plain; charset=utf-8 +2018-08-02 14:18:51.145 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:18:51.146 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:18:51.147 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10840000000000001ms. +2018-08-02 14:18:51.147 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:18:51.147 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7262000000000002ms +2018-08-02 14:18:51.147 +03:00 [INF] Request finished in 4.9981ms 200 text/plain; charset=utf-8 +2018-08-02 14:18:51.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:18:51.155 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:18:51.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:18:51.155 +03:00 [INF] Request finished in 1.1132ms 200 application/javascript +2018-08-02 14:18:51.156 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:18:51.156 +03:00 [INF] Request finished in 1.4894ms 200 application/javascript +2018-08-02 14:18:51.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:18:51.163 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:18:51.163 +03:00 [INF] Request finished in 1.1365ms 200 image/svg+xml +2018-08-02 14:18:51.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:18:51.165 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:18:51.165 +03:00 [INF] Request finished in 1.8874ms 200 image/png +2018-08-02 14:18:51.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:18:51.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:18:51.174 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:18:51.174 +03:00 [INF] Request finished in 2.8586ms 200 image/png +2018-08-02 14:18:51.176 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:18:51.176 +03:00 [INF] Request finished in 2.255ms 200 image/png +2018-08-02 14:18:51.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:18:51.179 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:18:51.179 +03:00 [INF] Request finished in 1.1873ms 200 image/png +2018-08-02 14:18:51.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:18:51.181 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:18:51.181 +03:00 [INF] Request finished in 1.2332ms 200 image/png +2018-08-02 14:18:51.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:18:51.183 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:18:51.183 +03:00 [INF] Request finished in 0.9219ms 200 image/png +2018-08-02 14:18:51.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:18:51.189 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:18:51.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:18:51.189 +03:00 [INF] Request finished in 1.6361ms 200 image/png +2018-08-02 14:18:51.189 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:18:51.189 +03:00 [INF] Request finished in 0.8474ms 200 image/png +2018-08-02 14:18:51.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:18:51.199 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:18:51.199 +03:00 [INF] Request finished in 0.8389ms 200 image/png +2018-08-02 14:18:51.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:18:51.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:18:51.203 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:18:51.203 +03:00 [INF] Request finished in 1.1431ms 200 image/png +2018-08-02 14:18:51.203 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:18:51.203 +03:00 [INF] Request finished in 0.9536ms 200 image/png +2018-08-02 14:18:51.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:18:51.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:18:51.205 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:18:51.205 +03:00 [INF] Request finished in 0.7042ms 200 image/png +2018-08-02 14:18:51.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:18:51.205 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:18:51.205 +03:00 [INF] Request finished in 0.7135ms 200 image/png +2018-08-02 14:18:51.206 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:18:51.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:18:51.206 +03:00 [INF] Request finished in 1.9183ms 200 image/png +2018-08-02 14:18:51.207 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:18:51.207 +03:00 [INF] Request finished in 1.0475ms 200 image/png +2018-08-02 14:18:51.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:18:51.214 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:18:51.214 +03:00 [INF] Request finished in 0.7998ms 200 image/png +2018-08-02 14:18:51.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:18:51.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:18:51.218 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:18:51.218 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:18:51.218 +03:00 [INF] Request finished in 0.8851ms 200 image/png +2018-08-02 14:18:51.218 +03:00 [INF] Request finished in 1.6315ms 200 image/svg+xml +2018-08-02 14:18:51.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:18:51.223 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:18:51.223 +03:00 [INF] Request finished in 1.2881ms 200 image/png +2018-08-02 14:18:51.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:18:51.225 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:18:51.225 +03:00 [INF] Request finished in 1.3127ms 200 image/png +2018-08-02 14:18:51.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:18:51.228 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:18:51.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:18:51.228 +03:00 [INF] Request finished in 2.0346ms 200 image/png +2018-08-02 14:18:51.229 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:18:51.229 +03:00 [INF] Request finished in 0.8893ms 200 image/png +2018-08-02 14:18:51.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:18:51.230 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:18:51.230 +03:00 [INF] Request finished in 1.0425ms 200 image/png +2018-08-02 14:18:51.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:18:51.240 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:18:51.240 +03:00 [INF] Request finished in 3.052ms 200 image/png +2018-08-02 14:18:51.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:18:51.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:18:51.242 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:18:51.242 +03:00 [INF] Request finished in 1.117ms 200 image/png +2018-08-02 14:18:51.243 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:18:51.243 +03:00 [INF] Request finished in 2.6767ms 200 image/png +2018-08-02 14:18:51.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:18:51.248 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:18:51.249 +03:00 [INF] Request finished in 3.9167ms 200 image/png +2018-08-02 14:18:51.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:18:51.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:18:51.251 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:18:51.252 +03:00 [INF] Request finished in 0.8908ms 200 image/png +2018-08-02 14:18:51.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:18:51.254 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:18:51.254 +03:00 [INF] Request finished in 2.0778ms 200 image/png +2018-08-02 14:18:51.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:18:51.256 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:18:51.256 +03:00 [INF] Request finished in 5.5845ms 200 image/png +2018-08-02 14:18:51.256 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:18:51.257 +03:00 [INF] Request finished in 1.0867ms 200 image/png +2018-08-02 14:18:51.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:18:51.258 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:18:51.259 +03:00 [INF] Request finished in 1.3652ms 200 image/png +2018-08-02 14:18:51.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:18:51.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:18:51.263 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:18:51.264 +03:00 [INF] Request finished in 0.7572ms 200 image/png +2018-08-02 14:18:51.270 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:18:51.270 +03:00 [INF] Request finished in 8.7303ms 200 image/jpeg +2018-08-02 14:18:51.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:18:51.273 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:18:51.273 +03:00 [INF] Request finished in 1.9676ms 200 font/woff2 +2018-08-02 14:18:52.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:18:52.419 +03:00 [INF] Request finished in 0.8268ms 404 +2018-08-02 14:36:42.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-02 14:36:43.002 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-02 14:36:43.006 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:36:43.015 +03:00 [INF] Executed action /Templates in 12.0937ms +2018-08-02 14:36:43.015 +03:00 [INF] Request finished in 21.1527ms 200 text/html; charset=utf-8 +2018-08-02 14:36:43.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:36:43.076 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:36:43.077 +03:00 [INF] Request finished in 3.9178ms 200 text/css +2018-08-02 14:36:43.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:36:43.078 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:36:43.078 +03:00 [INF] Request finished in 1.1995ms 200 text/css +2018-08-02 14:36:43.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:36:43.081 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:36:43.082 +03:00 [INF] Request finished in 2.8479ms 200 text/css +2018-08-02 14:36:43.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:36:43.092 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:36:43.092 +03:00 [INF] Request finished in 2.4149ms 200 text/css +2018-08-02 14:36:43.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:36:43.102 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:36:43.102 +03:00 [INF] Request finished in 1.7616ms 200 text/css +2018-08-02 14:36:43.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:36:43.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:36:43.103 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:36:43.103 +03:00 [INF] Request finished in 0.9382ms 200 text/css +2018-08-02 14:36:43.106 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:36:43.106 +03:00 [INF] Request finished in 4.0266ms 200 text/css +2018-08-02 14:36:43.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:36:43.110 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:36:43.110 +03:00 [INF] Request finished in 0.9771ms 200 text/css +2018-08-02 14:36:43.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:36:43.116 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:36:43.116 +03:00 [INF] Request finished in 1.2585ms 200 application/javascript +2018-08-02 14:36:43.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:36:43.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:36:43.120 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:36:43.120 +03:00 [INF] Request finished in 1.0164ms 200 application/javascript +2018-08-02 14:36:43.127 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:36:43.127 +03:00 [INF] Request finished in 8.0806ms 200 application/javascript +2018-08-02 14:36:43.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:36:43.141 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:36:43.141 +03:00 [INF] Request finished in 6.8565ms 200 application/javascript +2018-08-02 14:36:43.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:36:43.160 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:36:43.160 +03:00 [INF] Request finished in 1.5538ms 200 application/javascript +2018-08-02 14:36:43.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:36:43.178 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:36:43.178 +03:00 [INF] Request finished in 1.5971ms 200 application/javascript +2018-08-02 14:36:43.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:36:43.186 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:36:43.186 +03:00 [INF] Request finished in 3.527ms 200 application/javascript +2018-08-02 14:36:43.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:36:43.190 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:36:43.190 +03:00 [INF] Request finished in 1.1569ms 200 application/javascript +2018-08-02 14:36:43.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:36:43.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:36:43.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:36:43.204 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:36:43.204 +03:00 [INF] Request finished in 2.0503ms 200 application/javascript +2018-08-02 14:36:43.205 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:36:43.205 +03:00 [INF] Request finished in 0.8314ms 200 application/javascript +2018-08-02 14:36:43.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:36:43.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:36:43.211 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:36:43.211 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:36:43.211 +03:00 [INF] Request finished in 1.2658ms 200 application/javascript +2018-08-02 14:36:43.211 +03:00 [INF] Request finished in 2.9675ms 200 application/javascript +2018-08-02 14:36:43.212 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:36:43.212 +03:00 [INF] Request finished in 8.9534ms 200 application/javascript +2018-08-02 14:36:43.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:36:43.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:36:43.220 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:36:43.221 +03:00 [INF] Request finished in 0.9935ms 200 application/javascript +2018-08-02 14:36:43.221 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:36:43.221 +03:00 [INF] Request finished in 1.3716ms 200 application/javascript +2018-08-02 14:36:43.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:36:43.227 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:36:43.228 +03:00 [INF] Request finished in 1.0199ms 200 application/javascript +2018-08-02 14:36:43.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:36:43.231 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:36:43.231 +03:00 [INF] Request finished in 1.1491ms 200 application/javascript +2018-08-02 14:36:43.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:36:43.233 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:36:43.233 +03:00 [INF] Request finished in 1.3504ms 200 application/javascript +2018-08-02 14:36:43.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:36:43.242 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:36:43.244 +03:00 [INF] Request finished in 3.0724ms 200 application/javascript +2018-08-02 14:36:43.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:36:43.249 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:36:43.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:36:43.249 +03:00 [INF] Request finished in 1.2277ms 200 application/javascript +2018-08-02 14:36:43.250 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:36:43.251 +03:00 [INF] Request finished in 1.9399ms 200 application/javascript +2018-08-02 14:36:43.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:36:43.259 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:36:43.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:36:43.262 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:36:43.262 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1889ms. +2018-08-02 14:36:43.262 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:36:43.262 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.1786000000000003ms +2018-08-02 14:36:43.263 +03:00 [INF] Request finished in 6.9529ms 200 text/plain; charset=utf-8 +2018-08-02 14:36:43.272 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:36:43.273 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:36:43.274 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.51150000000000007ms. +2018-08-02 14:36:43.274 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:36:43.274 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2312000000000003ms +2018-08-02 14:36:43.275 +03:00 [INF] Request finished in 15.0464ms 200 text/plain; charset=utf-8 +2018-08-02 14:36:43.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:36:43.278 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:36:43.278 +03:00 [INF] Request finished in 0.9607ms 200 application/javascript +2018-08-02 14:36:43.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:36:43.282 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:36:43.282 +03:00 [INF] Request finished in 4.2978ms 200 application/javascript +2018-08-02 14:36:43.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-02 14:36:43.283 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-02 14:36:43.283 +03:00 [INF] Request finished in 0.7817ms 200 application/javascript +2018-08-02 14:36:43.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:36:43.305 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:36:43.305 +03:00 [INF] Request finished in 0.8492ms 200 image/svg+xml +2018-08-02 14:36:43.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:36:43.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:36:43.389 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:36:43.389 +03:00 [INF] Request finished in 7.8859ms 200 image/jpeg +2018-08-02 14:36:43.390 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:36:43.390 +03:00 [INF] Request finished in 2.4977ms 200 font/woff2 +2018-08-02 14:36:43.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:36:43.995 +03:00 [INF] Request finished in 0.8267ms 404 +2018-08-02 14:36:58.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:36:58.918 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:36:58.919 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:36:58.937 +03:00 [INF] Executed action /Index in 18.9081ms +2018-08-02 14:36:58.937 +03:00 [INF] Request finished in 266.6638ms 200 text/html; charset=utf-8 +2018-08-02 14:36:59.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:36:59.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:36:59.009 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:36:59.009 +03:00 [INF] Request finished in 0.9922ms 200 text/css +2018-08-02 14:36:59.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:36:59.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:36:59.010 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:36:59.010 +03:00 [INF] Request finished in 0.8475ms 200 text/css +2018-08-02 14:36:59.010 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:36:59.010 +03:00 [INF] Request finished in 1.2172ms 200 text/css +2018-08-02 14:36:59.013 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:36:59.013 +03:00 [INF] Request finished in 6.8514ms 200 text/css +2018-08-02 14:36:59.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:36:59.016 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:36:59.016 +03:00 [INF] Request finished in 1.4455ms 200 text/css +2018-08-02 14:36:59.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:36:59.021 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:36:59.021 +03:00 [INF] Request finished in 2.2022ms 200 text/css +2018-08-02 14:36:59.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:36:59.027 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:36:59.027 +03:00 [INF] Request finished in 1.2399ms 200 text/css +2018-08-02 14:36:59.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:36:59.035 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:36:59.035 +03:00 [INF] Request finished in 3.0749ms 200 text/css +2018-08-02 14:36:59.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:36:59.044 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:36:59.044 +03:00 [INF] Request finished in 1.7612ms 200 application/javascript +2018-08-02 14:36:59.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:36:59.057 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:36:59.058 +03:00 [INF] Request finished in 6.2469ms 200 application/javascript +2018-08-02 14:36:59.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:36:59.064 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:36:59.064 +03:00 [INF] Request finished in 2.2564ms 200 application/javascript +2018-08-02 14:36:59.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:36:59.071 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:36:59.071 +03:00 [INF] Request finished in 5.4495ms 200 application/javascript +2018-08-02 14:36:59.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:36:59.085 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:36:59.086 +03:00 [INF] Request finished in 2.0583ms 200 application/javascript +2018-08-02 14:36:59.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:36:59.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:36:59.092 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:36:59.092 +03:00 [INF] Request finished in 5.9927ms 200 application/javascript +2018-08-02 14:36:59.093 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:36:59.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:36:59.100 +03:00 [INF] Request finished in 7.9673ms 200 application/javascript +2018-08-02 14:36:59.101 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:36:59.101 +03:00 [INF] Request finished in 1.9888ms 200 application/javascript +2018-08-02 14:36:59.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:36:59.113 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:36:59.114 +03:00 [INF] Request finished in 3.5207ms 200 application/javascript +2018-08-02 14:36:59.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:36:59.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:36:59.127 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:36:59.127 +03:00 [INF] Request finished in 1.0926ms 200 application/javascript +2018-08-02 14:36:59.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:36:59.129 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:36:59.129 +03:00 [INF] Request finished in 1.4554ms 200 application/javascript +2018-08-02 14:36:59.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:36:59.135 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:36:59.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:36:59.136 +03:00 [INF] Request finished in 3.0514ms 200 application/javascript +2018-08-02 14:36:59.136 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:36:59.137 +03:00 [INF] Request finished in 1.18ms 200 application/javascript +2018-08-02 14:36:59.142 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:36:59.142 +03:00 [INF] Request finished in 24.5906ms 200 application/javascript +2018-08-02 14:36:59.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:36:59.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:36:59.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:36:59.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:36:59.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:36:59.151 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:36:59.151 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:36:59.151 +03:00 [INF] Request finished in 1.0209ms 200 application/javascript +2018-08-02 14:36:59.151 +03:00 [INF] Request finished in 1.2662ms 200 application/javascript +2018-08-02 14:36:59.152 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:36:59.152 +03:00 [INF] Request finished in 1.1765ms 200 application/javascript +2018-08-02 14:36:59.153 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:36:59.153 +03:00 [INF] Request finished in 1.6501ms 200 application/javascript +2018-08-02 14:36:59.154 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:36:59.154 +03:00 [INF] Request finished in 3.5199ms 200 application/javascript +2018-08-02 14:36:59.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:36:59.161 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:36:59.162 +03:00 [INF] Request finished in 1.2377ms 200 application/javascript +2018-08-02 14:36:59.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:36:59.166 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:36:59.166 +03:00 [INF] Request finished in 1.0081ms 200 application/javascript +2018-08-02 14:36:59.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:36:59.172 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:36:59.173 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:36:59.174 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.40080000000000005ms. +2018-08-02 14:36:59.174 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:36:59.174 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0217ms +2018-08-02 14:36:59.175 +03:00 [INF] Request finished in 3.5199ms 200 text/plain; charset=utf-8 +2018-08-02 14:36:59.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:36:59.184 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:36:59.185 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:36:59.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11750000000000001ms. +2018-08-02 14:36:59.186 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:36:59.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5453000000000001ms +2018-08-02 14:36:59.186 +03:00 [INF] Request finished in 3.6546ms 200 text/plain; charset=utf-8 +2018-08-02 14:36:59.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:36:59.188 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:36:59.188 +03:00 [INF] Request finished in 1.7423ms 200 application/javascript +2018-08-02 14:36:59.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:36:59.190 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:36:59.190 +03:00 [INF] Request finished in 1.6323ms 200 application/javascript +2018-08-02 14:36:59.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:36:59.207 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:36:59.207 +03:00 [INF] Request finished in 1.5559ms 200 image/svg+xml +2018-08-02 14:36:59.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:36:59.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:36:59.218 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:36:59.218 +03:00 [INF] Request finished in 1.5881ms 200 image/png +2018-08-02 14:36:59.218 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:36:59.218 +03:00 [INF] Request finished in 1.5514ms 200 image/png +2018-08-02 14:36:59.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:36:59.231 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:36:59.231 +03:00 [INF] Request finished in 0.9791ms 200 image/png +2018-08-02 14:36:59.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:36:59.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:36:59.253 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:36:59.253 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:36:59.253 +03:00 [INF] Request finished in 1.0168ms 200 image/png +2018-08-02 14:36:59.253 +03:00 [INF] Request finished in 0.7241ms 200 image/png +2018-08-02 14:36:59.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:36:59.258 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:36:59.258 +03:00 [INF] Request finished in 0.866ms 200 image/png +2018-08-02 14:36:59.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:36:59.270 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:36:59.270 +03:00 [INF] Request finished in 1.142ms 200 image/png +2018-08-02 14:36:59.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:36:59.275 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:36:59.275 +03:00 [INF] Request finished in 1.1386ms 200 image/png +2018-08-02 14:36:59.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:36:59.276 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:36:59.276 +03:00 [INF] Request finished in 0.8681ms 200 image/png +2018-08-02 14:36:59.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:36:59.281 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:36:59.282 +03:00 [INF] Request finished in 1.3857ms 200 image/png +2018-08-02 14:36:59.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:36:59.283 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:36:59.283 +03:00 [INF] Request finished in 1.2219ms 200 image/png +2018-08-02 14:36:59.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:36:59.287 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:36:59.287 +03:00 [INF] Request finished in 1.9788ms 200 image/png +2018-08-02 14:36:59.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:36:59.289 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:36:59.289 +03:00 [INF] Request finished in 1.1588ms 200 image/png +2018-08-02 14:36:59.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:36:59.290 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:36:59.290 +03:00 [INF] Request finished in 0.8295ms 200 image/png +2018-08-02 14:36:59.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:36:59.294 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:36:59.294 +03:00 [INF] Request finished in 1.228ms 200 image/png +2018-08-02 14:36:59.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:36:59.302 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:36:59.302 +03:00 [INF] Request finished in 0.888ms 200 image/png +2018-08-02 14:36:59.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:36:59.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:36:59.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:36:59.308 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:36:59.308 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:36:59.308 +03:00 [INF] Request finished in 0.8155ms 200 image/svg+xml +2018-08-02 14:36:59.309 +03:00 [INF] Request finished in 0.8741ms 200 image/png +2018-08-02 14:36:59.309 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:36:59.309 +03:00 [INF] Request finished in 1.0946ms 200 image/png +2018-08-02 14:36:59.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:36:59.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:36:59.315 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:36:59.315 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:36:59.316 +03:00 [INF] Request finished in 1.5253ms 200 image/png +2018-08-02 14:36:59.316 +03:00 [INF] Request finished in 2.996ms 200 image/png +2018-08-02 14:36:59.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:36:59.323 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:36:59.323 +03:00 [INF] Request finished in 2.2684ms 200 image/png +2018-08-02 14:36:59.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:36:59.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:36:59.326 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:36:59.326 +03:00 [INF] Request finished in 2.4117ms 200 image/png +2018-08-02 14:36:59.326 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:36:59.327 +03:00 [INF] Request finished in 0.7239ms 200 image/png +2018-08-02 14:36:59.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:36:59.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:36:59.333 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:36:59.334 +03:00 [INF] Request finished in 2.5012ms 200 image/png +2018-08-02 14:36:59.334 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:36:59.335 +03:00 [INF] Request finished in 2.1663ms 200 image/png +2018-08-02 14:36:59.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:36:59.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:36:59.336 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:36:59.336 +03:00 [INF] Request finished in 1.362ms 200 image/png +2018-08-02 14:36:59.336 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:36:59.336 +03:00 [INF] Request finished in 1.8236ms 200 image/png +2018-08-02 14:36:59.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:36:59.337 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:36:59.338 +03:00 [INF] Request finished in 0.7444ms 200 image/png +2018-08-02 14:36:59.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:36:59.342 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:36:59.342 +03:00 [INF] Request finished in 3.0296ms 200 image/png +2018-08-02 14:36:59.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:36:59.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:36:59.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:36:59.344 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:36:59.344 +03:00 [INF] Request finished in 2.3771ms 200 font/woff2 +2018-08-02 14:36:59.345 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:36:59.345 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:36:59.345 +03:00 [INF] Request finished in 1.1644ms 200 image/png +2018-08-02 14:36:59.345 +03:00 [INF] Request finished in 1.1524ms 200 image/png +2018-08-02 14:36:59.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:36:59.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:36:59.350 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:36:59.350 +03:00 [INF] Request finished in 1.6221ms 200 image/png +2018-08-02 14:36:59.358 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:36:59.358 +03:00 [INF] Request finished in 8.6515ms 200 image/jpeg +2018-08-02 14:37:00.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:37:00.120 +03:00 [INF] Request finished in 0.5768ms 404 +2018-08-02 14:37:02.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-02 14:37:02.490 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-02 14:37:02.491 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:37:02.497 +03:00 [INF] Executed action /Templates in 6.6917ms +2018-08-02 14:37:02.497 +03:00 [INF] Request finished in 7.851ms 200 text/html; charset=utf-8 +2018-08-02 14:37:02.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:37:02.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:37:02.551 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:37:02.551 +03:00 [INF] Request finished in 5.6045ms 200 text/css +2018-08-02 14:37:02.552 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:37:02.552 +03:00 [INF] Request finished in 0.8886ms 200 text/css +2018-08-02 14:37:02.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:37:02.553 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:37:02.554 +03:00 [INF] Request finished in 1.0077ms 200 text/css +2018-08-02 14:37:02.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:37:02.564 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:37:02.565 +03:00 [INF] Request finished in 1.344ms 200 text/css +2018-08-02 14:37:02.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:37:02.567 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:37:02.568 +03:00 [INF] Request finished in 1.3848ms 200 text/css +2018-08-02 14:37:02.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:37:02.569 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:37:02.569 +03:00 [INF] Request finished in 1.4368ms 200 text/css +2018-08-02 14:37:02.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:37:02.578 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:37:02.578 +03:00 [INF] Request finished in 1.6334ms 200 text/css +2018-08-02 14:37:02.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:37:02.587 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:37:02.587 +03:00 [INF] Request finished in 1.9224ms 200 text/css +2018-08-02 14:37:02.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:37:02.598 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:37:02.598 +03:00 [INF] Request finished in 1.8212ms 200 application/javascript +2018-08-02 14:37:02.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:37:02.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:37:02.606 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:37:02.606 +03:00 [INF] Request finished in 1.5174ms 200 application/javascript +2018-08-02 14:37:02.609 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:37:02.610 +03:00 [INF] Request finished in 8.2305ms 200 application/javascript +2018-08-02 14:37:02.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:37:02.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:37:02.618 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:37:02.619 +03:00 [INF] Request finished in 1.3802ms 200 application/javascript +2018-08-02 14:37:02.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:37:02.620 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:37:02.620 +03:00 [INF] Request finished in 0.9767ms 200 application/javascript +2018-08-02 14:37:02.621 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:37:02.621 +03:00 [INF] Request finished in 6.356ms 200 application/javascript +2018-08-02 14:37:02.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:37:02.624 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:37:02.624 +03:00 [INF] Request finished in 2.4286ms 200 application/javascript +2018-08-02 14:37:02.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:37:02.629 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:37:02.629 +03:00 [INF] Request finished in 1.6777ms 200 application/javascript +2018-08-02 14:37:02.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:37:02.636 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:37:02.636 +03:00 [INF] Request finished in 2.4411ms 200 application/javascript +2018-08-02 14:37:02.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:37:02.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:37:02.656 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:37:02.656 +03:00 [INF] Request finished in 1.5714ms 200 application/javascript +2018-08-02 14:37:02.657 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:37:02.658 +03:00 [INF] Request finished in 14.8351ms 200 application/javascript +2018-08-02 14:37:02.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:37:02.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:37:02.674 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:37:02.674 +03:00 [INF] Request finished in 1.4525ms 200 application/javascript +2018-08-02 14:37:02.675 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:37:02.675 +03:00 [INF] Request finished in 2.1863ms 200 application/javascript +2018-08-02 14:37:02.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:37:02.680 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:37:02.680 +03:00 [INF] Request finished in 0.8185ms 200 application/javascript +2018-08-02 14:37:02.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:37:02.692 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:37:02.692 +03:00 [INF] Request finished in 1.2225ms 200 application/javascript +2018-08-02 14:37:02.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:37:02.695 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:37:02.695 +03:00 [INF] Request finished in 0.998ms 200 application/javascript +2018-08-02 14:37:02.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:37:02.700 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:37:02.700 +03:00 [INF] Request finished in 1.7953ms 200 application/javascript +2018-08-02 14:37:02.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:37:02.702 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:37:02.703 +03:00 [INF] Request finished in 1.2767ms 200 application/javascript +2018-08-02 14:37:02.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:37:02.709 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:37:02.710 +03:00 [INF] Request finished in 1.4725ms 200 application/javascript +2018-08-02 14:37:02.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:37:02.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:37:02.714 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:37:02.714 +03:00 [INF] Request finished in 1.302ms 200 application/javascript +2018-08-02 14:37:02.717 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:37:02.718 +03:00 [INF] Request finished in 4.6479ms 200 application/javascript +2018-08-02 14:37:02.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:37:02.720 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:37:02.722 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:37:02.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:37:02.722 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:37:02.723 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:37:02.723 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.2891000000000001ms. +2018-08-02 14:37:02.723 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.086500000000000007ms. +2018-08-02 14:37:02.723 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:37:02.723 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:37:02.723 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.282ms +2018-08-02 14:37:02.723 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.93480000000000008ms +2018-08-02 14:37:02.724 +03:00 [INF] Request finished in 4.54ms 200 text/plain; charset=utf-8 +2018-08-02 14:37:02.724 +03:00 [INF] Request finished in 1.746ms 200 text/plain; charset=utf-8 +2018-08-02 14:37:02.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:37:02.727 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:37:02.727 +03:00 [INF] Request finished in 0.9049ms 200 application/javascript +2018-08-02 14:37:02.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:37:02.743 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:37:02.743 +03:00 [INF] Request finished in 0.9757ms 200 application/javascript +2018-08-02 14:37:02.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-02 14:37:02.745 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-02 14:37:02.745 +03:00 [INF] Request finished in 0.9001ms 200 application/javascript +2018-08-02 14:37:02.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:37:02.753 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:37:02.753 +03:00 [INF] Request finished in 1.1426ms 200 image/svg+xml +2018-08-02 14:37:02.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:37:02.835 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:37:02.835 +03:00 [INF] Request finished in 8.5126ms 200 image/jpeg +2018-08-02 14:37:02.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:37:02.864 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:37:02.864 +03:00 [INF] Request finished in 2.3155ms 200 font/woff2 +2018-08-02 14:37:03.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:37:03.275 +03:00 [INF] Request finished in 0.6588ms 404 +2018-08-02 14:37:50.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:37:50.617 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:37:50.617 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:37:50.640 +03:00 [INF] Executed action /Index in 22.2954ms +2018-08-02 14:37:50.640 +03:00 [INF] Request finished in 284.98ms 200 text/html; charset=utf-8 +2018-08-02 14:37:50.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:37:50.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:37:50.695 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:37:50.695 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:37:50.695 +03:00 [INF] Request finished in 1.3436ms 200 text/css +2018-08-02 14:37:50.695 +03:00 [INF] Request finished in 3.743ms 200 text/css +2018-08-02 14:37:50.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:37:50.697 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:37:50.698 +03:00 [INF] Request finished in 1.379ms 200 text/css +2018-08-02 14:37:50.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:37:50.709 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:37:50.709 +03:00 [INF] Request finished in 0.9535ms 200 text/css +2018-08-02 14:37:50.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:37:50.716 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:37:50.716 +03:00 [INF] Request finished in 1.4152ms 200 text/css +2018-08-02 14:37:50.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:37:50.729 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:37:50.729 +03:00 [INF] Request finished in 1.8018ms 200 text/css +2018-08-02 14:37:50.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:37:50.735 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:37:50.735 +03:00 [INF] Request finished in 0.766ms 200 text/css +2018-08-02 14:37:50.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:37:50.743 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:37:50.743 +03:00 [INF] Request finished in 2.0997ms 200 text/css +2018-08-02 14:37:50.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:37:50.751 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:37:50.751 +03:00 [INF] Request finished in 1.2963ms 200 image/png +2018-08-02 14:37:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:37:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:37:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:37:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:37:50.753 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:37:50.753 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:37:50.753 +03:00 [INF] Request finished in 1.0972ms 200 image/png +2018-08-02 14:37:50.753 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:37:50.753 +03:00 [INF] Request finished in 1.5496ms 200 image/png +2018-08-02 14:37:50.753 +03:00 [INF] Request finished in 1.5135ms 200 image/png +2018-08-02 14:37:50.754 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:37:50.754 +03:00 [INF] Request finished in 1.8333ms 200 image/png +2018-08-02 14:37:50.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:37:50.760 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:37:50.761 +03:00 [INF] Request finished in 1.4583ms 200 image/png +2018-08-02 14:37:50.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:37:50.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:37:50.768 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:37:50.768 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:37:50.769 +03:00 [INF] Request finished in 1.0716ms 200 image/png +2018-08-02 14:37:50.769 +03:00 [INF] Request finished in 1.1519ms 200 image/png +2018-08-02 14:37:50.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:37:50.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:37:50.772 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:37:50.772 +03:00 [INF] Request finished in 1.168ms 200 image/png +2018-08-02 14:37:50.773 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:37:50.774 +03:00 [INF] Request finished in 2.4314ms 200 image/png +2018-08-02 14:37:50.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:37:50.778 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:37:50.778 +03:00 [INF] Request finished in 0.9676ms 200 image/png +2018-08-02 14:37:50.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:37:50.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:37:50.783 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:37:50.783 +03:00 [INF] Request finished in 0.8143ms 200 image/png +2018-08-02 14:37:50.783 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:37:50.784 +03:00 [INF] Request finished in 0.8401ms 200 image/png +2018-08-02 14:37:50.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:37:50.797 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:37:50.797 +03:00 [INF] Request finished in 1.3723ms 200 image/png +2018-08-02 14:37:50.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:37:50.805 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:37:50.805 +03:00 [INF] Request finished in 2.0304ms 200 image/png +2018-08-02 14:37:50.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:37:50.807 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:37:50.807 +03:00 [INF] Request finished in 0.9091ms 200 image/png +2018-08-02 14:37:50.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:37:50.838 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:37:50.838 +03:00 [INF] Request finished in 1.4849ms 200 image/svg+xml +2018-08-02 14:37:50.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:37:50.844 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:37:50.844 +03:00 [INF] Request finished in 1.7104ms 200 image/png +2018-08-02 14:37:50.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:37:50.861 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:37:50.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:37:50.861 +03:00 [INF] Request finished in 5.1045ms 200 image/png +2018-08-02 14:37:50.866 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:37:50.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:37:50.866 +03:00 [INF] Request finished in 4.8045ms 200 image/png +2018-08-02 14:37:50.868 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:37:50.868 +03:00 [INF] Request finished in 2.5245ms 200 image/png +2018-08-02 14:37:50.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:37:50.885 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:37:50.885 +03:00 [INF] Request finished in 1.2831ms 200 image/png +2018-08-02 14:37:50.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:37:50.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:37:50.886 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:37:50.886 +03:00 [INF] Request finished in 0.8081ms 200 image/png +2018-08-02 14:37:50.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:37:50.887 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:37:50.887 +03:00 [INF] Request finished in 0.9033ms 200 image/png +2018-08-02 14:37:50.887 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:37:50.887 +03:00 [INF] Request finished in 1.4613ms 200 image/png +2018-08-02 14:37:50.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:37:50.901 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:37:50.901 +03:00 [INF] Request finished in 1.017ms 200 image/png +2018-08-02 14:37:50.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:37:50.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:37:50.906 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:37:50.907 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:37:50.907 +03:00 [INF] Request finished in 5.1186ms 200 image/png +2018-08-02 14:37:50.907 +03:00 [INF] Request finished in 2.2918ms 200 image/png +2018-08-02 14:37:50.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:37:50.921 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:37:50.921 +03:00 [INF] Request finished in 1.7914ms 200 image/png +2018-08-02 14:37:50.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:37:50.922 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:37:50.922 +03:00 [INF] Request finished in 1.0615ms 200 image/png +2018-08-02 14:37:50.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:37:50.927 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:37:50.928 +03:00 [INF] Request finished in 1.7798ms 200 image/png +2018-08-02 14:37:50.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:37:50.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:37:50.932 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:37:50.932 +03:00 [INF] Request finished in 2.0312ms 200 image/png +2018-08-02 14:37:50.934 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:37:50.934 +03:00 [INF] Request finished in 1.6884ms 200 image/png +2018-08-02 14:37:50.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:37:50.938 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:37:50.938 +03:00 [INF] Request finished in 0.8923ms 200 application/javascript +2018-08-02 14:37:50.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:37:50.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:37:50.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:37:50.947 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:37:50.947 +03:00 [INF] Request finished in 1.1915ms 200 application/javascript +2018-08-02 14:37:50.949 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:37:50.949 +03:00 [INF] Request finished in 6.6512ms 200 application/javascript +2018-08-02 14:37:50.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:37:50.954 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:37:50.954 +03:00 [INF] Request finished in 1.0267ms 200 application/javascript +2018-08-02 14:37:50.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:37:50.954 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:37:50.955 +03:00 [INF] Request finished in 8.8162ms 200 application/javascript +2018-08-02 14:37:50.957 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:37:50.958 +03:00 [INF] Request finished in 3.475ms 200 application/javascript +2018-08-02 14:37:50.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:37:50.964 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:37:50.965 +03:00 [INF] Request finished in 3.9516ms 200 application/javascript +2018-08-02 14:37:50.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:37:50.971 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:37:50.972 +03:00 [INF] Request finished in 2.9809ms 200 application/javascript +2018-08-02 14:37:51.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:37:51.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:37:51.002 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:37:51.002 +03:00 [INF] Request finished in 2.5157ms 200 application/javascript +2018-08-02 14:37:51.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:37:51.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:37:51.004 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:37:51.004 +03:00 [INF] Request finished in 1.1945ms 200 application/javascript +2018-08-02 14:37:51.004 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:37:51.005 +03:00 [INF] Request finished in 0.9423ms 200 application/javascript +2018-08-02 14:37:51.017 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:37:51.020 +03:00 [INF] Request finished in 19.5281ms 200 application/javascript +2018-08-02 14:37:51.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:37:51.036 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:37:51.036 +03:00 [INF] Request finished in 2.3967ms 200 application/javascript +2018-08-02 14:37:51.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:37:51.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:37:51.052 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:37:51.052 +03:00 [INF] Request finished in 1.8636ms 200 application/javascript +2018-08-02 14:37:51.054 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:37:51.054 +03:00 [INF] Request finished in 2.759ms 200 application/javascript +2018-08-02 14:37:51.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:37:51.061 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:37:51.061 +03:00 [INF] Request finished in 1.6382ms 200 application/javascript +2018-08-02 14:37:51.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:37:51.071 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:37:51.071 +03:00 [INF] Request finished in 1.7282ms 200 application/javascript +2018-08-02 14:37:51.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:37:51.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:37:51.075 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:37:51.075 +03:00 [INF] Request finished in 1.268ms 200 application/javascript +2018-08-02 14:37:51.078 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:37:51.079 +03:00 [INF] Request finished in 4.8804ms 200 application/javascript +2018-08-02 14:37:51.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:37:51.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:37:51.091 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:37:51.091 +03:00 [INF] Request finished in 3.9182ms 200 application/javascript +2018-08-02 14:37:51.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:37:51.097 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:37:51.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:37:51.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:37:51.100 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1569ms. +2018-08-02 14:37:51.100 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:37:51.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.369ms +2018-08-02 14:37:51.100 +03:00 [INF] Request finished in 7.3701ms 200 text/plain; charset=utf-8 +2018-08-02 14:37:51.100 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:37:51.102 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:37:51.102 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5355ms. +2018-08-02 14:37:51.102 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:37:51.103 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2046ms +2018-08-02 14:37:51.103 +03:00 [INF] Request finished in 12.1383ms 200 text/plain; charset=utf-8 +2018-08-02 14:37:51.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:37:51.106 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:37:51.106 +03:00 [INF] Request finished in 6.8937ms 200 application/javascript +2018-08-02 14:37:51.106 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:37:51.106 +03:00 [INF] Request finished in 1.3641ms 200 application/javascript +2018-08-02 14:37:51.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:37:51.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:37:51.121 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:37:51.121 +03:00 [INF] Request finished in 0.7929ms 200 image/svg+xml +2018-08-02 14:37:51.121 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:37:51.122 +03:00 [INF] Request finished in 1.156ms 200 application/javascript +2018-08-02 14:37:51.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:37:51.210 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:37:51.210 +03:00 [INF] Request finished in 3.5315ms 200 image/jpeg +2018-08-02 14:37:51.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:37:51.219 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:37:51.219 +03:00 [INF] Request finished in 2.8474ms 200 font/woff2 +2018-08-02 14:37:52.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:37:52.554 +03:00 [INF] Request finished in 2.0369ms 404 +2018-08-02 14:39:12.304 +03:00 [INF] Loaded modules: +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:39:12.322 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:39:12.323 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:39:12.869 +03:00 [INF] Initialized all modules. +2018-08-02 14:39:13.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:39:15.669 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:39:15.693 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:39:16.297 +03:00 [INF] Executed action /Index in 621.14370000000008ms +2018-08-02 14:39:16.309 +03:00 [INF] Request finished in 3151.955ms 200 text/html; charset=utf-8 +2018-08-02 14:39:16.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:39:16.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:39:16.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:39:16.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:39:16.390 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:39:16.390 +03:00 [INF] Request finished in 9.2444ms 200 text/css +2018-08-02 14:39:16.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:39:16.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:39:16.396 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:39:16.396 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:39:16.396 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:39:16.396 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:39:16.397 +03:00 [INF] Request finished in 6.5942ms 200 text/css +2018-08-02 14:39:16.399 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:39:16.403 +03:00 [INF] Request finished in 43.3531ms 200 text/css +2018-08-02 14:39:16.403 +03:00 [INF] Request finished in 13.5281ms 200 text/css +2018-08-02 14:39:16.403 +03:00 [INF] Request finished in 23.2514ms 200 text/css +2018-08-02 14:39:16.403 +03:00 [INF] Request finished in 43.5052ms 200 text/css +2018-08-02 14:39:16.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:39:16.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:39:16.412 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:39:16.412 +03:00 [INF] Request finished in 1.0068ms 200 text/css +2018-08-02 14:39:16.413 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:39:16.414 +03:00 [INF] Request finished in 1.2658ms 200 text/css +2018-08-02 14:39:16.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:39:16.417 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:39:16.417 +03:00 [INF] Request finished in 1.8098ms 200 application/javascript +2018-08-02 14:39:16.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:39:16.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:39:16.427 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:39:16.427 +03:00 [INF] Request finished in 1.4204ms 200 application/javascript +2018-08-02 14:39:16.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:39:16.433 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:39:16.434 +03:00 [INF] Request finished in 7.5382ms 200 application/javascript +2018-08-02 14:39:16.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:39:16.437 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:39:16.437 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:39:16.437 +03:00 [INF] Request finished in 6.941ms 200 application/javascript +2018-08-02 14:39:16.437 +03:00 [INF] Request finished in 3.2075ms 200 application/javascript +2018-08-02 14:39:16.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:39:16.454 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:39:16.454 +03:00 [INF] Request finished in 1.8518ms 200 image/png +2018-08-02 14:39:16.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:39:16.461 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:39:16.461 +03:00 [INF] Request finished in 1.7359ms 200 application/javascript +2018-08-02 14:39:16.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:39:16.462 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:39:16.463 +03:00 [INF] Request finished in 0.9648ms 200 application/javascript +2018-08-02 14:39:16.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:39:16.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:39:16.478 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:39:16.478 +03:00 [INF] Request finished in 1.2078ms 200 application/javascript +2018-08-02 14:39:16.480 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:39:16.480 +03:00 [INF] Request finished in 2.788ms 200 application/javascript +2018-08-02 14:39:16.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:39:16.496 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:39:16.496 +03:00 [INF] Request finished in 10.1315ms 200 application/javascript +2018-08-02 14:39:16.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:39:16.506 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:39:16.506 +03:00 [INF] Request finished in 0.9455ms 200 application/javascript +2018-08-02 14:39:16.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:39:16.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:39:16.517 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:39:16.517 +03:00 [INF] Request finished in 1.1476ms 200 application/javascript +2018-08-02 14:39:16.518 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:39:16.519 +03:00 [INF] Request finished in 3.0235ms 200 application/javascript +2018-08-02 14:39:16.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:39:16.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:39:16.548 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:39:16.548 +03:00 [INF] Request finished in 0.8962ms 200 application/javascript +2018-08-02 14:39:16.552 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:39:16.552 +03:00 [INF] Request finished in 4.6682ms 200 application/javascript +2018-08-02 14:39:16.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:39:16.589 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:39:16.590 +03:00 [INF] Request finished in 2.153ms 200 application/javascript +2018-08-02 14:39:16.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:39:16.596 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:39:16.596 +03:00 [INF] Request finished in 1.2603ms 200 application/javascript +2018-08-02 14:39:16.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:39:16.618 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:39:16.618 +03:00 [INF] Request finished in 2.5398ms 200 application/javascript +2018-08-02 14:39:16.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:39:16.641 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:39:16.641 +03:00 [INF] Request finished in 1.8395ms 200 application/javascript +2018-08-02 14:39:16.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:39:16.695 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:39:16.696 +03:00 [INF] Request finished in 1.8772ms 200 application/javascript +2018-08-02 14:39:16.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:39:16.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:39:16.720 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:39:16.720 +03:00 [INF] Request finished in 2.2947ms 200 application/javascript +2018-08-02 14:39:16.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:39:16.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:39:16.722 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:39:16.722 +03:00 [INF] Request finished in 1.094ms 200 application/javascript +2018-08-02 14:39:16.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:39:16.738 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:16.743 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:39:16.743 +03:00 [INF] Request finished in 19.9249ms 200 application/javascript +2018-08-02 14:39:16.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:39:16.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:39:16.753 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:39:16.753 +03:00 [INF] Request finished in 2.052ms 200 image/png +2018-08-02 14:39:16.753 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:39:16.753 +03:00 [INF] Request finished in 1.4269ms 200 image/svg+xml +2018-08-02 14:39:16.759 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:16.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:39:16.782 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:39:16.783 +03:00 [INF] Request finished in 1.3526ms 200 image/png +2018-08-02 14:39:16.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:39:16.786 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:39:16.786 +03:00 [INF] Request finished in 2.275ms 200 image/png +2018-08-02 14:39:16.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:39:16.795 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:39:16.795 +03:00 [INF] Request finished in 1.2309ms 200 image/png +2018-08-02 14:39:16.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:39:16.839 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:39:16.839 +03:00 [INF] Request finished in 1.2493ms 200 image/svg+xml +2018-08-02 14:39:16.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:39:16.841 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:39:16.841 +03:00 [INF] Request finished in 1.3561ms 200 image/png +2018-08-02 14:39:16.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:39:16.844 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:39:16.844 +03:00 [INF] Request finished in 2.4599ms 200 image/png +2018-08-02 14:39:16.868 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:39:16.888 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:39:16.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:39:16.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:39:16.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:39:16.907 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:39:16.907 +03:00 [INF] Request finished in 1.5101ms 200 image/png +2018-08-02 14:39:16.907 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:39:16.907 +03:00 [INF] Request finished in 1.8865ms 200 image/png +2018-08-02 14:39:16.908 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:39:16.908 +03:00 [INF] Request finished in 1.6709ms 200 image/png +2018-08-02 14:39:16.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:39:16.925 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:39:16.926 +03:00 [INF] Request finished in 1.7002ms 200 image/png +2018-08-02 14:39:16.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:39:16.977 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:39:16.978 +03:00 [INF] Request finished in 3.5414ms 200 image/png +2018-08-02 14:39:17.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:39:17.015 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:39:17.015 +03:00 [INF] Request finished in 1.4554ms 200 image/png +2018-08-02 14:39:17.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:39:17.018 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:39:17.018 +03:00 [INF] Request finished in 1.2354ms 200 image/png +2018-08-02 14:39:17.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:39:17.029 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:39:17.029 +03:00 [INF] Request finished in 0.9075ms 200 image/png +2018-08-02 14:39:17.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:39:17.056 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:39:17.056 +03:00 [INF] Request finished in 2.5485ms 200 font/woff2 +2018-08-02 14:39:17.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:39:17.117 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:39:17.117 +03:00 [INF] Request finished in 1.6195ms 200 image/png +2018-08-02 14:39:17.174 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 263.3374ms. +2018-08-02 14:39:17.190 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 320.85ms. +2018-08-02 14:39:17.194 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:17.194 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:17.194 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 435.15520000000004ms +2018-08-02 14:39:17.194 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 455.9375ms +2018-08-02 14:39:17.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:39:17.195 +03:00 [INF] Request finished in 474.3831ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:17.195 +03:00 [INF] Request finished in 477.2383ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:17.195 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:39:17.195 +03:00 [INF] Request finished in 1.0211ms 200 image/png +2018-08-02 14:39:17.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:39:17.196 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:39:17.197 +03:00 [INF] Request finished in 0.8378ms 200 image/png +2018-08-02 14:39:17.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:39:17.226 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:39:17.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:39:17.227 +03:00 [INF] Request finished in 6.2355ms 200 image/png +2018-08-02 14:39:17.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:39:17.228 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:39:17.229 +03:00 [INF] Request finished in 2.1942ms 200 image/png +2018-08-02 14:39:17.229 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:39:17.229 +03:00 [INF] Request finished in 1.7821ms 200 image/png +2018-08-02 14:39:17.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:39:17.242 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:39:17.243 +03:00 [INF] Request finished in 1.9616ms 200 image/png +2018-08-02 14:39:17.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:39:17.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:39:17.245 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:39:17.245 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:39:17.245 +03:00 [INF] Request finished in 1.4947ms 200 image/png +2018-08-02 14:39:17.245 +03:00 [INF] Request finished in 1.5687ms 200 image/png +2018-08-02 14:39:17.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:39:17.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:39:17.259 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:39:17.260 +03:00 [INF] Request finished in 1.4648ms 200 image/png +2018-08-02 14:39:17.261 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:39:17.261 +03:00 [INF] Request finished in 1.4134ms 200 image/png +2018-08-02 14:39:17.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:39:17.287 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:39:17.288 +03:00 [INF] Request finished in 3.4496ms 200 image/png +2018-08-02 14:39:17.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:39:17.319 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:39:17.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:39:17.320 +03:00 [INF] Request finished in 2.3419ms 200 image/png +2018-08-02 14:39:17.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:39:17.320 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:39:17.321 +03:00 [INF] Request finished in 1.7774ms 200 image/png +2018-08-02 14:39:17.321 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:39:17.322 +03:00 [INF] Request finished in 2.7863ms 200 image/png +2018-08-02 14:39:17.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:39:17.324 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:39:17.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:39:17.325 +03:00 [INF] Request finished in 1.6251ms 200 image/png +2018-08-02 14:39:17.327 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:39:17.327 +03:00 [INF] Request finished in 1.7893ms 200 image/png +2018-08-02 14:39:17.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:39:17.329 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:39:17.329 +03:00 [INF] Request finished in 1.7715ms 200 image/png +2018-08-02 14:39:17.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:39:17.354 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:39:17.355 +03:00 [INF] Request finished in 15.9113ms 200 image/jpeg +2018-08-02 14:39:18.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:39:18.485 +03:00 [INF] Request finished in 10.1993ms 404 +2018-08-02 14:39:32.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:39:32.026 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:39:32.026 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:39:32.030 +03:00 [INF] Executed action /Index in 4.05ms +2018-08-02 14:39:32.030 +03:00 [INF] Request finished in 5.7248ms 200 text/html; charset=utf-8 +2018-08-02 14:39:32.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:39:32.086 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:39:32.086 +03:00 [INF] Request finished in 4.3081ms 200 text/css +2018-08-02 14:39:32.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:39:32.090 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:39:32.090 +03:00 [INF] Request finished in 1.068ms 200 text/css +2018-08-02 14:39:32.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:39:32.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:39:32.099 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:39:32.099 +03:00 [INF] Request finished in 3.2264ms 200 text/css +2018-08-02 14:39:32.099 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:39:32.100 +03:00 [INF] Request finished in 1.2906ms 200 text/css +2018-08-02 14:39:32.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:39:32.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:39:32.106 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:39:32.106 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:39:32.107 +03:00 [INF] Request finished in 1.0901ms 200 text/css +2018-08-02 14:39:32.107 +03:00 [INF] Request finished in 0.8821ms 200 text/css +2018-08-02 14:39:32.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:39:32.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:39:32.113 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:39:32.113 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:39:32.113 +03:00 [INF] Request finished in 3.3402ms 200 text/css +2018-08-02 14:39:32.113 +03:00 [INF] Request finished in 1.1371ms 200 application/javascript +2018-08-02 14:39:32.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:39:32.116 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:39:32.116 +03:00 [INF] Request finished in 2.6508ms 200 text/css +2018-08-02 14:39:32.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:39:32.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:39:32.126 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:39:32.126 +03:00 [INF] Request finished in 7.8235ms 200 application/javascript +2018-08-02 14:39:32.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:39:32.128 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:39:32.128 +03:00 [INF] Request finished in 1.3214ms 200 application/javascript +2018-08-02 14:39:32.128 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:39:32.128 +03:00 [INF] Request finished in 4.6206ms 200 application/javascript +2018-08-02 14:39:32.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:39:32.142 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:39:32.142 +03:00 [INF] Request finished in 4.2422ms 200 application/javascript +2018-08-02 14:39:32.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:39:32.146 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:39:32.146 +03:00 [INF] Request finished in 2.5185ms 200 application/javascript +2018-08-02 14:39:32.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:39:32.148 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:39:32.148 +03:00 [INF] Request finished in 1.7288ms 200 application/javascript +2018-08-02 14:39:32.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:39:32.152 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:39:32.152 +03:00 [INF] Request finished in 1.5583ms 200 application/javascript +2018-08-02 14:39:32.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:39:32.183 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:39:32.183 +03:00 [INF] Request finished in 4.0582ms 200 application/javascript +2018-08-02 14:39:32.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:39:32.205 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:39:32.205 +03:00 [INF] Request finished in 9.4675ms 200 application/javascript +2018-08-02 14:39:32.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:39:32.216 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:39:32.217 +03:00 [INF] Request finished in 6.7151ms 200 application/javascript +2018-08-02 14:39:32.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:39:32.244 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:39:32.245 +03:00 [INF] Request finished in 2.0025ms 200 application/javascript +2018-08-02 14:39:32.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:39:32.269 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:39:32.271 +03:00 [INF] Request finished in 4.0715ms 200 application/javascript +2018-08-02 14:39:32.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:39:32.285 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:39:32.285 +03:00 [INF] Request finished in 1.6092ms 200 application/javascript +2018-08-02 14:39:32.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:39:32.288 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:39:32.288 +03:00 [INF] Request finished in 1.9089ms 200 application/javascript +2018-08-02 14:39:32.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:39:32.303 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:39:32.303 +03:00 [INF] Request finished in 1.2076ms 200 application/javascript +2018-08-02 14:39:32.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:39:32.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:39:32.309 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:39:32.309 +03:00 [INF] Request finished in 2.5621ms 200 application/javascript +2018-08-02 14:39:32.309 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:39:32.309 +03:00 [INF] Request finished in 1.6459ms 200 application/javascript +2018-08-02 14:39:32.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:39:32.317 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:39:32.317 +03:00 [INF] Request finished in 2.9693ms 200 application/javascript +2018-08-02 14:39:32.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:39:32.322 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:39:32.322 +03:00 [INF] Request finished in 2.214ms 200 application/javascript +2018-08-02 14:39:32.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:39:32.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:39:32.327 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:32.327 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:39:32.327 +03:00 [INF] Request finished in 1.7684ms 200 application/javascript +2018-08-02 14:39:32.328 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:39:32.329 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7703ms. +2018-08-02 14:39:32.332 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:32.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:39:32.333 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.5657000000000005ms +2018-08-02 14:39:32.334 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:32.335 +03:00 [INF] Request finished in 8.4739ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:32.338 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:39:32.338 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3043ms. +2018-08-02 14:39:32.339 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:32.339 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.4925000000000006ms +2018-08-02 14:39:32.339 +03:00 [INF] Request finished in 5.5151ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:32.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:39:32.348 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:39:32.348 +03:00 [INF] Request finished in 2.7114ms 200 application/javascript +2018-08-02 14:39:32.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:39:32.354 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:39:32.354 +03:00 [INF] Request finished in 1.1611ms 200 application/javascript +2018-08-02 14:39:32.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:39:32.381 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:39:32.381 +03:00 [INF] Request finished in 1.3054ms 200 image/png +2018-08-02 14:39:32.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:39:32.384 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:39:32.385 +03:00 [INF] Request finished in 3.2989ms 200 image/png +2018-08-02 14:39:32.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:39:32.390 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:39:32.390 +03:00 [INF] Request finished in 2.6673ms 200 image/png +2018-08-02 14:39:32.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:39:32.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:39:32.397 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:39:32.397 +03:00 [INF] Request finished in 1.318ms 200 image/png +2018-08-02 14:39:32.399 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:39:32.399 +03:00 [INF] Request finished in 1.9877ms 200 image/svg+xml +2018-08-02 14:39:32.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:39:32.400 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:39:32.401 +03:00 [INF] Request finished in 1.8313ms 200 image/png +2018-08-02 14:39:32.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:39:32.402 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:39:32.402 +03:00 [INF] Request finished in 1.0713ms 200 image/png +2018-08-02 14:39:32.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:39:32.404 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:39:32.404 +03:00 [INF] Request finished in 0.7709ms 200 image/png +2018-08-02 14:39:32.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:39:32.431 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:39:32.432 +03:00 [INF] Request finished in 2.5ms 200 image/png +2018-08-02 14:39:32.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:39:32.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:39:32.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:39:32.442 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:39:32.442 +03:00 [INF] Request finished in 0.8685ms 200 image/png +2018-08-02 14:39:32.442 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:39:32.442 +03:00 [INF] Request finished in 1.0172ms 200 image/png +2018-08-02 14:39:32.442 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:39:32.443 +03:00 [INF] Request finished in 1.0846ms 200 image/png +2018-08-02 14:39:32.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:39:32.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:39:32.455 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:39:32.455 +03:00 [INF] Request finished in 2.4008ms 200 image/png +2018-08-02 14:39:32.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:39:32.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:39:32.456 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:39:32.456 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:39:32.456 +03:00 [INF] Request finished in 3.2156ms 200 image/png +2018-08-02 14:39:32.456 +03:00 [INF] Request finished in 0.7346ms 200 image/png +2018-08-02 14:39:32.456 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:39:32.457 +03:00 [INF] Request finished in 0.9688ms 200 image/png +2018-08-02 14:39:32.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:39:32.461 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:39:32.461 +03:00 [INF] Request finished in 1.1555ms 200 image/png +2018-08-02 14:39:32.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:39:32.468 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:39:32.468 +03:00 [INF] Request finished in 1.4954ms 200 image/svg+xml +2018-08-02 14:39:32.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:39:32.473 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:39:32.473 +03:00 [INF] Request finished in 1.9497ms 200 image/png +2018-08-02 14:39:32.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:39:32.484 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:39:32.484 +03:00 [INF] Request finished in 2.1125ms 200 image/png +2018-08-02 14:39:32.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:39:32.487 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:39:32.488 +03:00 [INF] Request finished in 1.6242ms 200 image/png +2018-08-02 14:39:32.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:39:32.492 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:39:32.493 +03:00 [INF] Request finished in 1.1293ms 200 image/png +2018-08-02 14:39:32.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:39:32.497 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:39:32.498 +03:00 [INF] Request finished in 1.2525ms 200 image/png +2018-08-02 14:39:32.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:39:32.507 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:39:32.507 +03:00 [INF] Request finished in 1.2242ms 200 image/png +2018-08-02 14:39:32.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:39:32.513 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:39:32.513 +03:00 [INF] Request finished in 0.9208ms 200 image/png +2018-08-02 14:39:32.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:39:32.528 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:39:32.528 +03:00 [INF] Request finished in 0.8621ms 200 image/png +2018-08-02 14:39:32.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:39:32.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:39:32.556 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:39:32.556 +03:00 [INF] Request finished in 0.8785ms 200 image/png +2018-08-02 14:39:32.556 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:39:32.556 +03:00 [INF] Request finished in 0.9478ms 200 image/png +2018-08-02 14:39:32.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:39:32.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:39:32.564 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:39:32.564 +03:00 [INF] Request finished in 0.8782ms 200 image/png +2018-08-02 14:39:32.564 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:39:32.565 +03:00 [INF] Request finished in 1.5581ms 200 image/png +2018-08-02 14:39:32.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:39:32.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:39:32.575 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:39:32.575 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:39:32.575 +03:00 [INF] Request finished in 1.1508ms 200 image/png +2018-08-02 14:39:32.575 +03:00 [INF] Request finished in 1.2114ms 200 image/png +2018-08-02 14:39:32.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:39:32.578 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:39:32.578 +03:00 [INF] Request finished in 2.2726ms 200 image/png +2018-08-02 14:39:32.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:39:32.586 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:39:32.586 +03:00 [INF] Request finished in 1.0517ms 200 image/png +2018-08-02 14:39:32.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:39:32.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:39:32.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:39:32.608 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:39:32.608 +03:00 [INF] Request finished in 0.7996ms 200 image/png +2018-08-02 14:39:32.612 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:39:32.612 +03:00 [INF] Request finished in 5.0387ms 200 font/woff2 +2018-08-02 14:39:32.613 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:39:32.614 +03:00 [INF] Request finished in 6.4833ms 200 image/jpeg +2018-08-02 14:39:33.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:39:33.476 +03:00 [INF] Request finished in 0.8951ms 404 +2018-08-02 14:39:45.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:39:45.363 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:39:45.363 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:39:45.367 +03:00 [INF] Executed action /Index in 3.434ms +2018-08-02 14:39:45.367 +03:00 [INF] Request finished in 5.058ms 200 text/html; charset=utf-8 +2018-08-02 14:39:45.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:39:45.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:39:45.420 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:39:45.420 +03:00 [INF] Request finished in 1.4783ms 200 text/css +2018-08-02 14:39:45.420 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:39:45.420 +03:00 [INF] Request finished in 5.0548ms 200 text/css +2018-08-02 14:39:45.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:39:45.423 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:39:45.423 +03:00 [INF] Request finished in 1.0122ms 200 text/css +2018-08-02 14:39:45.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:39:45.427 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:39:45.428 +03:00 [INF] Request finished in 1.5753ms 200 text/css +2018-08-02 14:39:45.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:39:45.437 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:39:45.437 +03:00 [INF] Request finished in 2.1518ms 200 text/css +2018-08-02 14:39:45.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:39:45.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:39:45.443 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:39:45.443 +03:00 [INF] Request finished in 1.0698ms 200 text/css +2018-08-02 14:39:45.446 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:39:45.446 +03:00 [INF] Request finished in 4.3897ms 200 text/css +2018-08-02 14:39:45.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:39:45.448 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:39:45.448 +03:00 [INF] Request finished in 1.2973ms 200 text/css +2018-08-02 14:39:45.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:39:45.457 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:39:45.457 +03:00 [INF] Request finished in 1.1854ms 200 application/javascript +2018-08-02 14:39:45.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:39:45.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:39:45.473 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:39:45.473 +03:00 [INF] Request finished in 7.892ms 200 application/javascript +2018-08-02 14:39:45.474 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:39:45.474 +03:00 [INF] Request finished in 0.897ms 200 application/javascript +2018-08-02 14:39:45.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:39:45.486 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:39:45.487 +03:00 [INF] Request finished in 6.2262ms 200 application/javascript +2018-08-02 14:39:45.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:39:45.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:39:45.494 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:39:45.494 +03:00 [INF] Request finished in 2.7172ms 200 application/javascript +2018-08-02 14:39:45.494 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:39:45.494 +03:00 [INF] Request finished in 1.9916ms 200 application/javascript +2018-08-02 14:39:45.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:39:45.499 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:39:45.499 +03:00 [INF] Request finished in 0.9694ms 200 application/javascript +2018-08-02 14:39:45.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:39:45.502 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:39:45.502 +03:00 [INF] Request finished in 1.3603ms 200 application/javascript +2018-08-02 14:39:45.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:39:45.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:39:45.518 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:39:45.518 +03:00 [INF] Request finished in 4.3737ms 200 application/javascript +2018-08-02 14:39:45.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:39:45.518 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:39:45.519 +03:00 [INF] Request finished in 1.2373ms 200 application/javascript +2018-08-02 14:39:45.529 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:39:45.529 +03:00 [INF] Request finished in 10.6087ms 200 application/javascript +2018-08-02 14:39:45.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:39:45.531 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:39:45.531 +03:00 [INF] Request finished in 2.4003ms 200 application/javascript +2018-08-02 14:39:45.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:39:45.533 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:39:45.533 +03:00 [INF] Request finished in 2.0241ms 200 application/javascript +2018-08-02 14:39:45.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:39:45.536 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:39:45.537 +03:00 [INF] Request finished in 2.015ms 200 application/javascript +2018-08-02 14:39:45.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:39:45.548 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:39:45.548 +03:00 [INF] Request finished in 1.1951ms 200 application/javascript +2018-08-02 14:39:45.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:39:45.554 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:39:45.554 +03:00 [INF] Request finished in 1.367ms 200 application/javascript +2018-08-02 14:39:45.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:39:45.559 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:39:45.564 +03:00 [INF] Request finished in 6.8374ms 200 application/javascript +2018-08-02 14:39:45.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:39:45.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:39:45.575 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:39:45.575 +03:00 [INF] Request finished in 1.1847ms 200 application/javascript +2018-08-02 14:39:45.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:39:45.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:39:45.580 +03:00 [INF] Request finished in 5.2331ms 200 application/javascript +2018-08-02 14:39:45.581 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:39:45.582 +03:00 [INF] Request finished in 1.7957ms 200 application/javascript +2018-08-02 14:39:45.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:39:45.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:39:45.596 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:45.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:39:45.597 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:39:45.597 +03:00 [INF] Request finished in 3.3876ms 200 application/javascript +2018-08-02 14:39:45.598 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8861ms. +2018-08-02 14:39:45.599 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:45.599 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.1882ms +2018-08-02 14:39:45.599 +03:00 [INF] Request finished in 5.4952ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:45.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:39:45.610 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:45.613 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:39:45.614 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5785ms. +2018-08-02 14:39:45.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:39:45.615 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:45.615 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.0273ms +2018-08-02 14:39:45.615 +03:00 [INF] Request finished in 8.0093ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:45.617 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:39:45.617 +03:00 [INF] Request finished in 2.6901ms 200 application/javascript +2018-08-02 14:39:45.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:39:45.638 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:39:45.638 +03:00 [INF] Request finished in 1.9254ms 200 application/javascript +2018-08-02 14:39:45.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:39:45.659 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:39:45.660 +03:00 [INF] Request finished in 1.2239ms 200 image/svg+xml +2018-08-02 14:39:45.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:39:45.661 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:39:45.662 +03:00 [INF] Request finished in 1.5757ms 200 image/png +2018-08-02 14:39:45.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:39:45.663 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:39:45.663 +03:00 [INF] Request finished in 1.3647ms 200 image/png +2018-08-02 14:39:45.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:39:45.665 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:39:45.666 +03:00 [INF] Request finished in 1.3608ms 200 image/png +2018-08-02 14:39:45.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:39:45.671 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:39:45.671 +03:00 [INF] Request finished in 1.8146ms 200 image/png +2018-08-02 14:39:45.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:39:45.685 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:39:45.685 +03:00 [INF] Request finished in 1.1448ms 200 image/png +2018-08-02 14:39:45.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:39:45.688 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:39:45.689 +03:00 [INF] Request finished in 0.8983ms 200 image/png +2018-08-02 14:39:45.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:39:45.693 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:39:45.694 +03:00 [INF] Request finished in 0.8738ms 200 image/png +2018-08-02 14:39:45.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:39:45.697 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:39:45.697 +03:00 [INF] Request finished in 1.023ms 200 image/png +2018-08-02 14:39:45.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:39:45.703 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:39:45.703 +03:00 [INF] Request finished in 1.3519ms 200 image/png +2018-08-02 14:39:45.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:39:45.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:39:45.713 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:39:45.713 +03:00 [INF] Request finished in 1.574ms 200 image/png +2018-08-02 14:39:45.713 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:39:45.713 +03:00 [INF] Request finished in 2.0348ms 200 image/png +2018-08-02 14:39:45.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:39:45.720 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:39:45.720 +03:00 [INF] Request finished in 0.7995ms 200 image/png +2018-08-02 14:39:45.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:39:45.732 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:39:45.732 +03:00 [INF] Request finished in 0.794ms 200 image/png +2018-08-02 14:39:45.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:39:45.741 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:39:45.742 +03:00 [INF] Request finished in 1.5816ms 200 image/png +2018-08-02 14:39:45.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:39:45.746 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:39:45.746 +03:00 [INF] Request finished in 0.9201ms 200 image/png +2018-08-02 14:39:45.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:39:45.750 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:39:45.751 +03:00 [INF] Request finished in 1.923ms 200 image/png +2018-08-02 14:39:45.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:39:45.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:39:45.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:39:45.754 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:39:45.754 +03:00 [INF] Request finished in 1.4058ms 200 image/png +2018-08-02 14:39:45.755 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:39:45.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:39:45.755 +03:00 [INF] Request finished in 2.4827ms 200 image/png +2018-08-02 14:39:45.756 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:39:45.756 +03:00 [INF] Request finished in 2.6706ms 200 image/svg+xml +2018-08-02 14:39:45.756 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:39:45.756 +03:00 [INF] Request finished in 0.8039ms 200 image/png +2018-08-02 14:39:45.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:39:45.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:39:45.764 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:39:45.764 +03:00 [INF] Request finished in 1.8712ms 200 image/png +2018-08-02 14:39:45.764 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:39:45.764 +03:00 [INF] Request finished in 0.9138ms 200 image/png +2018-08-02 14:39:45.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:39:45.775 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:39:45.775 +03:00 [INF] Request finished in 0.8ms 200 image/png +2018-08-02 14:39:45.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:39:45.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:39:45.779 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:39:45.779 +03:00 [INF] Request finished in 1.4698ms 200 image/png +2018-08-02 14:39:45.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:39:45.779 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:39:45.779 +03:00 [INF] Request finished in 1.4261ms 200 image/png +2018-08-02 14:39:45.780 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:39:45.781 +03:00 [INF] Request finished in 1.5015ms 200 image/png +2018-08-02 14:39:45.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:39:45.784 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:39:45.784 +03:00 [INF] Request finished in 0.9829ms 200 image/png +2018-08-02 14:39:45.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:39:45.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:39:45.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:39:45.794 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:39:45.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:39:45.794 +03:00 [INF] Request finished in 1.0822ms 200 image/png +2018-08-02 14:39:45.794 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:39:45.794 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:39:45.794 +03:00 [INF] Request finished in 0.7081ms 200 image/png +2018-08-02 14:39:45.794 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:39:45.794 +03:00 [INF] Request finished in 0.764ms 200 image/png +2018-08-02 14:39:45.795 +03:00 [INF] Request finished in 1.5264ms 200 image/png +2018-08-02 14:39:45.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:39:45.802 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:39:45.802 +03:00 [INF] Request finished in 4.0586ms 200 image/png +2018-08-02 14:39:45.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:39:45.804 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:39:45.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:39:45.804 +03:00 [INF] Request finished in 2.0554ms 200 image/png +2018-08-02 14:39:45.806 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:39:45.806 +03:00 [INF] Request finished in 1.9982ms 200 image/png +2018-08-02 14:39:45.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:39:45.824 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:39:45.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:39:45.824 +03:00 [INF] Request finished in 8.3647ms 200 image/jpeg +2018-08-02 14:39:45.825 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:39:45.825 +03:00 [INF] Request finished in 1.329ms 200 font/woff2 +2018-08-02 14:39:46.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:39:46.791 +03:00 [INF] Request finished in 0.7702ms 404 +2018-08-02 14:39:53.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:39:53.113 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:39:53.113 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:39:53.116 +03:00 [INF] Executed action /Index in 3.1079000000000003ms +2018-08-02 14:39:53.116 +03:00 [INF] Request finished in 4.5292ms 200 text/html; charset=utf-8 +2018-08-02 14:39:53.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:39:53.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:39:53.171 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:39:53.171 +03:00 [INF] Request finished in 4.7817ms 200 text/css +2018-08-02 14:39:53.171 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:39:53.172 +03:00 [INF] Request finished in 2.9986ms 200 text/css +2018-08-02 14:39:53.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:39:53.174 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:39:53.174 +03:00 [INF] Request finished in 1.6993ms 200 text/css +2018-08-02 14:39:53.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:39:53.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:39:53.184 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:39:53.184 +03:00 [INF] Request finished in 2.2719ms 200 text/css +2018-08-02 14:39:53.185 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:39:53.185 +03:00 [INF] Request finished in 2.0195ms 200 text/css +2018-08-02 14:39:53.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:39:53.191 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:39:53.191 +03:00 [INF] Request finished in 3.0397ms 200 text/css +2018-08-02 14:39:53.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:39:53.196 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:39:53.196 +03:00 [INF] Request finished in 0.9735ms 200 text/css +2018-08-02 14:39:53.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:39:53.198 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:39:53.198 +03:00 [INF] Request finished in 1.8492ms 200 text/css +2018-08-02 14:39:53.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:39:53.207 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:39:53.207 +03:00 [INF] Request finished in 2.9408ms 200 application/javascript +2018-08-02 14:39:53.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:39:53.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:39:53.212 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:39:53.212 +03:00 [INF] Request finished in 1.4938ms 200 application/javascript +2018-08-02 14:39:53.215 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:39:53.215 +03:00 [INF] Request finished in 4.8441ms 200 application/javascript +2018-08-02 14:39:53.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:39:53.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:39:53.222 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:39:53.222 +03:00 [INF] Request finished in 5.328ms 200 application/javascript +2018-08-02 14:39:53.224 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:39:53.225 +03:00 [INF] Request finished in 4.7071ms 200 application/javascript +2018-08-02 14:39:53.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:39:53.231 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:39:53.232 +03:00 [INF] Request finished in 1.4827ms 200 application/javascript +2018-08-02 14:39:53.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:39:53.242 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:39:53.242 +03:00 [INF] Request finished in 2.8491ms 200 application/javascript +2018-08-02 14:39:53.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:39:53.245 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:39:53.245 +03:00 [INF] Request finished in 1.3098ms 200 application/javascript +2018-08-02 14:39:53.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:39:53.261 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:39:53.261 +03:00 [INF] Request finished in 3.0397ms 200 application/javascript +2018-08-02 14:39:53.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:39:53.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:39:53.279 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:39:53.279 +03:00 [INF] Request finished in 1.2606ms 200 application/javascript +2018-08-02 14:39:53.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:39:53.280 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:39:53.281 +03:00 [INF] Request finished in 1.5668ms 200 application/javascript +2018-08-02 14:39:53.290 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:39:53.291 +03:00 [INF] Request finished in 23.1313ms 200 application/javascript +2018-08-02 14:39:53.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:39:53.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:39:53.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:39:53.316 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:39:53.317 +03:00 [INF] Request finished in 3.4046ms 200 application/javascript +2018-08-02 14:39:53.318 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:39:53.318 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:39:53.318 +03:00 [INF] Request finished in 1.6826ms 200 application/javascript +2018-08-02 14:39:53.318 +03:00 [INF] Request finished in 5.2214ms 200 application/javascript +2018-08-02 14:39:53.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:39:53.325 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:39:53.326 +03:00 [INF] Request finished in 2.1563ms 200 application/javascript +2018-08-02 14:39:53.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:39:53.335 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:39:53.336 +03:00 [INF] Request finished in 3.3267ms 200 application/javascript +2018-08-02 14:39:53.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:39:53.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:39:53.355 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:39:53.355 +03:00 [INF] Request finished in 1.8827ms 200 application/javascript +2018-08-02 14:39:53.355 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:39:53.356 +03:00 [INF] Request finished in 2.6508ms 200 application/javascript +2018-08-02 14:39:53.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:39:53.360 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:39:53.361 +03:00 [INF] Request finished in 2.5037ms 200 application/javascript +2018-08-02 14:39:53.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:39:53.365 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:39:53.365 +03:00 [INF] Request finished in 2.7094ms 200 application/javascript +2018-08-02 14:39:53.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:39:53.368 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:53.369 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:39:53.370 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.3938000000000001ms. +2018-08-02 14:39:53.370 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:53.370 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.6590000000000003ms +2018-08-02 14:39:53.371 +03:00 [INF] Request finished in 4.748ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:53.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:39:53.386 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:39:53.387 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:39:53.388 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2092ms. +2018-08-02 14:39:53.388 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:39:53.389 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3164000000000002ms +2018-08-02 14:39:53.389 +03:00 [INF] Request finished in 4.6449ms 200 text/plain; charset=utf-8 +2018-08-02 14:39:53.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:39:53.395 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:39:53.395 +03:00 [INF] Request finished in 1.049ms 200 application/javascript +2018-08-02 14:39:53.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:39:53.408 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:39:53.408 +03:00 [INF] Request finished in 1.022ms 200 application/javascript +2018-08-02 14:39:53.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:39:53.421 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:39:53.421 +03:00 [INF] Request finished in 2.2683ms 200 image/svg+xml +2018-08-02 14:39:53.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:39:53.425 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:39:53.425 +03:00 [INF] Request finished in 1.0924ms 200 image/png +2018-08-02 14:39:53.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:39:53.431 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:39:53.431 +03:00 [INF] Request finished in 1.3764ms 200 image/png +2018-08-02 14:39:53.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:39:53.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:39:53.439 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:39:53.439 +03:00 [INF] Request finished in 1.5381ms 200 image/png +2018-08-02 14:39:53.440 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:39:53.440 +03:00 [INF] Request finished in 1.9215ms 200 image/png +2018-08-02 14:39:53.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:39:53.442 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:39:53.442 +03:00 [INF] Request finished in 0.9264ms 200 image/png +2018-08-02 14:39:53.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:39:53.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:39:53.443 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:39:53.443 +03:00 [INF] Request finished in 1.1859ms 200 image/png +2018-08-02 14:39:53.444 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:39:53.444 +03:00 [INF] Request finished in 1.1584ms 200 image/png +2018-08-02 14:39:53.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:39:53.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:39:53.450 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:39:53.450 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:39:53.451 +03:00 [INF] Request finished in 0.7986ms 200 image/png +2018-08-02 14:39:53.451 +03:00 [INF] Request finished in 0.8264ms 200 image/png +2018-08-02 14:39:53.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:39:53.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:39:53.453 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:39:53.453 +03:00 [INF] Request finished in 1.1766ms 200 image/png +2018-08-02 14:39:53.453 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:39:53.453 +03:00 [INF] Request finished in 1.4796ms 200 image/png +2018-08-02 14:39:53.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:39:53.462 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:39:53.462 +03:00 [INF] Request finished in 1.2322ms 200 image/png +2018-08-02 14:39:53.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:39:53.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:39:53.463 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:39:53.463 +03:00 [INF] Request finished in 0.6682ms 200 image/png +2018-08-02 14:39:53.463 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:39:53.463 +03:00 [INF] Request finished in 1.382ms 200 image/png +2018-08-02 14:39:53.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:39:53.474 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:39:53.474 +03:00 [INF] Request finished in 1.1606ms 200 image/png +2018-08-02 14:39:53.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:39:53.480 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:39:53.480 +03:00 [INF] Request finished in 2.4803ms 200 image/png +2018-08-02 14:39:53.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:39:53.482 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:39:53.482 +03:00 [INF] Request finished in 1.6189ms 200 image/svg+xml +2018-08-02 14:39:53.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:39:53.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:39:53.484 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:39:53.484 +03:00 [INF] Request finished in 1.2096ms 200 image/png +2018-08-02 14:39:53.485 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:39:53.485 +03:00 [INF] Request finished in 1.6417ms 200 image/png +2018-08-02 14:39:53.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:39:53.486 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:39:53.486 +03:00 [INF] Request finished in 1.0758ms 200 image/png +2018-08-02 14:39:53.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:39:53.489 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:39:53.489 +03:00 [INF] Request finished in 2.2617ms 200 image/png +2018-08-02 14:39:53.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:39:53.493 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:39:53.493 +03:00 [INF] Request finished in 0.9735ms 200 image/png +2018-08-02 14:39:53.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:39:53.496 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:39:53.496 +03:00 [INF] Request finished in 1.02ms 200 image/png +2018-08-02 14:39:53.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:39:53.499 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:39:53.499 +03:00 [INF] Request finished in 0.8082ms 200 image/png +2018-08-02 14:39:53.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:39:53.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:39:53.503 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:39:53.503 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:39:53.504 +03:00 [INF] Request finished in 1.3305ms 200 image/png +2018-08-02 14:39:53.504 +03:00 [INF] Request finished in 1.4295ms 200 image/png +2018-08-02 14:39:53.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:39:53.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:39:53.511 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:39:53.511 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:39:53.511 +03:00 [INF] Request finished in 0.8731ms 200 image/png +2018-08-02 14:39:53.512 +03:00 [INF] Request finished in 1.21ms 200 image/png +2018-08-02 14:39:53.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:39:53.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:39:53.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:39:53.519 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:39:53.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:39:53.520 +03:00 [INF] Request finished in 2.8613ms 200 image/png +2018-08-02 14:39:53.521 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:39:53.521 +03:00 [INF] Request finished in 3.2729ms 200 image/png +2018-08-02 14:39:53.521 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:39:53.521 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:39:53.522 +03:00 [INF] Request finished in 4.0375ms 200 image/png +2018-08-02 14:39:53.521 +03:00 [INF] Request finished in 1.3998ms 200 image/png +2018-08-02 14:39:53.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:39:53.524 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:39:53.525 +03:00 [INF] Request finished in 1.2563ms 200 image/png +2018-08-02 14:39:53.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:39:53.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:39:53.529 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:39:53.529 +03:00 [INF] Request finished in 1.1168ms 200 image/png +2018-08-02 14:39:53.531 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:39:53.532 +03:00 [INF] Request finished in 3.3133ms 200 font/woff2 +2018-08-02 14:39:53.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:39:53.545 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:39:53.545 +03:00 [INF] Request finished in 10.5478ms 200 image/jpeg +2018-08-02 14:39:54.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:39:54.581 +03:00 [INF] Request finished in 0.5863ms 404 +2018-08-02 14:40:11.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:40:11.432 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:40:11.433 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:40:11.436 +03:00 [INF] Executed action /Index in 3.9753000000000003ms +2018-08-02 14:40:11.437 +03:00 [INF] Request finished in 5.3081ms 200 text/html; charset=utf-8 +2018-08-02 14:40:11.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:40:11.492 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:40:11.493 +03:00 [INF] Request finished in 4.3496ms 200 text/css +2018-08-02 14:40:11.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:40:11.500 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:40:11.500 +03:00 [INF] Request finished in 1.2182ms 200 text/css +2018-08-02 14:40:11.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:40:11.501 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:40:11.502 +03:00 [INF] Request finished in 0.8217ms 200 text/css +2018-08-02 14:40:11.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:40:11.509 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:40:11.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:40:11.509 +03:00 [INF] Request finished in 2.1813ms 200 text/css +2018-08-02 14:40:11.510 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:40:11.510 +03:00 [INF] Request finished in 0.967ms 200 text/css +2018-08-02 14:40:11.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:40:11.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:40:11.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:40:11.522 +03:00 [INF] Request finished in 2.0056ms 200 text/css +2018-08-02 14:40:11.523 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:40:11.523 +03:00 [INF] Request finished in 2.7426ms 200 text/css +2018-08-02 14:40:11.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:40:11.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:40:11.541 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:40:11.541 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:40:11.541 +03:00 [INF] Request finished in 1.0015ms 200 text/css +2018-08-02 14:40:11.541 +03:00 [INF] Request finished in 0.9488ms 200 application/javascript +2018-08-02 14:40:11.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:40:11.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:40:11.558 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:40:11.558 +03:00 [INF] Request finished in 1.0561ms 200 application/javascript +2018-08-02 14:40:11.561 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:40:11.562 +03:00 [INF] Request finished in 7.3544ms 200 application/javascript +2018-08-02 14:40:11.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:40:11.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:40:11.572 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:40:11.572 +03:00 [INF] Request finished in 7.0558ms 200 application/javascript +2018-08-02 14:40:11.574 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:40:11.575 +03:00 [INF] Request finished in 4.6845ms 200 application/javascript +2018-08-02 14:40:11.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:40:11.580 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:40:11.580 +03:00 [INF] Request finished in 2.9588ms 200 application/javascript +2018-08-02 14:40:11.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:40:11.582 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:40:11.583 +03:00 [INF] Request finished in 2.4884ms 200 application/javascript +2018-08-02 14:40:11.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:40:11.588 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:40:11.589 +03:00 [INF] Request finished in 2.1285ms 200 application/javascript +2018-08-02 14:40:11.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:40:11.595 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:40:11.595 +03:00 [INF] Request finished in 3.8873ms 200 application/javascript +2018-08-02 14:40:11.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:40:11.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:40:11.608 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:40:11.608 +03:00 [INF] Request finished in 0.935ms 200 application/javascript +2018-08-02 14:40:11.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:40:11.609 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:40:11.609 +03:00 [INF] Request finished in 0.9295ms 200 application/javascript +2018-08-02 14:40:11.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:40:11.612 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:40:11.612 +03:00 [INF] Request finished in 0.9637ms 200 application/javascript +2018-08-02 14:40:11.614 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:40:11.614 +03:00 [INF] Request finished in 11.4692ms 200 application/javascript +2018-08-02 14:40:11.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:40:11.619 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:40:11.620 +03:00 [INF] Request finished in 1.0605ms 200 application/javascript +2018-08-02 14:40:11.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:40:11.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:40:11.629 +03:00 [INF] Request finished in 1.8346ms 200 application/javascript +2018-08-02 14:40:11.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:40:11.631 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:40:11.631 +03:00 [INF] Request finished in 2.0643ms 200 application/javascript +2018-08-02 14:40:11.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:40:11.638 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:40:11.639 +03:00 [INF] Request finished in 3.3604ms 200 application/javascript +2018-08-02 14:40:11.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:40:11.656 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:40:11.656 +03:00 [INF] Request finished in 2.1419ms 200 application/javascript +2018-08-02 14:40:11.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:40:11.668 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:40:11.668 +03:00 [INF] Request finished in 2.6478ms 200 application/javascript +2018-08-02 14:40:11.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:40:11.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:40:11.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:40:11.706 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:40:11.706 +03:00 [INF] Request finished in 1.4125ms 200 application/javascript +2018-08-02 14:40:11.706 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:40:11.706 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:40:11.706 +03:00 [INF] Request finished in 3.2311ms 200 application/javascript +2018-08-02 14:40:11.710 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:40:11.711 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.72510000000000008ms. +2018-08-02 14:40:11.712 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:40:11.713 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.487ms +2018-08-02 14:40:11.713 +03:00 [INF] Request finished in 8.8701ms 200 text/plain; charset=utf-8 +2018-08-02 14:40:11.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:40:11.721 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:40:11.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:40:11.723 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:40:11.724 +03:00 [INF] Request finished in 1.7346ms 200 application/javascript +2018-08-02 14:40:11.725 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:40:11.725 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12940000000000002ms. +2018-08-02 14:40:11.725 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:40:11.726 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.1692ms +2018-08-02 14:40:11.726 +03:00 [INF] Request finished in 11.3955ms 200 text/plain; charset=utf-8 +2018-08-02 14:40:11.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:40:11.733 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:40:11.733 +03:00 [INF] Request finished in 0.8903ms 200 application/javascript +2018-08-02 14:40:11.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:40:11.736 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:40:11.737 +03:00 [INF] Request finished in 1.1849ms 200 image/svg+xml +2018-08-02 14:40:11.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:40:11.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:40:11.740 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:40:11.740 +03:00 [INF] Request finished in 1.3996ms 200 image/png +2018-08-02 14:40:11.740 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:40:11.740 +03:00 [INF] Request finished in 1.6647ms 200 image/png +2018-08-02 14:40:11.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:40:11.759 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:40:11.759 +03:00 [INF] Request finished in 4.664ms 200 image/png +2018-08-02 14:40:11.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:40:11.765 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:40:11.765 +03:00 [INF] Request finished in 1.3178ms 200 image/png +2018-08-02 14:40:11.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:40:11.775 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:40:11.776 +03:00 [INF] Request finished in 1.635ms 200 image/png +2018-08-02 14:40:11.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:40:11.784 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:40:11.785 +03:00 [INF] Request finished in 1.3642ms 200 image/png +2018-08-02 14:40:11.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:40:11.789 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:40:11.789 +03:00 [INF] Request finished in 1.7913ms 200 image/png +2018-08-02 14:40:11.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:40:11.803 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:40:11.803 +03:00 [INF] Request finished in 1.1976ms 200 image/png +2018-08-02 14:40:11.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:40:11.830 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:40:11.830 +03:00 [INF] Request finished in 1.4041ms 200 image/png +2018-08-02 14:40:11.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:40:11.850 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:40:11.850 +03:00 [INF] Request finished in 1.1171ms 200 image/png +2018-08-02 14:40:11.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:40:11.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:40:11.859 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:40:11.860 +03:00 [INF] Request finished in 1.6834ms 200 image/png +2018-08-02 14:40:11.860 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:40:11.860 +03:00 [INF] Request finished in 1.2576ms 200 image/png +2018-08-02 14:40:11.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:40:11.862 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:40:11.863 +03:00 [INF] Request finished in 1.0573ms 200 image/png +2018-08-02 14:40:11.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:40:11.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:40:11.866 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:40:11.866 +03:00 [INF] Request finished in 0.9725ms 200 image/png +2018-08-02 14:40:11.866 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:40:11.866 +03:00 [INF] Request finished in 1.4921ms 200 image/png +2018-08-02 14:40:11.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:40:11.872 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:40:11.872 +03:00 [INF] Request finished in 1.5202ms 200 image/png +2018-08-02 14:40:11.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:40:11.876 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:40:11.876 +03:00 [INF] Request finished in 0.8043ms 200 image/svg+xml +2018-08-02 14:40:11.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:40:11.885 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:40:11.885 +03:00 [INF] Request finished in 0.9059ms 200 image/png +2018-08-02 14:40:11.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:40:11.899 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:40:11.899 +03:00 [INF] Request finished in 0.9412ms 200 image/png +2018-08-02 14:40:11.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:40:11.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:40:11.910 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:40:11.910 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:40:11.910 +03:00 [INF] Request finished in 0.7271ms 200 image/png +2018-08-02 14:40:11.910 +03:00 [INF] Request finished in 0.8552ms 200 image/png +2018-08-02 14:40:11.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:40:11.915 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:40:11.916 +03:00 [INF] Request finished in 0.9871ms 200 image/png +2018-08-02 14:40:11.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:40:11.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:40:11.918 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:40:11.918 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:40:11.918 +03:00 [INF] Request finished in 0.8135ms 200 image/png +2018-08-02 14:40:11.918 +03:00 [INF] Request finished in 0.6939ms 200 image/png +2018-08-02 14:40:11.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:40:11.926 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:40:11.926 +03:00 [INF] Request finished in 1.7174ms 200 image/png +2018-08-02 14:40:11.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:40:11.931 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:40:11.931 +03:00 [INF] Request finished in 1.2811ms 200 image/png +2018-08-02 14:40:11.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:40:11.932 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:40:11.933 +03:00 [INF] Request finished in 1.1106ms 200 image/png +2018-08-02 14:40:11.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:40:11.935 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:40:11.935 +03:00 [INF] Request finished in 2.0429ms 200 image/png +2018-08-02 14:40:11.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:40:11.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:40:11.943 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:40:11.943 +03:00 [INF] Request finished in 1.0447ms 200 image/png +2018-08-02 14:40:11.944 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:40:11.944 +03:00 [INF] Request finished in 1.8954ms 200 image/png +2018-08-02 14:40:11.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/11.png +2018-08-02 14:40:11.946 +03:00 [INF] Sending file. Request path: '/assets/tools/11.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\11.png' +2018-08-02 14:40:11.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:40:11.946 +03:00 [INF] Request finished in 1.1163ms 200 image/png +2018-08-02 14:40:11.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:40:11.948 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:40:11.948 +03:00 [INF] Request finished in 1.9642ms 200 image/png +2018-08-02 14:40:11.949 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:40:11.949 +03:00 [INF] Request finished in 2.0572ms 200 image/png +2018-08-02 14:40:11.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:40:11.961 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:40:11.961 +03:00 [INF] Request finished in 1.3305ms 200 image/png +2018-08-02 14:40:11.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:40:11.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:40:11.989 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:40:11.989 +03:00 [INF] Request finished in 11.3066ms 200 image/jpeg +2018-08-02 14:40:11.993 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:40:11.993 +03:00 [INF] Request finished in 6.44ms 200 font/woff2 +2018-08-02 14:40:13.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:40:13.172 +03:00 [INF] Request finished in 0.6341ms 404 +2018-08-02 14:41:34.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:41:34.733 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:41:34.733 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:41:34.758 +03:00 [INF] Executed action /Index in 25.2316ms +2018-08-02 14:41:34.758 +03:00 [INF] Request finished in 360.69ms 200 text/html; charset=utf-8 +2018-08-02 14:41:34.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:41:34.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:41:34.806 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:41:34.806 +03:00 [INF] Request finished in 2.4568ms 200 text/css +2018-08-02 14:41:34.807 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:41:34.807 +03:00 [INF] Request finished in 4.9698ms 200 text/css +2018-08-02 14:41:34.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:41:34.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:41:34.816 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:41:34.817 +03:00 [INF] Request finished in 1.417ms 200 text/css +2018-08-02 14:41:34.817 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:41:34.817 +03:00 [INF] Request finished in 1.1896ms 200 text/css +2018-08-02 14:41:34.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:41:34.819 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:41:34.819 +03:00 [INF] Request finished in 0.9326ms 200 text/css +2018-08-02 14:41:34.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:41:34.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:41:34.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:41:34.835 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:41:34.835 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:41:34.836 +03:00 [INF] Request finished in 1.0644ms 200 text/css +2018-08-02 14:41:34.836 +03:00 [INF] Request finished in 1.2569ms 200 text/css +2018-08-02 14:41:34.836 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:41:34.836 +03:00 [INF] Request finished in 1.4937ms 200 text/css +2018-08-02 14:41:34.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:41:34.860 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:41:34.861 +03:00 [INF] Request finished in 1.9301ms 200 image/png +2018-08-02 14:41:34.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:41:34.867 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:41:34.867 +03:00 [INF] Request finished in 1.5546ms 200 application/javascript +2018-08-02 14:41:34.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:41:34.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:41:34.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:41:34.886 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:41:34.886 +03:00 [INF] Request finished in 1.2217ms 200 application/javascript +2018-08-02 14:41:34.892 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:41:34.892 +03:00 [INF] Request finished in 6.4264ms 200 application/javascript +2018-08-02 14:41:34.894 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:41:34.894 +03:00 [INF] Request finished in 11.4896ms 200 application/javascript +2018-08-02 14:41:34.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:41:34.895 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:41:34.896 +03:00 [INF] Request finished in 0.9275ms 200 application/javascript +2018-08-02 14:41:34.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:41:34.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:41:34.897 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:41:34.897 +03:00 [INF] Request finished in 1.3856ms 200 application/javascript +2018-08-02 14:41:34.906 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:41:34.906 +03:00 [INF] Request finished in 8.9324ms 200 application/javascript +2018-08-02 14:41:34.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:41:34.913 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:41:34.913 +03:00 [INF] Request finished in 1.4868ms 200 application/javascript +2018-08-02 14:41:34.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:41:34.917 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:41:34.917 +03:00 [INF] Request finished in 2.6564ms 200 application/javascript +2018-08-02 14:41:34.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:41:34.934 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:41:34.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:41:34.935 +03:00 [INF] Request finished in 7.4849ms 200 application/javascript +2018-08-02 14:41:34.940 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:41:34.940 +03:00 [INF] Request finished in 5.6851ms 200 application/javascript +2018-08-02 14:41:34.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:41:34.952 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:41:34.952 +03:00 [INF] Request finished in 1.2719ms 200 application/javascript +2018-08-02 14:41:34.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:41:34.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:41:34.962 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:41:34.962 +03:00 [INF] Request finished in 1.0915ms 200 application/javascript +2018-08-02 14:41:34.963 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:41:34.963 +03:00 [INF] Request finished in 0.7897ms 200 application/javascript +2018-08-02 14:41:34.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:41:34.976 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:41:34.976 +03:00 [INF] Request finished in 6.104ms 200 application/javascript +2018-08-02 14:41:34.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:41:34.985 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:41:34.985 +03:00 [INF] Request finished in 4.8601ms 200 application/javascript +2018-08-02 14:41:34.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:41:34.999 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:41:35.000 +03:00 [INF] Request finished in 1.7111ms 200 application/javascript +2018-08-02 14:41:35.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:41:35.011 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:41:35.011 +03:00 [INF] Request finished in 1.5701ms 200 application/javascript +2018-08-02 14:41:35.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:41:35.049 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:41:35.050 +03:00 [INF] Request finished in 3.4119ms 200 application/javascript +2018-08-02 14:41:35.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:41:35.051 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:41:35.052 +03:00 [INF] Request finished in 2.5469ms 200 application/javascript +2018-08-02 14:41:35.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:41:35.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:41:35.056 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:41:35.057 +03:00 [INF] Request finished in 2.6408ms 200 application/javascript +2018-08-02 14:41:35.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:41:35.066 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:41:35.070 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:41:35.070 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2899ms. +2018-08-02 14:41:35.071 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:41:35.071 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:41:35.071 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.3130000000000006ms +2018-08-02 14:41:35.072 +03:00 [INF] Request finished in 14.2144ms 200 text/plain; charset=utf-8 +2018-08-02 14:41:35.073 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:41:35.074 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.1072ms. +2018-08-02 14:41:35.075 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:41:35.075 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.6934ms +2018-08-02 14:41:35.075 +03:00 [INF] Request finished in 23.3578ms 200 text/plain; charset=utf-8 +2018-08-02 14:41:35.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:41:35.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:41:35.092 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:41:35.092 +03:00 [INF] Request finished in 2.2588ms 200 application/javascript +2018-08-02 14:41:35.092 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:41:35.092 +03:00 [INF] Request finished in 1.1015ms 200 application/javascript +2018-08-02 14:41:35.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:41:35.099 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:41:35.099 +03:00 [INF] Request finished in 0.9626ms 200 image/svg+xml +2018-08-02 14:41:35.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:41:35.111 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:41:35.112 +03:00 [INF] Request finished in 0.8609ms 200 image/png +2018-08-02 14:41:35.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:41:35.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:41:35.151 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:41:35.151 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:41:35.151 +03:00 [INF] Request finished in 0.8262ms 200 image/png +2018-08-02 14:41:35.151 +03:00 [INF] Request finished in 0.7944ms 200 image/png +2018-08-02 14:41:35.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:41:35.152 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:41:35.152 +03:00 [INF] Request finished in 0.7317ms 200 image/png +2018-08-02 14:41:35.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:41:35.166 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:41:35.166 +03:00 [INF] Request finished in 1.3632ms 200 image/png +2018-08-02 14:41:35.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:41:35.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:41:35.168 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:41:35.168 +03:00 [INF] Request finished in 1.2595ms 200 image/png +2018-08-02 14:41:35.168 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:41:35.168 +03:00 [INF] Request finished in 0.7251ms 200 image/png +2018-08-02 14:41:35.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:41:35.174 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:41:35.174 +03:00 [INF] Request finished in 1.7373ms 200 image/png +2018-08-02 14:41:35.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:41:35.182 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:41:35.183 +03:00 [INF] Request finished in 1.874ms 200 image/png +2018-08-02 14:41:35.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:41:35.208 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:41:35.208 +03:00 [INF] Request finished in 1.9418ms 200 image/png +2018-08-02 14:41:35.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:41:35.213 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:41:35.214 +03:00 [INF] Request finished in 1.4434ms 200 image/png +2018-08-02 14:41:35.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:41:35.224 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:41:35.224 +03:00 [INF] Request finished in 1.34ms 200 image/png +2018-08-02 14:41:35.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:41:35.226 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:41:35.226 +03:00 [INF] Request finished in 1.3745ms 200 image/png +2018-08-02 14:41:35.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:41:35.237 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:41:35.238 +03:00 [INF] Request finished in 1.4574ms 200 image/png +2018-08-02 14:41:35.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:41:35.275 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:41:35.275 +03:00 [INF] Request finished in 1.7413ms 200 image/png +2018-08-02 14:41:35.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:41:35.278 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:41:35.278 +03:00 [INF] Request finished in 1.0074ms 200 image/png +2018-08-02 14:41:35.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:41:35.292 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:41:35.292 +03:00 [INF] Request finished in 1.0762ms 200 image/png +2018-08-02 14:41:35.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:41:35.301 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:41:35.301 +03:00 [INF] Request finished in 1.6946ms 200 image/png +2018-08-02 14:41:35.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:41:35.306 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:41:35.306 +03:00 [INF] Request finished in 1.7682ms 200 image/svg+xml +2018-08-02 14:41:35.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:41:35.320 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:41:35.322 +03:00 [INF] Request finished in 1.0786ms 200 image/png +2018-08-02 14:41:35.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:41:35.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:41:35.323 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:41:35.323 +03:00 [INF] Request finished in 1ms 200 image/png +2018-08-02 14:41:35.324 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:41:35.324 +03:00 [INF] Request finished in 2.1941ms 200 image/png +2018-08-02 14:41:35.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:41:35.326 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:41:35.326 +03:00 [INF] Request finished in 1.593ms 200 image/png +2018-08-02 14:41:35.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:41:35.329 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:41:35.329 +03:00 [INF] Request finished in 1.3427ms 200 image/png +2018-08-02 14:41:35.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:41:35.333 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:41:35.333 +03:00 [INF] Request finished in 1.2866ms 200 image/png +2018-08-02 14:41:35.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:41:35.335 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:41:35.336 +03:00 [INF] Request finished in 2.0717ms 200 image/png +2018-08-02 14:41:35.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:41:35.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:41:35.343 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:41:35.343 +03:00 [INF] Request finished in 0.7672ms 200 image/png +2018-08-02 14:41:35.344 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:41:35.344 +03:00 [INF] Request finished in 0.7146ms 200 image/png +2018-08-02 14:41:35.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:41:35.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:41:35.350 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:41:35.350 +03:00 [INF] Request finished in 0.8307ms 200 image/png +2018-08-02 14:41:35.351 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:41:35.351 +03:00 [INF] Request finished in 1.1799ms 200 image/png +2018-08-02 14:41:35.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:41:35.352 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:41:35.352 +03:00 [INF] Request finished in 0.8681ms 200 image/png +2018-08-02 14:41:35.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:41:35.353 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:41:35.354 +03:00 [INF] Request finished in 1.5177ms 200 image/png +2018-08-02 14:41:35.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:41:35.363 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:41:35.363 +03:00 [INF] Request finished in 1.5629ms 200 image/png +2018-08-02 14:41:35.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:41:35.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:41:35.366 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:41:35.367 +03:00 [INF] Request finished in 2.6792ms 200 font/woff2 +2018-08-02 14:41:35.370 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:41:35.370 +03:00 [INF] Request finished in 6.6137ms 200 image/jpeg +2018-08-02 14:41:36.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:41:36.944 +03:00 [INF] Request finished in 0.775ms 404 +2018-08-02 14:45:54.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:45:55.241 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:45:55.242 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:45:55.264 +03:00 [INF] Executed action /Index in 22.1915ms +2018-08-02 14:45:55.264 +03:00 [INF] Request finished in 358.7586ms 200 text/html; charset=utf-8 +2018-08-02 14:45:55.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:45:55.313 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:45:55.313 +03:00 [INF] Request finished in 3.3494ms 200 text/css +2018-08-02 14:45:55.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:45:55.317 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:45:55.317 +03:00 [INF] Request finished in 2.789ms 200 text/css +2018-08-02 14:45:55.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:45:55.323 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:45:55.323 +03:00 [INF] Request finished in 2.133ms 200 text/css +2018-08-02 14:45:55.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:45:55.329 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:45:55.332 +03:00 [INF] Request finished in 4.0748ms 200 text/css +2018-08-02 14:45:55.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:45:55.335 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:45:55.335 +03:00 [INF] Request finished in 0.8791ms 200 text/css +2018-08-02 14:45:55.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:45:55.336 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:45:55.337 +03:00 [INF] Request finished in 1.1764ms 200 text/css +2018-08-02 14:45:55.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:45:55.339 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:45:55.339 +03:00 [INF] Request finished in 1.6759ms 200 text/css +2018-08-02 14:45:55.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:45:55.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:45:55.351 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:45:55.351 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:45:55.351 +03:00 [INF] Request finished in 0.999ms 200 text/css +2018-08-02 14:45:55.351 +03:00 [INF] Request finished in 1.4868ms 200 application/javascript +2018-08-02 14:45:55.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:45:55.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:45:55.360 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:45:55.360 +03:00 [INF] Request finished in 1.6417ms 200 application/javascript +2018-08-02 14:45:55.365 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:45:55.365 +03:00 [INF] Request finished in 7.992ms 200 application/javascript +2018-08-02 14:45:55.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:45:55.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:45:55.374 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:45:55.375 +03:00 [INF] Request finished in 6.7772ms 200 application/javascript +2018-08-02 14:45:55.377 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:45:55.377 +03:00 [INF] Request finished in 6.4807ms 200 application/javascript +2018-08-02 14:45:55.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:45:55.386 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:45:55.386 +03:00 [INF] Request finished in 1.4541ms 200 application/javascript +2018-08-02 14:45:55.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:45:55.402 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:45:55.402 +03:00 [INF] Request finished in 1.6132ms 200 application/javascript +2018-08-02 14:45:55.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:45:55.414 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:45:55.414 +03:00 [INF] Request finished in 1.2433ms 200 application/javascript +2018-08-02 14:45:55.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:45:55.427 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:45:55.427 +03:00 [INF] Request finished in 2.3907ms 200 application/javascript +2018-08-02 14:45:55.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:45:55.441 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:45:55.441 +03:00 [INF] Request finished in 11.3394ms 200 application/javascript +2018-08-02 14:45:55.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:45:55.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:45:55.444 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:45:55.444 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:45:55.444 +03:00 [INF] Request finished in 1.0341ms 200 application/javascript +2018-08-02 14:45:55.445 +03:00 [INF] Request finished in 1.4435ms 200 application/javascript +2018-08-02 14:45:55.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:45:55.474 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:45:55.475 +03:00 [INF] Request finished in 1.8747ms 200 application/javascript +2018-08-02 14:45:55.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:45:55.485 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:45:55.485 +03:00 [INF] Request finished in 2.0141ms 200 application/javascript +2018-08-02 14:45:55.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:45:55.493 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:45:55.494 +03:00 [INF] Request finished in 1.1375ms 200 application/javascript +2018-08-02 14:45:55.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:45:55.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:45:55.496 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:45:55.496 +03:00 [INF] Request finished in 1.8662ms 200 application/javascript +2018-08-02 14:45:55.497 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:45:55.498 +03:00 [INF] Request finished in 1.8356ms 200 application/javascript +2018-08-02 14:45:55.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:45:55.504 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:45:55.504 +03:00 [INF] Request finished in 1.6488ms 200 application/javascript +2018-08-02 14:45:55.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:45:55.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:45:55.509 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:45:55.509 +03:00 [INF] Request finished in 1.842ms 200 application/javascript +2018-08-02 14:45:55.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:45:55.511 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:45:55.511 +03:00 [INF] Request finished in 1.0308ms 200 application/javascript +2018-08-02 14:45:55.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:45:55.514 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:45:55.514 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:45:55.514 +03:00 [INF] Request finished in 1.3188ms 200 application/javascript +2018-08-02 14:45:55.516 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:45:55.517 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0425ms. +2018-08-02 14:45:55.517 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:45:55.518 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.7774ms +2018-08-02 14:45:55.520 +03:00 [INF] Request finished in 10.6681ms 200 text/plain; charset=utf-8 +2018-08-02 14:45:55.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:45:55.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:45:55.528 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:45:55.528 +03:00 [INF] Request finished in 1.2772ms 200 application/javascript +2018-08-02 14:45:55.529 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:45:55.530 +03:00 [INF] Request finished in 1.4099ms 200 application/javascript +2018-08-02 14:45:55.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:45:55.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:45:55.541 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:45:55.541 +03:00 [INF] Request finished in 1.3679ms 200 image/svg+xml +2018-08-02 14:45:55.542 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:45:55.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:45:55.544 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:45:55.544 +03:00 [INF] Request finished in 0.8236ms 200 image/png +2018-08-02 14:45:55.545 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:45:55.545 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1216ms. +2018-08-02 14:45:55.546 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:45:55.546 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.4278ms +2018-08-02 14:45:55.546 +03:00 [INF] Request finished in 10.0325ms 200 text/plain; charset=utf-8 +2018-08-02 14:45:55.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:45:55.554 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:45:55.554 +03:00 [INF] Request finished in 2.0954ms 200 image/png +2018-08-02 14:45:55.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:45:55.557 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:45:55.557 +03:00 [INF] Request finished in 1.9487ms 200 image/png +2018-08-02 14:45:55.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:45:55.592 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:45:55.593 +03:00 [INF] Request finished in 1.2416ms 200 image/png +2018-08-02 14:45:55.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:45:55.603 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:45:55.603 +03:00 [INF] Request finished in 0.9755ms 200 image/png +2018-08-02 14:45:55.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:45:55.607 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:45:55.607 +03:00 [INF] Request finished in 1.3213ms 200 image/png +2018-08-02 14:45:55.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:45:55.616 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:45:55.616 +03:00 [INF] Request finished in 1.5063ms 200 image/png +2018-08-02 14:45:55.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:45:55.624 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:45:55.624 +03:00 [INF] Request finished in 1.1878ms 200 image/png +2018-08-02 14:45:55.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:45:55.626 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:45:55.626 +03:00 [INF] Request finished in 0.8836ms 200 image/png +2018-08-02 14:45:55.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:45:55.630 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:45:55.630 +03:00 [INF] Request finished in 0.8566ms 200 image/png +2018-08-02 14:45:55.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:45:55.637 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:45:55.637 +03:00 [INF] Request finished in 0.8611ms 200 image/png +2018-08-02 14:45:55.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:45:55.652 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:45:55.652 +03:00 [INF] Request finished in 2.0068ms 200 image/png +2018-08-02 14:45:55.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:45:55.654 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:45:55.655 +03:00 [INF] Request finished in 1.5178ms 200 image/png +2018-08-02 14:45:55.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:45:55.661 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:45:55.661 +03:00 [INF] Request finished in 1.7481ms 200 image/png +2018-08-02 14:45:55.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:45:55.662 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:45:55.662 +03:00 [INF] Request finished in 1.0111ms 200 image/png +2018-08-02 14:45:55.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:45:55.668 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:45:55.668 +03:00 [INF] Request finished in 4.1948ms 200 image/png +2018-08-02 14:45:55.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:45:55.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:45:55.669 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:45:55.669 +03:00 [INF] Request finished in 0.8333ms 200 image/png +2018-08-02 14:45:55.670 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:45:55.670 +03:00 [INF] Request finished in 0.9604ms 200 image/svg+xml +2018-08-02 14:45:55.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:45:55.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:45:55.671 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:45:55.671 +03:00 [INF] Request finished in 2.1152ms 200 image/png +2018-08-02 14:45:55.671 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:45:55.671 +03:00 [INF] Request finished in 0.7664ms 200 image/png +2018-08-02 14:45:55.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:45:55.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:45:55.679 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:45:55.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:45:55.680 +03:00 [INF] Request finished in 0.9747ms 200 image/png +2018-08-02 14:45:55.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:45:55.680 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:45:55.680 +03:00 [INF] Request finished in 0.8543ms 200 image/png +2018-08-02 14:45:55.683 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:45:55.684 +03:00 [INF] Request finished in 3.4834ms 200 image/png +2018-08-02 14:45:55.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:45:55.684 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:45:55.685 +03:00 [INF] Request finished in 5.4729ms 200 image/png +2018-08-02 14:45:55.685 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:45:55.685 +03:00 [INF] Request finished in 1.1985ms 200 image/png +2018-08-02 14:45:55.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:45:55.694 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:45:55.694 +03:00 [INF] Request finished in 1.2714ms 200 image/png +2018-08-02 14:45:55.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:45:55.695 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:45:55.695 +03:00 [INF] Request finished in 0.8023ms 200 image/png +2018-08-02 14:45:55.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:45:55.697 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:45:55.697 +03:00 [INF] Request finished in 0.9852ms 200 image/png +2018-08-02 14:45:55.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:45:55.698 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:45:55.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:45:55.698 +03:00 [INF] Request finished in 1.7982ms 200 image/png +2018-08-02 14:45:55.700 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:45:55.700 +03:00 [INF] Request finished in 1.6389ms 200 image/png +2018-08-02 14:45:55.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:45:55.704 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:45:55.704 +03:00 [INF] Request finished in 0.8677ms 200 image/png +2018-08-02 14:45:55.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:45:55.709 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:45:55.709 +03:00 [INF] Request finished in 1.0373ms 200 image/png +2018-08-02 14:45:55.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:45:55.711 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:45:55.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:45:55.711 +03:00 [INF] Request finished in 1.2712ms 200 image/png +2018-08-02 14:45:55.711 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:45:55.711 +03:00 [INF] Request finished in 0.7602ms 200 image/png +2018-08-02 14:45:55.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:45:55.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:45:55.790 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:45:55.790 +03:00 [INF] Request finished in 9.5989ms 200 image/jpeg +2018-08-02 14:45:55.792 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:45:55.792 +03:00 [INF] Request finished in 5.4664ms 200 font/woff2 +2018-08-02 14:45:56.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:45:56.998 +03:00 [INF] Request finished in 0.6852ms 404 +2018-08-02 14:46:03.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:46:03.801 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:46:03.801 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:46:03.828 +03:00 [INF] Executed action /Index in 26.8104ms +2018-08-02 14:46:03.828 +03:00 [INF] Request finished in 379.4705ms 200 text/html; charset=utf-8 +2018-08-02 14:46:03.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:46:03.889 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:46:03.889 +03:00 [INF] Request finished in 3.3753ms 200 text/css +2018-08-02 14:46:03.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:46:03.891 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:46:03.891 +03:00 [INF] Request finished in 1.2631ms 200 text/css +2018-08-02 14:46:03.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:46:03.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:46:03.904 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:46:03.904 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:46:03.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:46:03.904 +03:00 [INF] Request finished in 0.8329ms 200 text/css +2018-08-02 14:46:03.904 +03:00 [INF] Request finished in 0.876ms 200 text/css +2018-08-02 14:46:03.905 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:46:03.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:46:03.905 +03:00 [INF] Request finished in 1.8633ms 200 text/css +2018-08-02 14:46:03.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:46:03.907 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:46:03.907 +03:00 [INF] Request finished in 2.4289ms 200 text/css +2018-08-02 14:46:03.908 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:46:03.908 +03:00 [INF] Request finished in 2.6422ms 200 text/css +2018-08-02 14:46:03.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:46:03.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:46:03.920 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:46:03.920 +03:00 [INF] Request finished in 0.9948ms 200 application/javascript +2018-08-02 14:46:03.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:46:03.921 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:46:03.921 +03:00 [INF] Request finished in 1.8517ms 200 text/css +2018-08-02 14:46:03.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:46:03.923 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:46:03.923 +03:00 [INF] Request finished in 1.5349ms 200 application/javascript +2018-08-02 14:46:03.930 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:46:03.930 +03:00 [INF] Request finished in 9.2253ms 200 application/javascript +2018-08-02 14:46:03.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:46:03.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:46:03.937 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:46:03.937 +03:00 [INF] Request finished in 1.4278ms 200 application/javascript +2018-08-02 14:46:03.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:46:03.942 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:46:03.942 +03:00 [INF] Request finished in 8.8188ms 200 application/javascript +2018-08-02 14:46:03.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:46:03.945 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:46:03.945 +03:00 [INF] Request finished in 4.4028ms 200 application/javascript +2018-08-02 14:46:03.946 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:46:03.946 +03:00 [INF] Request finished in 3.8586ms 200 application/javascript +2018-08-02 14:46:03.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:46:03.967 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:46:03.967 +03:00 [INF] Request finished in 2.5943ms 200 application/javascript +2018-08-02 14:46:03.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:46:03.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:46:03.977 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:46:03.977 +03:00 [INF] Request finished in 4.8698ms 200 application/javascript +2018-08-02 14:46:03.988 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:46:03.988 +03:00 [INF] Request finished in 17.0702ms 200 application/javascript +2018-08-02 14:46:03.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:46:03.993 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:46:03.993 +03:00 [INF] Request finished in 2.1875ms 200 application/javascript +2018-08-02 14:46:03.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:46:03.998 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:46:03.998 +03:00 [INF] Request finished in 3.2989ms 200 application/javascript +2018-08-02 14:46:04.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:46:04.009 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:46:04.009 +03:00 [INF] Request finished in 1.8614ms 200 application/javascript +2018-08-02 14:46:04.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:46:04.019 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:46:04.019 +03:00 [INF] Request finished in 1.2193ms 200 application/javascript +2018-08-02 14:46:04.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:46:04.046 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:46:04.047 +03:00 [INF] Request finished in 3.1628ms 200 application/javascript +2018-08-02 14:46:04.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:46:04.053 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:46:04.053 +03:00 [INF] Request finished in 1.158ms 200 application/javascript +2018-08-02 14:46:04.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:46:04.057 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:46:04.057 +03:00 [INF] Request finished in 1.4418ms 200 application/javascript +2018-08-02 14:46:04.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:46:04.060 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:46:04.060 +03:00 [INF] Request finished in 2.4477ms 200 application/javascript +2018-08-02 14:46:04.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:46:04.068 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:46:04.068 +03:00 [INF] Request finished in 1.7292ms 200 application/javascript +2018-08-02 14:46:04.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:46:04.073 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:46:04.073 +03:00 [INF] Request finished in 2.3226ms 200 application/javascript +2018-08-02 14:46:04.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:46:04.077 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:46:04.078 +03:00 [INF] Request finished in 1.6296ms 200 application/javascript +2018-08-02 14:46:04.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:46:04.093 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:04.094 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:46:04.094 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.41340000000000005ms. +2018-08-02 14:46:04.095 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:04.095 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.6872ms +2018-08-02 14:46:04.095 +03:00 [INF] Request finished in 9.7825ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:04.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:46:04.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:46:04.112 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:46:04.113 +03:00 [INF] Request finished in 0.8098ms 200 application/javascript +2018-08-02 14:46:04.114 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:04.115 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:46:04.115 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1404ms. +2018-08-02 14:46:04.115 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:04.116 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8501ms +2018-08-02 14:46:04.116 +03:00 [INF] Request finished in 5.0672ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:04.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:46:04.120 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:46:04.120 +03:00 [INF] Request finished in 1.1397ms 200 application/javascript +2018-08-02 14:46:04.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:46:04.165 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:46:04.165 +03:00 [INF] Request finished in 1.2554ms 200 image/svg+xml +2018-08-02 14:46:04.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:46:04.168 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:46:04.169 +03:00 [INF] Request finished in 0.9601ms 200 image/png +2018-08-02 14:46:04.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:46:04.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:46:04.179 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:46:04.180 +03:00 [INF] Request finished in 1.1605ms 200 image/png +2018-08-02 14:46:04.180 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:46:04.180 +03:00 [INF] Request finished in 1.3474ms 200 image/png +2018-08-02 14:46:04.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:46:04.184 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:46:04.184 +03:00 [INF] Request finished in 1.2179ms 200 image/png +2018-08-02 14:46:04.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:46:04.185 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:46:04.186 +03:00 [INF] Request finished in 1.828ms 200 image/png +2018-08-02 14:46:04.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:46:04.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:46:04.196 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:46:04.196 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:46:04.197 +03:00 [INF] Request finished in 0.8495ms 200 image/png +2018-08-02 14:46:04.197 +03:00 [INF] Request finished in 0.9104ms 200 image/png +2018-08-02 14:46:04.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:46:04.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:46:04.198 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:46:04.198 +03:00 [INF] Request finished in 0.7729ms 200 image/png +2018-08-02 14:46:04.198 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:46:04.201 +03:00 [INF] Request finished in 2.0461ms 200 image/png +2018-08-02 14:46:04.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:46:04.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:46:04.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:46:04.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:46:04.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:46:04.221 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:46:04.221 +03:00 [INF] Request finished in 0.89ms 200 image/png +2018-08-02 14:46:04.222 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:46:04.222 +03:00 [INF] Request finished in 0.9554ms 200 image/png +2018-08-02 14:46:04.222 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:46:04.222 +03:00 [INF] Request finished in 1.0533ms 200 image/png +2018-08-02 14:46:04.222 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:46:04.222 +03:00 [INF] Request finished in 0.7929ms 200 image/png +2018-08-02 14:46:04.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:46:04.225 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:46:04.225 +03:00 [INF] Request finished in 4.118ms 200 image/png +2018-08-02 14:46:04.226 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:46:04.226 +03:00 [INF] Request finished in 2.6026ms 200 image/png +2018-08-02 14:46:04.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:46:04.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:46:04.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:46:04.236 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:46:04.236 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:46:04.236 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:46:04.236 +03:00 [INF] Request finished in 0.6263ms 200 image/png +2018-08-02 14:46:04.236 +03:00 [INF] Request finished in 0.5794ms 200 image/png +2018-08-02 14:46:04.237 +03:00 [INF] Request finished in 1.2504ms 200 image/png +2018-08-02 14:46:04.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:46:04.239 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:46:04.240 +03:00 [INF] Request finished in 1.5353ms 200 image/svg+xml +2018-08-02 14:46:04.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:46:04.244 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:46:04.244 +03:00 [INF] Request finished in 0.8333ms 200 image/png +2018-08-02 14:46:04.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:46:04.246 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:46:04.247 +03:00 [INF] Request finished in 1.013ms 200 image/png +2018-08-02 14:46:04.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:46:04.250 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:46:04.250 +03:00 [INF] Request finished in 0.9351ms 200 image/png +2018-08-02 14:46:04.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:46:04.252 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:46:04.252 +03:00 [INF] Request finished in 1.3344ms 200 image/png +2018-08-02 14:46:04.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:46:04.255 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:46:04.255 +03:00 [INF] Request finished in 2.4053ms 200 image/png +2018-08-02 14:46:04.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:46:04.259 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:46:04.259 +03:00 [INF] Request finished in 1.2479ms 200 image/png +2018-08-02 14:46:04.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:46:04.261 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:46:04.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:46:04.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:46:04.261 +03:00 [INF] Request finished in 0.9091ms 200 image/png +2018-08-02 14:46:04.262 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:46:04.262 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:46:04.262 +03:00 [INF] Request finished in 0.7255ms 200 image/png +2018-08-02 14:46:04.262 +03:00 [INF] Request finished in 0.727ms 200 image/png +2018-08-02 14:46:04.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:46:04.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:46:04.267 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:46:04.267 +03:00 [INF] Request finished in 3.3778ms 200 image/png +2018-08-02 14:46:04.267 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:46:04.267 +03:00 [INF] Request finished in 3.9121ms 200 image/png +2018-08-02 14:46:04.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:46:04.269 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:46:04.269 +03:00 [INF] Request finished in 1.0035ms 200 image/png +2018-08-02 14:46:04.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:46:04.270 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:46:04.270 +03:00 [INF] Request finished in 1.3881ms 200 image/png +2018-08-02 14:46:04.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:46:04.278 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:46:04.278 +03:00 [INF] Request finished in 1.7212ms 200 image/png +2018-08-02 14:46:04.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:46:04.280 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:46:04.280 +03:00 [INF] Request finished in 1.1614ms 200 image/png +2018-08-02 14:46:04.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:46:04.287 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:46:04.287 +03:00 [INF] Request finished in 4.0141ms 200 font/woff2 +2018-08-02 14:46:04.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:46:04.300 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:46:04.300 +03:00 [INF] Request finished in 11.6601ms 200 image/jpeg +2018-08-02 14:46:05.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:46:05.423 +03:00 [INF] Request finished in 0.6981ms 404 +2018-08-02 14:46:33.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:46:33.515 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:46:33.515 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:46:33.537 +03:00 [INF] Executed action /Index in 22.0912ms +2018-08-02 14:46:33.538 +03:00 [INF] Request finished in 276.4711ms 200 text/html; charset=utf-8 +2018-08-02 14:46:33.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:46:33.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:46:33.582 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:46:33.582 +03:00 [INF] Request finished in 3.447ms 200 text/css +2018-08-02 14:46:33.583 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:46:33.584 +03:00 [INF] Request finished in 1.5823ms 200 text/css +2018-08-02 14:46:33.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:46:33.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:46:33.591 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:46:33.591 +03:00 [INF] Request finished in 1.3346ms 200 text/css +2018-08-02 14:46:33.591 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:46:33.591 +03:00 [INF] Request finished in 1.5247ms 200 text/css +2018-08-02 14:46:33.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:46:33.596 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:46:33.596 +03:00 [INF] Request finished in 0.9157ms 200 text/css +2018-08-02 14:46:33.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:46:33.606 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:46:33.606 +03:00 [INF] Request finished in 1.2327ms 200 text/css +2018-08-02 14:46:33.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:46:33.609 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:46:33.610 +03:00 [INF] Request finished in 1.6039ms 200 text/css +2018-08-02 14:46:33.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:46:33.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:46:33.617 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:46:33.617 +03:00 [INF] Request finished in 0.8991ms 200 application/javascript +2018-08-02 14:46:33.618 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:46:33.618 +03:00 [INF] Request finished in 2.3154ms 200 text/css +2018-08-02 14:46:33.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:46:33.631 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:46:33.631 +03:00 [INF] Request finished in 6.3556ms 200 application/javascript +2018-08-02 14:46:33.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:46:33.634 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:46:33.634 +03:00 [INF] Request finished in 1.562ms 200 application/javascript +2018-08-02 14:46:33.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:46:33.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:46:33.641 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:46:33.641 +03:00 [INF] Request finished in 7.104ms 200 application/javascript +2018-08-02 14:46:33.642 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:46:33.643 +03:00 [INF] Request finished in 1.6665ms 200 application/javascript +2018-08-02 14:46:33.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:46:33.655 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:46:33.655 +03:00 [INF] Request finished in 4.8538ms 200 application/javascript +2018-08-02 14:46:33.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:46:33.657 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:46:33.657 +03:00 [INF] Request finished in 1.5327ms 200 application/javascript +2018-08-02 14:46:33.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:46:33.665 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:46:33.665 +03:00 [INF] Request finished in 1.0585ms 200 application/javascript +2018-08-02 14:46:33.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:46:33.670 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:46:33.670 +03:00 [INF] Request finished in 3.3095ms 200 application/javascript +2018-08-02 14:46:33.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:46:33.685 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:46:33.685 +03:00 [INF] Request finished in 8.7724ms 200 application/javascript +2018-08-02 14:46:33.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:46:33.690 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:46:33.690 +03:00 [INF] Request finished in 1.408ms 200 application/javascript +2018-08-02 14:46:33.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:46:33.700 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:46:33.700 +03:00 [INF] Request finished in 2.035ms 200 application/javascript +2018-08-02 14:46:33.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:46:33.708 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:46:33.709 +03:00 [INF] Request finished in 1.7082ms 200 application/javascript +2018-08-02 14:46:33.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:46:33.720 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:46:33.721 +03:00 [INF] Request finished in 1.921ms 200 application/javascript +2018-08-02 14:46:33.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:46:33.724 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:46:33.724 +03:00 [INF] Request finished in 1.0941ms 200 application/javascript +2018-08-02 14:46:33.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:46:33.740 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:46:33.741 +03:00 [INF] Request finished in 3.3436ms 200 application/javascript +2018-08-02 14:46:33.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:46:33.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:46:33.752 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:46:33.752 +03:00 [INF] Request finished in 2.7345ms 200 application/javascript +2018-08-02 14:46:33.754 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:46:33.754 +03:00 [INF] Request finished in 3.4862ms 200 application/javascript +2018-08-02 14:46:33.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:46:33.764 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:46:33.764 +03:00 [INF] Request finished in 2.1371ms 200 application/javascript +2018-08-02 14:46:33.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:46:33.775 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:46:33.775 +03:00 [INF] Request finished in 1.6333ms 200 application/javascript +2018-08-02 14:46:33.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:46:33.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:46:33.779 +03:00 [INF] Request finished in 1.8806ms 200 application/javascript +2018-08-02 14:46:33.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:46:33.803 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:33.805 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:46:33.806 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.9144ms. +2018-08-02 14:46:33.807 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:33.807 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.1813000000000002ms +2018-08-02 14:46:33.807 +03:00 [INF] Request finished in 15.4905ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:33.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:46:33.811 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:33.813 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:46:33.813 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1872ms. +2018-08-02 14:46:33.813 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:33.814 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3243ms +2018-08-02 14:46:33.814 +03:00 [INF] Request finished in 6.5113ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:33.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:46:33.819 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:46:33.819 +03:00 [INF] Request finished in 1.1485ms 200 application/javascript +2018-08-02 14:46:33.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:46:33.824 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:46:33.824 +03:00 [INF] Request finished in 0.9735ms 200 application/javascript +2018-08-02 14:46:33.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:46:33.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:46:33.833 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:46:33.833 +03:00 [INF] Request finished in 2.3754ms 200 image/svg+xml +2018-08-02 14:46:33.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:46:33.835 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:46:33.835 +03:00 [INF] Request finished in 1.0973ms 200 image/png +2018-08-02 14:46:33.835 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:46:33.835 +03:00 [INF] Request finished in 2.8408ms 200 image/png +2018-08-02 14:46:33.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:46:33.838 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:46:33.839 +03:00 [INF] Request finished in 2.1567ms 200 image/png +2018-08-02 14:46:33.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:46:33.847 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:46:33.848 +03:00 [INF] Request finished in 1.003ms 200 image/png +2018-08-02 14:46:33.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:46:33.863 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:46:33.863 +03:00 [INF] Request finished in 1.101ms 200 image/png +2018-08-02 14:46:33.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:46:33.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:46:33.871 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:46:33.871 +03:00 [INF] Request finished in 2.3538ms 200 image/png +2018-08-02 14:46:33.873 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:46:33.873 +03:00 [INF] Request finished in 2.272ms 200 image/png +2018-08-02 14:46:33.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:46:33.885 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:46:33.885 +03:00 [INF] Request finished in 0.8635ms 200 image/png +2018-08-02 14:46:33.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:46:33.889 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:46:33.889 +03:00 [INF] Request finished in 1.519ms 200 image/png +2018-08-02 14:46:33.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:46:33.897 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:46:33.897 +03:00 [INF] Request finished in 0.9261ms 200 image/png +2018-08-02 14:46:33.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:46:33.900 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:46:33.900 +03:00 [INF] Request finished in 0.875ms 200 image/png +2018-08-02 14:46:33.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:46:33.902 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:46:33.902 +03:00 [INF] Request finished in 1.3281ms 200 image/png +2018-08-02 14:46:33.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:46:33.907 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:46:33.907 +03:00 [INF] Request finished in 1.2182ms 200 image/png +2018-08-02 14:46:33.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:46:33.910 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:46:33.910 +03:00 [INF] Request finished in 0.9226ms 200 image/png +2018-08-02 14:46:33.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:46:33.914 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:46:33.914 +03:00 [INF] Request finished in 1.0153ms 200 image/png +2018-08-02 14:46:33.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:46:33.918 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:46:33.918 +03:00 [INF] Request finished in 0.8713ms 200 image/png +2018-08-02 14:46:33.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:46:33.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:46:33.923 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:46:33.923 +03:00 [INF] Request finished in 2.0379ms 200 image/svg+xml +2018-08-02 14:46:33.924 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:46:33.924 +03:00 [INF] Request finished in 0.8178ms 200 image/png +2018-08-02 14:46:33.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:46:33.927 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:46:33.927 +03:00 [INF] Request finished in 2.7207ms 200 image/png +2018-08-02 14:46:33.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:46:33.930 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:46:33.930 +03:00 [INF] Request finished in 1.8132ms 200 image/png +2018-08-02 14:46:33.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:46:33.932 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:46:33.932 +03:00 [INF] Request finished in 2.4868ms 200 image/png +2018-08-02 14:46:33.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:46:33.934 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:46:33.934 +03:00 [INF] Request finished in 0.9958ms 200 image/png +2018-08-02 14:46:33.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:46:33.944 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:46:33.944 +03:00 [INF] Request finished in 0.839ms 200 image/png +2018-08-02 14:46:33.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:46:33.952 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:46:33.952 +03:00 [INF] Request finished in 0.9512ms 200 image/png +2018-08-02 14:46:33.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:46:33.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:46:33.959 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:46:33.959 +03:00 [INF] Request finished in 0.8703ms 200 image/png +2018-08-02 14:46:33.960 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:46:33.960 +03:00 [INF] Request finished in 1.015ms 200 image/png +2018-08-02 14:46:33.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:46:33.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:46:33.962 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:46:33.962 +03:00 [INF] Request finished in 0.9964ms 200 image/png +2018-08-02 14:46:33.964 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:46:33.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:46:33.965 +03:00 [INF] Request finished in 3.279ms 200 image/png +2018-08-02 14:46:33.966 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:46:33.966 +03:00 [INF] Request finished in 1.561ms 200 image/png +2018-08-02 14:46:33.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:46:33.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:46:33.968 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:46:33.968 +03:00 [INF] Request finished in 1.1919ms 200 image/png +2018-08-02 14:46:33.968 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:46:33.968 +03:00 [INF] Request finished in 1.2434ms 200 image/png +2018-08-02 14:46:33.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:46:33.974 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:46:33.974 +03:00 [INF] Request finished in 1.6121ms 200 image/png +2018-08-02 14:46:33.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:46:33.975 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:46:33.975 +03:00 [INF] Request finished in 0.9643ms 200 image/png +2018-08-02 14:46:33.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:46:33.985 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:46:33.985 +03:00 [INF] Request finished in 2.0585ms 200 font/woff2 +2018-08-02 14:46:33.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:46:33.987 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:46:33.988 +03:00 [INF] Request finished in 1.6607ms 200 image/png +2018-08-02 14:46:33.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:46:33.998 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:46:33.998 +03:00 [INF] Request finished in 10.5988ms 200 image/jpeg +2018-08-02 14:46:35.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:46:35.602 +03:00 [INF] Request finished in 0.7381ms 404 +2018-08-02 14:46:51.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:46:51.896 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:46:51.896 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:46:51.922 +03:00 [INF] Executed action /Index in 25.5558ms +2018-08-02 14:46:51.922 +03:00 [INF] Request finished in 373.1271ms 200 text/html; charset=utf-8 +2018-08-02 14:46:51.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:46:51.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:46:51.976 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:46:51.976 +03:00 [INF] Request finished in 1.4905ms 200 text/css +2018-08-02 14:46:51.978 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:46:51.979 +03:00 [INF] Request finished in 7.6957ms 200 text/css +2018-08-02 14:46:51.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:46:51.981 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:46:51.981 +03:00 [INF] Request finished in 1.3238ms 200 text/css +2018-08-02 14:46:51.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:46:51.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:46:51.992 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:46:51.992 +03:00 [INF] Request finished in 1.2796ms 200 text/css +2018-08-02 14:46:51.992 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:46:51.993 +03:00 [INF] Request finished in 1.5345ms 200 text/css +2018-08-02 14:46:51.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:46:51.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:46:51.997 +03:00 [INF] Request finished in 1.2549ms 200 text/css +2018-08-02 14:46:52.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:46:52.018 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:46:52.018 +03:00 [INF] Request finished in 1.3455ms 200 text/css +2018-08-02 14:46:52.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:46:52.020 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:46:52.020 +03:00 [INF] Request finished in 1.0359ms 200 text/css +2018-08-02 14:46:52.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:46:52.032 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:46:52.032 +03:00 [INF] Request finished in 1.4278ms 200 application/javascript +2018-08-02 14:46:52.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:46:52.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:46:52.047 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:46:52.047 +03:00 [INF] Request finished in 7.9629ms 200 application/javascript +2018-08-02 14:46:52.048 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:46:52.049 +03:00 [INF] Request finished in 2.1026ms 200 application/javascript +2018-08-02 14:46:52.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:46:52.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:46:52.056 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:46:52.056 +03:00 [INF] Request finished in 6.6976ms 200 application/javascript +2018-08-02 14:46:52.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:46:52.057 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:46:52.058 +03:00 [INF] Request finished in 4.2054ms 200 application/javascript +2018-08-02 14:46:52.058 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:46:52.059 +03:00 [INF] Request finished in 2.5777ms 200 application/javascript +2018-08-02 14:46:52.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:46:52.068 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:46:52.068 +03:00 [INF] Request finished in 2.0645ms 200 application/javascript +2018-08-02 14:46:52.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:46:52.073 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:46:52.073 +03:00 [INF] Request finished in 2.5281ms 200 application/javascript +2018-08-02 14:46:52.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:46:52.088 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:46:52.088 +03:00 [INF] Request finished in 3.6586ms 200 application/javascript +2018-08-02 14:46:52.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:46:52.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:46:52.094 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:46:52.094 +03:00 [INF] Request finished in 0.9127ms 200 application/javascript +2018-08-02 14:46:52.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:46:52.096 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:46:52.096 +03:00 [INF] Request finished in 1.1847ms 200 application/javascript +2018-08-02 14:46:52.099 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:46:52.099 +03:00 [INF] Request finished in 8.0458ms 200 application/javascript +2018-08-02 14:46:52.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:46:52.111 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:46:52.112 +03:00 [INF] Request finished in 1.3703ms 200 application/javascript +2018-08-02 14:46:52.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:46:52.122 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:46:52.123 +03:00 [INF] Request finished in 3.1247ms 200 application/javascript +2018-08-02 14:46:52.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:46:52.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:46:52.134 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:46:52.134 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:46:52.134 +03:00 [INF] Request finished in 0.9972ms 200 application/javascript +2018-08-02 14:46:52.134 +03:00 [INF] Request finished in 1.0324ms 200 application/javascript +2018-08-02 14:46:52.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:46:52.162 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:46:52.163 +03:00 [INF] Request finished in 3.9121ms 200 application/javascript +2018-08-02 14:46:52.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:46:52.180 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:46:52.180 +03:00 [INF] Request finished in 4.0024ms 200 application/javascript +2018-08-02 14:46:52.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:46:52.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:46:52.210 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:46:52.210 +03:00 [INF] Request finished in 4.1774ms 200 application/javascript +2018-08-02 14:46:52.210 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:46:52.211 +03:00 [INF] Request finished in 2.993ms 200 application/javascript +2018-08-02 14:46:52.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:46:52.236 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:46:52.236 +03:00 [INF] Request finished in 1.8874ms 200 application/javascript +2018-08-02 14:46:52.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:46:52.250 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:52.251 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:46:52.252 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5816ms. +2018-08-02 14:46:52.252 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:52.253 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.1339ms +2018-08-02 14:46:52.253 +03:00 [INF] Request finished in 13.0993ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:52.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:46:52.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:46:52.260 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:46:52.260 +03:00 [INF] Request finished in 0.9854ms 200 application/javascript +2018-08-02 14:46:52.275 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:52.277 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:46:52.277 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.15ms. +2018-08-02 14:46:52.277 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:52.277 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8647ms +2018-08-02 14:46:52.277 +03:00 [INF] Request finished in 21.49ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:52.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:46:52.282 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:46:52.282 +03:00 [INF] Request finished in 1.0595ms 200 application/javascript +2018-08-02 14:46:52.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:46:52.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:46:52.294 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:46:52.295 +03:00 [INF] Request finished in 1.3024ms 200 image/png +2018-08-02 14:46:52.295 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:46:52.295 +03:00 [INF] Request finished in 1.946ms 200 image/png +2018-08-02 14:46:52.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:46:52.298 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:46:52.298 +03:00 [INF] Request finished in 0.8939ms 200 image/png +2018-08-02 14:46:52.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:46:52.299 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:46:52.299 +03:00 [INF] Request finished in 1.0276ms 200 image/svg+xml +2018-08-02 14:46:52.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:46:52.305 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:46:52.305 +03:00 [INF] Request finished in 1.5422ms 200 image/png +2018-08-02 14:46:52.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:46:52.311 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:46:52.311 +03:00 [INF] Request finished in 0.8879ms 200 image/png +2018-08-02 14:46:52.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:46:52.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:46:52.313 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:46:52.313 +03:00 [INF] Request finished in 1.2051ms 200 image/png +2018-08-02 14:46:52.313 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:46:52.314 +03:00 [INF] Request finished in 1.0877ms 200 image/png +2018-08-02 14:46:52.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:46:52.322 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:46:52.322 +03:00 [INF] Request finished in 1.9639ms 200 image/png +2018-08-02 14:46:52.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:46:52.325 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:46:52.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:46:52.325 +03:00 [INF] Request finished in 1.5423ms 200 image/png +2018-08-02 14:46:52.326 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:46:52.326 +03:00 [INF] Request finished in 0.8349ms 200 image/png +2018-08-02 14:46:52.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:46:52.332 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:46:52.333 +03:00 [INF] Request finished in 1.0287ms 200 image/png +2018-08-02 14:46:52.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:46:52.347 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:46:52.347 +03:00 [INF] Request finished in 1.0353ms 200 image/png +2018-08-02 14:46:52.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:46:52.353 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:46:52.353 +03:00 [INF] Request finished in 2.0005ms 200 image/png +2018-08-02 14:46:52.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:46:52.361 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:46:52.362 +03:00 [INF] Request finished in 2.3338ms 200 image/png +2018-08-02 14:46:52.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:46:52.369 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:46:52.369 +03:00 [INF] Request finished in 2.4706ms 200 image/png +2018-08-02 14:46:52.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:46:52.372 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:46:52.372 +03:00 [INF] Request finished in 1.892ms 200 image/png +2018-08-02 14:46:52.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:46:52.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:46:52.376 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:46:52.376 +03:00 [INF] Request finished in 1.2547ms 200 image/svg+xml +2018-08-02 14:46:52.377 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:46:52.377 +03:00 [INF] Request finished in 4.7532ms 200 image/png +2018-08-02 14:46:52.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:46:52.384 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:46:52.385 +03:00 [INF] Request finished in 2.2684ms 200 image/png +2018-08-02 14:46:52.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:46:52.387 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:46:52.388 +03:00 [INF] Request finished in 1.8499ms 200 image/png +2018-08-02 14:46:52.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:46:52.391 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:46:52.392 +03:00 [INF] Request finished in 1.658ms 200 image/png +2018-08-02 14:46:52.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:46:52.393 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:46:52.393 +03:00 [INF] Request finished in 1.0506ms 200 image/png +2018-08-02 14:46:52.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:46:52.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:46:52.407 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:46:52.407 +03:00 [INF] Request finished in 1.6485ms 200 image/png +2018-08-02 14:46:52.408 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:46:52.408 +03:00 [INF] Request finished in 3.0406ms 200 image/png +2018-08-02 14:46:52.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:46:52.420 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:46:52.420 +03:00 [INF] Request finished in 2.0079ms 200 image/png +2018-08-02 14:46:52.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:46:52.428 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:46:52.428 +03:00 [INF] Request finished in 1.1412ms 200 image/png +2018-08-02 14:46:52.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:46:52.431 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:46:52.431 +03:00 [INF] Request finished in 1.5274ms 200 image/png +2018-08-02 14:46:52.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:46:52.435 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:46:52.435 +03:00 [INF] Request finished in 1.1084ms 200 image/png +2018-08-02 14:46:52.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:46:52.445 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:46:52.445 +03:00 [INF] Request finished in 0.8843ms 200 image/png +2018-08-02 14:46:52.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:46:52.460 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:46:52.461 +03:00 [INF] Request finished in 2.1941ms 200 image/png +2018-08-02 14:46:52.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:46:52.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:46:52.467 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:46:52.467 +03:00 [INF] Request finished in 0.9806ms 200 image/png +2018-08-02 14:46:52.475 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:46:52.476 +03:00 [INF] Request finished in 8.6329ms 200 image/png +2018-08-02 14:46:52.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:46:52.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:46:52.477 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:46:52.477 +03:00 [INF] Request finished in 1.205ms 200 image/png +2018-08-02 14:46:52.477 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:46:52.477 +03:00 [INF] Request finished in 1.3342ms 200 image/png +2018-08-02 14:46:52.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:46:52.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:46:52.494 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:46:52.495 +03:00 [INF] Request finished in 15.7997ms 200 image/jpeg +2018-08-02 14:46:52.495 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:46:52.495 +03:00 [INF] Request finished in 2.6512ms 200 font/woff2 +2018-08-02 14:46:53.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:46:53.910 +03:00 [INF] Request finished in 0.9557ms 404 +2018-08-02 14:46:59.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:46:59.414 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:46:59.414 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:46:59.419 +03:00 [INF] Executed action /Index in 5.2086000000000006ms +2018-08-02 14:46:59.419 +03:00 [INF] Request finished in 7.4495ms 200 text/html; charset=utf-8 +2018-08-02 14:46:59.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:46:59.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:46:59.463 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:46:59.463 +03:00 [INF] Request finished in 2.6264ms 200 text/css +2018-08-02 14:46:59.464 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:46:59.464 +03:00 [INF] Request finished in 5.5755ms 200 text/css +2018-08-02 14:46:59.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:46:59.471 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:46:59.471 +03:00 [INF] Request finished in 1.5255ms 200 text/css +2018-08-02 14:46:59.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:46:59.473 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:46:59.473 +03:00 [INF] Request finished in 0.8625ms 200 text/css +2018-08-02 14:46:59.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:46:59.481 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:46:59.481 +03:00 [INF] Request finished in 1.6262ms 200 text/css +2018-08-02 14:46:59.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:46:59.491 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:46:59.491 +03:00 [INF] Request finished in 2.2071ms 200 text/css +2018-08-02 14:46:59.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:46:59.498 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:46:59.498 +03:00 [INF] Request finished in 2.0035ms 200 text/css +2018-08-02 14:46:59.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:46:59.500 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:46:59.500 +03:00 [INF] Request finished in 0.8935ms 200 text/css +2018-08-02 14:46:59.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:46:59.511 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:46:59.512 +03:00 [INF] Request finished in 1.6264ms 200 application/javascript +2018-08-02 14:46:59.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:46:59.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:46:59.522 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:46:59.522 +03:00 [INF] Request finished in 3.2595ms 200 application/javascript +2018-08-02 14:46:59.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:46:59.525 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:46:59.525 +03:00 [INF] Request finished in 6.7051ms 200 application/javascript +2018-08-02 14:46:59.527 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:46:59.527 +03:00 [INF] Request finished in 4.091ms 200 application/javascript +2018-08-02 14:46:59.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:46:59.529 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:46:59.529 +03:00 [INF] Request finished in 1.0601ms 200 application/javascript +2018-08-02 14:46:59.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:46:59.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:46:59.530 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:46:59.530 +03:00 [INF] Request finished in 0.9049ms 200 application/javascript +2018-08-02 14:46:59.533 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:46:59.533 +03:00 [INF] Request finished in 3.06ms 200 application/javascript +2018-08-02 14:46:59.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:46:59.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:46:59.540 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:46:59.540 +03:00 [INF] Request finished in 1.7286ms 200 application/javascript +2018-08-02 14:46:59.542 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:46:59.542 +03:00 [INF] Request finished in 2.7364ms 200 application/javascript +2018-08-02 14:46:59.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:46:59.576 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:46:59.576 +03:00 [INF] Request finished in 11.558ms 200 application/javascript +2018-08-02 14:46:59.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:46:59.582 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:46:59.583 +03:00 [INF] Request finished in 1.3853ms 200 application/javascript +2018-08-02 14:46:59.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:46:59.586 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:46:59.586 +03:00 [INF] Request finished in 1.0199ms 200 application/javascript +2018-08-02 14:46:59.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:46:59.589 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:46:59.589 +03:00 [INF] Request finished in 2.0593ms 200 application/javascript +2018-08-02 14:46:59.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:46:59.600 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:46:59.600 +03:00 [INF] Request finished in 2.4652ms 200 application/javascript +2018-08-02 14:46:59.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:46:59.602 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:46:59.602 +03:00 [INF] Request finished in 1.6455ms 200 application/javascript +2018-08-02 14:46:59.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:46:59.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:46:59.610 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:46:59.610 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:46:59.610 +03:00 [INF] Request finished in 0.9308ms 200 application/javascript +2018-08-02 14:46:59.610 +03:00 [INF] Request finished in 1.1731ms 200 application/javascript +2018-08-02 14:46:59.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:46:59.624 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:46:59.624 +03:00 [INF] Request finished in 1.4646ms 200 application/javascript +2018-08-02 14:46:59.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:46:59.630 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:46:59.630 +03:00 [INF] Request finished in 4.5604ms 200 application/javascript +2018-08-02 14:46:59.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:46:59.635 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:46:59.636 +03:00 [INF] Request finished in 1.9388ms 200 application/javascript +2018-08-02 14:46:59.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:46:59.641 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:46:59.641 +03:00 [INF] Request finished in 1.1737ms 200 application/javascript +2018-08-02 14:46:59.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:46:59.649 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:59.650 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:46:59.651 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4131ms. +2018-08-02 14:46:59.651 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:59.651 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2119ms +2018-08-02 14:46:59.651 +03:00 [INF] Request finished in 3.6203ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:59.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:46:59.672 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:46:59.673 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:46:59.673 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1296ms. +2018-08-02 14:46:59.673 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:46:59.673 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3587ms +2018-08-02 14:46:59.673 +03:00 [INF] Request finished in 2.555ms 200 text/plain; charset=utf-8 +2018-08-02 14:46:59.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:46:59.682 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:46:59.682 +03:00 [INF] Request finished in 1.0206ms 200 application/javascript +2018-08-02 14:46:59.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:46:59.688 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:46:59.688 +03:00 [INF] Request finished in 1.299ms 200 application/javascript +2018-08-02 14:46:59.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:46:59.699 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:46:59.699 +03:00 [INF] Request finished in 1.2471ms 200 image/svg+xml +2018-08-02 14:46:59.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:46:59.705 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:46:59.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:46:59.705 +03:00 [INF] Request finished in 1.0164ms 200 image/png +2018-08-02 14:46:59.706 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:46:59.706 +03:00 [INF] Request finished in 0.8772ms 200 image/png +2018-08-02 14:46:59.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:46:59.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:46:59.715 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:46:59.716 +03:00 [INF] Request finished in 1.0704ms 200 image/png +2018-08-02 14:46:59.717 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:46:59.717 +03:00 [INF] Request finished in 2.5729ms 200 image/png +2018-08-02 14:46:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:46:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:46:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:46:59.723 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:46:59.723 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:46:59.723 +03:00 [INF] Request finished in 0.7505ms 200 image/png +2018-08-02 14:46:59.723 +03:00 [INF] Request finished in 0.7967ms 200 image/png +2018-08-02 14:46:59.724 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:46:59.724 +03:00 [INF] Request finished in 0.5737ms 200 image/png +2018-08-02 14:46:59.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:46:59.728 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:46:59.728 +03:00 [INF] Request finished in 3.4323ms 200 image/png +2018-08-02 14:46:59.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:46:59.731 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:46:59.731 +03:00 [INF] Request finished in 1.0784ms 200 image/png +2018-08-02 14:46:59.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:46:59.734 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:46:59.734 +03:00 [INF] Request finished in 2.6828ms 200 image/png +2018-08-02 14:46:59.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:46:59.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:46:59.743 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:46:59.743 +03:00 [INF] Request finished in 0.9061ms 200 image/png +2018-08-02 14:46:59.743 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:46:59.743 +03:00 [INF] Request finished in 1.7656ms 200 image/png +2018-08-02 14:46:59.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:46:59.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:46:59.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:46:59.747 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:46:59.747 +03:00 [INF] Request finished in 1.4097ms 200 image/png +2018-08-02 14:46:59.748 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:46:59.748 +03:00 [INF] Request finished in 2.9285ms 200 image/png +2018-08-02 14:46:59.765 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:46:59.765 +03:00 [INF] Request finished in 20.2074ms 200 image/png +2018-08-02 14:46:59.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:46:59.772 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:46:59.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:46:59.773 +03:00 [INF] Request finished in 1.5078ms 200 image/png +2018-08-02 14:46:59.773 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:46:59.773 +03:00 [INF] Request finished in 0.8142ms 200 image/png +2018-08-02 14:46:59.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:46:59.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:46:59.774 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:46:59.774 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:46:59.774 +03:00 [INF] Request finished in 0.6473ms 200 image/svg+xml +2018-08-02 14:46:59.774 +03:00 [INF] Request finished in 0.9594ms 200 image/png +2018-08-02 14:46:59.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:46:59.776 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:46:59.776 +03:00 [INF] Request finished in 2.5662ms 200 image/png +2018-08-02 14:46:59.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:46:59.779 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:46:59.779 +03:00 [INF] Request finished in 1.3511ms 200 image/png +2018-08-02 14:46:59.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:46:59.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:46:59.781 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:46:59.781 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:46:59.781 +03:00 [INF] Request finished in 0.7319ms 200 image/png +2018-08-02 14:46:59.781 +03:00 [INF] Request finished in 0.7849ms 200 image/png +2018-08-02 14:46:59.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:46:59.783 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:46:59.783 +03:00 [INF] Request finished in 0.8466ms 200 image/png +2018-08-02 14:46:59.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:46:59.785 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:46:59.786 +03:00 [INF] Request finished in 0.8544ms 200 image/png +2018-08-02 14:46:59.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:46:59.787 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:46:59.788 +03:00 [INF] Request finished in 2.8119ms 200 image/png +2018-08-02 14:46:59.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:46:59.788 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:46:59.789 +03:00 [INF] Request finished in 0.7839ms 200 image/png +2018-08-02 14:46:59.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:46:59.790 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:46:59.790 +03:00 [INF] Request finished in 1.1797ms 200 image/png +2018-08-02 14:46:59.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:46:59.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:46:59.794 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:46:59.794 +03:00 [INF] Request finished in 1.4588ms 200 image/png +2018-08-02 14:46:59.795 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:46:59.795 +03:00 [INF] Request finished in 0.746ms 200 image/png +2018-08-02 14:46:59.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:46:59.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:46:59.798 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:46:59.798 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:46:59.798 +03:00 [INF] Request finished in 0.7511ms 200 image/png +2018-08-02 14:46:59.798 +03:00 [INF] Request finished in 0.8151ms 200 image/png +2018-08-02 14:46:59.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:46:59.802 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:46:59.802 +03:00 [INF] Request finished in 0.8353ms 200 image/png +2018-08-02 14:46:59.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:46:59.806 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:46:59.806 +03:00 [INF] Request finished in 1.8188ms 200 image/png +2018-08-02 14:46:59.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:46:59.849 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:46:59.849 +03:00 [INF] Request finished in 7.8193ms 200 image/jpeg +2018-08-02 14:46:59.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:46:59.868 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:46:59.868 +03:00 [INF] Request finished in 3.3322ms 200 font/woff2 +2018-08-02 14:47:00.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:47:00.697 +03:00 [INF] Request finished in 1.345ms 404 +2018-08-02 14:47:01.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-02 14:47:02.047 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-02 14:47:02.115 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:47:02.206 +03:00 [INF] Executed action /Templates in 158.6117ms +2018-08-02 14:47:02.206 +03:00 [INF] Request finished in 564.0362ms 200 text/html; charset=utf-8 +2018-08-02 14:47:02.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:47:02.262 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:47:02.262 +03:00 [INF] Request finished in 3.6698ms 200 text/css +2018-08-02 14:47:02.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:47:02.267 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:47:02.267 +03:00 [INF] Request finished in 3.0875ms 200 text/css +2018-08-02 14:47:02.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:47:02.269 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:47:02.270 +03:00 [INF] Request finished in 0.8821ms 200 text/css +2018-08-02 14:47:02.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:47:02.276 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:47:02.276 +03:00 [INF] Request finished in 0.9615ms 200 text/css +2018-08-02 14:47:02.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:47:02.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:47:02.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:47:02.287 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:47:02.287 +03:00 [INF] Request finished in 0.8364ms 200 text/css +2018-08-02 14:47:02.287 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:47:02.287 +03:00 [INF] Request finished in 1.0381ms 200 text/css +2018-08-02 14:47:02.288 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:47:02.288 +03:00 [INF] Request finished in 2.0208ms 200 text/css +2018-08-02 14:47:02.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:47:02.292 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:47:02.292 +03:00 [INF] Request finished in 1.5418ms 200 text/css +2018-08-02 14:47:02.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:47:02.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:47:02.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:47:02.306 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:47:02.306 +03:00 [INF] Request finished in 1.6784ms 200 application/javascript +2018-08-02 14:47:02.306 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:47:02.306 +03:00 [INF] Request finished in 1.7868ms 200 application/javascript +2018-08-02 14:47:02.310 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:47:02.310 +03:00 [INF] Request finished in 8.4899ms 200 application/javascript +2018-08-02 14:47:02.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:47:02.324 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:47:02.325 +03:00 [INF] Request finished in 5.1303ms 200 application/javascript +2018-08-02 14:47:02.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:47:02.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:47:02.355 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:47:02.355 +03:00 [INF] Request finished in 1.6855ms 200 application/javascript +2018-08-02 14:47:02.359 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:47:02.359 +03:00 [INF] Request finished in 6.9351ms 200 application/javascript +2018-08-02 14:47:02.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:47:02.361 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:47:02.361 +03:00 [INF] Request finished in 1.9372ms 200 application/javascript +2018-08-02 14:47:02.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:47:02.372 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:47:02.372 +03:00 [INF] Request finished in 1.0933ms 200 application/javascript +2018-08-02 14:47:02.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:47:02.386 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:47:02.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:47:02.386 +03:00 [INF] Request finished in 6.5373ms 200 application/javascript +2018-08-02 14:47:02.387 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:47:02.387 +03:00 [INF] Request finished in 0.9189ms 200 application/javascript +2018-08-02 14:47:02.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:47:02.407 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:47:02.407 +03:00 [INF] Request finished in 15.9123ms 200 application/javascript +2018-08-02 14:47:02.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:47:02.409 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:47:02.409 +03:00 [INF] Request finished in 0.8685ms 200 application/javascript +2018-08-02 14:47:02.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:47:02.419 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:47:02.419 +03:00 [INF] Request finished in 0.9316ms 200 application/javascript +2018-08-02 14:47:02.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:47:02.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:47:02.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:47:02.426 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:47:02.427 +03:00 [INF] Request finished in 4.7608ms 200 application/javascript +2018-08-02 14:47:02.428 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:47:02.428 +03:00 [INF] Request finished in 1.6126ms 200 application/javascript +2018-08-02 14:47:02.428 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:47:02.428 +03:00 [INF] Request finished in 2.6014ms 200 application/javascript +2018-08-02 14:47:02.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:47:02.443 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:47:02.443 +03:00 [INF] Request finished in 1.1385ms 200 application/javascript +2018-08-02 14:47:02.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:47:02.448 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:47:02.449 +03:00 [INF] Request finished in 2.7576ms 200 application/javascript +2018-08-02 14:47:02.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:47:02.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:47:02.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:47:02.453 +03:00 [INF] Request finished in 2.6107ms 200 application/javascript +2018-08-02 14:47:02.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:47:02.453 +03:00 [INF] Request finished in 2.1308ms 200 application/javascript +2018-08-02 14:47:02.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:47:02.460 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:47:02.460 +03:00 [INF] Request finished in 1.0212ms 200 application/javascript +2018-08-02 14:47:02.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:47:02.479 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:47:02.481 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:47:02.481 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.41700000000000004ms. +2018-08-02 14:47:02.482 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:47:02.482 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.451ms +2018-08-02 14:47:02.483 +03:00 [INF] Request finished in 4.0736ms 200 text/plain; charset=utf-8 +2018-08-02 14:47:02.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:47:02.500 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:47:02.502 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:47:02.503 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2024ms. +2018-08-02 14:47:02.503 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:47:02.503 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4926ms +2018-08-02 14:47:02.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:47:02.504 +03:00 [INF] Request finished in 6.0062ms 200 text/plain; charset=utf-8 +2018-08-02 14:47:02.505 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:47:02.505 +03:00 [INF] Request finished in 1.1265ms 200 application/javascript +2018-08-02 14:47:02.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:47:02.521 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:47:02.521 +03:00 [INF] Request finished in 0.8837ms 200 application/javascript +2018-08-02 14:47:02.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-02 14:47:02.530 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-02 14:47:02.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:47:02.530 +03:00 [INF] Request finished in 0.8962ms 200 application/javascript +2018-08-02 14:47:02.531 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:47:02.531 +03:00 [INF] Request finished in 0.8818ms 200 image/svg+xml +2018-08-02 14:47:02.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:47:02.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:47:02.557 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:47:02.558 +03:00 [INF] Request finished in 2.9828ms 200 font/woff2 +2018-08-02 14:47:02.560 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:47:02.560 +03:00 [INF] Request finished in 7.6103ms 200 image/jpeg +2018-08-02 14:47:03.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:47:03.096 +03:00 [INF] Request finished in 0.6119ms 404 +2018-08-02 14:47:04.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:47:04.487 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:47:04.487 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:47:04.491 +03:00 [INF] Executed action /Index in 3.9024ms +2018-08-02 14:47:04.491 +03:00 [INF] Request finished in 5.0376ms 200 text/html; charset=utf-8 +2018-08-02 14:47:04.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:47:04.572 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:47:04.572 +03:00 [INF] Request finished in 4.4501ms 200 text/css +2018-08-02 14:47:04.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:47:04.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:47:04.578 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:47:04.578 +03:00 [INF] Request finished in 1.4347ms 200 text/css +2018-08-02 14:47:04.579 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:47:04.579 +03:00 [INF] Request finished in 1.241ms 200 text/css +2018-08-02 14:47:04.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:47:04.580 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:47:04.580 +03:00 [INF] Request finished in 1.3289ms 200 text/css +2018-08-02 14:47:04.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:47:04.589 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:47:04.589 +03:00 [INF] Request finished in 1.7621ms 200 text/css +2018-08-02 14:47:04.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:47:04.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:47:04.595 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:47:04.596 +03:00 [INF] Request finished in 1.3263ms 200 text/css +2018-08-02 14:47:04.596 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:47:04.596 +03:00 [INF] Request finished in 2.8431ms 200 text/css +2018-08-02 14:47:04.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:47:04.601 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:47:04.601 +03:00 [INF] Request finished in 1.3818ms 200 text/css +2018-08-02 14:47:04.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:47:04.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:47:04.611 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:47:04.611 +03:00 [INF] Request finished in 1.1241ms 200 application/javascript +2018-08-02 14:47:04.620 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:47:04.620 +03:00 [INF] Request finished in 10.006ms 200 application/javascript +2018-08-02 14:47:04.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:47:04.622 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:47:04.623 +03:00 [INF] Request finished in 1.4856ms 200 application/javascript +2018-08-02 14:47:04.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:47:04.634 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:47:04.634 +03:00 [INF] Request finished in 7.0643ms 200 application/javascript +2018-08-02 14:47:04.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:47:04.645 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:47:04.645 +03:00 [INF] Request finished in 3.1551ms 200 application/javascript +2018-08-02 14:47:04.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:47:04.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:47:04.652 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:47:04.652 +03:00 [INF] Request finished in 2.3845ms 200 application/javascript +2018-08-02 14:47:04.653 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:47:04.653 +03:00 [INF] Request finished in 1.3805ms 200 application/javascript +2018-08-02 14:47:04.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:47:04.655 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:47:04.655 +03:00 [INF] Request finished in 1.7919ms 200 application/javascript +2018-08-02 14:47:04.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:47:04.670 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:47:04.670 +03:00 [INF] Request finished in 6.3136ms 200 application/javascript +2018-08-02 14:47:04.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:47:04.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:47:04.679 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:47:04.679 +03:00 [INF] Request finished in 1.3345ms 200 application/javascript +2018-08-02 14:47:04.682 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:47:04.683 +03:00 [INF] Request finished in 9.0357ms 200 application/javascript +2018-08-02 14:47:04.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:47:04.699 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:47:04.699 +03:00 [INF] Request finished in 1.2503ms 200 application/javascript +2018-08-02 14:47:04.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:47:04.708 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:47:04.708 +03:00 [INF] Request finished in 0.9658ms 200 application/javascript +2018-08-02 14:47:04.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:47:04.748 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:47:04.749 +03:00 [INF] Request finished in 0.9109ms 200 application/javascript +2018-08-02 14:47:04.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:47:04.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:47:04.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:47:04.757 +03:00 [INF] Request finished in 1.1306ms 200 application/javascript +2018-08-02 14:47:04.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:47:04.757 +03:00 [INF] Request finished in 1.3452ms 200 application/javascript +2018-08-02 14:47:04.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:47:04.761 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:47:04.761 +03:00 [INF] Request finished in 1.3948ms 200 application/javascript +2018-08-02 14:47:04.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:47:04.766 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:47:04.767 +03:00 [INF] Request finished in 1.7019ms 200 application/javascript +2018-08-02 14:47:04.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:47:04.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:47:04.769 +03:00 [INF] Request finished in 1.9506ms 200 application/javascript +2018-08-02 14:47:04.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:47:04.772 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:47:04.772 +03:00 [INF] Request finished in 1.7806ms 200 application/javascript +2018-08-02 14:47:04.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:47:04.775 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:47:04.775 +03:00 [INF] Request finished in 1.2135ms 200 application/javascript +2018-08-02 14:47:04.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:47:04.783 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:47:04.787 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:47:04.788 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.527ms. +2018-08-02 14:47:04.788 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:47:04.788 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.8492000000000006ms +2018-08-02 14:47:04.788 +03:00 [INF] Request finished in 5.9365ms 200 text/plain; charset=utf-8 +2018-08-02 14:47:04.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:47:04.791 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:47:04.792 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:47:04.793 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1254ms. +2018-08-02 14:47:04.793 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:47:04.793 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2065ms +2018-08-02 14:47:04.794 +03:00 [INF] Request finished in 3.5933ms 200 text/plain; charset=utf-8 +2018-08-02 14:47:04.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:47:04.795 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:47:04.796 +03:00 [INF] Request finished in 1.6858ms 200 application/javascript +2018-08-02 14:47:04.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:47:04.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:47:04.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:47:04.799 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:47:04.799 +03:00 [INF] Request finished in 1.3267ms 200 image/svg+xml +2018-08-02 14:47:04.800 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:47:04.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:47:04.800 +03:00 [INF] Request finished in 0.7968ms 200 image/png +2018-08-02 14:47:04.801 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:47:04.801 +03:00 [INF] Request finished in 1.0068ms 200 image/png +2018-08-02 14:47:04.803 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:47:04.803 +03:00 [INF] Request finished in 3.9204ms 200 application/javascript +2018-08-02 14:47:04.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:47:04.807 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:47:04.807 +03:00 [INF] Request finished in 1.2251ms 200 image/png +2018-08-02 14:47:04.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:47:04.808 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:47:04.808 +03:00 [INF] Request finished in 0.7999ms 200 image/png +2018-08-02 14:47:04.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:47:04.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:47:04.816 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:47:04.816 +03:00 [INF] Request finished in 1.2073ms 200 image/png +2018-08-02 14:47:04.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:47:04.818 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:47:04.818 +03:00 [INF] Request finished in 1.478ms 200 image/png +2018-08-02 14:47:04.818 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:47:04.818 +03:00 [INF] Request finished in 1.8036ms 200 image/png +2018-08-02 14:47:04.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:47:04.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:47:04.825 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:47:04.825 +03:00 [INF] Request finished in 2.0911ms 200 image/png +2018-08-02 14:47:04.825 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:47:04.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:47:04.825 +03:00 [INF] Request finished in 0.9409ms 200 image/png +2018-08-02 14:47:04.826 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:47:04.826 +03:00 [INF] Request finished in 0.7941ms 200 image/png +2018-08-02 14:47:04.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:47:04.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:47:04.828 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:47:04.828 +03:00 [INF] Request finished in 0.6342ms 200 image/png +2018-08-02 14:47:04.828 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:47:04.828 +03:00 [INF] Request finished in 0.8849ms 200 image/png +2018-08-02 14:47:04.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:47:04.832 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:47:04.832 +03:00 [INF] Request finished in 0.9636ms 200 image/png +2018-08-02 14:47:04.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:47:04.836 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:47:04.836 +03:00 [INF] Request finished in 0.9019ms 200 image/png +2018-08-02 14:47:04.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:47:04.840 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:47:04.840 +03:00 [INF] Request finished in 1.3082ms 200 image/png +2018-08-02 14:47:04.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:47:04.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:47:04.855 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:47:04.856 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:47:04.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:47:04.857 +03:00 [INF] Request finished in 3.1171ms 200 image/svg+xml +2018-08-02 14:47:04.857 +03:00 [INF] Request finished in 3.9551ms 200 image/png +2018-08-02 14:47:04.858 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:47:04.858 +03:00 [INF] Request finished in 1.5663ms 200 image/png +2018-08-02 14:47:04.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:47:04.871 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:47:04.872 +03:00 [INF] Request finished in 2.5189ms 200 image/png +2018-08-02 14:47:04.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:47:04.873 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:47:04.874 +03:00 [INF] Request finished in 2.0765ms 200 image/png +2018-08-02 14:47:04.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:47:04.879 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:47:04.879 +03:00 [INF] Request finished in 1.0247ms 200 image/png +2018-08-02 14:47:04.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:47:04.882 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:47:04.882 +03:00 [INF] Request finished in 0.7662ms 200 image/png +2018-08-02 14:47:04.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:47:04.893 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:47:04.893 +03:00 [INF] Request finished in 1.4499ms 200 image/png +2018-08-02 14:47:04.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:47:04.896 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:47:04.896 +03:00 [INF] Request finished in 0.8265ms 200 image/png +2018-08-02 14:47:04.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:47:04.913 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:47:04.913 +03:00 [INF] Request finished in 1.0564ms 200 image/png +2018-08-02 14:47:04.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:47:04.927 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:47:04.927 +03:00 [INF] Request finished in 1.0008ms 200 image/png +2018-08-02 14:47:04.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:47:04.954 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:47:04.954 +03:00 [INF] Request finished in 1.0882ms 200 image/png +2018-08-02 14:47:04.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:47:04.964 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:47:04.967 +03:00 [INF] Request finished in 1.1477ms 200 image/png +2018-08-02 14:47:04.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:47:04.974 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:47:04.974 +03:00 [INF] Request finished in 1.147ms 200 image/png +2018-08-02 14:47:04.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:47:04.981 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:47:04.981 +03:00 [INF] Request finished in 3.9025ms 200 image/png +2018-08-02 14:47:04.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:47:04.983 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:47:04.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:47:04.983 +03:00 [INF] Request finished in 1.1011ms 200 image/png +2018-08-02 14:47:04.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:47:04.988 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:47:04.988 +03:00 [INF] Request finished in 1.3831ms 200 image/png +2018-08-02 14:47:04.990 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:47:04.990 +03:00 [INF] Request finished in 7.0376ms 200 image/png +2018-08-02 14:47:05.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:47:05.001 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:47:05.001 +03:00 [INF] Request finished in 1.1386ms 200 image/png +2018-08-02 14:47:05.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:47:05.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:47:05.079 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:47:05.079 +03:00 [INF] Request finished in 3.576ms 200 font/woff2 +2018-08-02 14:47:05.079 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:47:05.080 +03:00 [INF] Request finished in 4.809ms 200 image/jpeg +2018-08-02 14:47:05.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:47:05.859 +03:00 [INF] Request finished in 0.6334ms 404 +2018-08-02 14:51:03.332 +03:00 [INF] Loaded modules: +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:51:03.348 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:51:03.349 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:51:03.836 +03:00 [INF] Initialized all modules. +2018-08-02 14:51:04.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:51:07.011 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:51:07.033 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:51:07.900 +03:00 [INF] Executed action /Index in 880.4165ms +2018-08-02 14:51:07.935 +03:00 [INF] Request finished in 3722.8263ms 200 text/html; charset=utf-8 +2018-08-02 14:51:07.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:51:07.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:51:07.970 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:51:07.971 +03:00 [INF] Request finished in 6.9326ms 200 text/css +2018-08-02 14:51:07.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:51:07.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:51:07.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:51:07.978 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:51:07.978 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:51:07.978 +03:00 [INF] Request finished in 4.619ms 200 text/css +2018-08-02 14:51:07.978 +03:00 [INF] Request finished in 4.653ms 200 text/css +2018-08-02 14:51:07.978 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:51:07.979 +03:00 [INF] Request finished in 6.1537ms 200 text/css +2018-08-02 14:51:07.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:51:07.983 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:51:07.983 +03:00 [INF] Request finished in 2.1703ms 200 text/css +2018-08-02 14:51:07.991 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:51:07.991 +03:00 [INF] Request finished in 31.8285ms 200 text/css +2018-08-02 14:51:07.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:51:07.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:51:07.996 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:51:07.996 +03:00 [INF] Request finished in 2.602ms 200 text/css +2018-08-02 14:51:07.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:51:07.999 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:51:07.999 +03:00 [INF] Request finished in 0.9817ms 200 text/css +2018-08-02 14:51:07.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:51:08.000 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:51:08.000 +03:00 [INF] Request finished in 0.8152ms 200 application/javascript +2018-08-02 14:51:08.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:51:08.002 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:51:08.002 +03:00 [INF] Request finished in 6.6247ms 200 application/javascript +2018-08-02 14:51:08.003 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:51:08.003 +03:00 [INF] Request finished in 2.3822ms 200 application/javascript +2018-08-02 14:51:08.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:51:08.038 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:51:08.038 +03:00 [INF] Request finished in 5.9313ms 200 application/javascript +2018-08-02 14:51:08.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:51:08.041 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:51:08.042 +03:00 [INF] Request finished in 3.0817ms 200 application/javascript +2018-08-02 14:51:08.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:51:08.045 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:51:08.046 +03:00 [INF] Request finished in 1.9529ms 200 application/javascript +2018-08-02 14:51:08.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:51:08.053 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:51:08.053 +03:00 [INF] Request finished in 0.8962ms 200 application/javascript +2018-08-02 14:51:08.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:51:08.057 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:51:08.057 +03:00 [INF] Request finished in 0.9435ms 200 application/javascript +2018-08-02 14:51:08.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:51:08.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:51:08.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:51:08.072 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:51:08.072 +03:00 [INF] Request finished in 0.8497ms 200 application/javascript +2018-08-02 14:51:08.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:51:08.073 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:51:08.073 +03:00 [INF] Request finished in 2.0348ms 200 application/javascript +2018-08-02 14:51:08.074 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:51:08.074 +03:00 [INF] Request finished in 0.9835ms 200 application/javascript +2018-08-02 14:51:08.089 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:51:08.089 +03:00 [INF] Request finished in 18.4061ms 200 application/javascript +2018-08-02 14:51:08.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:51:08.093 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:51:08.093 +03:00 [INF] Request finished in 1.4581ms 200 application/javascript +2018-08-02 14:51:08.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:51:08.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:51:08.101 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:51:08.102 +03:00 [INF] Request finished in 1.7003ms 200 application/javascript +2018-08-02 14:51:08.102 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:51:08.102 +03:00 [INF] Request finished in 3.019ms 200 application/javascript +2018-08-02 14:51:08.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:51:08.105 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:51:08.105 +03:00 [INF] Request finished in 3.0139ms 200 application/javascript +2018-08-02 14:51:08.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:51:08.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:51:08.121 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:51:08.121 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:51:08.121 +03:00 [INF] Request finished in 3.3255ms 200 application/javascript +2018-08-02 14:51:08.121 +03:00 [INF] Request finished in 2.2247ms 200 application/javascript +2018-08-02 14:51:08.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:51:08.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:51:08.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:51:08.139 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:51:08.139 +03:00 [INF] Request finished in 1.1717ms 200 application/javascript +2018-08-02 14:51:08.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:51:08.142 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:51:08.142 +03:00 [INF] Request finished in 1.1268ms 200 application/javascript +2018-08-02 14:51:08.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:51:08.148 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:51:08.148 +03:00 [INF] Request finished in 2.0595ms 200 application/javascript +2018-08-02 14:51:08.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:51:08.154 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:51:08.155 +03:00 [INF] Request finished in 2.716ms 200 application/javascript +2018-08-02 14:51:08.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:51:08.166 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:51:08.166 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:51:08.167 +03:00 [INF] Request finished in 1.2215ms 200 application/javascript +2018-08-02 14:51:08.171 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:51:08.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:51:08.192 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:51:08.194 +03:00 [INF] Request finished in 1.2892ms 200 image/svg+xml +2018-08-02 14:51:08.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:51:08.256 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:51:08.256 +03:00 [INF] Request finished in 0.7731ms 200 image/png +2018-08-02 14:51:08.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:51:08.282 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:51:08.282 +03:00 [INF] Request finished in 1.0762ms 200 image/png +2018-08-02 14:51:08.295 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:51:08.315 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:51:08.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:51:08.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:51:08.320 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:51:08.320 +03:00 [INF] Request finished in 2.0238ms 200 image/png +2018-08-02 14:51:08.320 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:51:08.320 +03:00 [INF] Request finished in 1.0265ms 200 image/png +2018-08-02 14:51:08.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:51:08.344 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:51:08.344 +03:00 [INF] Request finished in 3.9676ms 200 image/png +2018-08-02 14:51:08.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:51:08.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:51:08.435 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:51:08.435 +03:00 [INF] Request finished in 1.3948ms 200 image/png +2018-08-02 14:51:08.435 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:51:08.436 +03:00 [INF] Request finished in 0.9758ms 200 image/png +2018-08-02 14:51:08.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:51:08.442 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:51:08.443 +03:00 [INF] Request finished in 1.2256ms 200 image/png +2018-08-02 14:51:08.458 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 156.2958ms. +2018-08-02 14:51:08.490 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:51:08.492 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 319.8897ms +2018-08-02 14:51:08.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:51:08.492 +03:00 [INF] Request finished in 354.2319ms 200 text/plain; charset=utf-8 +2018-08-02 14:51:08.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:51:08.493 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:51:08.493 +03:00 [INF] Request finished in 1.134ms 200 image/svg+xml +2018-08-02 14:51:08.495 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:51:08.495 +03:00 [INF] Request finished in 2.8298ms 200 image/png +2018-08-02 14:51:08.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:51:08.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:51:08.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:51:08.522 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:51:08.522 +03:00 [INF] Request finished in 0.9804ms 200 image/png +2018-08-02 14:51:08.522 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:51:08.523 +03:00 [INF] Request finished in 1.9726ms 200 image/png +2018-08-02 14:51:08.525 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:51:08.526 +03:00 [INF] Request finished in 4.6411ms 200 font/woff2 +2018-08-02 14:51:08.539 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 222.2067ms. +2018-08-02 14:51:08.539 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:51:08.540 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 373.8045ms +2018-08-02 14:51:08.540 +03:00 [INF] Request finished in 402.0726ms 200 text/plain; charset=utf-8 +2018-08-02 14:51:08.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:51:08.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:51:08.542 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:51:08.542 +03:00 [INF] Request finished in 1.9773ms 200 image/png +2018-08-02 14:51:08.542 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:51:08.542 +03:00 [INF] Request finished in 1.3387ms 200 image/png +2018-08-02 14:51:08.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:51:08.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:51:08.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:51:08.565 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:51:08.565 +03:00 [INF] Request finished in 0.7664ms 200 image/png +2018-08-02 14:51:08.565 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:51:08.565 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:51:08.565 +03:00 [INF] Request finished in 1.8433ms 200 image/png +2018-08-02 14:51:08.566 +03:00 [INF] Request finished in 0.9885ms 200 image/png +2018-08-02 14:51:08.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:51:08.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:51:08.575 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:51:08.575 +03:00 [INF] Request finished in 1.2485ms 200 image/png +2018-08-02 14:51:08.575 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:51:08.576 +03:00 [INF] Request finished in 2.1898ms 200 image/png +2018-08-02 14:51:08.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:51:08.583 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:51:08.583 +03:00 [INF] Request finished in 6.6292ms 200 image/png +2018-08-02 14:51:08.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:51:08.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:51:08.587 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:51:08.588 +03:00 [INF] Request finished in 1.0222ms 200 image/png +2018-08-02 14:51:08.593 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:51:08.593 +03:00 [INF] Request finished in 6.861ms 200 image/png +2018-08-02 14:51:08.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:51:08.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:51:08.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:51:08.602 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:51:08.602 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:51:08.602 +03:00 [INF] Request finished in 3.8363ms 200 image/png +2018-08-02 14:51:08.602 +03:00 [INF] Request finished in 4.1815ms 200 image/png +2018-08-02 14:51:08.602 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:51:08.602 +03:00 [INF] Request finished in 3.1438ms 200 image/png +2018-08-02 14:51:08.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:51:08.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:51:08.609 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:51:08.609 +03:00 [INF] Request finished in 1.807ms 200 image/png +2018-08-02 14:51:08.609 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:51:08.609 +03:00 [INF] Request finished in 1.1924ms 200 image/png +2018-08-02 14:51:08.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:51:08.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:51:08.616 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:51:08.616 +03:00 [INF] Request finished in 0.647ms 200 image/png +2018-08-02 14:51:08.616 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:51:08.616 +03:00 [INF] Request finished in 1.4415ms 200 image/png +2018-08-02 14:51:08.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:51:08.623 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:51:08.623 +03:00 [INF] Request finished in 1.2373ms 200 image/png +2018-08-02 14:51:08.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:51:08.624 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:51:08.624 +03:00 [INF] Request finished in 1.0303ms 200 image/png +2018-08-02 14:51:08.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:51:08.633 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:51:08.633 +03:00 [INF] Request finished in 1.2495ms 200 image/png +2018-08-02 14:51:08.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:51:08.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:51:08.636 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:51:08.636 +03:00 [INF] Request finished in 1.1062ms 200 image/png +2018-08-02 14:51:08.636 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:51:08.636 +03:00 [INF] Request finished in 0.8406ms 200 image/png +2018-08-02 14:51:08.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:51:08.644 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:51:08.644 +03:00 [INF] Request finished in 5.2982ms 200 image/jpeg +2018-08-02 14:51:09.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:51:09.697 +03:00 [INF] Request finished in 3.1487ms 404 +2018-08-02 14:51:23.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:51:23.573 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:51:23.574 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:51:23.596 +03:00 [INF] Executed action /Index in 22.672700000000003ms +2018-08-02 14:51:23.596 +03:00 [INF] Request finished in 448.7042ms 200 text/html; charset=utf-8 +2018-08-02 14:51:23.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:51:23.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:51:23.641 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:51:23.641 +03:00 [INF] Request finished in 1.1105ms 200 text/css +2018-08-02 14:51:23.641 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:51:23.641 +03:00 [INF] Request finished in 3.6033ms 200 text/css +2018-08-02 14:51:23.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:51:23.648 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:51:23.648 +03:00 [INF] Request finished in 1.2115ms 200 text/css +2018-08-02 14:51:23.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:51:23.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:51:23.663 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:51:23.663 +03:00 [INF] Request finished in 2.8494ms 200 text/css +2018-08-02 14:51:23.663 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:51:23.664 +03:00 [INF] Request finished in 1.5978ms 200 text/css +2018-08-02 14:51:23.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:51:23.672 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:51:23.672 +03:00 [INF] Request finished in 1.1453ms 200 text/css +2018-08-02 14:51:23.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:51:23.679 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:51:23.679 +03:00 [INF] Request finished in 1.1136ms 200 text/css +2018-08-02 14:51:23.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:51:23.685 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:51:23.685 +03:00 [INF] Request finished in 1.2525ms 200 text/css +2018-08-02 14:51:23.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:51:23.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:51:23.689 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:51:23.689 +03:00 [INF] Request finished in 0.6686ms 200 application/javascript +2018-08-02 14:51:23.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:51:23.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:51:23.695 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:51:23.695 +03:00 [INF] Request finished in 1.4471ms 200 application/javascript +2018-08-02 14:51:23.698 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:51:23.698 +03:00 [INF] Request finished in 7.3229ms 200 application/javascript +2018-08-02 14:51:23.699 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:51:23.699 +03:00 [INF] Request finished in 10.4113ms 200 application/javascript +2018-08-02 14:51:23.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:51:23.716 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:51:23.716 +03:00 [INF] Request finished in 5.3512ms 200 application/javascript +2018-08-02 14:51:23.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:51:23.720 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:51:23.720 +03:00 [INF] Request finished in 2.4648ms 200 application/javascript +2018-08-02 14:51:23.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:51:23.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:51:23.727 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:51:23.727 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:51:23.727 +03:00 [INF] Request finished in 3.179ms 200 application/javascript +2018-08-02 14:51:23.727 +03:00 [INF] Request finished in 2.5244ms 200 application/javascript +2018-08-02 14:51:23.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:51:23.740 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:51:23.740 +03:00 [INF] Request finished in 5.2288ms 200 application/javascript +2018-08-02 14:51:23.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:51:23.757 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:51:23.757 +03:00 [INF] Request finished in 8.1196ms 200 application/javascript +2018-08-02 14:51:23.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:51:23.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:51:23.778 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:51:23.779 +03:00 [INF] Request finished in 1.6935ms 200 application/javascript +2018-08-02 14:51:23.779 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:51:23.779 +03:00 [INF] Request finished in 1.9188ms 200 application/javascript +2018-08-02 14:51:23.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:51:23.785 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:51:23.786 +03:00 [INF] Request finished in 1.719ms 200 application/javascript +2018-08-02 14:51:23.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:51:23.789 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:51:23.790 +03:00 [INF] Request finished in 1.1963ms 200 application/javascript +2018-08-02 14:51:23.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:51:23.796 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:51:23.797 +03:00 [INF] Request finished in 2.1571ms 200 application/javascript +2018-08-02 14:51:23.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:51:23.807 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:51:23.807 +03:00 [INF] Request finished in 1.5351ms 200 application/javascript +2018-08-02 14:51:23.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:51:23.820 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:51:23.820 +03:00 [INF] Request finished in 1.2739ms 200 application/javascript +2018-08-02 14:51:23.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:51:23.834 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:51:23.835 +03:00 [INF] Request finished in 1.7904ms 200 application/javascript +2018-08-02 14:51:23.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:51:23.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:51:23.840 +03:00 [INF] Request finished in 1.1577ms 200 application/javascript +2018-08-02 14:51:23.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:51:23.841 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:51:23.841 +03:00 [INF] Request finished in 1.1789ms 200 application/javascript +2018-08-02 14:51:23.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:51:23.854 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:51:23.854 +03:00 [INF] Request finished in 1.566ms 200 application/javascript +2018-08-02 14:51:23.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:51:23.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:51:23.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:51:23.867 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:51:23.868 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:51:23.868 +03:00 [INF] Request finished in 1.1817ms 200 application/javascript +2018-08-02 14:51:23.870 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:51:23.870 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.18910000000000002ms. +2018-08-02 14:51:23.870 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:51:23.870 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:51:23.870 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.9482ms +2018-08-02 14:51:23.870 +03:00 [INF] Request finished in 5.4725ms 200 text/plain; charset=utf-8 +2018-08-02 14:51:23.871 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:51:23.872 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6369ms. +2018-08-02 14:51:23.872 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:51:23.872 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.116ms +2018-08-02 14:51:23.872 +03:00 [INF] Request finished in 9.4139ms 200 text/plain; charset=utf-8 +2018-08-02 14:51:23.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:51:23.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:51:23.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:51:23.888 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:51:23.888 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:51:23.888 +03:00 [INF] Request finished in 1.155ms 200 image/png +2018-08-02 14:51:23.888 +03:00 [INF] Request finished in 10.3804ms 200 application/javascript +2018-08-02 14:51:23.889 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:51:23.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:51:23.892 +03:00 [INF] Request finished in 8.3306ms 200 image/svg+xml +2018-08-02 14:51:23.892 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:51:23.892 +03:00 [INF] Request finished in 1.4434ms 200 image/png +2018-08-02 14:51:23.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:51:23.905 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:51:23.905 +03:00 [INF] Request finished in 0.8789ms 200 image/png +2018-08-02 14:51:23.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:51:23.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:51:23.914 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:51:23.914 +03:00 [INF] Request finished in 1.146ms 200 image/png +2018-08-02 14:51:23.915 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:51:23.915 +03:00 [INF] Request finished in 1.4542ms 200 image/png +2018-08-02 14:51:23.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:51:23.920 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:51:23.920 +03:00 [INF] Request finished in 1.395ms 200 image/png +2018-08-02 14:51:23.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:51:23.927 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:51:23.927 +03:00 [INF] Request finished in 2.9342ms 200 image/png +2018-08-02 14:51:23.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:51:23.929 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:51:23.929 +03:00 [INF] Request finished in 1.7998ms 200 image/png +2018-08-02 14:51:23.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:51:23.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:51:23.931 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:51:23.932 +03:00 [INF] Request finished in 1.4565ms 200 image/png +2018-08-02 14:51:23.932 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:51:23.932 +03:00 [INF] Request finished in 1.3135ms 200 image/png +2018-08-02 14:51:23.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:51:23.939 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:51:23.940 +03:00 [INF] Request finished in 1.2139ms 200 image/png +2018-08-02 14:51:23.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:51:23.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:51:23.941 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:51:23.941 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:51:23.941 +03:00 [INF] Request finished in 0.8211ms 200 image/png +2018-08-02 14:51:23.941 +03:00 [INF] Request finished in 0.8299ms 200 image/png +2018-08-02 14:51:23.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:51:23.949 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:51:23.949 +03:00 [INF] Request finished in 1.0757ms 200 image/png +2018-08-02 14:51:23.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:51:23.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:51:23.951 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:51:23.951 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:51:23.951 +03:00 [INF] Request finished in 0.9683ms 200 image/png +2018-08-02 14:51:23.951 +03:00 [INF] Request finished in 1.5104ms 200 image/png +2018-08-02 14:51:23.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:51:23.967 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:51:23.968 +03:00 [INF] Request finished in 2.3591ms 200 image/svg+xml +2018-08-02 14:51:23.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:51:23.978 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:51:23.978 +03:00 [INF] Request finished in 2.015ms 200 image/png +2018-08-02 14:51:23.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:51:23.983 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:51:23.984 +03:00 [INF] Request finished in 1.9402ms 200 image/png +2018-08-02 14:51:23.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:51:23.991 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:51:23.992 +03:00 [INF] Request finished in 2.2528ms 200 image/png +2018-08-02 14:51:23.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:51:24.000 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:51:24.001 +03:00 [INF] Request finished in 2.1537ms 200 image/png +2018-08-02 14:51:24.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:51:24.004 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:51:24.004 +03:00 [INF] Request finished in 1.9483ms 200 image/png +2018-08-02 14:51:24.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:51:24.019 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:51:24.019 +03:00 [INF] Request finished in 1.9758ms 200 image/png +2018-08-02 14:51:24.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:51:24.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:51:24.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:51:24.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:51:24.026 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:51:24.026 +03:00 [INF] Request finished in 0.7206ms 200 image/png +2018-08-02 14:51:24.027 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:51:24.027 +03:00 [INF] Request finished in 2.259ms 200 image/png +2018-08-02 14:51:24.027 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:51:24.028 +03:00 [INF] Request finished in 3.2274ms 200 image/png +2018-08-02 14:51:24.028 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:51:24.028 +03:00 [INF] Request finished in 2.9301ms 200 image/png +2018-08-02 14:51:24.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:51:24.035 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:51:24.035 +03:00 [INF] Request finished in 5.3789ms 200 image/png +2018-08-02 14:51:24.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:51:24.037 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:51:24.038 +03:00 [INF] Request finished in 1.0197ms 200 image/png +2018-08-02 14:51:24.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:51:24.039 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:51:24.040 +03:00 [INF] Request finished in 1.3025ms 200 image/png +2018-08-02 14:51:24.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:51:24.045 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:51:24.046 +03:00 [INF] Request finished in 4.0596ms 200 image/png +2018-08-02 14:51:24.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:51:24.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:51:24.050 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:51:24.050 +03:00 [INF] Request finished in 1.4809ms 200 image/png +2018-08-02 14:51:24.050 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:51:24.050 +03:00 [INF] Request finished in 3.0086ms 200 image/png +2018-08-02 14:51:24.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:51:24.052 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:51:24.053 +03:00 [INF] Request finished in 1.9879ms 200 image/png +2018-08-02 14:51:24.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:51:24.066 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:51:24.067 +03:00 [INF] Request finished in 5.6245ms 200 image/jpeg +2018-08-02 14:51:24.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:51:24.080 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:51:24.080 +03:00 [INF] Request finished in 3.7162ms 200 font/woff2 +2018-08-02 14:51:25.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:51:25.590 +03:00 [INF] Request finished in 0.7795ms 404 +2018-08-02 14:52:17.506 +03:00 [INF] Loaded modules: +2018-08-02 14:52:17.521 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:52:17.521 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:52:17.521 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:52:17.521 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:52:17.522 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:52:17.985 +03:00 [INF] Initialized all modules. +2018-08-02 14:52:18.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:52:20.162 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:52:20.190 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:52:20.902 +03:00 [INF] Executed action /Index in 733.53190000000006ms +2018-08-02 14:52:20.917 +03:00 [INF] Request finished in 2819.1328ms 200 text/html; charset=utf-8 +2018-08-02 14:52:20.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:52:20.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:52:20.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:52:20.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:52:20.978 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:52:20.978 +03:00 [INF] Request finished in 1.1816ms 200 text/css +2018-08-02 14:52:20.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:52:20.988 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:52:20.988 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:52:20.988 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:52:20.988 +03:00 [INF] Request finished in 1.4836ms 200 text/css +2018-08-02 14:52:20.988 +03:00 [INF] Request finished in 10.6682ms 200 text/css +2018-08-02 14:52:20.988 +03:00 [INF] Request finished in 16.1175ms 200 text/css +2018-08-02 14:52:20.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:52:20.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:52:20.997 +03:00 [INF] Request finished in 1.4769ms 200 text/css +2018-08-02 14:52:20.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:52:21.001 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:52:21.001 +03:00 [INF] Request finished in 32.6359ms 200 text/css +2018-08-02 14:52:21.002 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:52:21.002 +03:00 [INF] Request finished in 3.7219ms 200 text/css +2018-08-02 14:52:21.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:52:21.007 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:52:21.007 +03:00 [INF] Request finished in 1.5961ms 200 text/css +2018-08-02 14:52:21.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:52:21.011 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:52:21.012 +03:00 [INF] Request finished in 1.3497ms 200 application/javascript +2018-08-02 14:52:21.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:52:21.023 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:52:21.023 +03:00 [INF] Request finished in 6.469ms 200 application/javascript +2018-08-02 14:52:21.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:52:21.031 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:52:21.031 +03:00 [INF] Request finished in 1.4421ms 200 application/javascript +2018-08-02 14:52:21.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:52:21.041 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:52:21.041 +03:00 [INF] Request finished in 5.1127ms 200 application/javascript +2018-08-02 14:52:21.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:52:21.046 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:52:21.046 +03:00 [INF] Request finished in 2.3378ms 200 application/javascript +2018-08-02 14:52:21.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:52:21.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:52:21.064 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:52:21.064 +03:00 [INF] Request finished in 0.8082ms 200 application/javascript +2018-08-02 14:52:21.064 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:52:21.064 +03:00 [INF] Request finished in 0.9548ms 200 application/javascript +2018-08-02 14:52:21.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:52:21.082 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:52:21.082 +03:00 [INF] Request finished in 4.1368ms 200 application/javascript +2018-08-02 14:52:21.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:52:21.089 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:52:21.090 +03:00 [INF] Request finished in 4.7088ms 200 application/javascript +2018-08-02 14:52:21.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:52:21.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:52:21.096 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:52:21.096 +03:00 [INF] Request finished in 4.3227ms 200 application/javascript +2018-08-02 14:52:21.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:52:21.104 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:52:21.105 +03:00 [INF] Request finished in 2.6734ms 200 application/javascript +2018-08-02 14:52:21.108 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:52:21.108 +03:00 [INF] Request finished in 14.975ms 200 application/javascript +2018-08-02 14:52:21.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:52:21.110 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:52:21.110 +03:00 [INF] Request finished in 1.4265ms 200 application/javascript +2018-08-02 14:52:21.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:52:21.122 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:52:21.122 +03:00 [INF] Request finished in 1.8015ms 200 application/javascript +2018-08-02 14:52:21.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:52:21.124 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:52:21.124 +03:00 [INF] Request finished in 1.6477ms 200 application/javascript +2018-08-02 14:52:21.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:52:21.128 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:52:21.128 +03:00 [INF] Request finished in 2.8262ms 200 application/javascript +2018-08-02 14:52:21.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:52:21.138 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:52:21.138 +03:00 [INF] Request finished in 2.2363ms 200 application/javascript +2018-08-02 14:52:21.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:52:21.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:52:21.142 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:52:21.142 +03:00 [INF] Request finished in 2.1621ms 200 application/javascript +2018-08-02 14:52:21.142 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:52:21.143 +03:00 [INF] Request finished in 1.203ms 200 application/javascript +2018-08-02 14:52:21.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:52:21.155 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:52:21.155 +03:00 [INF] Request finished in 1.3933ms 200 application/javascript +2018-08-02 14:52:21.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:52:21.172 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:52:21.172 +03:00 [INF] Request finished in 1.82ms 200 application/javascript +2018-08-02 14:52:21.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:52:21.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:52:21.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:52:21.195 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:52:21.196 +03:00 [INF] Request finished in 1.1508ms 200 application/javascript +2018-08-02 14:52:21.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:52:21.208 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:52:21.208 +03:00 [INF] Request finished in 1.0886ms 200 application/javascript +2018-08-02 14:52:21.215 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:52:21.217 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:52:21.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:52:21.229 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:52:21.229 +03:00 [INF] Request finished in 2.6548ms 200 image/svg+xml +2018-08-02 14:52:21.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:52:21.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:52:21.239 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:52:21.239 +03:00 [INF] Request finished in 0.7145ms 200 image/png +2018-08-02 14:52:21.239 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:52:21.240 +03:00 [INF] Request finished in 1.4584ms 200 image/png +2018-08-02 14:52:21.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:52:21.247 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:52:21.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:52:21.247 +03:00 [INF] Request finished in 0.9516ms 200 image/png +2018-08-02 14:52:21.248 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:52:21.248 +03:00 [INF] Request finished in 1.1181ms 200 image/png +2018-08-02 14:52:21.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:52:21.266 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:52:21.266 +03:00 [INF] Request finished in 1.092ms 200 image/png +2018-08-02 14:52:21.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:52:21.275 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:52:21.275 +03:00 [INF] Request finished in 1.1369ms 200 image/png +2018-08-02 14:52:21.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:52:21.282 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:52:21.282 +03:00 [INF] Request finished in 1.5276ms 200 image/png +2018-08-02 14:52:21.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:52:21.288 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:52:21.288 +03:00 [INF] Request finished in 1.2267ms 200 image/png +2018-08-02 14:52:21.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:52:21.289 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:52:21.289 +03:00 [INF] Request finished in 1.0503ms 200 image/png +2018-08-02 14:52:21.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:52:21.292 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:52:21.292 +03:00 [INF] Request finished in 1.5575ms 200 image/png +2018-08-02 14:52:21.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:52:21.296 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:52:21.296 +03:00 [INF] Request finished in 0.9094ms 200 image/png +2018-08-02 14:52:21.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:52:21.298 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:52:21.299 +03:00 [INF] Request finished in 1.9102ms 200 image/png +2018-08-02 14:52:21.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:52:21.304 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:52:21.304 +03:00 [INF] Request finished in 1.444ms 200 image/png +2018-08-02 14:52:21.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:52:21.308 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:52:21.309 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:52:21.309 +03:00 [INF] Request finished in 2.6008ms 200 image/png +2018-08-02 14:52:21.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:52:21.312 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:52:21.314 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:52:21.314 +03:00 [INF] Request finished in 3.1257ms 200 image/png +2018-08-02 14:52:21.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:52:21.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:52:21.324 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:52:21.324 +03:00 [INF] Request finished in 0.9496ms 200 image/png +2018-08-02 14:52:21.324 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:52:21.324 +03:00 [INF] Request finished in 0.8288ms 200 image/png +2018-08-02 14:52:21.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:52:21.327 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:52:21.327 +03:00 [INF] Request finished in 1.7773ms 200 image/svg+xml +2018-08-02 14:52:21.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:52:21.340 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:52:21.340 +03:00 [INF] Request finished in 1.9165ms 200 image/png +2018-08-02 14:52:21.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:52:21.344 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:52:21.344 +03:00 [INF] Request finished in 1.2957ms 200 image/png +2018-08-02 14:52:21.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:52:21.347 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:52:21.347 +03:00 [INF] Request finished in 2.4257ms 200 image/png +2018-08-02 14:52:21.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:52:21.354 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:52:21.354 +03:00 [INF] Request finished in 1.283ms 200 image/png +2018-08-02 14:52:21.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:52:21.358 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:52:21.358 +03:00 [INF] Request finished in 1.7275ms 200 image/png +2018-08-02 14:52:21.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:52:21.368 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:52:21.369 +03:00 [INF] Request finished in 5.3428ms 200 image/png +2018-08-02 14:52:21.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:52:21.376 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:52:21.376 +03:00 [INF] Request finished in 2.1899ms 200 image/png +2018-08-02 14:52:21.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:52:21.387 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:52:21.387 +03:00 [INF] Request finished in 3.7488ms 200 image/png +2018-08-02 14:52:21.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:52:21.391 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:52:21.392 +03:00 [INF] Request finished in 3.2052ms 200 image/png +2018-08-02 14:52:21.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:52:21.399 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:52:21.399 +03:00 [INF] Request finished in 2.3302ms 200 image/png +2018-08-02 14:52:21.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:52:21.408 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:52:21.408 +03:00 [INF] Request finished in 1.6643ms 200 image/png +2018-08-02 14:52:21.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:52:21.412 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:52:21.414 +03:00 [INF] Request finished in 4.9833ms 200 image/png +2018-08-02 14:52:21.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:52:21.422 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:52:21.422 +03:00 [INF] Request finished in 1.8258ms 200 image/png +2018-08-02 14:52:21.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:52:21.424 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:52:21.424 +03:00 [INF] Request finished in 1.5593ms 200 image/png +2018-08-02 14:52:21.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:52:21.433 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:52:21.433 +03:00 [INF] Request finished in 3.1232ms 200 image/png +2018-08-02 14:52:21.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:52:21.438 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:52:21.439 +03:00 [INF] Request finished in 1.4316ms 200 image/png +2018-08-02 14:52:21.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:52:21.468 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:52:21.468 +03:00 [INF] Request finished in 10.9153ms 200 image/jpeg +2018-08-02 14:52:21.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:52:21.491 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:52:21.491 +03:00 [INF] Request finished in 2.9563ms 200 font/woff2 +2018-08-02 14:52:21.495 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 176.2238ms. +2018-08-02 14:52:21.528 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:52:21.529 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 313.52320000000003ms +2018-08-02 14:52:21.529 +03:00 [INF] Request finished in 351.5478ms 200 text/plain; charset=utf-8 +2018-08-02 14:52:21.545 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 231.5873ms. +2018-08-02 14:52:21.546 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:52:21.546 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 329.3097ms +2018-08-02 14:52:21.547 +03:00 [INF] Request finished in 354.1686ms 200 text/plain; charset=utf-8 +2018-08-02 14:52:22.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:52:22.869 +03:00 [INF] Request finished in 3.4996ms 404 +2018-08-02 14:54:57.915 +03:00 [INF] Loaded modules: +2018-08-02 14:54:57.932 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:54:57.933 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:54:57.934 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:54:57.934 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:54:58.387 +03:00 [INF] Initialized all modules. +2018-08-02 14:54:58.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:55:00.871 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:55:00.900 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:55:01.578 +03:00 [INF] Executed action /Index in 701.9419ms +2018-08-02 14:55:01.605 +03:00 [INF] Request finished in 3047.1415ms 200 text/html; charset=utf-8 +2018-08-02 14:55:01.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:55:01.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:55:01.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:55:01.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:55:01.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:55:01.653 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:55:01.653 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:55:01.653 +03:00 [INF] Request finished in 4.644ms 200 text/css +2018-08-02 14:55:01.653 +03:00 [INF] Request finished in 1.4968ms 200 text/css +2018-08-02 14:55:01.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:55:01.663 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:55:01.663 +03:00 [INF] Request finished in 14.2557ms 200 text/css +2018-08-02 14:55:01.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:55:01.663 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:55:01.663 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:55:01.663 +03:00 [INF] Request finished in 8.8478ms 200 text/css +2018-08-02 14:55:01.663 +03:00 [INF] Request finished in 15.8192ms 200 text/css +2018-08-02 14:55:01.664 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:55:01.664 +03:00 [INF] Request finished in 1.5825ms 200 text/css +2018-08-02 14:55:01.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:55:01.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:55:01.673 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:55:01.673 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:55:01.674 +03:00 [INF] Request finished in 0.9503ms 200 text/css +2018-08-02 14:55:01.674 +03:00 [INF] Request finished in 1.2935ms 200 application/javascript +2018-08-02 14:55:01.675 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:55:01.675 +03:00 [INF] Request finished in 31.7686ms 200 text/css +2018-08-02 14:55:01.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:55:01.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:55:01.683 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:55:01.683 +03:00 [INF] Request finished in 1.2575ms 200 application/javascript +2018-08-02 14:55:01.687 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:55:01.688 +03:00 [INF] Request finished in 11.7751ms 200 application/javascript +2018-08-02 14:55:01.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:55:01.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:55:01.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:55:01.691 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:55:01.691 +03:00 [INF] Request finished in 3.3883ms 200 application/javascript +2018-08-02 14:55:01.696 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:55:01.697 +03:00 [INF] Request finished in 5.9863ms 200 application/javascript +2018-08-02 14:55:01.697 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:55:01.697 +03:00 [INF] Request finished in 8.1168ms 200 application/javascript +2018-08-02 14:55:01.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:55:01.701 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:55:01.701 +03:00 [INF] Request finished in 1.9936ms 200 application/javascript +2018-08-02 14:55:01.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:55:01.721 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:55:01.721 +03:00 [INF] Request finished in 1.1875ms 200 application/javascript +2018-08-02 14:55:01.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:55:01.726 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:55:01.727 +03:00 [INF] Request finished in 4.3925ms 200 application/javascript +2018-08-02 14:55:01.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:55:01.752 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:55:01.753 +03:00 [INF] Request finished in 14.4549ms 200 application/javascript +2018-08-02 14:55:01.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:55:01.759 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:55:01.759 +03:00 [INF] Request finished in 1.0461ms 200 application/javascript +2018-08-02 14:55:01.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:55:01.767 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:55:01.767 +03:00 [INF] Request finished in 6.1971ms 200 application/javascript +2018-08-02 14:55:01.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:55:01.772 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:55:01.773 +03:00 [INF] Request finished in 1.1296ms 200 application/javascript +2018-08-02 14:55:01.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:55:01.777 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:55:01.778 +03:00 [INF] Request finished in 2.505ms 200 application/javascript +2018-08-02 14:55:01.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:55:01.787 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:55:01.788 +03:00 [INF] Request finished in 6.7253ms 200 application/javascript +2018-08-02 14:55:01.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:55:01.793 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:55:01.794 +03:00 [INF] Request finished in 1.6374ms 200 application/javascript +2018-08-02 14:55:01.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:55:01.805 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:55:01.805 +03:00 [INF] Request finished in 1.0364ms 200 application/javascript +2018-08-02 14:55:01.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:55:01.819 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:55:01.820 +03:00 [INF] Request finished in 2.0317ms 200 application/javascript +2018-08-02 14:55:01.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:55:01.823 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:55:01.824 +03:00 [INF] Request finished in 1.4027ms 200 application/javascript +2018-08-02 14:55:01.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:55:01.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:55:01.832 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:55:01.832 +03:00 [INF] Request finished in 2.103ms 200 application/javascript +2018-08-02 14:55:01.832 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:55:01.833 +03:00 [INF] Request finished in 1.0138ms 200 application/javascript +2018-08-02 14:55:01.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:55:01.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:55:01.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:55:01.846 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:55:01.847 +03:00 [INF] Request finished in 2.3401ms 200 application/javascript +2018-08-02 14:55:01.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:55:01.852 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:55:01.852 +03:00 [INF] Request finished in 0.8981ms 200 application/javascript +2018-08-02 14:55:01.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:55:01.868 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:55:01.868 +03:00 [INF] Request finished in 2.0823ms 200 image/png +2018-08-02 14:55:01.870 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:55:01.870 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:55:01.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:55:01.876 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:55:01.876 +03:00 [INF] Request finished in 1.3303ms 200 image/svg+xml +2018-08-02 14:55:01.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:55:01.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:55:01.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:55:01.891 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:55:01.891 +03:00 [INF] Request finished in 0.9081ms 200 image/png +2018-08-02 14:55:01.892 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:55:01.892 +03:00 [INF] Request finished in 1.3321ms 200 image/png +2018-08-02 14:55:01.892 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:55:01.892 +03:00 [INF] Request finished in 2.0613ms 200 image/png +2018-08-02 14:55:01.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:55:01.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:55:01.901 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:55:01.901 +03:00 [INF] Request finished in 0.9769ms 200 image/png +2018-08-02 14:55:01.901 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:55:01.901 +03:00 [INF] Request finished in 0.771ms 200 image/png +2018-08-02 14:55:01.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:55:01.904 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:55:01.904 +03:00 [INF] Request finished in 0.8523ms 200 image/png +2018-08-02 14:55:01.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:55:01.905 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:55:01.905 +03:00 [INF] Request finished in 1.6172ms 200 image/png +2018-08-02 14:55:01.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:55:01.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:55:01.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:55:01.935 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:55:01.935 +03:00 [INF] Request finished in 0.8742ms 200 image/png +2018-08-02 14:55:01.936 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:55:01.936 +03:00 [INF] Request finished in 2.5046ms 200 image/png +2018-08-02 14:55:01.936 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:55:01.936 +03:00 [INF] Request finished in 1.7266ms 200 image/png +2018-08-02 14:55:01.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:55:01.940 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:55:01.940 +03:00 [INF] Request finished in 1.1313ms 200 image/png +2018-08-02 14:55:01.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:55:01.955 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:55:01.955 +03:00 [INF] Request finished in 1.0127ms 200 image/png +2018-08-02 14:55:01.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:55:01.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:55:01.958 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:55:01.958 +03:00 [INF] Request finished in 2.5652ms 200 image/png +2018-08-02 14:55:01.958 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:55:01.958 +03:00 [INF] Request finished in 1.486ms 200 image/svg+xml +2018-08-02 14:55:01.964 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:55:01.966 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:55:01.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:55:01.971 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:55:01.971 +03:00 [INF] Request finished in 1.1029ms 200 image/png +2018-08-02 14:55:01.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:55:01.974 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:55:01.974 +03:00 [INF] Request finished in 2.6146ms 200 image/png +2018-08-02 14:55:01.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:55:01.987 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:55:01.987 +03:00 [INF] Request finished in 1.6766ms 200 image/png +2018-08-02 14:55:01.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:55:01.991 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:55:01.991 +03:00 [INF] Request finished in 3.3383ms 200 image/png +2018-08-02 14:55:02.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:55:02.007 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:55:02.007 +03:00 [INF] Request finished in 1.0474ms 200 image/png +2018-08-02 14:55:02.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:55:02.011 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:55:02.012 +03:00 [INF] Request finished in 2.1574ms 200 image/png +2018-08-02 14:55:02.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:55:02.021 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:55:02.022 +03:00 [INF] Request finished in 5.2455ms 200 image/png +2018-08-02 14:55:02.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:55:02.032 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:55:02.032 +03:00 [INF] Request finished in 2.1905ms 200 image/png +2018-08-02 14:55:02.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:55:02.034 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:55:02.034 +03:00 [INF] Request finished in 1.4674ms 200 image/png +2018-08-02 14:55:02.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:55:02.036 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:55:02.036 +03:00 [INF] Request finished in 0.9356ms 200 image/png +2018-08-02 14:55:02.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:55:02.038 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 61.9046ms. +2018-08-02 14:55:02.038 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:55:02.039 +03:00 [INF] Request finished in 1.7739ms 200 image/png +2018-08-02 14:55:02.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:55:02.054 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:55:02.054 +03:00 [INF] Request finished in 0.8773ms 200 image/png +2018-08-02 14:55:02.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:55:02.058 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:55:02.058 +03:00 [INF] Request finished in 1.0147ms 200 image/png +2018-08-02 14:55:02.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:55:02.067 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:55:02.067 +03:00 [INF] Request finished in 0.8812ms 200 image/png +2018-08-02 14:55:02.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:55:02.068 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:55:02.068 +03:00 [INF] Request finished in 0.896ms 200 image/png +2018-08-02 14:55:02.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:55:02.077 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:55:02.077 +03:00 [INF] Request finished in 1.1495ms 200 image/png +2018-08-02 14:55:02.081 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:55:02.082 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 211.6523ms +2018-08-02 14:55:02.082 +03:00 [INF] Request finished in 248.7517ms 200 text/plain; charset=utf-8 +2018-08-02 14:55:02.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:55:02.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:55:02.083 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:55:02.083 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:55:02.083 +03:00 [INF] Request finished in 0.6931ms 200 image/png +2018-08-02 14:55:02.083 +03:00 [INF] Request finished in 0.6614ms 200 image/png +2018-08-02 14:55:02.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:55:02.087 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:55:02.087 +03:00 [INF] Request finished in 0.9909ms 200 image/png +2018-08-02 14:55:02.095 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 127.56490000000001ms. +2018-08-02 14:55:02.097 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:55:02.097 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 227.33450000000002ms +2018-08-02 14:55:02.098 +03:00 [INF] Request finished in 257.4372ms 200 text/plain; charset=utf-8 +2018-08-02 14:55:02.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:55:02.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:55:02.163 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:55:02.163 +03:00 [INF] Request finished in 2.961ms 200 font/woff2 +2018-08-02 14:55:02.168 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:55:02.168 +03:00 [INF] Request finished in 10.6484ms 200 image/jpeg +2018-08-02 14:55:03.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:55:03.187 +03:00 [INF] Request finished in 3.1096ms 404 +2018-08-02 14:57:15.539 +03:00 [INF] Loaded modules: +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:57:15.556 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:57:15.557 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:57:16.009 +03:00 [INF] Initialized all modules. +2018-08-02 14:57:16.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:57:18.736 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:57:18.765 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:57:19.517 +03:00 [INF] Executed action /Index in 774.99290000000008ms +2018-08-02 14:57:19.536 +03:00 [INF] Request finished in 3214.1902ms 200 text/html; charset=utf-8 +2018-08-02 14:57:19.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:57:19.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:57:19.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:57:19.577 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:57:19.577 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:57:19.577 +03:00 [INF] Request finished in 8.8546ms 200 text/css +2018-08-02 14:57:19.577 +03:00 [INF] Request finished in 1.427ms 200 text/css +2018-08-02 14:57:19.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:57:19.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:57:19.591 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:57:19.591 +03:00 [INF] Request finished in 2.6501ms 200 text/css +2018-08-02 14:57:19.591 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:57:19.593 +03:00 [INF] Request finished in 6.8238ms 200 text/css +2018-08-02 14:57:19.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:57:19.596 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:57:19.596 +03:00 [INF] Request finished in 1.138ms 200 text/css +2018-08-02 14:57:19.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:57:19.602 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:57:19.602 +03:00 [INF] Request finished in 2.2825ms 200 text/css +2018-08-02 14:57:19.608 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:57:19.608 +03:00 [INF] Request finished in 40.8505ms 200 text/css +2018-08-02 14:57:19.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:57:19.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:57:19.610 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:57:19.610 +03:00 [INF] Request finished in 0.8581ms 200 text/css +2018-08-02 14:57:19.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:57:19.617 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:57:19.617 +03:00 [INF] Request finished in 7.3189ms 200 application/javascript +2018-08-02 14:57:19.618 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:57:19.618 +03:00 [INF] Request finished in 8.8366ms 200 application/javascript +2018-08-02 14:57:19.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:57:19.623 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:57:19.624 +03:00 [INF] Request finished in 1.7925ms 200 application/javascript +2018-08-02 14:57:19.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:57:19.639 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:57:19.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:57:19.639 +03:00 [INF] Request finished in 10.4497ms 200 application/javascript +2018-08-02 14:57:19.641 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:57:19.641 +03:00 [INF] Request finished in 2.3409ms 200 application/javascript +2018-08-02 14:57:19.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:57:19.643 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:57:19.643 +03:00 [INF] Request finished in 1.0305ms 200 application/javascript +2018-08-02 14:57:19.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:57:19.651 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:57:19.651 +03:00 [INF] Request finished in 5.0757ms 200 application/javascript +2018-08-02 14:57:19.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:57:19.655 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:57:19.655 +03:00 [INF] Request finished in 1.6073ms 200 application/javascript +2018-08-02 14:57:19.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:57:19.677 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:57:19.677 +03:00 [INF] Request finished in 2.1192ms 200 application/javascript +2018-08-02 14:57:19.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:57:19.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:57:19.688 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:57:19.688 +03:00 [INF] Request finished in 0.8757ms 200 application/javascript +2018-08-02 14:57:19.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:57:19.701 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:57:19.701 +03:00 [INF] Request finished in 13.9444ms 200 application/javascript +2018-08-02 14:57:19.702 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:57:19.702 +03:00 [INF] Request finished in 1.6964ms 200 application/javascript +2018-08-02 14:57:19.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:57:19.712 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:57:19.712 +03:00 [INF] Request finished in 0.905ms 200 application/javascript +2018-08-02 14:57:19.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:57:19.725 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:57:19.725 +03:00 [INF] Request finished in 1.8643ms 200 application/javascript +2018-08-02 14:57:19.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:57:19.733 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:57:19.733 +03:00 [INF] Request finished in 2.5089ms 200 application/javascript +2018-08-02 14:57:19.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:57:19.740 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:57:19.740 +03:00 [INF] Request finished in 1.9199ms 200 application/javascript +2018-08-02 14:57:19.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:57:19.741 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:57:19.741 +03:00 [INF] Request finished in 1.7822ms 200 application/javascript +2018-08-02 14:57:19.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:57:19.743 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:57:19.743 +03:00 [INF] Request finished in 1.4406ms 200 application/javascript +2018-08-02 14:57:19.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:57:19.751 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:57:19.751 +03:00 [INF] Request finished in 2.9734ms 200 application/javascript +2018-08-02 14:57:19.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:57:19.771 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:57:19.771 +03:00 [INF] Request finished in 2.1161ms 200 application/javascript +2018-08-02 14:57:19.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:57:19.778 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:57:19.778 +03:00 [INF] Request finished in 1.1801ms 200 application/javascript +2018-08-02 14:57:19.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:57:19.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:57:19.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:57:19.792 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:57:19.792 +03:00 [INF] Request finished in 1.029ms 200 application/javascript +2018-08-02 14:57:19.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:57:19.795 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:57:19.796 +03:00 [INF] Request finished in 1.4531ms 200 application/javascript +2018-08-02 14:57:19.807 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:19.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:57:19.808 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:57:19.809 +03:00 [INF] Request finished in 1.1243ms 200 image/svg+xml +2018-08-02 14:57:19.810 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:19.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:57:19.821 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:57:19.821 +03:00 [INF] Request finished in 0.85ms 200 image/png +2018-08-02 14:57:19.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:57:19.838 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:57:19.838 +03:00 [INF] Request finished in 1.1026ms 200 image/png +2018-08-02 14:57:19.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:57:19.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:57:19.845 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:57:19.845 +03:00 [INF] Request finished in 1.2895ms 200 image/png +2018-08-02 14:57:19.845 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:57:19.845 +03:00 [INF] Request finished in 0.7929ms 200 image/png +2018-08-02 14:57:19.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:57:19.857 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:57:19.857 +03:00 [INF] Request finished in 1.2658ms 200 image/png +2018-08-02 14:57:19.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:57:19.862 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:57:19.863 +03:00 [INF] Request finished in 1.5645ms 200 image/png +2018-08-02 14:57:19.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:57:19.865 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:57:19.866 +03:00 [INF] Request finished in 1.6874ms 200 image/png +2018-08-02 14:57:19.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:57:19.870 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:57:19.870 +03:00 [INF] Request finished in 1.498ms 200 image/png +2018-08-02 14:57:19.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:57:19.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:57:19.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:57:19.881 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:57:19.882 +03:00 [INF] Request finished in 3.0574ms 200 image/png +2018-08-02 14:57:19.881 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:57:19.882 +03:00 [INF] Request finished in 1.9122ms 200 image/png +2018-08-02 14:57:19.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:57:19.883 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:57:19.886 +03:00 [INF] Request finished in 4.8674ms 200 image/png +2018-08-02 14:57:19.886 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:57:19.886 +03:00 [INF] Request finished in 1.9508ms 200 image/png +2018-08-02 14:57:19.896 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:57:19.896 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:57:19.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:57:19.899 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:57:19.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:57:19.899 +03:00 [INF] Request finished in 1.9026ms 200 image/png +2018-08-02 14:57:19.900 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:57:19.901 +03:00 [INF] Request finished in 1.6379ms 200 image/png +2018-08-02 14:57:19.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:57:19.903 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:57:19.903 +03:00 [INF] Request finished in 1.3568ms 200 image/png +2018-08-02 14:57:19.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:57:19.906 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:57:19.908 +03:00 [INF] Request finished in 2.1266ms 200 image/png +2018-08-02 14:57:19.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:57:19.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:57:19.918 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:57:19.918 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:57:19.918 +03:00 [INF] Request finished in 2.0027ms 200 image/png +2018-08-02 14:57:19.918 +03:00 [INF] Request finished in 6.3044ms 200 image/svg+xml +2018-08-02 14:57:19.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:57:19.924 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:57:19.924 +03:00 [INF] Request finished in 1.1152ms 200 image/png +2018-08-02 14:57:19.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:57:19.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:57:19.941 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:57:19.941 +03:00 [INF] Request finished in 0.8894ms 200 image/png +2018-08-02 14:57:19.942 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:57:19.942 +03:00 [INF] Request finished in 0.9933ms 200 image/png +2018-08-02 14:57:19.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:57:19.946 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:57:19.946 +03:00 [INF] Request finished in 0.885ms 200 image/png +2018-08-02 14:57:19.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:57:19.955 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:57:19.955 +03:00 [INF] Request finished in 1.0537ms 200 image/png +2018-08-02 14:57:19.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:57:19.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:57:19.959 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:57:19.959 +03:00 [INF] Request finished in 2.0667ms 200 image/png +2018-08-02 14:57:19.959 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:57:19.959 +03:00 [INF] Request finished in 0.9323ms 200 image/png +2018-08-02 14:57:19.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:57:19.961 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:57:19.962 +03:00 [INF] Request finished in 1.0906ms 200 image/png +2018-08-02 14:57:19.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:57:19.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:57:19.971 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:57:19.971 +03:00 [INF] Request finished in 1.2636ms 200 image/png +2018-08-02 14:57:19.972 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:57:19.972 +03:00 [INF] Request finished in 0.9915ms 200 image/png +2018-08-02 14:57:19.981 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 75.2551ms. +2018-08-02 14:57:19.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:57:19.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:57:19.984 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:57:19.984 +03:00 [INF] Request finished in 1.4547ms 200 image/png +2018-08-02 14:57:19.984 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:57:19.984 +03:00 [INF] Request finished in 1.8275ms 200 image/png +2018-08-02 14:57:19.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:57:19.986 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:57:19.986 +03:00 [INF] Request finished in 1.1535ms 200 image/png +2018-08-02 14:57:19.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:57:19.993 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:57:19.993 +03:00 [INF] Request finished in 1.0656ms 200 image/png +2018-08-02 14:57:20.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:57:20.003 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:57:20.003 +03:00 [INF] Request finished in 3.2108ms 200 image/png +2018-08-02 14:57:20.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:57:20.009 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:57:20.009 +03:00 [INF] Request finished in 1.5981ms 200 image/png +2018-08-02 14:57:20.016 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:20.019 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 208.7836ms +2018-08-02 14:57:20.019 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 121.5048ms. +2018-08-02 14:57:20.019 +03:00 [INF] Request finished in 233.9133ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:20.019 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:20.020 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 212.8218ms +2018-08-02 14:57:20.020 +03:00 [INF] Request finished in 232.3799ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:20.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:57:20.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:57:20.028 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:57:20.028 +03:00 [INF] Request finished in 1.5365ms 200 font/woff2 +2018-08-02 14:57:20.031 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:57:20.031 +03:00 [INF] Request finished in 10.7761ms 200 image/jpeg +2018-08-02 14:57:21.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:57:21.061 +03:00 [INF] Request finished in 3.3568ms 404 +2018-08-02 14:57:35.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:57:35.561 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:57:35.562 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:57:35.594 +03:00 [INF] Executed action /Index in 32.716300000000004ms +2018-08-02 14:57:35.595 +03:00 [INF] Request finished in 354.4306ms 200 text/html; charset=utf-8 +2018-08-02 14:57:35.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:57:35.665 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:57:35.666 +03:00 [INF] Request finished in 4.7278ms 200 text/css +2018-08-02 14:57:35.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:57:35.667 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:57:35.667 +03:00 [INF] Request finished in 1.1159ms 200 text/css +2018-08-02 14:57:35.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:57:35.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:57:35.676 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:57:35.676 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:57:35.676 +03:00 [INF] Request finished in 0.7968ms 200 text/css +2018-08-02 14:57:35.676 +03:00 [INF] Request finished in 1.1163ms 200 text/css +2018-08-02 14:57:35.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:57:35.678 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:57:35.678 +03:00 [INF] Request finished in 1.359ms 200 text/css +2018-08-02 14:57:35.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:57:35.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:57:35.692 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:57:35.692 +03:00 [INF] Request finished in 1.4817ms 200 text/css +2018-08-02 14:57:35.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:57:35.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:57:35.694 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:57:35.694 +03:00 [INF] Request finished in 0.7941ms 200 text/css +2018-08-02 14:57:35.695 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:57:35.695 +03:00 [INF] Request finished in 0.9065ms 200 text/css +2018-08-02 14:57:35.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:57:35.696 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:57:35.696 +03:00 [INF] Request finished in 1.218ms 200 application/javascript +2018-08-02 14:57:35.698 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:57:35.699 +03:00 [INF] Request finished in 7.5088ms 200 application/javascript +2018-08-02 14:57:35.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:57:35.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:57:35.707 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:57:35.708 +03:00 [INF] Request finished in 2.9699ms 200 application/javascript +2018-08-02 14:57:35.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:57:35.711 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:57:35.712 +03:00 [INF] Request finished in 6.1068ms 200 application/javascript +2018-08-02 14:57:35.712 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:57:35.713 +03:00 [INF] Request finished in 3.4548ms 200 application/javascript +2018-08-02 14:57:35.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:57:35.736 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:57:35.736 +03:00 [INF] Request finished in 1.0093ms 200 application/javascript +2018-08-02 14:57:35.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:57:35.753 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:57:35.754 +03:00 [INF] Request finished in 1.1174ms 200 application/javascript +2018-08-02 14:57:35.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:57:35.762 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:57:35.762 +03:00 [INF] Request finished in 0.883ms 200 application/javascript +2018-08-02 14:57:35.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:57:35.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:57:35.780 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:57:35.781 +03:00 [INF] Request finished in 3.8729ms 200 application/javascript +2018-08-02 14:57:35.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:57:35.785 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:57:35.785 +03:00 [INF] Request finished in 2.3837ms 200 application/javascript +2018-08-02 14:57:35.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:57:35.790 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:57:35.791 +03:00 [INF] Request finished in 0.9909ms 200 application/javascript +2018-08-02 14:57:35.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:57:35.792 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:57:35.792 +03:00 [INF] Request finished in 13.0292ms 200 application/javascript +2018-08-02 14:57:35.793 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:57:35.793 +03:00 [INF] Request finished in 2.0436ms 200 application/javascript +2018-08-02 14:57:35.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:57:35.805 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:57:35.805 +03:00 [INF] Request finished in 0.9357ms 200 application/javascript +2018-08-02 14:57:35.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:57:35.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:57:35.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:57:35.815 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:57:35.815 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:57:35.816 +03:00 [INF] Request finished in 2.151ms 200 application/javascript +2018-08-02 14:57:35.815 +03:00 [INF] Request finished in 1.6539ms 200 application/javascript +2018-08-02 14:57:35.821 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:57:35.821 +03:00 [INF] Request finished in 8.6455ms 200 application/javascript +2018-08-02 14:57:35.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:57:35.822 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:57:35.823 +03:00 [INF] Request finished in 1.0309ms 200 application/javascript +2018-08-02 14:57:35.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:57:35.838 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:57:35.839 +03:00 [INF] Request finished in 1.3872ms 200 application/javascript +2018-08-02 14:57:35.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:57:35.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:57:35.840 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:57:35.840 +03:00 [INF] Request finished in 1.1046ms 200 application/javascript +2018-08-02 14:57:35.840 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:57:35.840 +03:00 [INF] Request finished in 1.3906ms 200 application/javascript +2018-08-02 14:57:35.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:57:35.861 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:35.863 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:57:35.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.1801000000000001ms. +2018-08-02 14:57:35.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:35.866 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.7305ms +2018-08-02 14:57:35.866 +03:00 [INF] Request finished in 21.4564ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:35.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:57:35.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:57:35.873 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:57:35.873 +03:00 [INF] Request finished in 1.805ms 200 application/javascript +2018-08-02 14:57:35.874 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:35.876 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:57:35.877 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1703ms. +2018-08-02 14:57:35.877 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:35.877 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.0591ms +2018-08-02 14:57:35.877 +03:00 [INF] Request finished in 8.6224ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:35.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:57:35.892 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:57:35.892 +03:00 [INF] Request finished in 1.8214ms 200 application/javascript +2018-08-02 14:57:35.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:57:35.929 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:57:35.930 +03:00 [INF] Request finished in 2.3322ms 200 image/svg+xml +2018-08-02 14:57:35.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:57:35.934 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:57:35.934 +03:00 [INF] Request finished in 1.7747ms 200 image/png +2018-08-02 14:57:35.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:57:35.938 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:57:35.939 +03:00 [INF] Request finished in 1.0034ms 200 image/png +2018-08-02 14:57:35.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:57:35.944 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:57:35.944 +03:00 [INF] Request finished in 1.0181ms 200 image/png +2018-08-02 14:57:35.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:57:35.958 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:57:35.958 +03:00 [INF] Request finished in 1.1246ms 200 image/png +2018-08-02 14:57:35.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:57:35.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:57:35.977 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:57:35.977 +03:00 [INF] Request finished in 0.7456ms 200 image/png +2018-08-02 14:57:35.977 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:57:35.978 +03:00 [INF] Request finished in 1.0456ms 200 image/png +2018-08-02 14:57:35.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:57:35.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:57:35.980 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:57:35.980 +03:00 [INF] Request finished in 0.9935ms 200 image/png +2018-08-02 14:57:35.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:57:35.980 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:57:35.980 +03:00 [INF] Request finished in 0.8862ms 200 image/png +2018-08-02 14:57:35.982 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:57:35.982 +03:00 [INF] Request finished in 2.05ms 200 image/png +2018-08-02 14:57:35.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:57:35.987 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:57:35.987 +03:00 [INF] Request finished in 2.2965ms 200 image/png +2018-08-02 14:57:35.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:57:35.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:57:35.993 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:57:35.993 +03:00 [INF] Request finished in 1.3619ms 200 image/png +2018-08-02 14:57:35.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:57:35.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:57:35.994 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:57:35.994 +03:00 [INF] Request finished in 0.8331ms 200 image/png +2018-08-02 14:57:35.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:57:35.994 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:57:35.994 +03:00 [INF] Request finished in 0.6322ms 200 image/png +2018-08-02 14:57:35.994 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:57:35.994 +03:00 [INF] Request finished in 1.0401ms 200 image/png +2018-08-02 14:57:35.994 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:57:35.995 +03:00 [INF] Request finished in 0.7815ms 200 image/png +2018-08-02 14:57:36.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:57:36.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:57:36.006 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:57:36.006 +03:00 [INF] Request finished in 0.9448ms 200 image/svg+xml +2018-08-02 14:57:36.007 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:57:36.007 +03:00 [INF] Request finished in 1.5497ms 200 image/png +2018-08-02 14:57:36.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:57:36.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:57:36.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:57:36.019 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:57:36.019 +03:00 [INF] Request finished in 1.0736ms 200 image/png +2018-08-02 14:57:36.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:57:36.020 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:57:36.020 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:57:36.020 +03:00 [INF] Request finished in 0.7655ms 200 image/png +2018-08-02 14:57:36.020 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:57:36.020 +03:00 [INF] Request finished in 1.418ms 200 image/png +2018-08-02 14:57:36.020 +03:00 [INF] Request finished in 2.0196ms 200 image/png +2018-08-02 14:57:36.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:57:36.025 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:57:36.025 +03:00 [INF] Request finished in 0.8486ms 200 image/png +2018-08-02 14:57:36.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:57:36.036 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:57:36.036 +03:00 [INF] Request finished in 0.9156ms 200 image/png +2018-08-02 14:57:36.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:57:36.040 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:57:36.040 +03:00 [INF] Request finished in 1.004ms 200 image/png +2018-08-02 14:57:36.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:57:36.045 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:57:36.045 +03:00 [INF] Request finished in 2.2285ms 200 image/png +2018-08-02 14:57:36.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:57:36.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:57:36.050 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:57:36.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:57:36.051 +03:00 [INF] Request finished in 1.5107ms 200 image/png +2018-08-02 14:57:36.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:57:36.051 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:57:36.052 +03:00 [INF] Request finished in 1.0112ms 200 image/png +2018-08-02 14:57:36.052 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:57:36.052 +03:00 [INF] Request finished in 3.1582ms 200 image/png +2018-08-02 14:57:36.053 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:57:36.053 +03:00 [INF] Request finished in 2.5432ms 200 font/woff2 +2018-08-02 14:57:36.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:57:36.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:57:36.062 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:57:36.062 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:57:36.062 +03:00 [INF] Request finished in 1.2275ms 200 image/png +2018-08-02 14:57:36.062 +03:00 [INF] Request finished in 0.7575ms 200 image/png +2018-08-02 14:57:36.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:57:36.070 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:57:36.070 +03:00 [INF] Request finished in 0.8787ms 200 image/png +2018-08-02 14:57:36.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:57:36.074 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:57:36.075 +03:00 [INF] Request finished in 3.861ms 200 image/png +2018-08-02 14:57:36.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:57:36.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:57:36.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:57:36.091 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:57:36.091 +03:00 [INF] Request finished in 1.3176ms 200 image/png +2018-08-02 14:57:36.091 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:57:36.091 +03:00 [INF] Request finished in 0.8071ms 200 image/png +2018-08-02 14:57:36.101 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:57:36.102 +03:00 [INF] Request finished in 11.776ms 200 image/jpeg +2018-08-02 14:57:37.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:57:37.627 +03:00 [INF] Request finished in 2.2762ms 404 +2018-08-02 14:57:51.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:57:51.683 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:57:51.683 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:57:51.713 +03:00 [INF] Executed action /Index in 30.2068ms +2018-08-02 14:57:51.714 +03:00 [INF] Request finished in 451.74ms 200 text/html; charset=utf-8 +2018-08-02 14:57:51.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:57:51.775 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:57:51.775 +03:00 [INF] Request finished in 5.0467ms 200 text/css +2018-08-02 14:57:51.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:57:51.777 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:57:51.777 +03:00 [INF] Request finished in 0.9854ms 200 text/css +2018-08-02 14:57:51.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:57:51.782 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:57:51.782 +03:00 [INF] Request finished in 2.7029ms 200 text/css +2018-08-02 14:57:51.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:57:51.787 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:57:51.787 +03:00 [INF] Request finished in 1.2423ms 200 text/css +2018-08-02 14:57:51.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:57:51.788 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:57:51.788 +03:00 [INF] Request finished in 1.0283ms 200 text/css +2018-08-02 14:57:51.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:57:51.803 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:57:51.803 +03:00 [INF] Request finished in 1.3365ms 200 text/css +2018-08-02 14:57:51.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:57:51.807 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:57:51.808 +03:00 [INF] Request finished in 1.0919ms 200 text/css +2018-08-02 14:57:51.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:57:51.820 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:57:51.820 +03:00 [INF] Request finished in 1.2593ms 200 text/css +2018-08-02 14:57:51.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:57:51.839 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:57:51.840 +03:00 [INF] Request finished in 1.7602ms 200 application/javascript +2018-08-02 14:57:51.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:57:51.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:57:51.846 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:57:51.846 +03:00 [INF] Request finished in 0.7284ms 200 application/javascript +2018-08-02 14:57:51.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:57:51.852 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:57:51.853 +03:00 [INF] Request finished in 6.2356ms 200 application/javascript +2018-08-02 14:57:51.854 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:57:51.854 +03:00 [INF] Request finished in 8.7799ms 200 application/javascript +2018-08-02 14:57:51.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:57:51.863 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:57:51.865 +03:00 [INF] Request finished in 4.3286ms 200 application/javascript +2018-08-02 14:57:51.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:57:51.881 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:57:51.882 +03:00 [INF] Request finished in 3.282ms 200 application/javascript +2018-08-02 14:57:51.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:57:51.900 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:57:51.900 +03:00 [INF] Request finished in 5.564ms 200 application/javascript +2018-08-02 14:57:51.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:57:51.921 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:57:51.921 +03:00 [INF] Request finished in 4.7942ms 200 application/javascript +2018-08-02 14:57:51.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:57:51.923 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:57:51.923 +03:00 [INF] Request finished in 2.047ms 200 application/javascript +2018-08-02 14:57:51.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:57:51.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:57:51.931 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:57:51.931 +03:00 [INF] Request finished in 1.5699ms 200 application/javascript +2018-08-02 14:57:51.935 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:57:51.935 +03:00 [INF] Request finished in 8.8934ms 200 application/javascript +2018-08-02 14:57:51.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:57:51.937 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:57:51.937 +03:00 [INF] Request finished in 1.0023ms 200 application/javascript +2018-08-02 14:57:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:57:51.939 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:57:51.939 +03:00 [INF] Request finished in 0.8806ms 200 application/javascript +2018-08-02 14:57:51.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:57:51.946 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:57:51.946 +03:00 [INF] Request finished in 1.3687ms 200 application/javascript +2018-08-02 14:57:51.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:57:51.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:57:51.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:57:51.959 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:57:51.959 +03:00 [INF] Request finished in 1.4261ms 200 application/javascript +2018-08-02 14:57:51.959 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:57:51.959 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:57:51.959 +03:00 [INF] Request finished in 1.8574ms 200 application/javascript +2018-08-02 14:57:51.959 +03:00 [INF] Request finished in 4.1292ms 200 application/javascript +2018-08-02 14:57:51.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:57:51.969 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:57:51.969 +03:00 [INF] Request finished in 1.1785ms 200 application/javascript +2018-08-02 14:57:51.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:57:51.974 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:57:51.974 +03:00 [INF] Request finished in 1.1217ms 200 application/javascript +2018-08-02 14:57:51.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:57:51.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:57:51.978 +03:00 [INF] Request finished in 1.1445ms 200 application/javascript +2018-08-02 14:57:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:57:51.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:57:51.987 +03:00 [INF] Request finished in 2.7124ms 200 application/javascript +2018-08-02 14:57:51.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:57:52.004 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:52.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:57:52.006 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:57:52.006 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5867ms. +2018-08-02 14:57:52.007 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:52.007 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.0338000000000003ms +2018-08-02 14:57:52.007 +03:00 [INF] Request finished in 17.4199ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:52.008 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:57:52.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:57:52.011 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:57:52.011 +03:00 [INF] Request finished in 1.0692ms 200 application/javascript +2018-08-02 14:57:52.011 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:57:52.011 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.28200000000000003ms. +2018-08-02 14:57:52.012 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:57:52.012 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.3336ms +2018-08-02 14:57:52.012 +03:00 [INF] Request finished in 7.1527ms 200 text/plain; charset=utf-8 +2018-08-02 14:57:52.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:57:52.016 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:57:52.016 +03:00 [INF] Request finished in 2.708ms 200 application/javascript +2018-08-02 14:57:52.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:57:52.035 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:57:52.035 +03:00 [INF] Request finished in 1.5481ms 200 image/svg+xml +2018-08-02 14:57:52.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:57:52.059 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:57:52.059 +03:00 [INF] Request finished in 1.436ms 200 image/png +2018-08-02 14:57:52.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:57:52.062 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:57:52.062 +03:00 [INF] Request finished in 2.32ms 200 image/png +2018-08-02 14:57:52.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:57:52.070 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:57:52.070 +03:00 [INF] Request finished in 0.8713ms 200 image/png +2018-08-02 14:57:52.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:57:52.089 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:57:52.089 +03:00 [INF] Request finished in 1.1846ms 200 image/png +2018-08-02 14:57:52.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:57:52.096 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:57:52.096 +03:00 [INF] Request finished in 1.174ms 200 image/png +2018-08-02 14:57:52.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:57:52.110 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:57:52.110 +03:00 [INF] Request finished in 5.8274ms 200 image/png +2018-08-02 14:57:52.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:57:52.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:57:52.114 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:57:52.115 +03:00 [INF] Request finished in 2.7094ms 200 image/png +2018-08-02 14:57:52.116 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:57:52.117 +03:00 [INF] Request finished in 2.3154ms 200 image/png +2018-08-02 14:57:52.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:57:52.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:57:52.122 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:57:52.122 +03:00 [INF] Request finished in 1.3205ms 200 image/png +2018-08-02 14:57:52.122 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:57:52.122 +03:00 [INF] Request finished in 1.0314ms 200 image/png +2018-08-02 14:57:52.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:57:52.127 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:57:52.127 +03:00 [INF] Request finished in 0.8523ms 200 image/png +2018-08-02 14:57:52.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:57:52.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:57:52.137 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:57:52.137 +03:00 [INF] Request finished in 0.778ms 200 image/png +2018-08-02 14:57:52.137 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:57:52.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:57:52.139 +03:00 [INF] Request finished in 1.0156ms 200 image/png +2018-08-02 14:57:52.141 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:57:52.141 +03:00 [INF] Request finished in 1.9727ms 200 image/png +2018-08-02 14:57:52.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:57:52.142 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:57:52.143 +03:00 [INF] Request finished in 1.1667ms 200 image/png +2018-08-02 14:57:52.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:57:52.146 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:57:52.146 +03:00 [INF] Request finished in 0.7907ms 200 image/svg+xml +2018-08-02 14:57:52.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:57:52.150 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:57:52.150 +03:00 [INF] Request finished in 2.3119ms 200 image/png +2018-08-02 14:57:52.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:57:52.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:57:52.156 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:57:52.156 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:57:52.156 +03:00 [INF] Request finished in 0.7712ms 200 image/png +2018-08-02 14:57:52.156 +03:00 [INF] Request finished in 0.8131ms 200 image/png +2018-08-02 14:57:52.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:57:52.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:57:52.170 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:57:52.170 +03:00 [INF] Request finished in 0.8518ms 200 image/png +2018-08-02 14:57:52.170 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:57:52.171 +03:00 [INF] Request finished in 1.5396ms 200 image/png +2018-08-02 14:57:52.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:57:52.175 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:57:52.175 +03:00 [INF] Request finished in 1.7577ms 200 image/png +2018-08-02 14:57:52.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:57:52.176 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:57:52.177 +03:00 [INF] Request finished in 0.8602ms 200 image/png +2018-08-02 14:57:52.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:57:52.187 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:57:52.187 +03:00 [INF] Request finished in 1.2996ms 200 image/png +2018-08-02 14:57:52.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:57:52.197 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:57:52.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:57:52.202 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:57:52.202 +03:00 [INF] Request finished in 5.5834ms 200 image/png +2018-08-02 14:57:52.209 +03:00 [INF] Request finished in 13.6289ms 200 image/png +2018-08-02 14:57:52.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:57:52.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:57:52.213 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:57:52.213 +03:00 [INF] Request finished in 0.9931ms 200 image/png +2018-08-02 14:57:52.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:57:52.214 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:57:52.214 +03:00 [INF] Request finished in 1.881ms 200 image/png +2018-08-02 14:57:52.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:57:52.215 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:57:52.215 +03:00 [INF] Request finished in 1.5071ms 200 image/png +2018-08-02 14:57:52.216 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:57:52.216 +03:00 [INF] Request finished in 1.2733ms 200 image/png +2018-08-02 14:57:52.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:57:52.218 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:57:52.219 +03:00 [INF] Request finished in 1.8446ms 200 image/png +2018-08-02 14:57:52.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:57:52.222 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:57:52.222 +03:00 [INF] Request finished in 2.093ms 200 image/png +2018-08-02 14:57:52.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:57:52.239 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:57:52.240 +03:00 [INF] Request finished in 1.843ms 200 image/png +2018-08-02 14:57:52.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:57:52.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:57:52.243 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:57:52.243 +03:00 [INF] Request finished in 1.5449ms 200 image/png +2018-08-02 14:57:52.253 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:57:52.253 +03:00 [INF] Request finished in 10.2691ms 200 image/jpeg +2018-08-02 14:57:52.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:57:52.258 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:57:52.258 +03:00 [INF] Request finished in 2.1228ms 200 font/woff2 +2018-08-02 14:57:53.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:57:53.851 +03:00 [INF] Request finished in 0.7127ms 404 +2018-08-02 14:59:23.736 +03:00 [INF] Loaded modules: +2018-08-02 14:59:23.752 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 14:59:23.753 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 14:59:23.754 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 14:59:23.754 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 14:59:24.261 +03:00 [INF] Initialized all modules. +2018-08-02 14:59:24.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 14:59:27.140 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 14:59:27.163 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 14:59:27.835 +03:00 [INF] Executed action /Index in 690.7161ms +2018-08-02 14:59:27.857 +03:00 [INF] Request finished in 3219.3135ms 200 text/html; charset=utf-8 +2018-08-02 14:59:27.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 14:59:27.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 14:59:27.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 14:59:27.899 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 14:59:27.899 +03:00 [INF] Request finished in 10.7681ms 200 text/css +2018-08-02 14:59:27.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 14:59:27.906 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 14:59:27.906 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 14:59:27.906 +03:00 [INF] Request finished in 3.643ms 200 text/css +2018-08-02 14:59:27.906 +03:00 [INF] Request finished in 15.9162ms 200 text/css +2018-08-02 14:59:27.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 14:59:27.909 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 14:59:27.910 +03:00 [INF] Request finished in 2.9349ms 200 text/css +2018-08-02 14:59:27.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 14:59:27.915 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 14:59:27.915 +03:00 [INF] Request finished in 3.5657ms 200 text/css +2018-08-02 14:59:27.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 14:59:27.916 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 14:59:27.916 +03:00 [INF] Request finished in 0.7577ms 200 text/css +2018-08-02 14:59:27.919 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 14:59:27.919 +03:00 [INF] Request finished in 32.498ms 200 text/css +2018-08-02 14:59:27.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 14:59:27.923 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 14:59:27.923 +03:00 [INF] Request finished in 0.9215ms 200 text/css +2018-08-02 14:59:27.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 14:59:27.929 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 14:59:27.930 +03:00 [INF] Request finished in 4.9589ms 200 application/javascript +2018-08-02 14:59:27.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 14:59:27.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 14:59:27.934 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 14:59:27.934 +03:00 [INF] Request finished in 0.9943ms 200 application/javascript +2018-08-02 14:59:27.937 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 14:59:27.937 +03:00 [INF] Request finished in 12.1472ms 200 application/javascript +2018-08-02 14:59:27.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 14:59:27.949 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 14:59:27.949 +03:00 [INF] Request finished in 9.8061ms 200 application/javascript +2018-08-02 14:59:27.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 14:59:27.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 14:59:27.962 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 14:59:27.962 +03:00 [INF] Request finished in 4.6247ms 200 application/javascript +2018-08-02 14:59:27.965 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 14:59:27.965 +03:00 [INF] Request finished in 4.1958ms 200 application/javascript +2018-08-02 14:59:27.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 14:59:27.967 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 14:59:27.967 +03:00 [INF] Request finished in 2.3805ms 200 application/javascript +2018-08-02 14:59:27.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 14:59:27.982 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 14:59:27.982 +03:00 [INF] Request finished in 1.1978ms 200 application/javascript +2018-08-02 14:59:27.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 14:59:27.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 14:59:27.997 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 14:59:27.997 +03:00 [INF] Request finished in 5.348ms 200 application/javascript +2018-08-02 14:59:28.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 14:59:28.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 14:59:28.010 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 14:59:28.010 +03:00 [INF] Request finished in 2.6584ms 200 application/javascript +2018-08-02 14:59:28.011 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 14:59:28.012 +03:00 [INF] Request finished in 1.8537ms 200 application/javascript +2018-08-02 14:59:28.013 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 14:59:28.013 +03:00 [INF] Request finished in 18.6898ms 200 application/javascript +2018-08-02 14:59:28.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 14:59:28.015 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 14:59:28.015 +03:00 [INF] Request finished in 1.3284ms 200 application/javascript +2018-08-02 14:59:28.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 14:59:28.021 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 14:59:28.022 +03:00 [INF] Request finished in 1.9032ms 200 application/javascript +2018-08-02 14:59:28.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 14:59:28.031 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 14:59:28.031 +03:00 [INF] Request finished in 1.3073ms 200 application/javascript +2018-08-02 14:59:28.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 14:59:28.047 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 14:59:28.047 +03:00 [INF] Request finished in 2.4065ms 200 application/javascript +2018-08-02 14:59:28.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 14:59:28.055 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 14:59:28.056 +03:00 [INF] Request finished in 1.3717ms 200 application/javascript +2018-08-02 14:59:28.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 14:59:28.084 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 14:59:28.084 +03:00 [INF] Request finished in 1.7715ms 200 application/javascript +2018-08-02 14:59:28.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 14:59:28.103 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 14:59:28.105 +03:00 [INF] Request finished in 2.9677ms 200 application/javascript +2018-08-02 14:59:28.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 14:59:28.110 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 14:59:28.110 +03:00 [INF] Request finished in 2.4352ms 200 application/javascript +2018-08-02 14:59:28.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 14:59:28.124 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 14:59:28.124 +03:00 [INF] Request finished in 1.855ms 200 application/javascript +2018-08-02 14:59:28.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 14:59:28.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 14:59:28.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 14:59:28.138 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 14:59:28.138 +03:00 [INF] Request finished in 0.8467ms 200 application/javascript +2018-08-02 14:59:28.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 14:59:28.145 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 14:59:28.145 +03:00 [INF] Request finished in 2.752ms 200 application/javascript +2018-08-02 14:59:28.147 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:59:28.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 14:59:28.150 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 14:59:28.150 +03:00 [INF] Request finished in 0.8634ms 200 image/svg+xml +2018-08-02 14:59:28.153 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 14:59:28.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 14:59:28.157 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 14:59:28.157 +03:00 [INF] Request finished in 1.991ms 200 image/png +2018-08-02 14:59:28.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 14:59:28.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 14:59:28.163 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 14:59:28.163 +03:00 [INF] Request finished in 4.5892ms 200 image/png +2018-08-02 14:59:28.164 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 14:59:28.164 +03:00 [INF] Request finished in 1.1307ms 200 image/png +2018-08-02 14:59:28.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 14:59:28.167 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 14:59:28.167 +03:00 [INF] Request finished in 0.9135ms 200 image/png +2018-08-02 14:59:28.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 14:59:28.171 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 14:59:28.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 14:59:28.171 +03:00 [INF] Request finished in 0.879ms 200 image/png +2018-08-02 14:59:28.172 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 14:59:28.172 +03:00 [INF] Request finished in 0.9828ms 200 image/png +2018-08-02 14:59:28.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 14:59:28.180 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 14:59:28.180 +03:00 [INF] Request finished in 0.8964ms 200 image/png +2018-08-02 14:59:28.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 14:59:28.183 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 14:59:28.183 +03:00 [INF] Request finished in 1.124ms 200 image/png +2018-08-02 14:59:28.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 14:59:28.184 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 14:59:28.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 14:59:28.184 +03:00 [INF] Request finished in 0.817ms 200 image/png +2018-08-02 14:59:28.185 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 14:59:28.185 +03:00 [INF] Request finished in 0.9304ms 200 image/png +2018-08-02 14:59:28.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 14:59:28.190 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 14:59:28.190 +03:00 [INF] Request finished in 1.7293ms 200 image/png +2018-08-02 14:59:28.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 14:59:28.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 14:59:28.197 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 14:59:28.197 +03:00 [INF] Request finished in 1.1243ms 200 image/png +2018-08-02 14:59:28.197 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 14:59:28.198 +03:00 [INF] Request finished in 1.4738ms 200 image/png +2018-08-02 14:59:28.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 14:59:28.200 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 14:59:28.200 +03:00 [INF] Request finished in 0.842ms 200 image/png +2018-08-02 14:59:28.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 14:59:28.202 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 14:59:28.202 +03:00 [INF] Request finished in 0.9913ms 200 image/png +2018-08-02 14:59:28.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 14:59:28.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 14:59:28.207 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 14:59:28.207 +03:00 [INF] Request finished in 0.9231ms 200 image/svg+xml +2018-08-02 14:59:28.208 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 14:59:28.208 +03:00 [INF] Request finished in 1.1802ms 200 image/png +2018-08-02 14:59:28.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 14:59:28.214 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 14:59:28.215 +03:00 [INF] Request finished in 4.5719ms 200 image/png +2018-08-02 14:59:28.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 14:59:28.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 14:59:28.222 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 14:59:28.222 +03:00 [INF] Request finished in 1.3843ms 200 image/png +2018-08-02 14:59:28.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 14:59:28.223 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 14:59:28.223 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 14:59:28.223 +03:00 [INF] Request finished in 1.1535ms 200 image/png +2018-08-02 14:59:28.223 +03:00 [INF] Request finished in 1.0294ms 200 image/png +2018-08-02 14:59:28.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 14:59:28.233 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 14:59:28.233 +03:00 [INF] Request finished in 1.618ms 200 image/png +2018-08-02 14:59:28.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 14:59:28.236 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 14:59:28.236 +03:00 [INF] Request finished in 2.9744ms 200 image/png +2018-08-02 14:59:28.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 14:59:28.238 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 14:59:28.238 +03:00 [INF] Request finished in 1.2614ms 200 image/png +2018-08-02 14:59:28.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 14:59:28.239 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 14:59:28.239 +03:00 [INF] Request finished in 0.8938ms 200 image/png +2018-08-02 14:59:28.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 14:59:28.247 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 14:59:28.247 +03:00 [INF] Request finished in 1.5524ms 200 image/png +2018-08-02 14:59:28.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 14:59:28.249 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 14:59:28.249 +03:00 [INF] Request finished in 0.8376ms 200 image/png +2018-08-02 14:59:28.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 14:59:28.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 14:59:28.252 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 14:59:28.253 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 14:59:28.253 +03:00 [INF] Request finished in 1.62ms 200 image/png +2018-08-02 14:59:28.254 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 14:59:28.254 +03:00 [INF] Request finished in 3.0132ms 200 image/png +2018-08-02 14:59:28.254 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 14:59:28.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 14:59:28.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 14:59:28.263 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 14:59:28.263 +03:00 [INF] Request finished in 1.0314ms 200 image/png +2018-08-02 14:59:28.263 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 14:59:28.263 +03:00 [INF] Request finished in 1.4142ms 200 image/png +2018-08-02 14:59:28.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 14:59:28.268 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 14:59:28.268 +03:00 [INF] Request finished in 1.0548ms 200 image/png +2018-08-02 14:59:28.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 14:59:28.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 14:59:28.272 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 14:59:28.272 +03:00 [INF] Request finished in 1.137ms 200 image/png +2018-08-02 14:59:28.272 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 14:59:28.272 +03:00 [INF] Request finished in 1.7878ms 200 image/png +2018-08-02 14:59:28.309 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 50.2825ms. +2018-08-02 14:59:28.334 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:59:28.335 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 181.5144ms +2018-08-02 14:59:28.335 +03:00 [INF] Request finished in 210.6832ms 200 text/plain; charset=utf-8 +2018-08-02 14:59:28.356 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 101.2848ms. +2018-08-02 14:59:28.357 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 14:59:28.358 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 210.2542ms +2018-08-02 14:59:28.358 +03:00 [INF] Request finished in 224.1996ms 200 text/plain; charset=utf-8 +2018-08-02 14:59:28.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 14:59:28.381 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 14:59:28.381 +03:00 [INF] Request finished in 10.1109ms 200 image/jpeg +2018-08-02 14:59:28.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 14:59:28.390 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 14:59:28.390 +03:00 [INF] Request finished in 3.4064ms 200 font/woff2 +2018-08-02 14:59:29.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 14:59:29.848 +03:00 [INF] Request finished in 3.8605ms 404 +2018-08-02 15:01:08.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:01:09.315 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:01:09.315 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:01:09.341 +03:00 [INF] Executed action /Index in 26.4447ms +2018-08-02 15:01:09.341 +03:00 [INF] Request finished in 378.2958ms 200 text/html; charset=utf-8 +2018-08-02 15:01:09.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:01:09.385 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:01:09.385 +03:00 [INF] Request finished in 3.1538ms 200 text/css +2018-08-02 15:01:09.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:01:09.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:01:09.391 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:01:09.391 +03:00 [INF] Request finished in 2.0381ms 200 text/css +2018-08-02 15:01:09.391 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:01:09.391 +03:00 [INF] Request finished in 1.9941ms 200 text/css +2018-08-02 15:01:09.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:01:09.397 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:01:09.397 +03:00 [INF] Request finished in 1.6826ms 200 text/css +2018-08-02 15:01:09.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:01:09.409 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:01:09.409 +03:00 [INF] Request finished in 2.1884ms 200 text/css +2018-08-02 15:01:09.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:01:09.410 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:01:09.411 +03:00 [INF] Request finished in 1.9345ms 200 text/css +2018-08-02 15:01:09.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:01:09.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:01:09.428 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:01:09.428 +03:00 [INF] Request finished in 1.6172ms 200 text/css +2018-08-02 15:01:09.432 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:01:09.432 +03:00 [INF] Request finished in 5.684ms 200 text/css +2018-08-02 15:01:09.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:01:09.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:01:09.439 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:01:09.439 +03:00 [INF] Request finished in 1.1819ms 200 application/javascript +2018-08-02 15:01:09.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:01:09.448 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:01:09.448 +03:00 [INF] Request finished in 2.784ms 200 application/javascript +2018-08-02 15:01:09.449 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:01:09.449 +03:00 [INF] Request finished in 11.9472ms 200 application/javascript +2018-08-02 15:01:09.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:01:09.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:01:09.456 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:01:09.456 +03:00 [INF] Request finished in 2.3498ms 200 application/javascript +2018-08-02 15:01:09.460 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:01:09.461 +03:00 [INF] Request finished in 9.5391ms 200 application/javascript +2018-08-02 15:01:09.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:01:09.465 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:01:09.465 +03:00 [INF] Request finished in 1.1175ms 200 application/javascript +2018-08-02 15:01:09.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:01:09.473 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:01:09.474 +03:00 [INF] Request finished in 1.7685ms 200 application/javascript +2018-08-02 15:01:09.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:01:09.477 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:01:09.477 +03:00 [INF] Request finished in 2.141ms 200 application/javascript +2018-08-02 15:01:09.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:01:09.515 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:01:09.515 +03:00 [INF] Request finished in 5.6635ms 200 application/javascript +2018-08-02 15:01:09.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:01:09.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:01:09.526 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:01:09.527 +03:00 [INF] Request finished in 1.1042ms 200 application/javascript +2018-08-02 15:01:09.530 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:01:09.530 +03:00 [INF] Request finished in 13.2992ms 200 application/javascript +2018-08-02 15:01:09.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:01:09.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:01:09.547 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:01:09.547 +03:00 [INF] Request finished in 2.6835ms 200 application/javascript +2018-08-02 15:01:09.547 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:01:09.548 +03:00 [INF] Request finished in 1.4083ms 200 application/javascript +2018-08-02 15:01:09.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:01:09.555 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:01:09.555 +03:00 [INF] Request finished in 1.2447ms 200 application/javascript +2018-08-02 15:01:09.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:01:09.566 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:01:09.566 +03:00 [INF] Request finished in 1.7973ms 200 application/javascript +2018-08-02 15:01:09.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:01:09.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:01:09.582 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:01:09.583 +03:00 [INF] Request finished in 5.0309ms 200 application/javascript +2018-08-02 15:01:09.584 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:01:09.584 +03:00 [INF] Request finished in 6.1043ms 200 application/javascript +2018-08-02 15:01:09.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:01:09.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:01:09.612 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:01:09.612 +03:00 [INF] Request finished in 2.469ms 200 application/javascript +2018-08-02 15:01:09.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:01:09.617 +03:00 [INF] Request finished in 7.5443ms 200 application/javascript +2018-08-02 15:01:09.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:01:09.620 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:01:09.620 +03:00 [INF] Request finished in 1.4482ms 200 application/javascript +2018-08-02 15:01:09.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:01:09.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:01:09.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:01:09.648 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:01:09.648 +03:00 [INF] Request finished in 1.129ms 200 application/javascript +2018-08-02 15:01:09.653 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:01:09.654 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:01:09.655 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6226ms. +2018-08-02 15:01:09.655 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:01:09.655 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.2357ms +2018-08-02 15:01:09.655 +03:00 [INF] Request finished in 11.8877ms 200 text/plain; charset=utf-8 +2018-08-02 15:01:09.656 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:01:09.658 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:01:09.659 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17930000000000001ms. +2018-08-02 15:01:09.659 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:01:09.659 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.9462ms +2018-08-02 15:01:09.659 +03:00 [INF] Request finished in 12.2036ms 200 text/plain; charset=utf-8 +2018-08-02 15:01:09.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:01:09.660 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:01:09.660 +03:00 [INF] Request finished in 1.1562ms 200 application/javascript +2018-08-02 15:01:09.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:01:09.675 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:01:09.675 +03:00 [INF] Request finished in 1.8519ms 200 application/javascript +2018-08-02 15:01:09.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:01:09.681 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:01:09.681 +03:00 [INF] Request finished in 0.8602ms 200 image/svg+xml +2018-08-02 15:01:09.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:01:09.697 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:01:09.697 +03:00 [INF] Request finished in 1.0933ms 200 image/png +2018-08-02 15:01:09.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:01:09.714 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:01:09.714 +03:00 [INF] Request finished in 1.0254ms 200 image/png +2018-08-02 15:01:09.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:01:09.721 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:01:09.722 +03:00 [INF] Request finished in 1.0801ms 200 image/png +2018-08-02 15:01:09.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:01:09.766 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:01:09.766 +03:00 [INF] Request finished in 1.1568ms 200 image/png +2018-08-02 15:01:09.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:01:09.769 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:01:09.769 +03:00 [INF] Request finished in 1.1665ms 200 image/png +2018-08-02 15:01:09.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:01:09.774 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:01:09.774 +03:00 [INF] Request finished in 1.971ms 200 image/png +2018-08-02 15:01:09.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:01:09.783 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:01:09.783 +03:00 [INF] Request finished in 1.1147ms 200 image/png +2018-08-02 15:01:09.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:01:09.784 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:01:09.784 +03:00 [INF] Request finished in 1.1561ms 200 image/png +2018-08-02 15:01:09.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:01:09.785 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:01:09.785 +03:00 [INF] Request finished in 0.8031ms 200 image/png +2018-08-02 15:01:09.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:01:09.797 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:01:09.797 +03:00 [INF] Request finished in 3.2589ms 200 image/png +2018-08-02 15:01:09.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:01:09.801 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:01:09.802 +03:00 [INF] Request finished in 1.8455ms 200 image/png +2018-08-02 15:01:09.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:01:09.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:01:09.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:01:09.811 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:01:09.811 +03:00 [INF] Request finished in 2.2942ms 200 image/png +2018-08-02 15:01:09.811 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:01:09.811 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:01:09.811 +03:00 [INF] Request finished in 1.761ms 200 image/png +2018-08-02 15:01:09.811 +03:00 [INF] Request finished in 1.4384ms 200 image/png +2018-08-02 15:01:09.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:01:09.813 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:01:09.813 +03:00 [INF] Request finished in 1.0463ms 200 image/png +2018-08-02 15:01:09.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:01:09.817 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:01:09.817 +03:00 [INF] Request finished in 1.0156ms 200 image/png +2018-08-02 15:01:09.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:01:09.821 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:01:09.822 +03:00 [INF] Request finished in 1.1473ms 200 image/svg+xml +2018-08-02 15:01:09.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:01:09.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:01:09.835 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:01:09.836 +03:00 [INF] Request finished in 1.0923ms 200 image/png +2018-08-02 15:01:09.836 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:01:09.836 +03:00 [INF] Request finished in 1.3901ms 200 image/png +2018-08-02 15:01:09.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:01:09.838 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:01:09.838 +03:00 [INF] Request finished in 1.3234ms 200 image/png +2018-08-02 15:01:09.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:01:09.839 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:01:09.839 +03:00 [INF] Request finished in 1.1667ms 200 image/png +2018-08-02 15:01:09.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:01:09.841 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:01:09.841 +03:00 [INF] Request finished in 1.574ms 200 image/png +2018-08-02 15:01:09.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:01:09.857 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:01:09.857 +03:00 [INF] Request finished in 2.9754ms 200 image/png +2018-08-02 15:01:09.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:01:09.861 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:01:09.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:01:09.862 +03:00 [INF] Request finished in 1.3751ms 200 image/png +2018-08-02 15:01:09.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:01:09.863 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:01:09.863 +03:00 [INF] Request finished in 1.5748ms 200 image/png +2018-08-02 15:01:09.865 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:01:09.865 +03:00 [INF] Request finished in 3.5325ms 200 image/png +2018-08-02 15:01:09.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:01:09.867 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:01:09.867 +03:00 [INF] Request finished in 1.0924ms 200 image/png +2018-08-02 15:01:09.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:01:09.868 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:01:09.868 +03:00 [INF] Request finished in 1.0543ms 200 image/png +2018-08-02 15:01:09.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:01:09.869 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:01:09.869 +03:00 [INF] Request finished in 0.7893ms 200 image/png +2018-08-02 15:01:09.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:01:09.876 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:01:09.876 +03:00 [INF] Request finished in 1.0802ms 200 image/png +2018-08-02 15:01:09.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:01:09.883 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:01:09.884 +03:00 [INF] Request finished in 1.6385ms 200 image/png +2018-08-02 15:01:09.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:01:09.894 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:01:09.895 +03:00 [INF] Request finished in 0.8209ms 200 image/png +2018-08-02 15:01:09.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:01:09.910 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:01:09.910 +03:00 [INF] Request finished in 1.0059ms 200 image/png +2018-08-02 15:01:09.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:01:09.916 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:01:09.916 +03:00 [INF] Request finished in 1.0213ms 200 image/png +2018-08-02 15:01:09.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:01:09.935 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:01:09.935 +03:00 [INF] Request finished in 9.9249ms 200 image/jpeg +2018-08-02 15:01:09.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:01:09.947 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:01:09.948 +03:00 [INF] Request finished in 2.6287ms 200 font/woff2 +2018-08-02 15:01:11.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:01:11.704 +03:00 [INF] Request finished in 1.0981ms 404 +2018-08-02 15:07:56.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:07:56.378 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:07:56.378 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:07:56.401 +03:00 [INF] Executed action /Index in 23.0055ms +2018-08-02 15:07:56.401 +03:00 [INF] Request finished in 311.4334ms 200 text/html; charset=utf-8 +2018-08-02 15:07:56.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:07:56.453 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:07:56.454 +03:00 [INF] Request finished in 4.9598ms 200 text/css +2018-08-02 15:07:56.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:07:56.462 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:07:56.462 +03:00 [INF] Request finished in 1.2944ms 200 text/css +2018-08-02 15:07:56.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:07:56.464 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:07:56.465 +03:00 [INF] Request finished in 3.1445ms 200 text/css +2018-08-02 15:07:56.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:07:56.477 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:07:56.478 +03:00 [INF] Request finished in 1.6079ms 200 text/css +2018-08-02 15:07:56.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:07:56.489 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:07:56.489 +03:00 [INF] Request finished in 1.1437ms 200 text/css +2018-08-02 15:07:56.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:07:56.494 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:07:56.494 +03:00 [INF] Request finished in 1.6591ms 200 text/css +2018-08-02 15:07:56.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:07:56.509 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:07:56.509 +03:00 [INF] Request finished in 1.0032ms 200 text/css +2018-08-02 15:07:56.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:07:56.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:07:56.548 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:07:56.548 +03:00 [INF] Request finished in 1.3975ms 200 text/css +2018-08-02 15:07:56.549 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:07:56.549 +03:00 [INF] Request finished in 0.9439ms 200 application/javascript +2018-08-02 15:07:56.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:07:56.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:07:56.561 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:07:56.561 +03:00 [INF] Request finished in 0.7054ms 200 application/javascript +2018-08-02 15:07:56.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:07:56.573 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:07:56.573 +03:00 [INF] Request finished in 7.3027ms 200 application/javascript +2018-08-02 15:07:56.573 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:07:56.573 +03:00 [INF] Request finished in 12.9168ms 200 application/javascript +2018-08-02 15:07:56.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:07:56.596 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:07:56.597 +03:00 [INF] Request finished in 2.6413ms 200 application/javascript +2018-08-02 15:07:56.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:07:56.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:07:56.607 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:07:56.608 +03:00 [INF] Request finished in 0.6796ms 200 application/javascript +2018-08-02 15:07:56.608 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:07:56.609 +03:00 [INF] Request finished in 1.633ms 200 application/javascript +2018-08-02 15:07:56.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:07:56.611 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:07:56.612 +03:00 [INF] Request finished in 2.3639ms 200 application/javascript +2018-08-02 15:07:56.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:07:56.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:07:56.647 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:07:56.648 +03:00 [INF] Request finished in 1.7137ms 200 application/javascript +2018-08-02 15:07:56.650 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:07:56.650 +03:00 [INF] Request finished in 18.636ms 200 application/javascript +2018-08-02 15:07:56.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:07:56.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:07:56.657 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:07:56.657 +03:00 [INF] Request finished in 1.0764ms 200 application/javascript +2018-08-02 15:07:56.658 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:07:56.658 +03:00 [INF] Request finished in 1.3655ms 200 application/javascript +2018-08-02 15:07:56.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:07:56.677 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:07:56.677 +03:00 [INF] Request finished in 1.3881ms 200 application/javascript +2018-08-02 15:07:56.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:07:56.697 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:07:56.697 +03:00 [INF] Request finished in 2.0766ms 200 application/javascript +2018-08-02 15:07:56.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:07:56.721 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:07:56.721 +03:00 [INF] Request finished in 3.6029ms 200 application/javascript +2018-08-02 15:07:56.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:07:56.741 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:07:56.741 +03:00 [INF] Request finished in 1.1986ms 200 application/javascript +2018-08-02 15:07:56.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:07:56.763 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:07:56.764 +03:00 [INF] Request finished in 1.1761ms 200 application/javascript +2018-08-02 15:07:56.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:07:56.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:07:56.771 +03:00 [INF] Request finished in 6.3476ms 200 application/javascript +2018-08-02 15:07:56.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:07:56.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:07:56.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:07:56.776 +03:00 [INF] Request finished in 1.452ms 200 application/javascript +2018-08-02 15:07:56.777 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:07:56.777 +03:00 [INF] Request finished in 2.7146ms 200 application/javascript +2018-08-02 15:07:56.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:07:56.793 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:07:56.793 +03:00 [INF] Request finished in 1.3838ms 200 application/javascript +2018-08-02 15:07:56.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:07:56.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:07:56.801 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:07:56.804 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:07:56.804 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3765ms. +2018-08-02 15:07:56.805 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:07:56.805 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.9507000000000003ms +2018-08-02 15:07:56.805 +03:00 [INF] Request finished in 6.0859ms 200 text/plain; charset=utf-8 +2018-08-02 15:07:56.813 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:07:56.815 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:07:56.818 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.0822000000000003ms. +2018-08-02 15:07:56.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:07:56.819 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:07:56.819 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.3708ms +2018-08-02 15:07:56.819 +03:00 [INF] Request finished in 20.1806ms 200 text/plain; charset=utf-8 +2018-08-02 15:07:56.821 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:07:56.821 +03:00 [INF] Request finished in 2.4528ms 200 application/javascript +2018-08-02 15:07:56.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:07:56.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:07:56.827 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:07:56.827 +03:00 [INF] Request finished in 0.9811ms 200 application/javascript +2018-08-02 15:07:56.829 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:07:56.829 +03:00 [INF] Request finished in 2.5871ms 200 image/svg+xml +2018-08-02 15:07:56.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:07:56.842 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:07:56.842 +03:00 [INF] Request finished in 0.8146ms 200 image/png +2018-08-02 15:07:56.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:07:56.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:07:56.845 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:07:56.845 +03:00 [INF] Request finished in 1.5709ms 200 image/png +2018-08-02 15:07:56.845 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:07:56.845 +03:00 [INF] Request finished in 1.0315ms 200 image/png +2018-08-02 15:07:56.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:07:56.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:07:56.872 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:07:56.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:07:56.872 +03:00 [INF] Request finished in 0.9711ms 200 image/png +2018-08-02 15:07:56.873 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:07:56.873 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:07:56.873 +03:00 [INF] Request finished in 1.7751ms 200 image/png +2018-08-02 15:07:56.873 +03:00 [INF] Request finished in 1.0932ms 200 image/png +2018-08-02 15:07:56.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:07:56.878 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:07:56.878 +03:00 [INF] Request finished in 0.9834ms 200 image/png +2018-08-02 15:07:56.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:07:56.882 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:07:56.882 +03:00 [INF] Request finished in 0.8702ms 200 image/png +2018-08-02 15:07:56.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:07:56.887 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:07:56.888 +03:00 [INF] Request finished in 3.9813ms 200 image/png +2018-08-02 15:07:56.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:07:56.889 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:07:56.890 +03:00 [INF] Request finished in 1.4165ms 200 image/png +2018-08-02 15:07:56.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:07:56.899 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:07:56.900 +03:00 [INF] Request finished in 1.0132ms 200 image/png +2018-08-02 15:07:56.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:07:56.905 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:07:56.905 +03:00 [INF] Request finished in 1.7976ms 200 image/png +2018-08-02 15:07:56.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:07:56.911 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:07:56.911 +03:00 [INF] Request finished in 1.15ms 200 image/png +2018-08-02 15:07:56.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:07:56.915 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:07:56.915 +03:00 [INF] Request finished in 1.1717ms 200 image/png +2018-08-02 15:07:56.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:07:56.922 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:07:56.922 +03:00 [INF] Request finished in 2.0863ms 200 image/png +2018-08-02 15:07:56.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:07:56.926 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:07:56.926 +03:00 [INF] Request finished in 0.8934ms 200 image/png +2018-08-02 15:07:56.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:07:56.929 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:07:56.930 +03:00 [INF] Request finished in 1.5385ms 200 image/svg+xml +2018-08-02 15:07:56.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:07:56.935 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:07:56.935 +03:00 [INF] Request finished in 1.2219ms 200 image/png +2018-08-02 15:07:56.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:07:56.943 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:07:56.943 +03:00 [INF] Request finished in 2.708ms 200 image/png +2018-08-02 15:07:56.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:07:56.945 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:07:56.945 +03:00 [INF] Request finished in 2.2453ms 200 image/png +2018-08-02 15:07:56.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:07:56.955 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:07:56.955 +03:00 [INF] Request finished in 1.9144ms 200 image/png +2018-08-02 15:07:56.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:07:56.958 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:07:56.958 +03:00 [INF] Request finished in 0.9583ms 200 image/png +2018-08-02 15:07:56.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:07:56.961 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:07:56.961 +03:00 [INF] Request finished in 1.032ms 200 image/png +2018-08-02 15:07:56.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:07:56.973 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:07:56.973 +03:00 [INF] Request finished in 1.8846ms 200 image/png +2018-08-02 15:07:56.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:07:56.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:07:56.978 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:07:56.978 +03:00 [INF] Request finished in 1.2635ms 200 image/png +2018-08-02 15:07:56.978 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:07:56.981 +03:00 [INF] Request finished in 3.3048ms 200 image/png +2018-08-02 15:07:56.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:07:56.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:07:56.989 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:07:56.989 +03:00 [INF] Request finished in 0.9023ms 200 image/png +2018-08-02 15:07:56.990 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:07:56.990 +03:00 [INF] Request finished in 1.116ms 200 image/png +2018-08-02 15:07:56.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:07:56.996 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:07:56.997 +03:00 [INF] Request finished in 1.2612ms 200 image/png +2018-08-02 15:07:57.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:07:57.009 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:07:57.009 +03:00 [INF] Request finished in 1.3411ms 200 image/png +2018-08-02 15:07:57.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:07:57.028 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:07:57.028 +03:00 [INF] Request finished in 0.8913ms 200 image/png +2018-08-02 15:07:57.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:07:57.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:07:57.045 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:07:57.045 +03:00 [INF] Request finished in 1.0126ms 200 image/png +2018-08-02 15:07:57.046 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:07:57.046 +03:00 [INF] Request finished in 1.129ms 200 image/png +2018-08-02 15:07:57.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:07:57.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:07:57.048 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:07:57.048 +03:00 [INF] Request finished in 0.8435ms 200 image/png +2018-08-02 15:07:57.058 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:07:57.058 +03:00 [INF] Request finished in 10.7484ms 200 image/jpeg +2018-08-02 15:07:57.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:07:57.060 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:07:57.060 +03:00 [INF] Request finished in 2.2633ms 200 font/woff2 +2018-08-02 15:07:58.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:07:58.162 +03:00 [INF] Request finished in 1.0545ms 404 +2018-08-02 15:08:54.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:08:54.722 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:08:54.722 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:08:54.748 +03:00 [INF] Executed action /Index in 26.062ms +2018-08-02 15:08:54.748 +03:00 [INF] Request finished in 402.417ms 200 text/html; charset=utf-8 +2018-08-02 15:08:54.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:08:54.791 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:08:54.791 +03:00 [INF] Request finished in 4.2717ms 200 text/css +2018-08-02 15:08:54.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:08:54.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:08:54.796 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:08:54.796 +03:00 [INF] Request finished in 1.5952ms 200 text/css +2018-08-02 15:08:54.796 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:08:54.796 +03:00 [INF] Request finished in 1.2806ms 200 text/css +2018-08-02 15:08:54.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:08:54.804 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:08:54.804 +03:00 [INF] Request finished in 3.219ms 200 text/css +2018-08-02 15:08:54.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:08:54.813 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:08:54.813 +03:00 [INF] Request finished in 1.5018ms 200 text/css +2018-08-02 15:08:54.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:08:54.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:08:54.827 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:08:54.827 +03:00 [INF] Request finished in 2.3347ms 200 text/css +2018-08-02 15:08:54.829 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:08:54.829 +03:00 [INF] Request finished in 5.875ms 200 text/css +2018-08-02 15:08:54.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:08:54.837 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:08:54.839 +03:00 [INF] Request finished in 9.1878ms 200 text/css +2018-08-02 15:08:54.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:08:54.840 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:08:54.840 +03:00 [INF] Request finished in 2.9679ms 200 application/javascript +2018-08-02 15:08:54.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:08:54.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:08:54.850 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:08:54.850 +03:00 [INF] Request finished in 1.9902ms 200 application/javascript +2018-08-02 15:08:54.857 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:08:54.857 +03:00 [INF] Request finished in 9.4871ms 200 application/javascript +2018-08-02 15:08:54.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:08:54.869 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:08:54.870 +03:00 [INF] Request finished in 8.5704ms 200 application/javascript +2018-08-02 15:08:54.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:08:54.878 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:08:54.879 +03:00 [INF] Request finished in 6.0985ms 200 application/javascript +2018-08-02 15:08:54.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:08:54.885 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:08:54.886 +03:00 [INF] Request finished in 2.3227ms 200 application/javascript +2018-08-02 15:08:54.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:08:54.889 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:08:54.890 +03:00 [INF] Request finished in 1.9236ms 200 application/javascript +2018-08-02 15:08:54.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:08:54.902 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:08:54.902 +03:00 [INF] Request finished in 0.8546ms 200 application/javascript +2018-08-02 15:08:54.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:08:54.917 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:08:54.917 +03:00 [INF] Request finished in 3.8987ms 200 application/javascript +2018-08-02 15:08:54.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:08:54.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:08:54.927 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:08:54.928 +03:00 [INF] Request finished in 2.3765ms 200 application/javascript +2018-08-02 15:08:54.932 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:08:54.932 +03:00 [INF] Request finished in 12.1534ms 200 application/javascript +2018-08-02 15:08:54.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:08:54.940 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:08:54.940 +03:00 [INF] Request finished in 1.539ms 200 application/javascript +2018-08-02 15:08:54.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:08:54.947 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:08:54.947 +03:00 [INF] Request finished in 3.3613ms 200 application/javascript +2018-08-02 15:08:54.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:08:54.951 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:08:54.951 +03:00 [INF] Request finished in 0.9352ms 200 application/javascript +2018-08-02 15:08:54.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:08:54.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:08:54.955 +03:00 [INF] Request finished in 2.3086ms 200 application/javascript +2018-08-02 15:08:54.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:08:54.964 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:08:54.964 +03:00 [INF] Request finished in 1.8177ms 200 application/javascript +2018-08-02 15:08:54.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:08:54.966 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:08:54.966 +03:00 [INF] Request finished in 1.4609ms 200 application/javascript +2018-08-02 15:08:54.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:08:54.974 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:08:54.974 +03:00 [INF] Request finished in 2.7843ms 200 application/javascript +2018-08-02 15:08:54.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:08:54.980 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:08:54.980 +03:00 [INF] Request finished in 2.2276ms 200 application/javascript +2018-08-02 15:08:54.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:08:54.990 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:08:54.990 +03:00 [INF] Request finished in 2.0651ms 200 application/javascript +2018-08-02 15:08:54.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:08:54.996 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:08:54.996 +03:00 [INF] Request finished in 3.284ms 200 application/javascript +2018-08-02 15:08:54.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:08:55.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:08:55.011 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:08:55.013 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:08:55.014 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:08:55.014 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:08:55.014 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1796ms. +2018-08-02 15:08:55.014 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:08:55.014 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4161ms. +2018-08-02 15:08:55.014 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:08:55.014 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6169000000000002ms +2018-08-02 15:08:55.014 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.5257ms +2018-08-02 15:08:55.015 +03:00 [INF] Request finished in 15.8163ms 200 text/plain; charset=utf-8 +2018-08-02 15:08:55.015 +03:00 [INF] Request finished in 8.1369ms 200 text/plain; charset=utf-8 +2018-08-02 15:08:55.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:08:55.021 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:08:55.021 +03:00 [INF] Request finished in 2.3224ms 200 application/javascript +2018-08-02 15:08:55.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:08:55.041 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:08:55.042 +03:00 [INF] Request finished in 1.5826ms 200 application/javascript +2018-08-02 15:08:55.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:08:55.056 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:08:55.057 +03:00 [INF] Request finished in 1.9989ms 200 image/svg+xml +2018-08-02 15:08:55.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:08:55.059 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:08:55.059 +03:00 [INF] Request finished in 1.4906ms 200 image/png +2018-08-02 15:08:55.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:08:55.072 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:08:55.072 +03:00 [INF] Request finished in 0.9306ms 200 image/png +2018-08-02 15:08:55.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:08:55.078 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:08:55.078 +03:00 [INF] Request finished in 2.0125ms 200 image/png +2018-08-02 15:08:55.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:08:55.088 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:08:55.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:08:55.089 +03:00 [INF] Request finished in 1.377ms 200 image/png +2018-08-02 15:08:55.089 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:08:55.090 +03:00 [INF] Request finished in 0.918ms 200 image/png +2018-08-02 15:08:55.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:08:55.095 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:08:55.095 +03:00 [INF] Request finished in 1.3865ms 200 image/png +2018-08-02 15:08:55.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:08:55.098 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:08:55.098 +03:00 [INF] Request finished in 1.1112ms 200 image/png +2018-08-02 15:08:55.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:08:55.104 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:08:55.104 +03:00 [INF] Request finished in 0.8071ms 200 image/png +2018-08-02 15:08:55.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:08:55.108 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:08:55.108 +03:00 [INF] Request finished in 1.0177ms 200 image/png +2018-08-02 15:08:55.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:08:55.111 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:08:55.112 +03:00 [INF] Request finished in 1.6126ms 200 image/png +2018-08-02 15:08:55.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:08:55.118 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:08:55.118 +03:00 [INF] Request finished in 0.8648ms 200 image/png +2018-08-02 15:08:55.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:08:55.124 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:08:55.125 +03:00 [INF] Request finished in 1.1966ms 200 image/png +2018-08-02 15:08:55.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:08:55.133 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:08:55.133 +03:00 [INF] Request finished in 0.8994ms 200 image/png +2018-08-02 15:08:55.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:08:55.134 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:08:55.134 +03:00 [INF] Request finished in 0.8699ms 200 image/png +2018-08-02 15:08:55.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:08:55.142 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:08:55.142 +03:00 [INF] Request finished in 1.1629ms 200 image/png +2018-08-02 15:08:55.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:08:55.146 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:08:55.146 +03:00 [INF] Request finished in 1.9064ms 200 image/png +2018-08-02 15:08:55.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:08:55.149 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:08:55.149 +03:00 [INF] Request finished in 0.9484ms 200 image/svg+xml +2018-08-02 15:08:55.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:08:55.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:08:55.152 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:08:55.152 +03:00 [INF] Request finished in 0.9016ms 200 image/png +2018-08-02 15:08:55.152 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:08:55.152 +03:00 [INF] Request finished in 0.666ms 200 image/png +2018-08-02 15:08:55.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:08:55.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:08:55.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:08:55.159 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:08:55.159 +03:00 [INF] Request finished in 0.8873ms 200 image/png +2018-08-02 15:08:55.160 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:08:55.160 +03:00 [INF] Request finished in 1.9838ms 200 image/png +2018-08-02 15:08:55.161 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:08:55.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:08:55.163 +03:00 [INF] Request finished in 5.0506ms 200 image/png +2018-08-02 15:08:55.164 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:08:55.164 +03:00 [INF] Request finished in 1.6564ms 200 image/png +2018-08-02 15:08:55.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:08:55.172 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:08:55.172 +03:00 [INF] Request finished in 1.4046ms 200 image/png +2018-08-02 15:08:55.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:08:55.174 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:08:55.174 +03:00 [INF] Request finished in 1.0462ms 200 image/png +2018-08-02 15:08:55.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:08:55.191 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:08:55.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:08:55.192 +03:00 [INF] Request finished in 3.0012ms 200 image/png +2018-08-02 15:08:55.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:08:55.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:08:55.196 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:08:55.196 +03:00 [INF] Request finished in 4.7116ms 200 image/png +2018-08-02 15:08:55.197 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:08:55.197 +03:00 [INF] Request finished in 0.9242ms 200 image/png +2018-08-02 15:08:55.197 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:08:55.197 +03:00 [INF] Request finished in 1.6468ms 200 image/png +2018-08-02 15:08:55.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:08:55.199 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:08:55.200 +03:00 [INF] Request finished in 1.2036ms 200 image/png +2018-08-02 15:08:55.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:08:55.202 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:08:55.202 +03:00 [INF] Request finished in 1.0009ms 200 image/png +2018-08-02 15:08:55.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:08:55.209 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:08:55.210 +03:00 [INF] Request finished in 0.9548ms 200 image/png +2018-08-02 15:08:55.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:08:55.212 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:08:55.213 +03:00 [INF] Request finished in 1.6234ms 200 image/png +2018-08-02 15:08:55.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:08:55.217 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:08:55.218 +03:00 [INF] Request finished in 0.9634ms 200 image/png +2018-08-02 15:08:55.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:08:55.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:08:55.298 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:08:55.298 +03:00 [INF] Request finished in 10.4175ms 200 image/jpeg +2018-08-02 15:08:55.298 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:08:55.298 +03:00 [INF] Request finished in 4.6766ms 200 font/woff2 +2018-08-02 15:08:56.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:08:56.254 +03:00 [INF] Request finished in 0.7068ms 404 +2018-08-02 15:09:56.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:09:56.450 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:09:56.450 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:09:56.473 +03:00 [INF] Executed action /Index in 22.6527ms +2018-08-02 15:09:56.473 +03:00 [INF] Request finished in 308.1498ms 200 text/html; charset=utf-8 +2018-08-02 15:09:56.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:09:56.518 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:09:56.518 +03:00 [INF] Request finished in 2.611ms 200 text/css +2018-08-02 15:09:56.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:09:56.520 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:09:56.520 +03:00 [INF] Request finished in 1.1653ms 200 text/css +2018-08-02 15:09:56.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:09:56.541 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:09:56.541 +03:00 [INF] Request finished in 5.2741ms 200 text/css +2018-08-02 15:09:56.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:09:56.547 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:09:56.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:09:56.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:09:56.549 +03:00 [INF] Request finished in 3.4817ms 200 text/css +2018-08-02 15:09:56.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:09:56.549 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:09:56.549 +03:00 [INF] Request finished in 0.7137ms 200 text/css +2018-08-02 15:09:56.549 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:09:56.549 +03:00 [INF] Request finished in 0.888ms 200 text/css +2018-08-02 15:09:56.550 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:09:56.550 +03:00 [INF] Request finished in 1.34ms 200 text/css +2018-08-02 15:09:56.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:09:56.555 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:09:56.555 +03:00 [INF] Request finished in 1.6108ms 200 text/css +2018-08-02 15:09:56.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:09:56.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:09:56.558 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:09:56.558 +03:00 [INF] Request finished in 0.7974ms 200 application/javascript +2018-08-02 15:09:56.566 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:09:56.566 +03:00 [INF] Request finished in 8.3934ms 200 application/javascript +2018-08-02 15:09:56.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:09:56.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:09:56.581 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:09:56.581 +03:00 [INF] Request finished in 5.1574ms 200 application/javascript +2018-08-02 15:09:56.581 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:09:56.581 +03:00 [INF] Request finished in 0.9562ms 200 application/javascript +2018-08-02 15:09:56.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:09:56.590 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:09:56.590 +03:00 [INF] Request finished in 3.0394ms 200 application/javascript +2018-08-02 15:09:56.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:09:56.609 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:09:56.609 +03:00 [INF] Request finished in 2.6509ms 200 application/javascript +2018-08-02 15:09:56.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:09:56.614 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:09:56.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:09:56.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:09:56.620 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:09:56.620 +03:00 [INF] Request finished in 5.037ms 200 application/javascript +2018-08-02 15:09:56.620 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:09:56.621 +03:00 [INF] Request finished in 3.3417ms 200 application/javascript +2018-08-02 15:09:56.615 +03:00 [INF] Request finished in 3.254ms 200 application/javascript +2018-08-02 15:09:56.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:09:56.633 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:09:56.633 +03:00 [INF] Request finished in 1.2335ms 200 application/javascript +2018-08-02 15:09:56.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:09:56.638 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:09:56.638 +03:00 [INF] Request finished in 1.2139ms 200 application/javascript +2018-08-02 15:09:56.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:09:56.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:09:56.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:09:56.647 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:09:56.648 +03:00 [INF] Request finished in 0.9553ms 200 application/javascript +2018-08-02 15:09:56.650 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:09:56.651 +03:00 [INF] Request finished in 12.303ms 200 application/javascript +2018-08-02 15:09:56.651 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:09:56.651 +03:00 [INF] Request finished in 4.93ms 200 application/javascript +2018-08-02 15:09:56.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:09:56.653 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:09:56.653 +03:00 [INF] Request finished in 1.6305ms 200 application/javascript +2018-08-02 15:09:56.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:09:56.662 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:09:56.662 +03:00 [INF] Request finished in 1.8915ms 200 application/javascript +2018-08-02 15:09:56.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:09:56.670 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:09:56.670 +03:00 [INF] Request finished in 0.9851ms 200 application/javascript +2018-08-02 15:09:56.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:09:56.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:09:56.681 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:09:56.681 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:09:56.681 +03:00 [INF] Request finished in 1.1362ms 200 application/javascript +2018-08-02 15:09:56.681 +03:00 [INF] Request finished in 1.1136ms 200 application/javascript +2018-08-02 15:09:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:09:56.682 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:09:56.682 +03:00 [INF] Request finished in 0.9544ms 200 application/javascript +2018-08-02 15:09:56.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:09:56.685 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:09:56.686 +03:00 [INF] Request finished in 1.2321ms 200 application/javascript +2018-08-02 15:09:56.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:09:56.715 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:09:56.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:09:56.716 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:09:56.716 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:09:56.716 +03:00 [INF] Request finished in 0.965ms 200 application/javascript +2018-08-02 15:09:56.716 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5158ms. +2018-08-02 15:09:56.717 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:09:56.717 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.8423ms +2018-08-02 15:09:56.717 +03:00 [INF] Request finished in 17.1898ms 200 text/plain; charset=utf-8 +2018-08-02 15:09:56.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:09:56.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:09:56.720 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:09:56.720 +03:00 [INF] Request finished in 0.8143ms 200 application/javascript +2018-08-02 15:09:56.724 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:09:56.726 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:09:56.726 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1198ms. +2018-08-02 15:09:56.726 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:09:56.726 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9912ms +2018-08-02 15:09:56.727 +03:00 [INF] Request finished in 8.6649ms 200 text/plain; charset=utf-8 +2018-08-02 15:09:56.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:09:56.748 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:09:56.748 +03:00 [INF] Request finished in 4.2509ms 200 image/svg+xml +2018-08-02 15:09:56.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:09:56.749 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:09:56.749 +03:00 [INF] Request finished in 1.2864ms 200 image/png +2018-08-02 15:09:56.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:09:56.775 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:09:56.775 +03:00 [INF] Request finished in 1.3296ms 200 image/png +2018-08-02 15:09:56.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:09:56.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:09:56.779 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:09:56.779 +03:00 [INF] Request finished in 0.9375ms 200 image/png +2018-08-02 15:09:56.780 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:09:56.780 +03:00 [INF] Request finished in 1.1931ms 200 image/png +2018-08-02 15:09:56.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:09:56.790 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:09:56.790 +03:00 [INF] Request finished in 3.7389ms 200 image/png +2018-08-02 15:09:56.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:09:56.794 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:09:56.794 +03:00 [INF] Request finished in 1.4566ms 200 image/png +2018-08-02 15:09:56.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:09:56.796 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:09:56.796 +03:00 [INF] Request finished in 1.3445ms 200 image/png +2018-08-02 15:09:56.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:09:56.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:09:56.804 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:09:56.804 +03:00 [INF] Request finished in 0.8938ms 200 image/png +2018-08-02 15:09:56.805 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:09:56.805 +03:00 [INF] Request finished in 1.8513ms 200 image/png +2018-08-02 15:09:56.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:09:56.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:09:56.811 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:09:56.811 +03:00 [INF] Request finished in 0.8545ms 200 image/png +2018-08-02 15:09:56.812 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:09:56.813 +03:00 [INF] Request finished in 6.3898ms 200 image/png +2018-08-02 15:09:56.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:09:56.817 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:09:56.818 +03:00 [INF] Request finished in 1.1538ms 200 image/png +2018-08-02 15:09:56.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:09:56.819 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:09:56.823 +03:00 [INF] Request finished in 5.3179ms 200 image/png +2018-08-02 15:09:56.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:09:56.826 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:09:56.826 +03:00 [INF] Request finished in 1ms 200 image/png +2018-08-02 15:09:56.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:09:56.836 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:09:56.836 +03:00 [INF] Request finished in 0.9447ms 200 image/png +2018-08-02 15:09:56.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:09:56.839 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:09:56.840 +03:00 [INF] Request finished in 3.7735ms 200 image/png +2018-08-02 15:09:56.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:09:56.850 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:09:56.850 +03:00 [INF] Request finished in 1.0192ms 200 image/svg+xml +2018-08-02 15:09:56.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:09:56.860 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:09:56.860 +03:00 [INF] Request finished in 1.4832ms 200 image/png +2018-08-02 15:09:56.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:09:56.862 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:09:56.863 +03:00 [INF] Request finished in 1.8503ms 200 image/png +2018-08-02 15:09:56.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:09:56.869 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:09:56.869 +03:00 [INF] Request finished in 1.728ms 200 image/png +2018-08-02 15:09:56.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:09:56.871 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:09:56.871 +03:00 [INF] Request finished in 1.4127ms 200 image/png +2018-08-02 15:09:56.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:09:56.873 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:09:56.875 +03:00 [INF] Request finished in 3.4999ms 200 image/png +2018-08-02 15:09:56.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:09:56.876 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:09:56.876 +03:00 [INF] Request finished in 0.9291ms 200 image/png +2018-08-02 15:09:56.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:09:56.885 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:09:56.885 +03:00 [INF] Request finished in 1.2934ms 200 image/png +2018-08-02 15:09:56.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:09:56.897 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:09:56.897 +03:00 [INF] Request finished in 1.1226ms 200 image/png +2018-08-02 15:09:56.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:09:56.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:09:56.902 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:09:56.902 +03:00 [INF] Request finished in 0.8988ms 200 image/png +2018-08-02 15:09:56.902 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:09:56.902 +03:00 [INF] Request finished in 0.8574ms 200 image/png +2018-08-02 15:09:56.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:09:56.910 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:09:56.911 +03:00 [INF] Request finished in 1.8939ms 200 image/png +2018-08-02 15:09:56.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:09:56.922 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:09:56.923 +03:00 [INF] Request finished in 1.6424ms 200 image/png +2018-08-02 15:09:56.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:09:56.937 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:09:56.937 +03:00 [INF] Request finished in 0.9015ms 200 image/png +2018-08-02 15:09:56.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:09:56.951 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:09:56.951 +03:00 [INF] Request finished in 0.9387ms 200 image/png +2018-08-02 15:09:56.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:09:56.966 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:09:56.966 +03:00 [INF] Request finished in 1.7253ms 200 image/png +2018-08-02 15:09:56.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:09:56.975 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:09:56.976 +03:00 [INF] Request finished in 1.9193ms 200 image/png +2018-08-02 15:09:56.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:09:56.987 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:09:56.987 +03:00 [INF] Request finished in 1.2633ms 200 image/png +2018-08-02 15:09:57.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:09:57.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:09:57.146 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:09:57.146 +03:00 [INF] Request finished in 7.5595ms 200 image/jpeg +2018-08-02 15:09:57.148 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:09:57.148 +03:00 [INF] Request finished in 5.4198ms 200 font/woff2 +2018-08-02 15:09:58.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:09:58.008 +03:00 [INF] Request finished in 1.0872ms 404 +2018-08-02 15:10:17.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:10:17.905 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:10:17.905 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:10:17.926 +03:00 [INF] Executed action /Index in 20.473000000000003ms +2018-08-02 15:10:17.926 +03:00 [INF] Request finished in 265.6881ms 200 text/html; charset=utf-8 +2018-08-02 15:10:17.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:10:17.974 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:10:17.975 +03:00 [INF] Request finished in 3.6258ms 200 text/css +2018-08-02 15:10:17.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:10:17.979 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:10:17.980 +03:00 [INF] Request finished in 1.0316ms 200 text/css +2018-08-02 15:10:17.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:10:17.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:10:17.989 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:10:17.989 +03:00 [INF] Request finished in 1.1142ms 200 text/css +2018-08-02 15:10:17.990 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:10:17.990 +03:00 [INF] Request finished in 2.8178ms 200 text/css +2018-08-02 15:10:17.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:10:17.997 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:10:17.997 +03:00 [INF] Request finished in 1.1902ms 200 text/css +2018-08-02 15:10:18.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:10:18.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:10:18.006 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:10:18.006 +03:00 [INF] Request finished in 2.4702ms 200 text/css +2018-08-02 15:10:18.006 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:10:18.006 +03:00 [INF] Request finished in 1.4423ms 200 text/css +2018-08-02 15:10:18.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:10:18.011 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:10:18.011 +03:00 [INF] Request finished in 3.623ms 200 text/css +2018-08-02 15:10:18.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:10:18.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:10:18.021 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:10:18.022 +03:00 [INF] Request finished in 8.5755ms 200 application/javascript +2018-08-02 15:10:18.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:10:18.026 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:10:18.026 +03:00 [INF] Request finished in 6.7526ms 200 application/javascript +2018-08-02 15:10:18.027 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:10:18.028 +03:00 [INF] Request finished in 3.3194ms 200 application/javascript +2018-08-02 15:10:18.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:10:18.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:10:18.033 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:10:18.034 +03:00 [INF] Request finished in 4.0151ms 200 application/javascript +2018-08-02 15:10:18.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:10:18.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:10:18.038 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:10:18.039 +03:00 [INF] Request finished in 1.6647ms 200 application/javascript +2018-08-02 15:10:18.039 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:10:18.039 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:10:18.039 +03:00 [INF] Request finished in 1.7753ms 200 application/javascript +2018-08-02 15:10:18.039 +03:00 [INF] Request finished in 7.9518ms 200 application/javascript +2018-08-02 15:10:18.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:10:18.046 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:10:18.046 +03:00 [INF] Request finished in 1.8967ms 200 application/javascript +2018-08-02 15:10:18.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:10:18.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:10:18.055 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:10:18.055 +03:00 [INF] Request finished in 3.1817ms 200 application/javascript +2018-08-02 15:10:18.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:10:18.060 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:10:18.060 +03:00 [INF] Request finished in 1.1476ms 200 application/javascript +2018-08-02 15:10:18.064 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:10:18.064 +03:00 [INF] Request finished in 10.7716ms 200 application/javascript +2018-08-02 15:10:18.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:10:18.068 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:10:18.068 +03:00 [INF] Request finished in 3.5221ms 200 application/javascript +2018-08-02 15:10:18.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:10:18.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:10:18.079 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:10:18.079 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:10:18.079 +03:00 [INF] Request finished in 0.7638ms 200 application/javascript +2018-08-02 15:10:18.079 +03:00 [INF] Request finished in 0.8906ms 200 application/javascript +2018-08-02 15:10:18.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:10:18.084 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:10:18.084 +03:00 [INF] Request finished in 1.7782ms 200 application/javascript +2018-08-02 15:10:18.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:10:18.090 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:10:18.090 +03:00 [INF] Request finished in 1.6936ms 200 application/javascript +2018-08-02 15:10:18.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:10:18.094 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:10:18.095 +03:00 [INF] Request finished in 2.7255ms 200 application/javascript +2018-08-02 15:10:18.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:10:18.105 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:10:18.105 +03:00 [INF] Request finished in 1.0829ms 200 application/javascript +2018-08-02 15:10:18.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:10:18.115 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:10:18.115 +03:00 [INF] Request finished in 2.5535ms 200 application/javascript +2018-08-02 15:10:18.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:10:18.120 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:10:18.120 +03:00 [INF] Request finished in 1.4662ms 200 application/javascript +2018-08-02 15:10:18.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:10:18.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:10:18.127 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:10:18.127 +03:00 [INF] Request finished in 2.1822ms 200 application/javascript +2018-08-02 15:10:18.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:10:18.134 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:10:18.135 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:10:18.136 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10990000000000001ms. +2018-08-02 15:10:18.136 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:10:18.136 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9518000000000002ms +2018-08-02 15:10:18.136 +03:00 [INF] Request finished in 6.1302ms 200 text/plain; charset=utf-8 +2018-08-02 15:10:18.137 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:10:18.138 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:10:18.139 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8156ms. +2018-08-02 15:10:18.139 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:10:18.139 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.3683ms +2018-08-02 15:10:18.139 +03:00 [INF] Request finished in 14.0468ms 200 text/plain; charset=utf-8 +2018-08-02 15:10:18.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:10:18.146 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:10:18.146 +03:00 [INF] Request finished in 3.2863ms 200 application/javascript +2018-08-02 15:10:18.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:10:18.147 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:10:18.147 +03:00 [INF] Request finished in 1.1438ms 200 application/javascript +2018-08-02 15:10:18.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:10:18.153 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:10:18.154 +03:00 [INF] Request finished in 1.1083ms 200 image/svg+xml +2018-08-02 15:10:18.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:10:18.157 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:10:18.157 +03:00 [INF] Request finished in 1.9996ms 200 image/png +2018-08-02 15:10:18.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:10:18.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:10:18.159 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:10:18.159 +03:00 [INF] Request finished in 0.8011ms 200 image/png +2018-08-02 15:10:18.159 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:10:18.159 +03:00 [INF] Request finished in 0.9193ms 200 image/png +2018-08-02 15:10:18.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:10:18.173 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:10:18.173 +03:00 [INF] Request finished in 1.2243ms 200 image/png +2018-08-02 15:10:18.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:10:18.175 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:10:18.175 +03:00 [INF] Request finished in 0.9392ms 200 image/png +2018-08-02 15:10:18.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:10:18.182 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:10:18.183 +03:00 [INF] Request finished in 0.8868ms 200 image/png +2018-08-02 15:10:18.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:10:18.193 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:10:18.194 +03:00 [INF] Request finished in 2.6945ms 200 image/png +2018-08-02 15:10:18.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:10:18.200 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:10:18.200 +03:00 [INF] Request finished in 1.1684ms 200 image/png +2018-08-02 15:10:18.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:10:18.207 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:10:18.207 +03:00 [INF] Request finished in 1.2185ms 200 image/png +2018-08-02 15:10:18.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:10:18.213 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:10:18.213 +03:00 [INF] Request finished in 0.9432ms 200 image/png +2018-08-02 15:10:18.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:10:18.220 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:10:18.220 +03:00 [INF] Request finished in 1.0526ms 200 image/png +2018-08-02 15:10:18.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:10:18.225 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:10:18.225 +03:00 [INF] Request finished in 1.1816ms 200 image/png +2018-08-02 15:10:18.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:10:18.235 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:10:18.235 +03:00 [INF] Request finished in 0.9744ms 200 image/png +2018-08-02 15:10:18.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:10:18.238 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:10:18.239 +03:00 [INF] Request finished in 1.1371ms 200 image/png +2018-08-02 15:10:18.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:10:18.246 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:10:18.246 +03:00 [INF] Request finished in 1.6776ms 200 image/png +2018-08-02 15:10:18.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:10:18.252 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:10:18.252 +03:00 [INF] Request finished in 1.0672ms 200 image/png +2018-08-02 15:10:18.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:10:18.259 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:10:18.260 +03:00 [INF] Request finished in 1.0258ms 200 image/svg+xml +2018-08-02 15:10:18.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:10:18.271 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:10:18.271 +03:00 [INF] Request finished in 1.5307ms 200 image/png +2018-08-02 15:10:18.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:10:18.272 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:10:18.272 +03:00 [INF] Request finished in 0.8295ms 200 image/png +2018-08-02 15:10:18.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:10:18.278 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:10:18.278 +03:00 [INF] Request finished in 1.4121ms 200 image/png +2018-08-02 15:10:18.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:10:18.286 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:10:18.286 +03:00 [INF] Request finished in 0.9841ms 200 image/png +2018-08-02 15:10:18.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:10:18.287 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:10:18.287 +03:00 [INF] Request finished in 0.8857ms 200 image/png +2018-08-02 15:10:18.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:10:18.289 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:10:18.289 +03:00 [INF] Request finished in 2.0852ms 200 image/png +2018-08-02 15:10:18.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:10:18.294 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:10:18.294 +03:00 [INF] Request finished in 1.8392ms 200 image/png +2018-08-02 15:10:18.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:10:18.299 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:10:18.299 +03:00 [INF] Request finished in 1.0781ms 200 image/png +2018-08-02 15:10:18.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:10:18.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:10:18.304 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:10:18.304 +03:00 [INF] Request finished in 1.1906ms 200 image/png +2018-08-02 15:10:18.304 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:10:18.305 +03:00 [INF] Request finished in 0.731ms 200 image/png +2018-08-02 15:10:18.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:10:18.309 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:10:18.309 +03:00 [INF] Request finished in 1.1696ms 200 image/png +2018-08-02 15:10:18.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:10:18.318 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:10:18.318 +03:00 [INF] Request finished in 1.2228ms 200 image/png +2018-08-02 15:10:18.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:10:18.322 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:10:18.322 +03:00 [INF] Request finished in 1.0976ms 200 image/png +2018-08-02 15:10:18.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:10:18.324 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:10:18.324 +03:00 [INF] Request finished in 1.1078ms 200 image/png +2018-08-02 15:10:18.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:10:18.334 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:10:18.334 +03:00 [INF] Request finished in 0.8733ms 200 image/png +2018-08-02 15:10:18.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:10:18.338 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:10:18.339 +03:00 [INF] Request finished in 0.8827ms 200 image/png +2018-08-02 15:10:18.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:10:18.346 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:10:18.346 +03:00 [INF] Request finished in 1.4495ms 200 image/png +2018-08-02 15:10:18.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:10:18.458 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:10:18.459 +03:00 [INF] Request finished in 7.4236ms 200 image/jpeg +2018-08-02 15:10:18.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:10:18.462 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:10:18.463 +03:00 [INF] Request finished in 3.7228ms 200 font/woff2 +2018-08-02 15:10:19.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:10:19.179 +03:00 [INF] Request finished in 0.8903ms 404 +2018-08-02 15:11:00.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:11:00.289 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:11:00.289 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:11:00.312 +03:00 [INF] Executed action /Index in 22.5734ms +2018-08-02 15:11:00.312 +03:00 [INF] Request finished in 309.7413ms 200 text/html; charset=utf-8 +2018-08-02 15:11:00.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:11:00.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:11:00.369 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:11:00.369 +03:00 [INF] Request finished in 4.6003ms 200 text/css +2018-08-02 15:11:00.370 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:11:00.371 +03:00 [INF] Request finished in 1.7961ms 200 text/css +2018-08-02 15:11:00.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:11:00.375 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:11:00.375 +03:00 [INF] Request finished in 1.4419ms 200 text/css +2018-08-02 15:11:00.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:11:00.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:11:00.383 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:11:00.383 +03:00 [INF] Request finished in 1.6947ms 200 text/css +2018-08-02 15:11:00.383 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:11:00.384 +03:00 [INF] Request finished in 0.8395ms 200 text/css +2018-08-02 15:11:00.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:11:00.397 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:11:00.398 +03:00 [INF] Request finished in 1.8244ms 200 text/css +2018-08-02 15:11:00.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:11:00.399 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:11:00.399 +03:00 [INF] Request finished in 1.0138ms 200 text/css +2018-08-02 15:11:00.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:11:00.404 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:11:00.404 +03:00 [INF] Request finished in 2.3955ms 200 text/css +2018-08-02 15:11:00.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:11:00.409 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:11:00.409 +03:00 [INF] Request finished in 1.205ms 200 application/javascript +2018-08-02 15:11:00.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:11:00.422 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:11:00.422 +03:00 [INF] Request finished in 6.3255ms 200 application/javascript +2018-08-02 15:11:00.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:11:00.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:11:00.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:11:00.445 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:11:00.445 +03:00 [INF] Request finished in 5.1742ms 200 application/javascript +2018-08-02 15:11:00.448 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:11:00.448 +03:00 [INF] Request finished in 4.0588ms 200 application/javascript +2018-08-02 15:11:00.460 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:11:00.461 +03:00 [INF] Request finished in 18.3925ms 200 application/javascript +2018-08-02 15:11:00.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:11:00.466 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:11:00.466 +03:00 [INF] Request finished in 1.7071ms 200 application/javascript +2018-08-02 15:11:00.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:11:00.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:11:00.490 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:11:00.490 +03:00 [INF] Request finished in 0.775ms 200 application/javascript +2018-08-02 15:11:00.491 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:11:00.491 +03:00 [INF] Request finished in 1.7353ms 200 application/javascript +2018-08-02 15:11:00.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:11:00.505 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:11:00.505 +03:00 [INF] Request finished in 4.3472ms 200 application/javascript +2018-08-02 15:11:00.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:11:00.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:11:00.508 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:11:00.508 +03:00 [INF] Request finished in 1.0999ms 200 application/javascript +2018-08-02 15:11:00.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:11:00.515 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:11:00.515 +03:00 [INF] Request finished in 1.0538ms 200 application/javascript +2018-08-02 15:11:00.517 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:11:00.517 +03:00 [INF] Request finished in 10.486ms 200 application/javascript +2018-08-02 15:11:00.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:11:00.526 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:11:00.526 +03:00 [INF] Request finished in 0.9229ms 200 application/javascript +2018-08-02 15:11:00.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:11:00.528 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:11:00.528 +03:00 [INF] Request finished in 1.3238ms 200 application/javascript +2018-08-02 15:11:00.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:11:00.560 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:11:00.560 +03:00 [INF] Request finished in 1.2197ms 200 application/javascript +2018-08-02 15:11:00.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:11:00.562 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:11:00.562 +03:00 [INF] Request finished in 1.7751ms 200 application/javascript +2018-08-02 15:11:00.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:11:00.566 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:11:00.566 +03:00 [INF] Request finished in 1.9453ms 200 application/javascript +2018-08-02 15:11:00.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:11:00.577 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:11:00.578 +03:00 [INF] Request finished in 1.6795ms 200 application/javascript +2018-08-02 15:11:00.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:11:00.593 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:11:00.593 +03:00 [INF] Request finished in 1.8519ms 200 application/javascript +2018-08-02 15:11:00.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:11:00.596 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:11:00.596 +03:00 [INF] Request finished in 1.4242ms 200 application/javascript +2018-08-02 15:11:00.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:11:00.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:11:00.599 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:11:00.599 +03:00 [INF] Request finished in 1.4634ms 200 application/javascript +2018-08-02 15:11:00.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:11:00.605 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:11:00.606 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:11:00.606 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.112ms. +2018-08-02 15:11:00.607 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:11:00.607 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7863ms +2018-08-02 15:11:00.607 +03:00 [INF] Request finished in 6.4121ms 200 text/plain; charset=utf-8 +2018-08-02 15:11:00.610 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:11:00.611 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:11:00.611 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.47950000000000004ms. +2018-08-02 15:11:00.612 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:11:00.612 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.0626ms +2018-08-02 15:11:00.612 +03:00 [INF] Request finished in 13.6238ms 200 text/plain; charset=utf-8 +2018-08-02 15:11:00.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:11:00.618 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:11:00.618 +03:00 [INF] Request finished in 1.248ms 200 application/javascript +2018-08-02 15:11:00.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:11:00.627 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:11:00.627 +03:00 [INF] Request finished in 3.5341ms 200 application/javascript +2018-08-02 15:11:00.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:11:00.630 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:11:00.630 +03:00 [INF] Request finished in 0.8551ms 200 image/svg+xml +2018-08-02 15:11:00.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:11:00.634 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:11:00.635 +03:00 [INF] Request finished in 1.5842ms 200 image/png +2018-08-02 15:11:00.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:11:00.655 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:11:00.656 +03:00 [INF] Request finished in 1.4449ms 200 image/png +2018-08-02 15:11:00.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:11:00.657 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:11:00.657 +03:00 [INF] Request finished in 0.8066ms 200 image/png +2018-08-02 15:11:00.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:11:00.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:11:00.658 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:11:00.658 +03:00 [INF] Request finished in 0.8643ms 200 image/png +2018-08-02 15:11:00.659 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:11:00.659 +03:00 [INF] Request finished in 1.0825ms 200 image/png +2018-08-02 15:11:00.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:11:00.673 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:11:00.673 +03:00 [INF] Request finished in 0.9056ms 200 image/png +2018-08-02 15:11:00.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:11:00.686 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:11:00.687 +03:00 [INF] Request finished in 3.075ms 200 image/png +2018-08-02 15:11:00.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:11:00.695 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:11:00.695 +03:00 [INF] Request finished in 0.8449ms 200 image/png +2018-08-02 15:11:00.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:11:00.697 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:11:00.697 +03:00 [INF] Request finished in 1.1987ms 200 image/png +2018-08-02 15:11:00.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:11:00.699 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:11:00.699 +03:00 [INF] Request finished in 0.814ms 200 image/png +2018-08-02 15:11:00.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:11:00.709 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:11:00.709 +03:00 [INF] Request finished in 7.2175ms 200 image/png +2018-08-02 15:11:00.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:11:00.715 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:11:00.716 +03:00 [INF] Request finished in 1.4119ms 200 image/png +2018-08-02 15:11:00.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:11:00.719 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:11:00.719 +03:00 [INF] Request finished in 1.6564ms 200 image/png +2018-08-02 15:11:00.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:11:00.721 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:11:00.721 +03:00 [INF] Request finished in 1.8219ms 200 image/png +2018-08-02 15:11:00.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:11:00.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:11:00.738 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:11:00.738 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:11:00.738 +03:00 [INF] Request finished in 1.1973ms 200 image/png +2018-08-02 15:11:00.738 +03:00 [INF] Request finished in 1.1392ms 200 image/png +2018-08-02 15:11:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:11:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:11:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:11:00.756 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:11:00.756 +03:00 [INF] Request finished in 0.867ms 200 image/png +2018-08-02 15:11:00.756 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:11:00.756 +03:00 [INF] Request finished in 1.0787ms 200 image/png +2018-08-02 15:11:00.756 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:11:00.756 +03:00 [INF] Request finished in 1.259ms 200 image/png +2018-08-02 15:11:00.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:11:00.759 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:11:00.759 +03:00 [INF] Request finished in 0.8598ms 200 image/svg+xml +2018-08-02 15:11:00.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:11:00.760 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:11:00.760 +03:00 [INF] Request finished in 0.8677ms 200 image/png +2018-08-02 15:11:00.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:11:00.772 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:11:00.772 +03:00 [INF] Request finished in 2.7411ms 200 image/png +2018-08-02 15:11:00.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:11:00.775 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:11:00.775 +03:00 [INF] Request finished in 1.3589ms 200 image/png +2018-08-02 15:11:00.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:11:00.778 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:11:00.778 +03:00 [INF] Request finished in 1.5577ms 200 image/png +2018-08-02 15:11:00.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:11:00.779 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:11:00.780 +03:00 [INF] Request finished in 1.1397ms 200 image/png +2018-08-02 15:11:00.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:11:00.781 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:11:00.782 +03:00 [INF] Request finished in 1.7037ms 200 image/png +2018-08-02 15:11:00.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:11:00.790 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:11:00.790 +03:00 [INF] Request finished in 1.313ms 200 image/png +2018-08-02 15:11:00.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:11:00.793 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:11:00.793 +03:00 [INF] Request finished in 1.506ms 200 image/png +2018-08-02 15:11:00.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:11:00.799 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:11:00.799 +03:00 [INF] Request finished in 1.0223ms 200 image/png +2018-08-02 15:11:00.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:11:00.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:11:00.805 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:11:00.805 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:11:00.805 +03:00 [INF] Request finished in 1.9621ms 200 image/png +2018-08-02 15:11:00.805 +03:00 [INF] Request finished in 2.1973ms 200 image/png +2018-08-02 15:11:00.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:11:00.810 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:11:00.811 +03:00 [INF] Request finished in 0.8131ms 200 image/png +2018-08-02 15:11:00.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:11:00.814 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:11:00.814 +03:00 [INF] Request finished in 1.0314ms 200 image/png +2018-08-02 15:11:00.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:11:00.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:11:00.826 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:11:00.826 +03:00 [INF] Request finished in 1.8656ms 200 image/png +2018-08-02 15:11:00.836 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:11:00.836 +03:00 [INF] Request finished in 10.0636ms 200 image/jpeg +2018-08-02 15:11:00.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:11:00.850 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:11:00.850 +03:00 [INF] Request finished in 3.0028ms 200 font/woff2 +2018-08-02 15:11:01.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:11:01.934 +03:00 [INF] Request finished in 0.9062ms 404 +2018-08-02 15:11:32.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:11:33.227 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:11:33.228 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:11:33.255 +03:00 [INF] Executed action /Index in 27.6413ms +2018-08-02 15:11:33.255 +03:00 [INF] Request finished in 309.9873ms 200 text/html; charset=utf-8 +2018-08-02 15:11:33.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:11:33.307 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:11:33.307 +03:00 [INF] Request finished in 4.5075ms 200 text/css +2018-08-02 15:11:33.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:11:33.312 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:11:33.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:11:33.312 +03:00 [INF] Request finished in 1.8706ms 200 text/css +2018-08-02 15:11:33.313 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:11:33.313 +03:00 [INF] Request finished in 2.3592ms 200 text/css +2018-08-02 15:11:33.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:11:33.315 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:11:33.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:11:33.315 +03:00 [INF] Request finished in 1.081ms 200 text/css +2018-08-02 15:11:33.316 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:11:33.316 +03:00 [INF] Request finished in 1.332ms 200 text/css +2018-08-02 15:11:33.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:11:33.322 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:11:33.322 +03:00 [INF] Request finished in 4.5464ms 200 text/css +2018-08-02 15:11:33.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:11:33.328 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:11:33.329 +03:00 [INF] Request finished in 2.5027ms 200 text/css +2018-08-02 15:11:33.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:11:33.337 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:11:33.337 +03:00 [INF] Request finished in 1.5746ms 200 text/css +2018-08-02 15:11:33.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:11:33.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:11:33.360 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:11:33.360 +03:00 [INF] Request finished in 1.823ms 200 application/javascript +2018-08-02 15:11:33.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:11:33.363 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:11:33.363 +03:00 [INF] Request finished in 1.2848ms 200 application/javascript +2018-08-02 15:11:33.366 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:11:33.366 +03:00 [INF] Request finished in 6.9873ms 200 application/javascript +2018-08-02 15:11:33.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:11:33.374 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:11:33.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:11:33.374 +03:00 [INF] Request finished in 4.6909ms 200 application/javascript +2018-08-02 15:11:33.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:11:33.377 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:11:33.378 +03:00 [INF] Request finished in 3.2502ms 200 application/javascript +2018-08-02 15:11:33.378 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:11:33.378 +03:00 [INF] Request finished in 1.2117ms 200 application/javascript +2018-08-02 15:11:33.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:11:33.414 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:11:33.415 +03:00 [INF] Request finished in 1.9241ms 200 application/javascript +2018-08-02 15:11:33.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:11:33.422 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:11:33.422 +03:00 [INF] Request finished in 1.7561ms 200 application/javascript +2018-08-02 15:11:33.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:11:33.427 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:11:33.428 +03:00 [INF] Request finished in 4.286ms 200 application/javascript +2018-08-02 15:11:33.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:11:33.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:11:33.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:11:33.464 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:11:33.464 +03:00 [INF] Request finished in 2.3292ms 200 application/javascript +2018-08-02 15:11:33.465 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:11:33.465 +03:00 [INF] Request finished in 2.7784ms 200 application/javascript +2018-08-02 15:11:33.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:11:33.473 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:11:33.473 +03:00 [INF] Request finished in 1.9762ms 200 application/javascript +2018-08-02 15:11:33.474 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:11:33.475 +03:00 [INF] Request finished in 12.757ms 200 application/javascript +2018-08-02 15:11:33.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:11:33.511 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:11:33.512 +03:00 [INF] Request finished in 2.4007ms 200 application/javascript +2018-08-02 15:11:33.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:11:33.529 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:11:33.529 +03:00 [INF] Request finished in 1.6509ms 200 application/javascript +2018-08-02 15:11:33.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:11:33.532 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:11:33.532 +03:00 [INF] Request finished in 1.0713ms 200 application/javascript +2018-08-02 15:11:33.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:11:33.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:11:33.553 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:11:33.554 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:11:33.554 +03:00 [INF] Request finished in 3.0721ms 200 application/javascript +2018-08-02 15:11:33.555 +03:00 [INF] Request finished in 2.4503ms 200 application/javascript +2018-08-02 15:11:33.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:11:33.563 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:11:33.563 +03:00 [INF] Request finished in 1.2895ms 200 application/javascript +2018-08-02 15:11:33.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:11:33.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:11:33.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:11:33.568 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:11:33.569 +03:00 [INF] Request finished in 2.0395ms 200 application/javascript +2018-08-02 15:11:33.569 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:11:33.569 +03:00 [INF] Request finished in 2.3935ms 200 application/javascript +2018-08-02 15:11:33.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:11:33.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:11:33.574 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:11:33.574 +03:00 [INF] Request finished in 0.8857ms 200 application/javascript +2018-08-02 15:11:33.576 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:11:33.576 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:11:33.577 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:11:33.578 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.45890000000000003ms. +2018-08-02 15:11:33.578 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:11:33.578 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.7526000000000002ms +2018-08-02 15:11:33.578 +03:00 [INF] Request finished in 11.7609ms 200 text/plain; charset=utf-8 +2018-08-02 15:11:33.579 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:11:33.580 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1153ms. +2018-08-02 15:11:33.580 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:11:33.580 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.7132ms +2018-08-02 15:11:33.582 +03:00 [INF] Request finished in 9.0004ms 200 text/plain; charset=utf-8 +2018-08-02 15:11:33.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:11:33.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:11:33.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:11:33.592 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:11:33.592 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:11:33.592 +03:00 [INF] Request finished in 0.8229ms 200 image/svg+xml +2018-08-02 15:11:33.592 +03:00 [INF] Request finished in 0.8516ms 200 application/javascript +2018-08-02 15:11:33.592 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:11:33.592 +03:00 [INF] Request finished in 1.0133ms 200 image/png +2018-08-02 15:11:33.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:11:33.596 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:11:33.597 +03:00 [INF] Request finished in 1.2519ms 200 image/png +2018-08-02 15:11:33.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:11:33.609 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:11:33.609 +03:00 [INF] Request finished in 3.414ms 200 image/png +2018-08-02 15:11:33.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:11:33.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:11:33.620 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:11:33.620 +03:00 [INF] Request finished in 3.5363ms 200 image/png +2018-08-02 15:11:33.621 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:11:33.621 +03:00 [INF] Request finished in 1.5797ms 200 image/png +2018-08-02 15:11:33.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:11:33.623 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:11:33.624 +03:00 [INF] Request finished in 1.5342ms 200 image/png +2018-08-02 15:11:33.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:11:33.625 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:11:33.625 +03:00 [INF] Request finished in 1.1299ms 200 image/png +2018-08-02 15:11:33.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:11:33.637 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:11:33.637 +03:00 [INF] Request finished in 5.8806ms 200 image/png +2018-08-02 15:11:33.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:11:33.640 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:11:33.640 +03:00 [INF] Request finished in 0.8751ms 200 image/png +2018-08-02 15:11:33.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:11:33.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:11:33.643 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:11:33.643 +03:00 [INF] Request finished in 2.7619ms 200 image/png +2018-08-02 15:11:33.643 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:11:33.643 +03:00 [INF] Request finished in 1.9318ms 200 image/png +2018-08-02 15:11:33.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:11:33.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:11:33.647 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:11:33.647 +03:00 [INF] Request finished in 2.0609ms 200 image/png +2018-08-02 15:11:33.648 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:11:33.649 +03:00 [INF] Request finished in 1.5289ms 200 image/png +2018-08-02 15:11:33.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:11:33.650 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:11:33.650 +03:00 [INF] Request finished in 0.819ms 200 image/png +2018-08-02 15:11:33.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:11:33.655 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:11:33.655 +03:00 [INF] Request finished in 1.9561ms 200 image/svg+xml +2018-08-02 15:11:33.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:11:33.657 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:11:33.657 +03:00 [INF] Request finished in 1.6987ms 200 image/png +2018-08-02 15:11:33.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:11:33.659 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:11:33.659 +03:00 [INF] Request finished in 0.9117ms 200 image/png +2018-08-02 15:11:33.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:11:33.664 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:11:33.665 +03:00 [INF] Request finished in 1.536ms 200 image/png +2018-08-02 15:11:33.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:11:33.671 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:11:33.671 +03:00 [INF] Request finished in 1.0619ms 200 image/png +2018-08-02 15:11:33.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:11:33.677 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:11:33.677 +03:00 [INF] Request finished in 1.2068ms 200 image/png +2018-08-02 15:11:33.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:11:33.687 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:11:33.687 +03:00 [INF] Request finished in 0.9455ms 200 image/png +2018-08-02 15:11:33.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:11:33.700 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:11:33.700 +03:00 [INF] Request finished in 0.8316ms 200 image/png +2018-08-02 15:11:33.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:11:33.703 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:11:33.703 +03:00 [INF] Request finished in 1.3378ms 200 image/png +2018-08-02 15:11:33.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:11:33.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:11:33.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:11:33.713 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:11:33.713 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:11:33.713 +03:00 [INF] Request finished in 0.6418ms 200 image/png +2018-08-02 15:11:33.713 +03:00 [INF] Request finished in 0.8313ms 200 image/png +2018-08-02 15:11:33.713 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:11:33.713 +03:00 [INF] Request finished in 0.9109ms 200 image/png +2018-08-02 15:11:33.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:11:33.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:11:33.724 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:11:33.724 +03:00 [INF] Request finished in 0.8758ms 200 image/png +2018-08-02 15:11:33.725 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:11:33.726 +03:00 [INF] Request finished in 2.3996ms 200 image/png +2018-08-02 15:11:33.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:11:33.741 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:11:33.742 +03:00 [INF] Request finished in 1.5623ms 200 image/png +2018-08-02 15:11:33.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:11:33.747 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:11:33.747 +03:00 [INF] Request finished in 1.1959ms 200 image/png +2018-08-02 15:11:33.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:11:33.752 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:11:33.752 +03:00 [INF] Request finished in 1.9208ms 200 image/png +2018-08-02 15:11:33.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:11:33.754 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:11:33.754 +03:00 [INF] Request finished in 1.9209ms 200 image/png +2018-08-02 15:11:33.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:11:33.756 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:11:33.756 +03:00 [INF] Request finished in 1.6619ms 200 image/png +2018-08-02 15:11:33.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:11:33.763 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:11:33.763 +03:00 [INF] Request finished in 5.3643ms 200 image/png +2018-08-02 15:11:33.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:11:33.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:11:33.769 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:11:33.770 +03:00 [INF] Request finished in 3.2092ms 200 font/woff2 +2018-08-02 15:11:33.778 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:11:33.778 +03:00 [INF] Request finished in 13.0841ms 200 image/jpeg +2018-08-02 15:11:35.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:11:35.049 +03:00 [INF] Request finished in 1.1838ms 404 +2018-08-02 15:13:53.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-02 15:13:54.279 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-02 15:13:54.334 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:13:54.376 +03:00 [INF] Executed action /Templates in 96.7568ms +2018-08-02 15:13:54.376 +03:00 [INF] Request finished in 413.2829ms 200 text/html; charset=utf-8 +2018-08-02 15:13:54.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:13:54.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:13:54.425 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:13:54.425 +03:00 [INF] Request finished in 1.4295ms 200 text/css +2018-08-02 15:13:54.426 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:13:54.426 +03:00 [INF] Request finished in 4.8531ms 200 text/css +2018-08-02 15:13:54.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:13:54.434 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:13:54.434 +03:00 [INF] Request finished in 1.1187ms 200 text/css +2018-08-02 15:13:54.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:13:54.437 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:13:54.437 +03:00 [INF] Request finished in 1.2846ms 200 text/css +2018-08-02 15:13:54.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:13:54.442 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:13:54.442 +03:00 [INF] Request finished in 1.133ms 200 text/css +2018-08-02 15:13:54.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:13:54.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:13:54.452 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:13:54.452 +03:00 [INF] Request finished in 1.1706ms 200 text/css +2018-08-02 15:13:54.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:13:54.452 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:13:54.452 +03:00 [INF] Request finished in 1.5793ms 200 text/css +2018-08-02 15:13:54.454 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:13:54.455 +03:00 [INF] Request finished in 3.0187ms 200 text/css +2018-08-02 15:13:54.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:13:54.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:13:54.461 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:13:54.462 +03:00 [INF] Request finished in 1.5422ms 200 application/javascript +2018-08-02 15:13:54.467 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:13:54.467 +03:00 [INF] Request finished in 5.7908ms 200 application/javascript +2018-08-02 15:13:54.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:13:54.478 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:13:54.478 +03:00 [INF] Request finished in 2.204ms 200 application/javascript +2018-08-02 15:13:54.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:13:54.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:13:54.504 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:13:54.504 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:13:54.505 +03:00 [INF] Request finished in 4.6144ms 200 application/javascript +2018-08-02 15:13:54.506 +03:00 [INF] Request finished in 6.2706ms 200 application/javascript +2018-08-02 15:13:54.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:13:54.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:13:54.513 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:13:54.513 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:13:54.513 +03:00 [INF] Request finished in 4.998ms 200 application/javascript +2018-08-02 15:13:54.513 +03:00 [INF] Request finished in 3.6556ms 200 application/javascript +2018-08-02 15:13:54.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:13:54.516 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:13:54.517 +03:00 [INF] Request finished in 2.0143ms 200 application/javascript +2018-08-02 15:13:54.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:13:54.526 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:13:54.526 +03:00 [INF] Request finished in 4.6491ms 200 application/javascript +2018-08-02 15:13:54.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:13:54.530 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:13:54.531 +03:00 [INF] Request finished in 1.7903ms 200 application/javascript +2018-08-02 15:13:54.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:13:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:13:54.542 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:13:54.543 +03:00 [INF] Request finished in 1.908ms 200 application/javascript +2018-08-02 15:13:54.544 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:13:54.545 +03:00 [INF] Request finished in 12.6981ms 200 application/javascript +2018-08-02 15:13:54.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:13:54.548 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:13:54.548 +03:00 [INF] Request finished in 0.9084ms 200 application/javascript +2018-08-02 15:13:54.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:13:54.555 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:13:54.555 +03:00 [INF] Request finished in 1.4947ms 200 application/javascript +2018-08-02 15:13:54.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:13:54.568 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:13:54.569 +03:00 [INF] Request finished in 1.5495ms 200 application/javascript +2018-08-02 15:13:54.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:13:54.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:13:54.577 +03:00 [INF] Request finished in 2.1383ms 200 application/javascript +2018-08-02 15:13:54.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:13:54.591 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:13:54.593 +03:00 [INF] Request finished in 1.6793ms 200 application/javascript +2018-08-02 15:13:54.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:13:54.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:13:54.604 +03:00 [INF] Request finished in 1.1082ms 200 application/javascript +2018-08-02 15:13:54.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:13:54.612 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:13:54.612 +03:00 [INF] Request finished in 1.9113ms 200 application/javascript +2018-08-02 15:13:54.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:13:54.619 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:13:54.619 +03:00 [INF] Request finished in 2.1846ms 200 application/javascript +2018-08-02 15:13:54.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:13:54.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:13:54.629 +03:00 [INF] Request finished in 1.7777ms 200 application/javascript +2018-08-02 15:13:54.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:13:54.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:13:54.638 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:13:54.639 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:13:54.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:13:54.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:13:54.640 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1008ms. +2018-08-02 15:13:54.640 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:13:54.640 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3755ms. +2018-08-02 15:13:54.640 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:13:54.640 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 1.4375ms +2018-08-02 15:13:54.640 +03:00 [INF] Request finished in 8.4323ms 200 text/plain; charset=utf-8 +2018-08-02 15:13:54.640 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7443000000000002ms +2018-08-02 15:13:54.641 +03:00 [INF] Request finished in 4.4649ms 200 text/plain; charset=utf-8 +2018-08-02 15:13:54.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:13:54.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:13:54.651 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:13:54.651 +03:00 [INF] Request finished in 1.0106ms 200 application/javascript +2018-08-02 15:13:54.652 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:13:54.652 +03:00 [INF] Request finished in 1.1879ms 200 application/javascript +2018-08-02 15:13:54.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-02 15:13:54.657 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-02 15:13:54.657 +03:00 [INF] Request finished in 2.2697ms 200 application/javascript +2018-08-02 15:13:54.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:13:54.665 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:13:54.665 +03:00 [INF] Request finished in 0.776ms 200 image/svg+xml +2018-08-02 15:13:54.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:13:54.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:13:54.720 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:13:54.720 +03:00 [INF] Request finished in 1.4821ms 200 font/woff2 +2018-08-02 15:13:54.730 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:13:54.731 +03:00 [INF] Request finished in 12.743ms 200 image/jpeg +2018-08-02 15:13:55.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:13:55.511 +03:00 [INF] Request finished in 1.5812ms 404 +2018-08-02 15:50:30.064 +03:00 [INF] Loaded modules: +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-02 15:50:30.081 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-02 15:50:30.082 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-02 15:50:30.569 +03:00 [INF] Initialized all modules. +2018-08-02 15:50:30.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-02 15:50:32.927 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-02 15:50:32.947 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-02 15:50:33.562 +03:00 [INF] Executed action /Index in 629.1739ms +2018-08-02 15:50:33.579 +03:00 [INF] Request finished in 2777.7822ms 200 text/html; charset=utf-8 +2018-08-02 15:50:33.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-02 15:50:33.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-02 15:50:33.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-02 15:50:33.637 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-02 15:50:33.637 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-02 15:50:33.637 +03:00 [INF] Request finished in 8.7172ms 200 text/css +2018-08-02 15:50:33.637 +03:00 [INF] Request finished in 8.9991ms 200 text/css +2018-08-02 15:50:33.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-02 15:50:33.642 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-02 15:50:33.643 +03:00 [INF] Request finished in 2.3786ms 200 text/css +2018-08-02 15:50:33.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-02 15:50:33.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-02 15:50:33.646 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-02 15:50:33.646 +03:00 [INF] Request finished in 1.9193ms 200 text/css +2018-08-02 15:50:33.647 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-02 15:50:33.647 +03:00 [INF] Request finished in 3.6134ms 200 text/css +2018-08-02 15:50:33.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-02 15:50:33.657 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-02 15:50:33.657 +03:00 [INF] Request finished in 1.0143ms 200 text/css +2018-08-02 15:50:33.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-02 15:50:33.660 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-02 15:50:33.660 +03:00 [INF] Request finished in 2.2124ms 200 text/css +2018-08-02 15:50:33.663 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-02 15:50:33.663 +03:00 [INF] Request finished in 35.1072ms 200 text/css +2018-08-02 15:50:33.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-02 15:50:33.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-02 15:50:33.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-02 15:50:33.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-02 15:50:33.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-02 15:50:33.688 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-02 15:50:33.688 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-02 15:50:33.688 +03:00 [INF] Request finished in 0.9872ms 200 image/png +2018-08-02 15:50:33.689 +03:00 [INF] Request finished in 1.0382ms 200 image/png +2018-08-02 15:50:33.689 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-02 15:50:33.689 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-02 15:50:33.689 +03:00 [INF] Request finished in 1.1772ms 200 image/png +2018-08-02 15:50:33.689 +03:00 [INF] Request finished in 0.6643ms 200 image/png +2018-08-02 15:50:33.689 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-02 15:50:33.689 +03:00 [INF] Request finished in 0.5713ms 200 image/png +2018-08-02 15:50:33.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-02 15:50:33.701 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-02 15:50:33.701 +03:00 [INF] Request finished in 1.4686ms 200 image/png +2018-08-02 15:50:33.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-02 15:50:33.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-02 15:50:33.706 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-02 15:50:33.706 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-02 15:50:33.706 +03:00 [INF] Request finished in 0.923ms 200 image/png +2018-08-02 15:50:33.706 +03:00 [INF] Request finished in 0.7724ms 200 image/png +2018-08-02 15:50:33.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-02 15:50:33.714 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-02 15:50:33.714 +03:00 [INF] Request finished in 6.2334ms 200 image/png +2018-08-02 15:50:33.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-02 15:50:33.717 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-02 15:50:33.717 +03:00 [INF] Request finished in 2.8492ms 200 image/png +2018-08-02 15:50:33.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-02 15:50:33.722 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-02 15:50:33.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-02 15:50:33.724 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-02 15:50:33.726 +03:00 [INF] Request finished in 3.3725ms 200 image/png +2018-08-02 15:50:33.728 +03:00 [INF] Request finished in 6.8056ms 200 image/png +2018-08-02 15:50:33.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-02 15:50:33.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-02 15:50:33.732 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-02 15:50:33.732 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-02 15:50:33.732 +03:00 [INF] Request finished in 1.2805ms 200 image/png +2018-08-02 15:50:33.734 +03:00 [INF] Request finished in 6.0486ms 200 image/png +2018-08-02 15:50:33.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-02 15:50:33.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-02 15:50:33.737 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-02 15:50:33.737 +03:00 [INF] Request finished in 1.113ms 200 image/png +2018-08-02 15:50:33.738 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-02 15:50:33.738 +03:00 [INF] Request finished in 0.9858ms 200 image/png +2018-08-02 15:50:33.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/demo.svg +2018-08-02 15:50:33.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-02 15:50:33.742 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-02 15:50:33.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-02 15:50:33.742 +03:00 [INF] Request finished in 1.7565ms 200 image/png +2018-08-02 15:50:33.744 +03:00 [INF] Sending file. Request path: '/img/demo.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\demo.svg' +2018-08-02 15:50:33.744 +03:00 [INF] Request finished in 4.0684ms 200 image/svg+xml +2018-08-02 15:50:33.744 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-02 15:50:33.744 +03:00 [INF] Request finished in 2.471ms 200 image/png +2018-08-02 15:50:33.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-02 15:50:33.763 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-02 15:50:33.763 +03:00 [INF] Request finished in 1.1315ms 200 image/png +2018-08-02 15:50:33.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-02 15:50:33.773 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-02 15:50:33.773 +03:00 [INF] Request finished in 0.8163ms 200 image/png +2018-08-02 15:50:33.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-02 15:50:33.795 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-02 15:50:33.795 +03:00 [INF] Request finished in 0.9629ms 200 image/png +2018-08-02 15:50:33.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-02 15:50:33.803 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-02 15:50:33.803 +03:00 [INF] Request finished in 1.0245ms 200 image/png +2018-08-02 15:50:33.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-02 15:50:33.827 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-02 15:50:33.827 +03:00 [INF] Request finished in 3.5125ms 200 image/png +2018-08-02 15:50:33.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-02 15:50:33.832 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-02 15:50:33.832 +03:00 [INF] Request finished in 1.4041ms 200 image/png +2018-08-02 15:50:33.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-02 15:50:33.842 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-02 15:50:33.842 +03:00 [INF] Request finished in 1.6837ms 200 image/png +2018-08-02 15:50:33.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-02 15:50:33.850 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-02 15:50:33.850 +03:00 [INF] Request finished in 1.4201ms 200 image/png +2018-08-02 15:50:33.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-02 15:50:33.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-02 15:50:33.855 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-02 15:50:33.855 +03:00 [INF] Request finished in 1.3624ms 200 image/png +2018-08-02 15:50:33.857 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-02 15:50:33.857 +03:00 [INF] Request finished in 2.0609ms 200 image/png +2018-08-02 15:50:33.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-02 15:50:33.859 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-02 15:50:33.861 +03:00 [INF] Request finished in 3.3489ms 200 image/png +2018-08-02 15:50:33.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-02 15:50:33.864 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-02 15:50:33.865 +03:00 [INF] Request finished in 1.4425ms 200 image/png +2018-08-02 15:50:33.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-02 15:50:33.871 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-02 15:50:33.871 +03:00 [INF] Request finished in 2.7076ms 200 image/png +2018-08-02 15:50:33.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-02 15:50:33.876 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-02 15:50:33.877 +03:00 [INF] Request finished in 1.0833ms 200 image/png +2018-08-02 15:50:33.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-02 15:50:33.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-02 15:50:33.882 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-02 15:50:33.882 +03:00 [INF] Request finished in 2.5481ms 200 image/png +2018-08-02 15:50:33.887 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-02 15:50:33.887 +03:00 [INF] Request finished in 8.1632ms 200 application/javascript +2018-08-02 15:50:33.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-02 15:50:33.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-02 15:50:33.895 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-02 15:50:33.895 +03:00 [INF] Request finished in 0.9403ms 200 application/javascript +2018-08-02 15:50:33.901 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-02 15:50:33.901 +03:00 [INF] Request finished in 10.5634ms 200 application/javascript +2018-08-02 15:50:33.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-02 15:50:33.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-02 15:50:33.904 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-02 15:50:33.905 +03:00 [INF] Request finished in 0.9782ms 200 application/javascript +2018-08-02 15:50:33.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-02 15:50:33.906 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-02 15:50:33.906 +03:00 [INF] Request finished in 1.6488ms 200 application/javascript +2018-08-02 15:50:33.916 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-02 15:50:33.916 +03:00 [INF] Request finished in 13.8209ms 200 application/javascript +2018-08-02 15:50:33.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-02 15:50:33.919 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-02 15:50:33.920 +03:00 [INF] Request finished in 3.5284ms 200 application/javascript +2018-08-02 15:50:33.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-02 15:50:33.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-02 15:50:33.930 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-02 15:50:33.930 +03:00 [INF] Request finished in 1.0513ms 200 application/javascript +2018-08-02 15:50:33.933 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-02 15:50:33.933 +03:00 [INF] Request finished in 3.7042ms 200 application/javascript +2018-08-02 15:50:33.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-02 15:50:33.947 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-02 15:50:33.947 +03:00 [INF] Request finished in 12.8159ms 200 application/javascript +2018-08-02 15:50:33.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-02 15:50:33.955 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-02 15:50:33.955 +03:00 [INF] Request finished in 4.6211ms 200 application/javascript +2018-08-02 15:50:33.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-02 15:50:33.957 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-02 15:50:33.957 +03:00 [INF] Request finished in 1.5908ms 200 application/javascript +2018-08-02 15:50:33.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-02 15:50:33.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-02 15:50:33.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-02 15:50:33.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-02 15:50:33.974 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-02 15:50:33.974 +03:00 [INF] Request finished in 2.2189ms 200 application/javascript +2018-08-02 15:50:33.974 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-02 15:50:33.974 +03:00 [INF] Request finished in 1.7216ms 200 application/javascript +2018-08-02 15:50:33.974 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-02 15:50:33.974 +03:00 [INF] Request finished in 1.2335ms 200 application/javascript +2018-08-02 15:50:33.975 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-02 15:50:33.976 +03:00 [INF] Request finished in 1.9679ms 200 application/javascript +2018-08-02 15:50:34.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-02 15:50:34.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-02 15:50:34.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-02 15:50:34.003 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-02 15:50:34.004 +03:00 [INF] Request finished in 1.5118ms 200 application/javascript +2018-08-02 15:50:34.004 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-02 15:50:34.004 +03:00 [INF] Request finished in 2.0218ms 200 application/javascript +2018-08-02 15:50:34.005 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-02 15:50:34.005 +03:00 [INF] Request finished in 2.0596ms 200 application/javascript +2018-08-02 15:50:34.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-02 15:50:34.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-02 15:50:34.008 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-02 15:50:34.008 +03:00 [INF] Request finished in 0.9848ms 200 application/javascript +2018-08-02 15:50:34.009 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-02 15:50:34.009 +03:00 [INF] Request finished in 1.605ms 200 application/javascript +2018-08-02 15:50:34.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-02 15:50:34.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-02 15:50:34.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-02 15:50:34.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-02 15:50:34.027 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-02 15:50:34.028 +03:00 [INF] Request finished in 1.7547ms 200 image/svg+xml +2018-08-02 15:50:34.028 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-02 15:50:34.029 +03:00 [INF] Request finished in 2.3747ms 200 application/javascript +2018-08-02 15:50:34.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-02 15:50:34.031 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-02 15:50:34.031 +03:00 [INF] Request finished in 1.3001ms 200 application/javascript +2018-08-02 15:50:34.044 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:50:34.044 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-02 15:50:34.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-02 15:50:34.181 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-02 15:50:34.182 +03:00 [INF] Request finished in 27.0229ms 200 image/jpeg +2018-08-02 15:50:34.182 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-02 15:50:34.185 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-02 15:50:34.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-02 15:50:34.190 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-02 15:50:34.190 +03:00 [INF] Request finished in 2.7911ms 200 font/woff2 +2018-08-02 15:50:34.260 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 61.449600000000004ms. +2018-08-02 15:50:34.288 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:50:34.289 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 244.3227ms +2018-08-02 15:50:34.290 +03:00 [INF] Request finished in 273.3648ms 200 text/plain; charset=utf-8 +2018-08-02 15:50:34.319 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 133.3248ms. +2018-08-02 15:50:34.320 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-02 15:50:34.320 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 275.63980000000004ms +2018-08-02 15:50:34.320 +03:00 [INF] Request finished in 302.9827ms 200 text/plain; charset=utf-8 +2018-08-02 15:50:35.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-02 15:50:35.473 +03:00 [INF] Request finished in 3.8054ms 404 +2018-08-03 09:09:01.753 +03:00 [INF] Loaded modules: +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 09:09:01.769 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 09:09:01.770 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 09:09:02.287 +03:00 [INF] Initialized all modules. +2018-08-03 09:09:02.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:09:02.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:02.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:04.930 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:09:04.953 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:09:05.741 +03:00 [INF] Executed action /Index in 804.7626ms +2018-08-03 09:09:05.765 +03:00 [INF] Request finished in 3153.2529ms 200 text/html; charset=utf-8 +2018-08-03 09:09:05.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:09:05.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:09:05.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:09:05.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.832 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-03 09:09:05.832 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 09:09:05.833 +03:00 [INF] Request finished in 28.508ms 200 image/png +2018-08-03 09:09:05.832 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 09:09:05.833 +03:00 [INF] Request finished in 25.3327ms 200 text/css +2018-08-03 09:09:05.833 +03:00 [INF] Request finished in 29.3708ms 200 text/css +2018-08-03 09:09:05.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:09:05.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:09:05.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:09:05.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.839 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-03 09:09:05.839 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-03 09:09:05.839 +03:00 [INF] Request finished in 3.6415ms 200 image/png +2018-08-03 09:09:05.839 +03:00 [INF] Request finished in 1.9031ms 200 image/png +2018-08-03 09:09:05.840 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 09:09:05.840 +03:00 [INF] Request finished in 3.3365ms 200 image/svg+xml +2018-08-03 09:09:05.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:09:05.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:09:05.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:09:05.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.842 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-03 09:09:05.842 +03:00 [INF] Request finished in 2.5098ms 200 image/png +2018-08-03 09:09:05.842 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-03 09:09:05.843 +03:00 [INF] Request finished in 2.7032ms 200 image/png +2018-08-03 09:09:05.844 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-03 09:09:05.844 +03:00 [INF] Request finished in 2.6587ms 200 image/png +2018-08-03 09:09:05.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:09:05.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:09:05.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:09:05.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:09:05.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.855 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-03 09:09:05.855 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-03 09:09:05.855 +03:00 [INF] Request finished in 1.383ms 200 image/png +2018-08-03 09:09:05.855 +03:00 [INF] Request finished in 1.4567ms 200 image/png +2018-08-03 09:09:05.856 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-03 09:09:05.856 +03:00 [INF] Request finished in 1.3172ms 200 image/png +2018-08-03 09:09:05.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:09:05.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.858 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-03 09:09:05.859 +03:00 [INF] Request finished in 4.0104ms 200 image/png +2018-08-03 09:09:05.861 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-03 09:09:05.861 +03:00 [INF] Request finished in 4.556ms 200 image/png +2018-08-03 09:09:05.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:09:05.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:09:05.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.867 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-03 09:09:05.867 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-03 09:09:05.868 +03:00 [INF] Request finished in 4.7561ms 200 image/png +2018-08-03 09:09:05.868 +03:00 [INF] Request finished in 3.1951ms 200 image/png +2018-08-03 09:09:05.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:09:05.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:09:05.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.874 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-03 09:09:05.874 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-03 09:09:05.874 +03:00 [INF] Request finished in 1.2295ms 200 image/png +2018-08-03 09:09:05.874 +03:00 [INF] Request finished in 1.4001ms 200 image/png +2018-08-03 09:09:05.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:09:05.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:09:05.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:09:05.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.887 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-03 09:09:05.887 +03:00 [INF] Request finished in 10.5995ms 200 image/png +2018-08-03 09:09:05.889 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-03 09:09:05.889 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-03 09:09:05.889 +03:00 [INF] Request finished in 2.1825ms 200 image/png +2018-08-03 09:09:05.889 +03:00 [INF] Request finished in 2.1514ms 200 image/png +2018-08-03 09:09:05.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:09:05.894 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-08-03 09:09:05.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:09:05.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.895 +03:00 [INF] Request finished in 22.108ms 200 image/png +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:09:05.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.896 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-03 09:09:05.896 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-03 09:09:05.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.896 +03:00 [INF] Request finished in 5.5074ms 200 image/png +2018-08-03 09:09:05.896 +03:00 [INF] Request finished in 1.7495ms 200 image/png +2018-08-03 09:09:05.896 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-03 09:09:05.897 +03:00 [INF] Request finished in 5.0716ms 200 image/png +2018-08-03 09:09:05.902 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-03 09:09:05.902 +03:00 [INF] Request finished in 6.3772ms 200 image/png +2018-08-03 09:09:05.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:09:05.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.905 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-03 09:09:05.905 +03:00 [INF] Request finished in 3.5051ms 200 image/png +2018-08-03 09:09:05.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:09:05.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:09:05.910 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-03 09:09:05.910 +03:00 [INF] Request finished in 3.1353ms 200 image/png +2018-08-03 09:09:05.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:09:05.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:09:05.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:09:05.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.915 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-03 09:09:05.915 +03:00 [INF] Request finished in 7.452ms 200 image/png +2018-08-03 09:09:05.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.917 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-03 09:09:05.918 +03:00 [INF] Request finished in 3.1699ms 200 image/png +2018-08-03 09:09:05.918 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-03 09:09:05.918 +03:00 [INF] Request finished in 2.9812ms 200 image/png +2018-08-03 09:09:05.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:09:05.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.923 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-03 09:09:05.923 +03:00 [INF] Request finished in 3.8319ms 200 image/png +2018-08-03 09:09:05.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:09:05.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.926 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-03 09:09:05.926 +03:00 [INF] Request finished in 12.4204ms 200 image/png +2018-08-03 09:09:05.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:09:05.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.927 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-03 09:09:05.928 +03:00 [INF] Request finished in 2.3729ms 200 image/png +2018-08-03 09:09:05.931 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-03 09:09:05.931 +03:00 [INF] Request finished in 4.4666ms 200 image/png +2018-08-03 09:09:05.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:09:05.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:09:05.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:09:05.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.938 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-03 09:09:05.938 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-03 09:09:05.939 +03:00 [INF] Request finished in 1.7518ms 200 image/png +2018-08-03 09:09:05.939 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-03 09:09:05.940 +03:00 [INF] Request finished in 4.2353ms 200 image/png +2018-08-03 09:09:05.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:09:05.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.942 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 09:09:05.942 +03:00 [INF] Request finished in 1.6333ms 200 image/svg+xml +2018-08-03 09:09:05.942 +03:00 [INF] Request finished in 5.4008ms 200 image/png +2018-08-03 09:09:05.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:09:05.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:05.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:09:05.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:05.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:06.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:09:06.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:06.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:06.002 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 09:09:06.003 +03:00 [INF] Request finished in 2.3091ms 200 application/javascript +2018-08-03 09:09:06.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:09:06.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:06.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:06.007 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 09:09:06.008 +03:00 [INF] Request finished in 2.2866ms 200 application/javascript +2018-08-03 09:09:06.017 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:09:06.020 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:09:06.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:09:06.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:09:06.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:09:06.032 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 09:09:06.032 +03:00 [INF] Request finished in 11.4995ms 200 image/jpeg +2018-08-03 09:09:06.105 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:09:06.110 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:09:06.171 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 54.6177ms. +2018-08-03 09:09:06.186 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 80.5164ms. +2018-08-03 09:09:06.191 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:09:06.191 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:09:06.192 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 174.00310000000002ms +2018-08-03 09:09:06.192 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 171.5842ms +2018-08-03 09:09:06.192 +03:00 [INF] Request finished in 193.611ms 200 text/plain; charset=utf-8 +2018-08-03 09:09:06.192 +03:00 [INF] Request finished in 195.2529ms 200 text/plain; charset=utf-8 +2018-08-03 09:10:45.837 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/?handler=DynamicForm application/x-www-form-urlencoded 332 +2018-08-03 09:10:45.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:45.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:45.839 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:10:45.876 +03:00 [INF] Executing handler method OnPostDynamicForm with arguments (null) - ModelState is "Valid" +2018-08-03 09:10:45.888 +03:00 [INF] Executed action /Index in 48.7932ms +2018-08-03 09:10:45.888 +03:00 [INF] Request finished in 50.8059ms 200 text/html; charset=utf-8 +2018-08-03 09:10:45.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:10:45.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:45.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:45.950 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 09:10:45.951 +03:00 [INF] Request finished in 2.0263ms 200 text/css +2018-08-03 09:10:45.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:10:45.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:45.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:45.954 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 09:10:45.954 +03:00 [INF] Request finished in 1.0473ms 200 text/css +2018-08-03 09:10:46.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:10:46.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:10:46.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.011 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:10:46.012 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:10:46.013 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2459ms. +2018-08-03 09:10:46.013 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:10:46.013 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1071ms +2018-08-03 09:10:46.014 +03:00 [INF] Request finished in 4.3425ms 200 text/plain; charset=utf-8 +2018-08-03 09:10:46.019 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:10:46.021 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:10:46.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:10:46.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.022 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7296ms. +2018-08-03 09:10:46.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.022 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:10:46.022 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.4829000000000003ms +2018-08-03 09:10:46.022 +03:00 [INF] Request finished in 17.5752ms 200 text/plain; charset=utf-8 +2018-08-03 09:10:46.023 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-03 09:10:46.023 +03:00 [INF] Request finished in 1.7108ms 200 image/png +2018-08-03 09:10:46.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:10:46.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.032 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-03 09:10:46.032 +03:00 [INF] Request finished in 1.4737ms 200 image/png +2018-08-03 09:10:46.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:10:46.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:10:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:10:46.038 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-03 09:10:46.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.038 +03:00 [INF] Request finished in 0.9498ms 200 image/png +2018-08-03 09:10:46.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.038 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-03 09:10:46.038 +03:00 [INF] Request finished in 1.5886ms 200 image/png +2018-08-03 09:10:46.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:10:46.039 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-03 09:10:46.039 +03:00 [INF] Request finished in 1.236ms 200 image/png +2018-08-03 09:10:46.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.040 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-03 09:10:46.040 +03:00 [INF] Request finished in 1.6427ms 200 image/png +2018-08-03 09:10:46.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:10:46.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.048 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-03 09:10:46.048 +03:00 [INF] Request finished in 1.6144ms 200 image/png +2018-08-03 09:10:46.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:10:46.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.053 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-03 09:10:46.054 +03:00 [INF] Request finished in 1.3492ms 200 image/png +2018-08-03 09:10:46.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:10:46.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.056 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-03 09:10:46.056 +03:00 [INF] Request finished in 1.531ms 200 image/png +2018-08-03 09:10:46.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:10:46.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:10:46.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.060 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-03 09:10:46.060 +03:00 [INF] Request finished in 2.1922ms 200 image/png +2018-08-03 09:10:46.060 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-03 09:10:46.061 +03:00 [INF] Request finished in 1.5632ms 200 image/png +2018-08-03 09:10:46.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:10:46.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.071 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-03 09:10:46.072 +03:00 [INF] Request finished in 1.9187ms 200 image/png +2018-08-03 09:10:46.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:10:46.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.074 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-03 09:10:46.074 +03:00 [INF] Request finished in 1.3994ms 200 image/png +2018-08-03 09:10:46.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:10:46.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:10:46.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:10:46.076 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-03 09:10:46.076 +03:00 [INF] Request finished in 1.4836ms 200 image/png +2018-08-03 09:23:09.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:23:09.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:09.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:09.274 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:23:09.275 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:23:09.553 +03:00 [INF] Executed action /Index in 277.7298ms +2018-08-03 09:23:09.553 +03:00 [INF] Request finished in 290.7291ms 200 text/html; charset=utf-8 +2018-08-03 09:23:10.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-08-03 09:23:10.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:10.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:10.228 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-08-03 09:23:10.228 +03:00 [INF] Request finished in 2.5446ms 200 image/png +2018-08-03 09:23:11.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:23:11.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.710 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:23:11.710 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:23:11.717 +03:00 [INF] Executed action /Index in 6.4884ms +2018-08-03 09:23:11.717 +03:00 [INF] Request finished in 7.7407ms 200 text/html; charset=utf-8 +2018-08-03 09:23:11.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:23:11.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.757 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:23:11.761 +03:00 [INF] Request finished in 4.0089ms 304 text/css +2018-08-03 09:23:11.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:23:11.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:23:11.763 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:23:11.763 +03:00 [INF] Request finished in 2.1057ms 304 text/css +2018-08-03 09:23:11.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.763 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:23:11.764 +03:00 [INF] Request finished in 0.8451ms 304 text/css +2018-08-03 09:23:11.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:23:11.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:23:11.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.772 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:23:11.772 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:23:11.772 +03:00 [INF] Request finished in 0.9585ms 304 text/css +2018-08-03 09:23:11.772 +03:00 [INF] Request finished in 0.8668ms 304 text/css +2018-08-03 09:23:11.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:23:11.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:23:11.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.775 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:23:11.776 +03:00 [INF] Request finished in 3.127ms 304 text/css +2018-08-03 09:23:11.776 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:23:11.776 +03:00 [INF] Request finished in 0.9692ms 304 text/css +2018-08-03 09:23:11.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:23:11.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.782 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:23:11.782 +03:00 [INF] Request finished in 3.9933ms 304 text/css +2018-08-03 09:23:11.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:23:11.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:23:11.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.787 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:23:11.787 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:23:11.787 +03:00 [INF] Request finished in 1.5323ms 304 application/javascript +2018-08-03 09:23:11.787 +03:00 [INF] Request finished in 1.1241ms 304 application/javascript +2018-08-03 09:23:11.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:23:11.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.790 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:23:11.790 +03:00 [INF] Request finished in 1.8512ms 304 application/javascript +2018-08-03 09:23:11.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:23:11.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.801 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:23:11.801 +03:00 [INF] Request finished in 1.7913ms 304 application/javascript +2018-08-03 09:23:11.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:23:11.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:23:11.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.807 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:23:11.807 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:23:11.807 +03:00 [INF] Request finished in 1.2325ms 304 application/javascript +2018-08-03 09:23:11.807 +03:00 [INF] Request finished in 2.5296ms 304 application/javascript +2018-08-03 09:23:11.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:23:11.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.816 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:23:11.817 +03:00 [INF] Request finished in 2.4243ms 304 application/javascript +2018-08-03 09:23:11.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:23:11.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.822 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:23:11.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:23:11.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:23:11.823 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:23:11.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.823 +03:00 [INF] Request finished in 1.449ms 304 application/javascript +2018-08-03 09:23:11.823 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:23:11.823 +03:00 [INF] Request finished in 0.6728ms 304 application/javascript +2018-08-03 09:23:11.822 +03:00 [INF] Request finished in 2.1124ms 304 application/javascript +2018-08-03 09:23:11.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:23:11.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:23:11.829 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:23:11.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.830 +03:00 [INF] Request finished in 1.9709ms 304 application/javascript +2018-08-03 09:23:11.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.830 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:23:11.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:23:11.830 +03:00 [INF] Request finished in 1.5011ms 304 application/javascript +2018-08-03 09:23:11.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.830 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:23:11.831 +03:00 [INF] Request finished in 0.6708ms 304 application/javascript +2018-08-03 09:23:11.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:23:11.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:23:11.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.842 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:23:11.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.842 +03:00 [INF] Request finished in 1.5547ms 304 application/javascript +2018-08-03 09:23:11.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.842 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:23:11.843 +03:00 [INF] Request finished in 2.8829ms 304 application/javascript +2018-08-03 09:23:11.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:23:11.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:23:11.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.852 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:23:11.852 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:23:11.852 +03:00 [INF] Request finished in 3.3325ms 304 application/javascript +2018-08-03 09:23:11.852 +03:00 [INF] Request finished in 3.007ms 304 application/javascript +2018-08-03 09:23:11.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:23:11.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.857 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:23:11.857 +03:00 [INF] Request finished in 4.5026ms 304 application/javascript +2018-08-03 09:23:11.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:23:11.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.861 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:23:11.861 +03:00 [INF] Request finished in 2.045ms 304 application/javascript +2018-08-03 09:23:11.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:23:11.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.872 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:23:11.873 +03:00 [INF] Request finished in 4.0983ms 304 application/javascript +2018-08-03 09:23:11.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:23:11.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.885 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:23:11.886 +03:00 [INF] Request finished in 3.0885ms 304 application/javascript +2018-08-03 09:23:11.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:23:11.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:23:11.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.915 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:23:11.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:23:11.919 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:23:11.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.919 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.18760000000000002ms. +2018-08-03 09:23:11.919 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:23:11.919 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:23:11.919 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:23:11.919 +03:00 [INF] Request finished in 3.1248ms 304 application/javascript +2018-08-03 09:23:11.919 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.2447000000000004ms +2018-08-03 09:23:11.919 +03:00 [INF] Request finished in 10.5903ms 200 text/plain; charset=utf-8 +2018-08-03 09:23:11.921 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:23:11.922 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0592000000000001ms. +2018-08-03 09:23:11.922 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:23:11.922 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.0782000000000003ms +2018-08-03 09:23:11.923 +03:00 [INF] Request finished in 20.789ms 200 text/plain; charset=utf-8 +2018-08-03 09:23:11.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:23:11.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.930 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:23:11.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:23:11.931 +03:00 [INF] Request finished in 3.4744ms 304 application/javascript +2018-08-03 09:23:11.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.932 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 09:23:11.932 +03:00 [INF] Request finished in 1.2538ms 200 image/svg+xml +2018-08-03 09:23:11.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:23:11.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.933 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-03 09:23:11.933 +03:00 [INF] Request finished in 1.4007ms 200 image/png +2018-08-03 09:23:11.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:23:11.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.937 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 09:23:11.937 +03:00 [INF] Request finished in 2.1829ms 304 image/png +2018-08-03 09:23:11.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:23:11.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.939 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:23:11.939 +03:00 [INF] Request finished in 0.7738ms 304 image/png +2018-08-03 09:23:11.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:23:11.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:23:11.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.944 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-03 09:23:11.944 +03:00 [INF] Request finished in 1.1621ms 200 image/png +2018-08-03 09:23:11.946 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-03 09:23:11.946 +03:00 [INF] Request finished in 2.6661ms 200 image/png +2018-08-03 09:23:11.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:23:11.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:23:11.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:23:11.980 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-03 09:23:11.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.981 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-03 09:23:11.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.982 +03:00 [INF] Request finished in 2.0125ms 200 image/png +2018-08-03 09:23:11.982 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:23:11.982 +03:00 [INF] Request finished in 2.0689ms 304 image/png +2018-08-03 09:23:11.983 +03:00 [INF] Request finished in 5.0143ms 200 image/png +2018-08-03 09:23:11.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:23:11.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.985 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:23:11.985 +03:00 [INF] Request finished in 1.38ms 304 image/png +2018-08-03 09:23:11.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:23:11.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:23:11.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.990 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:23:11.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.990 +03:00 [INF] Request finished in 1.772ms 304 image/png +2018-08-03 09:23:11.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.991 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:23:11.991 +03:00 [INF] Request finished in 2.115ms 304 image/png +2018-08-03 09:23:11.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:23:11.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:23:11.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.992 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-03 09:23:11.992 +03:00 [INF] Request finished in 1.0153ms 200 image/png +2018-08-03 09:23:11.992 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:23:11.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:23:11.993 +03:00 [INF] Request finished in 2.2894ms 304 image/png +2018-08-03 09:23:11.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:11.994 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:23:11.994 +03:00 [INF] Request finished in 1.2814ms 304 image/png +2018-08-03 09:23:11.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:23:11.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:11.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.002 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-08-03 09:23:12.002 +03:00 [INF] Request finished in 6.7742ms 200 image/png +2018-08-03 09:23:12.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:23:12.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:23:12.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.006 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:23:12.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:23:12.006 +03:00 [INF] Request finished in 0.8555ms 304 image/png +2018-08-03 09:23:12.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.007 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:23:12.007 +03:00 [INF] Request finished in 0.9159ms 304 image/png +2018-08-03 09:23:12.005 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:23:12.007 +03:00 [INF] Request finished in 4.3815ms 304 image/png +2018-08-03 09:23:12.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:23:12.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.012 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:23:12.012 +03:00 [INF] Request finished in 4.8222ms 304 image/png +2018-08-03 09:23:12.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:23:12.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:23:12.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.016 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:23:12.016 +03:00 [INF] Request finished in 1.5623ms 304 image/png +2018-08-03 09:23:12.016 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:23:12.016 +03:00 [INF] Request finished in 1.4166ms 304 image/png +2018-08-03 09:23:12.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:23:12.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.018 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:23:12.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:23:12.019 +03:00 [INF] Request finished in 2.721ms 304 image/png +2018-08-03 09:23:12.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.021 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:23:12.021 +03:00 [INF] Request finished in 2.5253ms 304 image/png +2018-08-03 09:23:12.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:23:12.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.025 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:23:12.025 +03:00 [INF] Request finished in 0.7671ms 304 image/png +2018-08-03 09:23:12.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:23:12.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.031 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:23:12.031 +03:00 [INF] Request finished in 1.1259ms 304 image/png +2018-08-03 09:23:12.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:23:12.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.032 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:23:12.032 +03:00 [INF] Request finished in 0.644ms 304 image/png +2018-08-03 09:23:12.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:23:12.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.040 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:23:12.040 +03:00 [INF] Request finished in 1.468ms 304 image/png +2018-08-03 09:23:12.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:23:12.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.044 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:23:12.044 +03:00 [INF] Request finished in 2.4759ms 304 image/png +2018-08-03 09:23:12.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:23:12.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.046 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:23:12.046 +03:00 [INF] Request finished in 1.3143ms 304 image/png +2018-08-03 09:23:12.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:23:12.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.047 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:23:12.047 +03:00 [INF] Request finished in 0.8411ms 304 image/png +2018-08-03 09:23:12.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:23:12.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.048 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:23:12.049 +03:00 [INF] Request finished in 1.109ms 304 image/png +2018-08-03 09:23:12.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:23:12.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.055 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:23:12.055 +03:00 [INF] Request finished in 0.7912ms 304 image/png +2018-08-03 09:23:12.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:23:12.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.057 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:23:12.057 +03:00 [INF] Request finished in 0.8202ms 304 image/png +2018-08-03 09:23:12.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:23:12.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:23:12.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.059 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:23:12.060 +03:00 [INF] Request finished in 1.3203ms 304 image/png +2018-08-03 09:23:12.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.060 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:23:12.061 +03:00 [INF] Request finished in 2.3741ms 304 image/png +2018-08-03 09:23:12.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:23:12.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.064 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:23:12.065 +03:00 [INF] Request finished in 1.8481ms 304 image/svg+xml +2018-08-03 09:23:12.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:23:12.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:23:12.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:23:12.066 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:23:12.066 +03:00 [INF] Request finished in 0.6634ms 304 image/jpeg +2018-08-03 09:32:16.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:32:16.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:16.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:16.793 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:32:16.793 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:32:17.099 +03:00 [INF] Executed action /Index in 305.769ms +2018-08-03 09:32:17.099 +03:00 [INF] Request finished in 313.3352ms 200 text/html; charset=utf-8 +2018-08-03 09:32:17.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:32:17.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.144 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:32:17.144 +03:00 [INF] Request finished in 1.0765ms 304 text/css +2018-08-03 09:32:17.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:32:17.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.152 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:32:17.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:32:17.152 +03:00 [INF] Request finished in 2.3977ms 304 text/css +2018-08-03 09:32:17.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.153 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:32:17.153 +03:00 [INF] Request finished in 0.9162ms 304 text/css +2018-08-03 09:32:17.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:32:17.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.158 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:32:17.158 +03:00 [INF] Request finished in 2.1185ms 304 text/css +2018-08-03 09:32:17.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:32:17.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.174 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:32:17.175 +03:00 [INF] Request finished in 2.7737ms 304 text/css +2018-08-03 09:32:17.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:32:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.175 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:32:17.176 +03:00 [INF] Request finished in 1.048ms 304 application/javascript +2018-08-03 09:32:17.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:32:17.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.179 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:32:17.179 +03:00 [INF] Request finished in 0.9031ms 304 application/javascript +2018-08-03 09:32:17.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:32:17.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.179 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:32:17.180 +03:00 [INF] Request finished in 0.6793ms 304 application/javascript +2018-08-03 09:32:17.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:32:17.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.186 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:32:17.186 +03:00 [INF] Request finished in 0.9068ms 304 text/css +2018-08-03 09:32:17.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:32:17.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.192 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:32:17.192 +03:00 [INF] Request finished in 3.4458ms 304 text/css +2018-08-03 09:32:17.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:32:17.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:32:17.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.197 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:32:17.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:32:17.197 +03:00 [INF] Request finished in 1.7397ms 304 text/css +2018-08-03 09:32:17.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.197 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:32:17.197 +03:00 [INF] Request finished in 1.1643ms 304 application/javascript +2018-08-03 09:32:17.197 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:32:17.197 +03:00 [INF] Request finished in 2.4207ms 304 application/javascript +2018-08-03 09:32:17.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:32:17.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.202 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:32:17.202 +03:00 [INF] Request finished in 2.9177ms 304 application/javascript +2018-08-03 09:32:17.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:32:17.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:32:17.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.209 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:32:17.209 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:32:17.209 +03:00 [INF] Request finished in 2.189ms 304 application/javascript +2018-08-03 09:32:17.209 +03:00 [INF] Request finished in 0.6785ms 304 application/javascript +2018-08-03 09:32:17.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:32:17.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.213 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:32:17.213 +03:00 [INF] Request finished in 3.233ms 304 application/javascript +2018-08-03 09:32:17.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:32:17.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.236 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 09:32:17.236 +03:00 [INF] Request finished in 1.3413ms 304 image/svg+xml +2018-08-03 09:32:17.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:32:17.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.237 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:32:17.237 +03:00 [INF] Request finished in 0.5673ms 304 application/javascript +2018-08-03 09:32:17.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:32:17.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.242 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 09:32:17.243 +03:00 [INF] Request finished in 1.5252ms 304 image/png +2018-08-03 09:32:17.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:32:17.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.246 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:32:17.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:32:17.247 +03:00 [INF] Request finished in 2.1874ms 304 application/javascript +2018-08-03 09:32:17.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.247 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 09:32:17.247 +03:00 [INF] Request finished in 0.896ms 304 image/png +2018-08-03 09:32:17.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:32:17.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.254 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:32:17.254 +03:00 [INF] Request finished in 2.0103ms 304 image/png +2018-08-03 09:32:17.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:32:17.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.265 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 09:32:17.265 +03:00 [INF] Request finished in 4.4485ms 304 image/png +2018-08-03 09:32:17.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:32:17.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.267 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 09:32:17.267 +03:00 [INF] Request finished in 1.7279ms 304 image/png +2018-08-03 09:32:17.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:32:17.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.272 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 09:32:17.272 +03:00 [INF] Request finished in 2.2379ms 304 image/png +2018-08-03 09:32:17.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:32:17.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.286 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 09:32:17.286 +03:00 [INF] Request finished in 2.072ms 304 image/png +2018-08-03 09:32:17.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:32:17.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.292 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 09:32:17.293 +03:00 [INF] Request finished in 2.255ms 304 image/png +2018-08-03 09:32:17.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:32:17.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.302 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:32:17.302 +03:00 [INF] Request finished in 2.6015ms 304 image/png +2018-08-03 09:32:17.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:32:17.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.304 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:32:17.304 +03:00 [INF] Request finished in 1.3448ms 304 image/png +2018-08-03 09:32:17.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:32:17.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.315 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:32:17.316 +03:00 [INF] Request finished in 2.6685ms 304 image/png +2018-08-03 09:32:17.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:32:17.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.325 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:32:17.325 +03:00 [INF] Request finished in 1.3188ms 304 image/png +2018-08-03 09:32:17.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:32:17.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:32:17.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.327 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:32:17.327 +03:00 [INF] Request finished in 1.5827ms 304 image/png +2018-08-03 09:32:17.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.331 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:32:17.331 +03:00 [INF] Request finished in 5.1658ms 304 image/png +2018-08-03 09:32:17.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:32:17.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.338 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:32:17.339 +03:00 [INF] Request finished in 1.5617ms 304 image/png +2018-08-03 09:32:17.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:32:17.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.341 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:32:17.341 +03:00 [INF] Request finished in 1.5846ms 304 image/png +2018-08-03 09:32:17.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:32:17.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.345 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 09:32:17.345 +03:00 [INF] Request finished in 1.4206ms 304 image/png +2018-08-03 09:32:17.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:32:17.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.354 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:32:17.354 +03:00 [INF] Request finished in 5.0121ms 304 image/png +2018-08-03 09:32:17.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:32:17.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.355 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:32:17.355 +03:00 [INF] Request finished in 0.691ms 304 image/png +2018-08-03 09:32:17.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:32:17.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.369 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:32:17.369 +03:00 [INF] Request finished in 0.7802ms 304 image/png +2018-08-03 09:32:17.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:32:17.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.380 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:32:17.381 +03:00 [INF] Request finished in 3.471ms 304 image/png +2018-08-03 09:32:17.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:32:17.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.382 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:32:17.382 +03:00 [INF] Request finished in 0.7255ms 304 image/png +2018-08-03 09:32:17.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:32:17.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.384 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:32:17.385 +03:00 [INF] Request finished in 2.0666ms 304 image/png +2018-08-03 09:32:17.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:32:17.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.386 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:32:17.387 +03:00 [INF] Request finished in 0.9268ms 304 image/png +2018-08-03 09:32:17.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:32:17.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.389 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:32:17.389 +03:00 [INF] Request finished in 0.7649ms 304 image/png +2018-08-03 09:32:17.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:32:17.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:32:17.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.411 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:32:17.411 +03:00 [INF] Request finished in 1.9421ms 304 image/png +2018-08-03 09:32:17.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.415 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:32:17.416 +03:00 [INF] Request finished in 8.2169ms 304 image/png +2018-08-03 09:32:17.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:32:17.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:32:17.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.431 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:32:17.431 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:32:17.432 +03:00 [INF] Request finished in 2.1165ms 304 image/png +2018-08-03 09:32:17.432 +03:00 [INF] Request finished in 1.5668ms 304 image/png +2018-08-03 09:32:17.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:32:17.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.442 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:32:17.443 +03:00 [INF] Request finished in 4.2271ms 304 image/png +2018-08-03 09:32:17.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:32:17.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.446 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:32:17.447 +03:00 [INF] Request finished in 1.9075ms 304 image/png +2018-08-03 09:32:17.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:32:17.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.450 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:32:17.450 +03:00 [INF] Request finished in 2.9231ms 304 image/png +2018-08-03 09:32:17.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:32:17.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.453 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:32:17.454 +03:00 [INF] Request finished in 1.4868ms 304 image/png +2018-08-03 09:32:17.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:32:17.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.459 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:32:17.459 +03:00 [INF] Request finished in 3.2324ms 304 image/png +2018-08-03 09:32:17.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:32:17.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.475 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:32:17.476 +03:00 [INF] Request finished in 1.6057ms 304 image/png +2018-08-03 09:32:17.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:32:17.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:32:17.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.489 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:32:17.489 +03:00 [INF] Request finished in 1.4314ms 304 image/svg+xml +2018-08-03 09:32:17.490 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:32:17.490 +03:00 [INF] Request finished in 1.0263ms 304 application/javascript +2018-08-03 09:32:17.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:32:17.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:32:17.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.491 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:32:17.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.492 +03:00 [INF] Request finished in 1.6776ms 304 application/javascript +2018-08-03 09:32:17.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.492 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:32:17.492 +03:00 [INF] Request finished in 3.8676ms 304 application/javascript +2018-08-03 09:32:17.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:32:17.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.498 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:32:17.498 +03:00 [INF] Request finished in 3.2469ms 304 application/javascript +2018-08-03 09:32:17.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:32:17.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.509 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:32:17.509 +03:00 [INF] Request finished in 5.954ms 304 application/javascript +2018-08-03 09:32:17.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:32:17.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.525 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:32:17.525 +03:00 [INF] Request finished in 3.5812ms 304 application/javascript +2018-08-03 09:32:17.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:32:17.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.537 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:32:17.538 +03:00 [INF] Request finished in 1.7872ms 304 application/javascript +2018-08-03 09:32:17.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:32:17.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.539 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:32:17.540 +03:00 [INF] Request finished in 1.6526ms 304 application/javascript +2018-08-03 09:32:17.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:32:17.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:32:17.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.549 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:32:17.550 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:32:17.549 +03:00 [INF] Request finished in 1.6693ms 304 application/javascript +2018-08-03 09:32:17.550 +03:00 [INF] Request finished in 2.364ms 304 application/javascript +2018-08-03 09:32:17.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:32:17.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:32:17.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.571 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:32:17.573 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:32:17.573 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:32:17.573 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3123ms. +2018-08-03 09:32:17.574 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:32:17.574 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.617ms +2018-08-03 09:32:17.574 +03:00 [INF] Request finished in 5.679ms 200 text/plain; charset=utf-8 +2018-08-03 09:32:17.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:32:17.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.575 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:32:17.575 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:32:17.575 +03:00 [INF] Request finished in 0.9073ms 304 application/javascript +2018-08-03 09:32:17.576 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8295ms. +2018-08-03 09:32:17.577 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:32:17.578 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.2977ms +2018-08-03 09:32:17.578 +03:00 [INF] Request finished in 17.4207ms 200 text/plain; charset=utf-8 +2018-08-03 09:32:17.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:32:17.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.582 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:32:17.582 +03:00 [INF] Request finished in 0.9025ms 304 application/javascript +2018-08-03 09:32:17.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:32:17.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:17.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:17.595 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:32:17.595 +03:00 [INF] Request finished in 1.1619ms 304 image/jpeg +2018-08-03 09:32:26.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:32:26.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:32:26.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:32:26.072 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:32:26.072 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:32:26.078 +03:00 [INF] Executed action /Index in 6.0395ms +2018-08-03 09:32:26.078 +03:00 [INF] Request finished in 7.2071ms 200 text/html; charset=utf-8 +2018-08-03 09:35:18.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:35:18.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:18.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:18.708 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:35:18.708 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:35:18.966 +03:00 [INF] Executed action /Index in 258.3621ms +2018-08-03 09:35:18.966 +03:00 [INF] Request finished in 265.2496ms 200 text/html; charset=utf-8 +2018-08-03 09:35:18.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:35:18.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:18.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:18.991 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:35:18.991 +03:00 [INF] Request finished in 1.2473ms 304 text/css +2018-08-03 09:35:18.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:35:18.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:35:19.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.000 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:35:19.000 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:35:19.001 +03:00 [INF] Request finished in 2.9268ms 304 text/css +2018-08-03 09:35:19.001 +03:00 [INF] Request finished in 2.0726ms 304 text/css +2018-08-03 09:35:19.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:35:19.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:35:19.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.009 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:35:19.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.009 +03:00 [INF] Request finished in 1.2178ms 304 text/css +2018-08-03 09:35:19.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.010 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:35:19.010 +03:00 [INF] Request finished in 1.7897ms 304 text/css +2018-08-03 09:35:19.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:35:19.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:35:19.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.018 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:35:19.018 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:35:19.018 +03:00 [INF] Request finished in 5.3084ms 304 text/css +2018-08-03 09:35:19.018 +03:00 [INF] Request finished in 1.0496ms 304 text/css +2018-08-03 09:35:19.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:35:19.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.019 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:35:19.019 +03:00 [INF] Request finished in 0.7386ms 304 text/css +2018-08-03 09:35:19.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:35:19.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:35:19.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.024 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:35:19.024 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:35:19.024 +03:00 [INF] Request finished in 0.8037ms 304 application/javascript +2018-08-03 09:35:19.024 +03:00 [INF] Request finished in 0.8204ms 304 application/javascript +2018-08-03 09:35:19.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:35:19.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.025 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:35:19.025 +03:00 [INF] Request finished in 0.7319ms 304 application/javascript +2018-08-03 09:35:19.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:35:19.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.038 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:35:19.038 +03:00 [INF] Request finished in 0.9633ms 304 application/javascript +2018-08-03 09:35:19.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:35:19.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.044 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:35:19.044 +03:00 [INF] Request finished in 2.8173ms 304 application/javascript +2018-08-03 09:35:19.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:35:19.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.053 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:35:19.053 +03:00 [INF] Request finished in 1.0521ms 304 application/javascript +2018-08-03 09:35:19.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:35:19.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:35:19.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.061 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:35:19.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.061 +03:00 [INF] Request finished in 0.9064ms 304 application/javascript +2018-08-03 09:35:19.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.062 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:35:19.062 +03:00 [INF] Request finished in 1.3573ms 304 application/javascript +2018-08-03 09:35:19.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:35:19.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.065 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:35:19.065 +03:00 [INF] Request finished in 1.2427ms 304 application/javascript +2018-08-03 09:35:19.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:35:19.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.069 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:35:19.069 +03:00 [INF] Request finished in 1.0056ms 304 application/javascript +2018-08-03 09:35:19.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:35:19.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.070 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:35:19.070 +03:00 [INF] Request finished in 0.5675ms 304 application/javascript +2018-08-03 09:35:19.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:35:19.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.072 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:35:19.072 +03:00 [INF] Request finished in 1.536ms 304 application/javascript +2018-08-03 09:35:19.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:35:19.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.084 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:35:19.085 +03:00 [INF] Request finished in 1.4893ms 304 application/javascript +2018-08-03 09:35:19.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:35:19.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.089 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:35:19.089 +03:00 [INF] Request finished in 2.7273ms 304 application/javascript +2018-08-03 09:35:19.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:35:19.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.093 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:35:19.093 +03:00 [INF] Request finished in 1.1588ms 304 application/javascript +2018-08-03 09:35:19.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:35:19.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.098 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:35:19.098 +03:00 [INF] Request finished in 1.6542ms 304 application/javascript +2018-08-03 09:35:19.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:35:19.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.103 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:35:19.104 +03:00 [INF] Request finished in 2.4052ms 304 application/javascript +2018-08-03 09:35:19.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:35:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.106 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:35:19.107 +03:00 [INF] Request finished in 2.1671ms 304 application/javascript +2018-08-03 09:35:19.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:35:19.109 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.109 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.109 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:35:19.109 +03:00 [INF] Request finished in 0.9607ms 304 application/javascript +2018-08-03 09:35:19.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:35:19.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.117 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:35:19.117 +03:00 [INF] Request finished in 2.1346ms 304 application/javascript +2018-08-03 09:35:19.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:35:19.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:35:19.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.119 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:35:19.119 +03:00 [INF] Request finished in 1.0166ms 304 application/javascript +2018-08-03 09:35:19.126 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:35:19.130 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:35:19.131 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.49970000000000003ms. +2018-08-03 09:35:19.131 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:35:19.131 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.2964ms +2018-08-03 09:35:19.133 +03:00 [INF] Request finished in 14.4775ms 200 text/plain; charset=utf-8 +2018-08-03 09:35:19.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:35:19.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.139 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:35:19.143 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:35:19.143 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1193ms. +2018-08-03 09:35:19.143 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:35:19.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:35:19.143 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.7727000000000004ms +2018-08-03 09:35:19.143 +03:00 [INF] Request finished in 10.0581ms 200 text/plain; charset=utf-8 +2018-08-03 09:35:19.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.144 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:35:19.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:35:19.144 +03:00 [INF] Request finished in 0.8585ms 304 application/javascript +2018-08-03 09:35:19.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.144 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:35:19.145 +03:00 [INF] Request finished in 0.7208ms 304 application/javascript +2018-08-03 09:35:19.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:35:19.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.146 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 09:35:19.147 +03:00 [INF] Request finished in 1.2181ms 200 image/svg+xml +2018-08-03 09:35:19.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:35:19.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.148 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-03 09:35:19.148 +03:00 [INF] Request finished in 1.6092ms 200 image/png +2018-08-03 09:35:19.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:35:19.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.162 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-03 09:35:19.162 +03:00 [INF] Request finished in 4.0134ms 200 image/png +2018-08-03 09:35:19.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:35:19.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.167 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-03 09:35:19.167 +03:00 [INF] Request finished in 1.1793ms 200 image/png +2018-08-03 09:35:19.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:35:19.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:35:19.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.178 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-03 09:35:19.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:35:19.178 +03:00 [INF] Request finished in 1.4464ms 200 image/png +2018-08-03 09:35:19.178 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-03 09:35:19.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.178 +03:00 [INF] Request finished in 1.619ms 200 image/png +2018-08-03 09:35:19.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.179 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-03 09:35:19.180 +03:00 [INF] Request finished in 1.7308ms 200 image/png +2018-08-03 09:35:19.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:35:19.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.183 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-03 09:35:19.183 +03:00 [INF] Request finished in 2.4069ms 200 image/png +2018-08-03 09:35:19.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:35:19.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.194 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-03 09:35:19.194 +03:00 [INF] Request finished in 1.2484ms 200 image/png +2018-08-03 09:35:19.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:35:19.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.202 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-03 09:35:19.202 +03:00 [INF] Request finished in 1.5259ms 200 image/png +2018-08-03 09:35:19.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:35:19.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.204 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-03 09:35:19.204 +03:00 [INF] Request finished in 1.0321ms 200 image/png +2018-08-03 09:35:19.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:35:19.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.217 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-03 09:35:19.217 +03:00 [INF] Request finished in 3.3196ms 200 image/png +2018-08-03 09:35:19.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:35:19.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:35:19.229 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-03 09:35:19.229 +03:00 [INF] Request finished in 3.4978ms 200 image/png +2018-08-03 09:35:19.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.231 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-03 09:35:19.231 +03:00 [INF] Request finished in 2.6163ms 200 image/png +2018-08-03 09:35:19.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:35:19.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.245 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-03 09:35:19.245 +03:00 [INF] Request finished in 3.2833ms 200 image/png +2018-08-03 09:35:19.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:35:19.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.266 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-03 09:35:19.266 +03:00 [INF] Request finished in 2.587ms 200 image/png +2018-08-03 09:35:19.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:35:19.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:35:19.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.291 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-03 09:35:19.291 +03:00 [INF] Request finished in 1.8267ms 200 image/png +2018-08-03 09:35:19.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:35:19.292 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-03 09:35:19.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.292 +03:00 [INF] Request finished in 2.826ms 200 image/png +2018-08-03 09:35:19.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.293 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-03 09:35:19.293 +03:00 [INF] Request finished in 1.8748ms 200 image/png +2018-08-03 09:35:19.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:35:19.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.304 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-03 09:35:19.305 +03:00 [INF] Request finished in 3.7438ms 200 image/png +2018-08-03 09:35:19.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:35:19.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:35:19.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.312 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-03 09:35:19.313 +03:00 [INF] Request finished in 1.5967ms 200 image/png +2018-08-03 09:35:19.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:35:19.321 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-08-03 09:35:19.321 +03:00 [INF] Request finished in 13.4408ms 200 image/png +2018-08-03 09:35:19.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.321 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:35:19.322 +03:00 [INF] Request finished in 1.5189ms 304 image/png +2018-08-03 09:35:19.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:35:19.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.324 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-03 09:35:19.325 +03:00 [INF] Request finished in 2.2566ms 200 image/png +2018-08-03 09:35:19.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:35:19.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.330 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:35:19.330 +03:00 [INF] Request finished in 1.4487ms 304 image/png +2018-08-03 09:35:19.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:35:19.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.341 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-03 09:35:19.341 +03:00 [INF] Request finished in 2.4402ms 200 image/png +2018-08-03 09:35:19.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:35:19.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.346 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-03 09:35:19.346 +03:00 [INF] Request finished in 1.1978ms 200 image/png +2018-08-03 09:35:19.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:35:19.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:35:19.351 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-03 09:35:19.352 +03:00 [INF] Request finished in 3.8885ms 200 image/png +2018-08-03 09:35:19.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.352 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-03 09:35:19.352 +03:00 [INF] Request finished in 1.1347ms 200 image/png +2018-08-03 09:35:19.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:35:19.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.363 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-03 09:35:19.363 +03:00 [INF] Request finished in 3.8824ms 200 image/png +2018-08-03 09:35:19.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:35:19.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.365 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-03 09:35:19.365 +03:00 [INF] Request finished in 1.5254ms 200 image/png +2018-08-03 09:35:19.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:35:19.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.369 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-03 09:35:19.370 +03:00 [INF] Request finished in 3.8153ms 200 image/png +2018-08-03 09:35:19.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:35:19.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.377 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-03 09:35:19.377 +03:00 [INF] Request finished in 1.9241ms 200 image/png +2018-08-03 09:35:19.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:35:19.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.395 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-03 09:35:19.395 +03:00 [INF] Request finished in 1.2239ms 200 image/png +2018-08-03 09:35:19.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:35:19.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.399 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-03 09:35:19.399 +03:00 [INF] Request finished in 1.7996ms 200 image/png +2018-08-03 09:35:19.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:35:19.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.403 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-03 09:35:19.403 +03:00 [INF] Request finished in 1.5585ms 200 image/png +2018-08-03 09:35:19.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:35:19.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.412 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 09:35:19.412 +03:00 [INF] Request finished in 1.3699ms 200 image/svg+xml +2018-08-03 09:35:19.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:35:19.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:19.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:19.419 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:35:19.419 +03:00 [INF] Request finished in 0.7145ms 304 image/jpeg +2018-08-03 09:35:39.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:35:39.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.550 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:35:39.550 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:35:39.815 +03:00 [INF] Executed action /Index in 264.826ms +2018-08-03 09:35:39.815 +03:00 [INF] Request finished in 270.0588ms 200 text/html; charset=utf-8 +2018-08-03 09:35:39.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:35:39.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.848 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:35:39.849 +03:00 [INF] Request finished in 2.3377ms 304 text/css +2018-08-03 09:35:39.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:35:39.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.853 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:35:39.853 +03:00 [INF] Request finished in 0.7687ms 304 text/css +2018-08-03 09:35:39.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:35:39.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.861 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:35:39.861 +03:00 [INF] Request finished in 0.8246ms 304 text/css +2018-08-03 09:35:39.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:35:39.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:35:39.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:35:39.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.863 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:35:39.863 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:35:39.864 +03:00 [INF] Request finished in 1.7452ms 304 text/css +2018-08-03 09:35:39.864 +03:00 [INF] Request finished in 1.7551ms 304 text/css +2018-08-03 09:35:39.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.865 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:35:39.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:35:39.865 +03:00 [INF] Request finished in 2.7677ms 304 text/css +2018-08-03 09:35:39.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.867 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:35:39.868 +03:00 [INF] Request finished in 2.256ms 304 text/css +2018-08-03 09:35:39.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:35:39.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.877 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:35:39.877 +03:00 [INF] Request finished in 1.3363ms 304 text/css +2018-08-03 09:35:39.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:35:39.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:35:39.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.886 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:35:39.886 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:35:39.887 +03:00 [INF] Request finished in 0.8156ms 304 application/javascript +2018-08-03 09:35:39.887 +03:00 [INF] Request finished in 1.7322ms 304 application/javascript +2018-08-03 09:35:39.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:35:39.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.888 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:35:39.888 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:35:39.888 +03:00 [INF] Request finished in 1.725ms 304 application/javascript +2018-08-03 09:35:39.889 +03:00 [INF] Request finished in 0.7226ms 304 application/javascript +2018-08-03 09:35:39.889 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:35:39.889 +03:00 [INF] Request finished in 0.7183ms 304 application/javascript +2018-08-03 09:35:39.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:35:39.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.897 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:35:39.897 +03:00 [INF] Request finished in 2.9954ms 304 application/javascript +2018-08-03 09:35:39.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:35:39.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:35:39.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.907 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:35:39.907 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:35:39.907 +03:00 [INF] Request finished in 0.7423ms 304 application/javascript +2018-08-03 09:35:39.908 +03:00 [INF] Request finished in 1.6314ms 304 application/javascript +2018-08-03 09:35:39.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:35:39.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.915 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:35:39.915 +03:00 [INF] Request finished in 3.8638ms 304 application/javascript +2018-08-03 09:35:39.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:35:39.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:35:39.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.925 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:35:39.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.925 +03:00 [INF] Request finished in 1.1189ms 304 application/javascript +2018-08-03 09:35:39.925 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:35:39.925 +03:00 [INF] Request finished in 0.772ms 304 application/javascript +2018-08-03 09:35:39.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:35:39.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:35:39.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.928 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:35:39.928 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:35:39.928 +03:00 [INF] Request finished in 0.7669ms 304 application/javascript +2018-08-03 09:35:39.928 +03:00 [INF] Request finished in 0.536ms 304 application/javascript +2018-08-03 09:35:39.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:35:39.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:35:39.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.931 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:35:39.931 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:35:39.931 +03:00 [INF] Request finished in 0.5711ms 304 application/javascript +2018-08-03 09:35:39.931 +03:00 [INF] Request finished in 1.0437ms 304 application/javascript +2018-08-03 09:35:39.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:35:39.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.933 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:35:39.934 +03:00 [INF] Request finished in 1.1628ms 304 application/javascript +2018-08-03 09:35:39.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:35:39.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.940 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:35:39.940 +03:00 [INF] Request finished in 0.9664ms 304 application/javascript +2018-08-03 09:35:39.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:35:39.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.945 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:35:39.945 +03:00 [INF] Request finished in 1.2073ms 304 application/javascript +2018-08-03 09:35:39.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:35:39.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:35:39.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.949 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:35:39.949 +03:00 [INF] Request finished in 1.6321ms 304 application/javascript +2018-08-03 09:35:39.950 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:35:39.950 +03:00 [INF] Request finished in 2.699ms 304 application/javascript +2018-08-03 09:35:39.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:35:39.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:35:39.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.962 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:35:39.963 +03:00 [INF] Request finished in 2.4003ms 304 application/javascript +2018-08-03 09:35:39.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:35:39.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:35:39.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.968 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:35:39.968 +03:00 [INF] Request finished in 2.6478ms 304 application/javascript +2018-08-03 09:35:39.968 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:35:39.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:35:39.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.972 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:35:39.972 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:35:39.973 +03:00 [INF] Request finished in 4.1425ms 304 application/javascript +2018-08-03 09:35:39.974 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0332000000000001ms. +2018-08-03 09:35:39.975 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:35:39.976 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.6333ms +2018-08-03 09:35:39.976 +03:00 [INF] Request finished in 24.7849ms 200 text/plain; charset=utf-8 +2018-08-03 09:35:39.977 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:35:39.981 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:35:39.982 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.29610000000000003ms. +2018-08-03 09:35:39.982 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:35:39.983 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.8833ms +2018-08-03 09:35:39.983 +03:00 [INF] Request finished in 19.9283ms 200 text/plain; charset=utf-8 +2018-08-03 09:35:39.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:35:39.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:39.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:39.992 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 09:35:39.993 +03:00 [INF] Request finished in 3.7398ms 200 image/svg+xml +2018-08-03 09:35:40.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:35:40.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.010 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-03 09:35:40.011 +03:00 [INF] Request finished in 4.4811ms 200 image/png +2018-08-03 09:35:40.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:35:40.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:35:40.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.020 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-03 09:35:40.020 +03:00 [INF] Request finished in 1.5654ms 200 image/png +2018-08-03 09:35:40.021 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:35:40.022 +03:00 [INF] Request finished in 4.5071ms 304 image/png +2018-08-03 09:35:40.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:35:40.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.024 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 09:35:40.024 +03:00 [INF] Request finished in 1.3215ms 304 image/png +2018-08-03 09:35:40.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:35:40.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.040 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 09:35:40.040 +03:00 [INF] Request finished in 1.2714ms 304 image/png +2018-08-03 09:35:40.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:35:40.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.041 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 09:35:40.041 +03:00 [INF] Request finished in 1.0101ms 304 image/png +2018-08-03 09:35:40.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:35:40.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.046 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 09:35:40.047 +03:00 [INF] Request finished in 1.6948ms 304 image/png +2018-08-03 09:35:40.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:35:40.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.065 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 09:35:40.065 +03:00 [INF] Request finished in 0.6949ms 304 image/png +2018-08-03 09:35:40.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:35:40.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:35:40.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.067 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:35:40.067 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:35:40.067 +03:00 [INF] Request finished in 0.812ms 304 image/png +2018-08-03 09:35:40.067 +03:00 [INF] Request finished in 1.7045ms 304 image/png +2018-08-03 09:35:40.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:35:40.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.083 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:35:40.083 +03:00 [INF] Request finished in 0.7061ms 304 image/png +2018-08-03 09:35:40.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:35:40.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.090 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:35:40.090 +03:00 [INF] Request finished in 0.7647ms 304 image/png +2018-08-03 09:35:40.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:35:40.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.094 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:35:40.094 +03:00 [INF] Request finished in 2.7774ms 304 image/png +2018-08-03 09:35:40.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:35:40.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.096 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:35:40.096 +03:00 [INF] Request finished in 1.2749ms 304 image/png +2018-08-03 09:35:40.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:35:40.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.114 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:35:40.114 +03:00 [INF] Request finished in 1.1136ms 304 image/png +2018-08-03 09:35:40.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:35:40.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.115 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:35:40.115 +03:00 [INF] Request finished in 0.7706ms 304 image/png +2018-08-03 09:35:40.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:35:40.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.116 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 09:35:40.117 +03:00 [INF] Request finished in 1.122ms 304 image/png +2018-08-03 09:35:40.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:35:40.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.124 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:35:40.125 +03:00 [INF] Request finished in 0.7077ms 304 image/png +2018-08-03 09:35:40.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:35:40.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.131 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:35:40.131 +03:00 [INF] Request finished in 0.7773ms 304 image/png +2018-08-03 09:35:40.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:35:40.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:35:40.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:35:40.144 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:35:40.144 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:35:40.144 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:35:40.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.145 +03:00 [INF] Request finished in 0.7976ms 304 image/png +2018-08-03 09:35:40.145 +03:00 [INF] Request finished in 1.1128ms 304 image/png +2018-08-03 09:35:40.145 +03:00 [INF] Request finished in 0.9884ms 304 image/png +2018-08-03 09:35:40.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.147 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:35:40.147 +03:00 [INF] Request finished in 2.9432ms 304 image/png +2018-08-03 09:35:40.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:35:40.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.150 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:35:40.150 +03:00 [INF] Request finished in 2.4279ms 304 image/png +2018-08-03 09:35:40.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:35:40.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.158 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:35:40.158 +03:00 [INF] Request finished in 0.7551ms 304 image/png +2018-08-03 09:35:40.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:35:40.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.165 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:35:40.165 +03:00 [INF] Request finished in 4.2387ms 304 image/png +2018-08-03 09:35:40.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:35:40.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.168 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:35:40.169 +03:00 [INF] Request finished in 0.8883ms 304 image/png +2018-08-03 09:35:40.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:35:40.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.170 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:35:40.170 +03:00 [INF] Request finished in 0.7977ms 304 image/png +2018-08-03 09:35:40.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:35:40.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:35:40.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:35:40.200 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:35:40.200 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:35:40.201 +03:00 [INF] Request finished in 0.6023ms 304 image/png +2018-08-03 09:35:40.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.201 +03:00 [INF] Request finished in 0.6841ms 304 image/png +2018-08-03 09:35:40.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.201 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:35:40.201 +03:00 [INF] Request finished in 0.8251ms 304 image/png +2018-08-03 09:35:40.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:35:40.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:35:40.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.205 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:35:40.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.205 +03:00 [INF] Request finished in 0.9829ms 304 image/png +2018-08-03 09:35:40.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:35:40.206 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:35:40.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.206 +03:00 [INF] Request finished in 1.4768ms 304 image/png +2018-08-03 09:35:40.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.206 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:35:40.206 +03:00 [INF] Request finished in 1.595ms 304 image/png +2018-08-03 09:35:40.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:35:40.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.207 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:35:40.208 +03:00 [INF] Request finished in 0.9604ms 304 image/png +2018-08-03 09:35:40.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:35:40.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.219 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:35:40.219 +03:00 [INF] Request finished in 1.2373ms 304 image/svg+xml +2018-08-03 09:35:40.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:35:40.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:35:40.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:35:40.223 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:35:40.224 +03:00 [INF] Request finished in 1.1159ms 304 image/jpeg +2018-08-03 09:36:15.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:36:15.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.501 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:36:15.501 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:36:15.763 +03:00 [INF] Executed action /Index in 261.28860000000003ms +2018-08-03 09:36:15.763 +03:00 [INF] Request finished in 268.9971ms 200 text/html; charset=utf-8 +2018-08-03 09:36:15.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:36:15.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.790 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:36:15.790 +03:00 [INF] Request finished in 1.3476ms 304 text/css +2018-08-03 09:36:15.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:36:15.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.793 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:36:15.793 +03:00 [INF] Request finished in 0.9339ms 304 text/css +2018-08-03 09:36:15.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:36:15.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.798 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:36:15.798 +03:00 [INF] Request finished in 1.0268ms 304 text/css +2018-08-03 09:36:15.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:36:15.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.804 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:36:15.804 +03:00 [INF] Request finished in 1.0327ms 304 text/css +2018-08-03 09:36:15.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:36:15.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.809 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:36:15.809 +03:00 [INF] Request finished in 4.0046ms 304 text/css +2018-08-03 09:36:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:36:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:36:15.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.814 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:36:15.814 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:36:15.814 +03:00 [INF] Request finished in 0.8984ms 304 text/css +2018-08-03 09:36:15.814 +03:00 [INF] Request finished in 1.2533ms 304 text/css +2018-08-03 09:36:15.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:36:15.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:36:15.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.826 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:36:15.826 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:36:15.827 +03:00 [INF] Request finished in 1.3718ms 304 application/javascript +2018-08-03 09:36:15.827 +03:00 [INF] Request finished in 1.2396ms 304 text/css +2018-08-03 09:36:15.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:36:15.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.832 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:36:15.833 +03:00 [INF] Request finished in 1.2094ms 304 application/javascript +2018-08-03 09:36:15.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:36:15.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:36:15.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.835 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:36:15.836 +03:00 [INF] Request finished in 2.0181ms 304 application/javascript +2018-08-03 09:36:15.837 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:36:15.837 +03:00 [INF] Request finished in 2.7306ms 304 application/javascript +2018-08-03 09:36:15.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:36:15.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.840 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:36:15.840 +03:00 [INF] Request finished in 2.8103ms 304 application/javascript +2018-08-03 09:36:15.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.843 +03:00 [INF] Request finished in 0.7615ms 304 application/javascript +2018-08-03 09:36:15.843 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:36:15.843 +03:00 [INF] Request finished in 0.7454ms 304 application/javascript +2018-08-03 09:36:15.843 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:36:15.843 +03:00 [INF] Request finished in 0.7705ms 304 application/javascript +2018-08-03 09:36:15.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:36:15.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.848 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:36:15.849 +03:00 [INF] Request finished in 0.9182ms 304 application/javascript +2018-08-03 09:36:15.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:36:15.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.854 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:36:15.854 +03:00 [INF] Request finished in 1.9825ms 304 application/javascript +2018-08-03 09:36:15.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:36:15.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.862 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:36:15.863 +03:00 [INF] Request finished in 3.2345ms 304 application/javascript +2018-08-03 09:36:15.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:36:15.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.865 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:36:15.865 +03:00 [INF] Request finished in 2.0126ms 304 application/javascript +2018-08-03 09:36:15.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:36:15.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:36:15.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.871 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:36:15.871 +03:00 [INF] Request finished in 0.8992ms 304 application/javascript +2018-08-03 09:36:15.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.872 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:36:15.872 +03:00 [INF] Request finished in 1.7642ms 304 application/javascript +2018-08-03 09:36:15.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:36:15.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:36:15.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.873 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 09:36:15.873 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 09:36:15.873 +03:00 [INF] Request finished in 0.6181ms 304 image/png +2018-08-03 09:36:15.873 +03:00 [INF] Request finished in 0.8898ms 304 image/svg+xml +2018-08-03 09:36:15.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:36:15.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.877 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 09:36:15.879 +03:00 [INF] Request finished in 2.0397ms 304 image/png +2018-08-03 09:36:15.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:36:15.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.881 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:36:15.881 +03:00 [INF] Request finished in 1.3043ms 304 image/png +2018-08-03 09:36:15.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:36:15.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:36:15.888 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 09:36:15.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.888 +03:00 [INF] Request finished in 0.8448ms 304 image/png +2018-08-03 09:36:15.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.888 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 09:36:15.888 +03:00 [INF] Request finished in 0.7042ms 304 image/png +2018-08-03 09:36:15.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:36:15.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.891 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 09:36:15.891 +03:00 [INF] Request finished in 0.9646ms 304 image/png +2018-08-03 09:36:15.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:36:15.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.892 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 09:36:15.892 +03:00 [INF] Request finished in 0.8803ms 304 image/png +2018-08-03 09:36:15.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:36:15.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.905 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 09:36:15.905 +03:00 [INF] Request finished in 1.6573ms 304 image/png +2018-08-03 09:36:15.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:36:15.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.906 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:36:15.907 +03:00 [INF] Request finished in 0.9798ms 304 image/png +2018-08-03 09:36:15.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:36:15.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.909 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:36:15.909 +03:00 [INF] Request finished in 1.0198ms 304 image/png +2018-08-03 09:36:15.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:36:15.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.919 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:36:15.919 +03:00 [INF] Request finished in 3.2761ms 304 image/png +2018-08-03 09:36:15.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:36:15.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:36:15.922 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:36:15.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.922 +03:00 [INF] Request finished in 2.3872ms 304 image/png +2018-08-03 09:36:15.923 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:36:15.923 +03:00 [INF] Request finished in 1.6062ms 304 image/png +2018-08-03 09:36:15.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:36:15.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.929 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:36:15.929 +03:00 [INF] Request finished in 3.2093ms 304 image/png +2018-08-03 09:36:15.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:36:15.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:36:15.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.942 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:36:15.943 +03:00 [INF] Request finished in 1.6936ms 304 image/png +2018-08-03 09:36:15.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.944 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:36:15.945 +03:00 [INF] Request finished in 4.4824ms 304 image/png +2018-08-03 09:36:15.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:36:15.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.948 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 09:36:15.948 +03:00 [INF] Request finished in 1.8537ms 304 image/png +2018-08-03 09:36:15.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:36:15.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:36:15.951 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:36:15.952 +03:00 [INF] Request finished in 3.3426ms 304 image/png +2018-08-03 09:36:15.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.955 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:36:15.958 +03:00 [INF] Request finished in 4.8155ms 304 image/png +2018-08-03 09:36:15.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:36:15.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.968 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:36:15.970 +03:00 [INF] Request finished in 5.3018ms 304 image/png +2018-08-03 09:36:15.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:36:15.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.972 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:36:15.972 +03:00 [INF] Request finished in 1.5973ms 304 image/png +2018-08-03 09:36:15.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:36:15.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:36:15.976 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:36:15.976 +03:00 [INF] Request finished in 1.9253ms 304 image/png +2018-08-03 09:36:15.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.980 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:36:15.980 +03:00 [INF] Request finished in 4.5466ms 304 image/png +2018-08-03 09:36:15.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:36:15.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.985 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:36:15.985 +03:00 [INF] Request finished in 1.0093ms 304 image/png +2018-08-03 09:36:15.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:36:15.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:36:15.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:15.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:15.990 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:36:15.990 +03:00 [INF] Request finished in 1.9571ms 304 image/png +2018-08-03 09:36:15.991 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:36:15.991 +03:00 [INF] Request finished in 4.2433ms 304 image/png +2018-08-03 09:36:16.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:36:16.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.008 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:36:16.008 +03:00 [INF] Request finished in 1.65ms 304 image/png +2018-08-03 09:36:16.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:36:16.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.015 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:36:16.015 +03:00 [INF] Request finished in 1.6586ms 304 image/png +2018-08-03 09:36:16.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:36:16.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.019 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:36:16.019 +03:00 [INF] Request finished in 3.2357ms 304 image/png +2018-08-03 09:36:16.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:36:16.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.021 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:36:16.022 +03:00 [INF] Request finished in 1.3504ms 304 image/png +2018-08-03 09:36:16.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:36:16.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.028 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:36:16.029 +03:00 [INF] Request finished in 3.3924ms 304 image/png +2018-08-03 09:36:16.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:36:16.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:36:16.030 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:36:16.031 +03:00 [INF] Request finished in 1.0456ms 304 image/png +2018-08-03 09:36:16.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:36:16.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:36:16.033 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:36:16.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.033 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:36:16.033 +03:00 [INF] Request finished in 3.3265ms 304 image/png +2018-08-03 09:36:16.033 +03:00 [INF] Request finished in 1.6734ms 304 image/png +2018-08-03 09:36:16.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.034 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:36:16.034 +03:00 [INF] Request finished in 2.749ms 304 image/png +2018-08-03 09:36:16.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:36:16.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.036 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:36:16.037 +03:00 [INF] Request finished in 1.1103ms 304 application/javascript +2018-08-03 09:36:16.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:36:16.049 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:36:16.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.053 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:36:16.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.056 +03:00 [INF] Request finished in 6.6475ms 304 application/javascript +2018-08-03 09:36:16.056 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:36:16.056 +03:00 [INF] Request finished in 5.2901ms 304 image/svg+xml +2018-08-03 09:36:16.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:36:16.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.061 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:36:16.062 +03:00 [INF] Request finished in 3.79ms 304 application/javascript +2018-08-03 09:36:16.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:36:16.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:36:16.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.068 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:36:16.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:36:16.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:36:16.068 +03:00 [INF] Request finished in 2.7454ms 304 application/javascript +2018-08-03 09:36:16.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.069 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:36:16.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.069 +03:00 [INF] Request finished in 2.6327ms 304 application/javascript +2018-08-03 09:36:16.070 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:36:16.070 +03:00 [INF] Request finished in 1.4828ms 304 application/javascript +2018-08-03 09:36:16.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.071 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:36:16.072 +03:00 [INF] Request finished in 3.1852ms 304 application/javascript +2018-08-03 09:36:16.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:36:16.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:36:16.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:36:16.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:36:16.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.094 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:36:16.094 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:36:16.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:36:16.094 +03:00 [INF] Request finished in 1.3477ms 304 image/jpeg +2018-08-03 09:36:16.094 +03:00 [INF] Request finished in 1.3633ms 304 application/javascript +2018-08-03 09:36:16.094 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:36:16.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:16.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:16.095 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:36:16.095 +03:00 [INF] Request finished in 1.6545ms 304 application/javascript +2018-08-03 09:36:16.097 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:36:16.099 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6443ms. +2018-08-03 09:36:16.099 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:36:16.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.2696000000000005ms +2018-08-03 09:36:16.101 +03:00 [INF] Request finished in 12.6274ms 200 text/plain; charset=utf-8 +2018-08-03 09:36:16.104 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:36:16.106 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:36:16.107 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.8559ms. +2018-08-03 09:36:16.108 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:36:16.108 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.8879ms +2018-08-03 09:36:16.108 +03:00 [INF] Request finished in 22.7864ms 200 text/plain; charset=utf-8 +2018-08-03 09:36:49.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:36:49.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.390 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:36:49.390 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:36:49.707 +03:00 [INF] Executed action /Index in 317.459ms +2018-08-03 09:36:49.707 +03:00 [INF] Request finished in 323.1457ms 200 text/html; charset=utf-8 +2018-08-03 09:36:49.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:36:49.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.733 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:36:49.733 +03:00 [INF] Request finished in 1.6712ms 304 text/css +2018-08-03 09:36:49.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:36:49.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.741 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:36:49.741 +03:00 [INF] Request finished in 1.9255ms 304 text/css +2018-08-03 09:36:49.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:36:49.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:36:49.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.743 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:36:49.743 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:36:49.743 +03:00 [INF] Request finished in 0.7401ms 304 text/css +2018-08-03 09:36:49.743 +03:00 [INF] Request finished in 0.9044ms 304 text/css +2018-08-03 09:36:49.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:36:49.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:36:49.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.753 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:36:49.753 +03:00 [INF] Request finished in 3.8874ms 304 text/css +2018-08-03 09:36:49.753 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:36:49.754 +03:00 [INF] Request finished in 2.3968ms 304 text/css +2018-08-03 09:36:49.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:36:49.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:36:49.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.763 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:36:49.763 +03:00 [INF] Request finished in 1.4447ms 304 text/css +2018-08-03 09:36:49.763 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:36:49.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:36:49.764 +03:00 [INF] Request finished in 1.2024ms 304 application/javascript +2018-08-03 09:36:49.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.764 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:36:49.764 +03:00 [INF] Request finished in 0.601ms 304 text/css +2018-08-03 09:36:49.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:36:49.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.765 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:36:49.765 +03:00 [INF] Request finished in 0.9254ms 304 application/javascript +2018-08-03 09:36:49.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:36:49.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.776 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 09:36:49.776 +03:00 [INF] Request finished in 0.7903ms 304 image/svg+xml +2018-08-03 09:36:49.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:36:49.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.777 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 09:36:49.777 +03:00 [INF] Request finished in 0.6711ms 304 image/png +2018-08-03 09:36:49.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:36:49.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.779 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:36:49.780 +03:00 [INF] Request finished in 1.053ms 304 application/javascript +2018-08-03 09:36:49.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:36:49.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.785 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:36:49.785 +03:00 [INF] Request finished in 0.8057ms 304 image/png +2018-08-03 09:36:49.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:36:49.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.792 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 09:36:49.792 +03:00 [INF] Request finished in 1.0852ms 304 image/png +2018-08-03 09:36:49.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:36:49.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.799 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 09:36:49.799 +03:00 [INF] Request finished in 1.2277ms 304 image/png +2018-08-03 09:36:49.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:36:49.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.810 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 09:36:49.810 +03:00 [INF] Request finished in 0.8152ms 304 image/png +2018-08-03 09:36:49.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:36:49.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:36:49.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:36:49.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.814 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:36:49.814 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 09:36:49.814 +03:00 [INF] Request finished in 0.8701ms 304 image/png +2018-08-03 09:36:49.814 +03:00 [INF] Request finished in 1.5356ms 304 image/png +2018-08-03 09:36:49.814 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 09:36:49.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:36:49.814 +03:00 [INF] Request finished in 4.33ms 304 image/png +2018-08-03 09:36:49.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.815 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 09:36:49.815 +03:00 [INF] Request finished in 0.4674ms 304 image/png +2018-08-03 09:36:49.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:36:49.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.827 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:36:49.827 +03:00 [INF] Request finished in 0.6447ms 304 image/png +2018-08-03 09:36:49.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:36:49.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:36:49.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.829 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:36:49.830 +03:00 [INF] Request finished in 1.8742ms 304 image/png +2018-08-03 09:36:49.831 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:36:49.831 +03:00 [INF] Request finished in 4.0308ms 304 image/png +2018-08-03 09:36:49.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:36:49.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.833 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:36:49.833 +03:00 [INF] Request finished in 1.1812ms 304 image/png +2018-08-03 09:36:49.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:36:49.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.836 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:36:49.836 +03:00 [INF] Request finished in 0.9979ms 304 image/png +2018-08-03 09:36:49.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:36:49.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.838 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:36:49.838 +03:00 [INF] Request finished in 0.8411ms 304 image/png +2018-08-03 09:36:49.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:36:49.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.841 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:36:49.841 +03:00 [INF] Request finished in 2.2064ms 304 image/png +2018-08-03 09:36:49.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:36:49.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.844 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 09:36:49.845 +03:00 [INF] Request finished in 1.4854ms 304 image/png +2018-08-03 09:36:49.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:36:49.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.852 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:36:49.853 +03:00 [INF] Request finished in 3.326ms 304 image/png +2018-08-03 09:36:49.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:36:49.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:36:49.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.855 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:36:49.855 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:36:49.855 +03:00 [INF] Request finished in 0.8047ms 304 image/png +2018-08-03 09:36:49.855 +03:00 [INF] Request finished in 1.0259ms 304 image/png +2018-08-03 09:36:49.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:36:49.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.855 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:36:49.855 +03:00 [INF] Request finished in 0.5671ms 304 image/png +2018-08-03 09:36:49.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:36:49.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:36:49.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.859 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:36:49.860 +03:00 [INF] Request finished in 0.7132ms 304 image/png +2018-08-03 09:36:49.860 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:36:49.860 +03:00 [INF] Request finished in 0.5628ms 304 image/png +2018-08-03 09:36:49.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:36:49.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.870 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:36:49.871 +03:00 [INF] Request finished in 0.697ms 304 image/png +2018-08-03 09:36:49.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:36:49.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:36:49.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.871 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:36:49.871 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:36:49.871 +03:00 [INF] Request finished in 0.4894ms 304 image/png +2018-08-03 09:36:49.871 +03:00 [INF] Request finished in 0.7442ms 304 image/png +2018-08-03 09:36:49.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:36:49.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.877 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:36:49.878 +03:00 [INF] Request finished in 2.0459ms 304 image/png +2018-08-03 09:36:49.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:36:49.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.885 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:36:49.885 +03:00 [INF] Request finished in 0.874ms 304 image/png +2018-08-03 09:36:49.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:36:49.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.888 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:36:49.889 +03:00 [INF] Request finished in 1.8901ms 304 image/png +2018-08-03 09:36:49.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:36:49.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.893 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:36:49.893 +03:00 [INF] Request finished in 1.3514ms 304 image/png +2018-08-03 09:36:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:36:49.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:36:49.905 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:36:49.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.905 +03:00 [INF] Request finished in 3.2426ms 304 image/png +2018-08-03 09:36:49.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.906 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:36:49.906 +03:00 [INF] Request finished in 3.7751ms 304 image/png +2018-08-03 09:36:49.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:36:49.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.914 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:36:49.915 +03:00 [INF] Request finished in 1.2739ms 304 image/png +2018-08-03 09:36:49.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:36:49.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.921 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:36:49.921 +03:00 [INF] Request finished in 2.9294ms 304 image/png +2018-08-03 09:36:49.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:36:49.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:36:49.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.927 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:36:49.928 +03:00 [INF] Request finished in 1.4042ms 304 image/png +2018-08-03 09:36:49.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.930 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:36:49.930 +03:00 [INF] Request finished in 4.0903ms 304 image/svg+xml +2018-08-03 09:36:49.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:36:49.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.938 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:36:49.939 +03:00 [INF] Request finished in 3.1173ms 304 application/javascript +2018-08-03 09:36:49.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:36:49.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.943 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:36:49.944 +03:00 [INF] Request finished in 1.8612ms 304 application/javascript +2018-08-03 09:36:49.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:36:49.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.960 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:36:49.960 +03:00 [INF] Request finished in 1.6316ms 304 application/javascript +2018-08-03 09:36:49.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:36:49.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.966 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:36:49.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:36:49.966 +03:00 [INF] Request finished in 5.1287ms 304 application/javascript +2018-08-03 09:36:49.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.971 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:36:49.971 +03:00 [INF] Request finished in 5.576ms 304 application/javascript +2018-08-03 09:36:49.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:36:49.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.994 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:36:49.994 +03:00 [INF] Request finished in 2.7248ms 304 application/javascript +2018-08-03 09:36:49.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:36:49.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:36:49.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:49.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:49.996 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:36:49.995 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:36:49.996 +03:00 [INF] Request finished in 1.2744ms 304 application/javascript +2018-08-03 09:36:49.996 +03:00 [INF] Request finished in 1.9255ms 304 application/javascript +2018-08-03 09:36:50.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:36:50.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.002 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:36:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:36:50.006 +03:00 [INF] Request finished in 1.3261ms 304 application/javascript +2018-08-03 09:36:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:36:50.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.007 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:36:50.007 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:36:50.007 +03:00 [INF] Request finished in 0.5729ms 304 application/javascript +2018-08-03 09:36:50.007 +03:00 [INF] Request finished in 0.9723ms 304 application/javascript +2018-08-03 09:36:50.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:36:50.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.023 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:36:50.026 +03:00 [INF] Request finished in 4.092ms 304 application/javascript +2018-08-03 09:36:50.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:36:50.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.028 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:36:50.028 +03:00 [INF] Request finished in 0.869ms 304 application/javascript +2018-08-03 09:36:50.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:36:50.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.032 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:36:50.032 +03:00 [INF] Request finished in 2.8272ms 304 application/javascript +2018-08-03 09:36:50.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:36:50.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.033 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:36:50.033 +03:00 [INF] Request finished in 0.977ms 304 application/javascript +2018-08-03 09:36:50.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:36:50.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.036 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:36:50.036 +03:00 [INF] Request finished in 1.3985ms 304 application/javascript +2018-08-03 09:36:50.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:36:50.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.060 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:36:50.061 +03:00 [INF] Request finished in 1.7189ms 304 application/javascript +2018-08-03 09:36:50.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:36:50.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:36:50.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.077 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:36:50.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:36:50.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.080 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:36:50.081 +03:00 [INF] Request finished in 3.979ms 304 application/javascript +2018-08-03 09:36:50.081 +03:00 [INF] Request finished in 10.9794ms 304 application/javascript +2018-08-03 09:36:50.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:36:50.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.084 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:36:50.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:36:50.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.085 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:36:50.086 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:36:50.086 +03:00 [INF] Request finished in 1.588ms 304 application/javascript +2018-08-03 09:36:50.086 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7435ms. +2018-08-03 09:36:50.087 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:36:50.087 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 2.6912000000000003ms +2018-08-03 09:36:50.087 +03:00 [INF] Request finished in 22.2503ms 200 text/plain; charset=utf-8 +2018-08-03 09:36:50.088 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:36:50.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:36:50.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:36:50.093 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:36:50.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:36:50.093 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21630000000000002ms. +2018-08-03 09:36:50.093 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:36:50.093 +03:00 [INF] Request finished in 1.326ms 304 image/jpeg +2018-08-03 09:36:50.093 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:36:50.094 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.0108000000000006ms +2018-08-03 09:36:50.094 +03:00 [INF] Request finished in 11.0447ms 200 text/plain; charset=utf-8 +2018-08-03 09:40:01.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 09:40:01.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.020 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 09:40:01.021 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 09:40:01.292 +03:00 [INF] Executed action /Index in 271.2217ms +2018-08-03 09:40:01.292 +03:00 [INF] Request finished in 276.6134ms 200 text/html; charset=utf-8 +2018-08-03 09:40:01.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 09:40:01.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.326 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 09:40:01.328 +03:00 [INF] Request finished in 3.6044ms 304 text/css +2018-08-03 09:40:01.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 09:40:01.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.332 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 09:40:01.332 +03:00 [INF] Request finished in 2.4177ms 304 text/css +2018-08-03 09:40:01.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 09:40:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.333 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 09:40:01.334 +03:00 [INF] Request finished in 0.9675ms 304 text/css +2018-08-03 09:40:01.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 09:40:01.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.337 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 09:40:01.337 +03:00 [INF] Request finished in 2.3509ms 304 text/css +2018-08-03 09:40:01.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 09:40:01.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 09:40:01.340 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 09:40:01.340 +03:00 [INF] Request finished in 1.5312ms 304 text/css +2018-08-03 09:40:01.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.342 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 09:40:01.342 +03:00 [INF] Request finished in 2.307ms 304 text/css +2018-08-03 09:40:01.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 09:40:01.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.349 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 09:40:01.349 +03:00 [INF] Request finished in 3.1175ms 304 text/css +2018-08-03 09:40:01.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 09:40:01.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 09:40:01.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.356 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 09:40:01.356 +03:00 [INF] Request finished in 1.4384ms 304 text/css +2018-08-03 09:40:01.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 09:40:01.357 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 09:40:01.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 09:40:01.357 +03:00 [INF] Request finished in 3.678ms 304 application/javascript +2018-08-03 09:40:01.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.357 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 09:40:01.358 +03:00 [INF] Request finished in 0.7845ms 304 application/javascript +2018-08-03 09:40:01.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.359 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 09:40:01.359 +03:00 [INF] Request finished in 2.0875ms 304 application/javascript +2018-08-03 09:40:01.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 09:40:01.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 09:40:01.371 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 09:40:01.371 +03:00 [INF] Request finished in 3.1424ms 304 application/javascript +2018-08-03 09:40:01.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.372 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 09:40:01.372 +03:00 [INF] Request finished in 1.5911ms 304 application/javascript +2018-08-03 09:40:01.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 09:40:01.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 09:40:01.374 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 09:40:01.374 +03:00 [INF] Request finished in 1.1785ms 304 application/javascript +2018-08-03 09:40:01.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 09:40:01.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.376 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 09:40:01.376 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 09:40:01.377 +03:00 [INF] Request finished in 1.0445ms 304 application/javascript +2018-08-03 09:40:01.377 +03:00 [INF] Request finished in 3.1978ms 304 application/javascript +2018-08-03 09:40:01.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 09:40:01.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.384 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 09:40:01.384 +03:00 [INF] Request finished in 0.77ms 304 application/javascript +2018-08-03 09:40:01.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 09:40:01.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.388 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 09:40:01.389 +03:00 [INF] Request finished in 1.2679ms 304 application/javascript +2018-08-03 09:40:01.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 09:40:01.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.390 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 09:40:01.391 +03:00 [INF] Request finished in 2.0316ms 304 application/javascript +2018-08-03 09:40:01.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 09:40:01.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 09:40:01.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.398 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 09:40:01.398 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 09:40:01.398 +03:00 [INF] Request finished in 1.6928ms 304 application/javascript +2018-08-03 09:40:01.398 +03:00 [INF] Request finished in 1.8544ms 304 application/javascript +2018-08-03 09:40:01.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 09:40:01.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 09:40:01.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.405 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 09:40:01.405 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 09:40:01.405 +03:00 [INF] Request finished in 0.984ms 304 application/javascript +2018-08-03 09:40:01.406 +03:00 [INF] Request finished in 1.03ms 304 application/javascript +2018-08-03 09:40:01.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 09:40:01.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.411 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 09:40:01.411 +03:00 [INF] Request finished in 2.7765ms 304 application/javascript +2018-08-03 09:40:01.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 09:40:01.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.412 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 09:40:01.412 +03:00 [INF] Request finished in 0.8634ms 304 application/javascript +2018-08-03 09:40:01.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 09:40:01.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 09:40:01.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.419 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 09:40:01.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.420 +03:00 [INF] Request finished in 4.5502ms 304 image/svg+xml +2018-08-03 09:40:01.420 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 09:40:01.420 +03:00 [INF] Request finished in 1.9094ms 304 image/png +2018-08-03 09:40:01.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 09:40:01.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 09:40:01.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.425 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 09:40:01.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.425 +03:00 [INF] Request finished in 0.9222ms 304 image/png +2018-08-03 09:40:01.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.426 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 09:40:01.426 +03:00 [INF] Request finished in 2.1479ms 304 image/png +2018-08-03 09:40:01.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 09:40:01.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.432 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 09:40:01.432 +03:00 [INF] Request finished in 3.5062ms 304 image/png +2018-08-03 09:40:01.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 09:40:01.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 09:40:01.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.433 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 09:40:01.434 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 09:40:01.434 +03:00 [INF] Request finished in 0.7317ms 304 image/png +2018-08-03 09:40:01.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 09:40:01.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.435 +03:00 [INF] Request finished in 0.7672ms 304 image/png +2018-08-03 09:40:01.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.435 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 09:40:01.435 +03:00 [INF] Request finished in 1.0582ms 304 image/png +2018-08-03 09:40:01.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 09:40:01.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.444 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 09:40:01.444 +03:00 [INF] Request finished in 2.0737ms 304 image/png +2018-08-03 09:40:01.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 09:40:01.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.450 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 09:40:01.450 +03:00 [INF] Request finished in 2.6132ms 304 image/png +2018-08-03 09:40:01.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 09:40:01.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.451 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 09:40:01.451 +03:00 [INF] Request finished in 0.6722ms 304 image/png +2018-08-03 09:40:01.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 09:40:01.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.463 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 09:40:01.463 +03:00 [INF] Request finished in 0.9197ms 304 image/png +2018-08-03 09:40:01.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 09:40:01.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 09:40:01.466 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 09:40:01.466 +03:00 [INF] Request finished in 1.747ms 304 image/png +2018-08-03 09:40:01.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.467 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 09:40:01.467 +03:00 [INF] Request finished in 2.3207ms 304 image/png +2018-08-03 09:40:01.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 09:40:01.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.468 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 09:40:01.469 +03:00 [INF] Request finished in 0.6662ms 304 image/png +2018-08-03 09:40:01.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 09:40:01.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.478 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 09:40:01.478 +03:00 [INF] Request finished in 1.4974ms 304 image/png +2018-08-03 09:40:01.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 09:40:01.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.480 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 09:40:01.480 +03:00 [INF] Request finished in 1.4769ms 304 image/png +2018-08-03 09:40:01.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 09:40:01.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 09:40:01.488 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 09:40:01.488 +03:00 [INF] Request finished in 3.5299ms 304 image/png +2018-08-03 09:40:01.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 09:40:01.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.489 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 09:40:01.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 09:40:01.490 +03:00 [INF] Request finished in 1.5739ms 304 image/png +2018-08-03 09:40:01.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 09:40:01.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.490 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 09:40:01.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.490 +03:00 [INF] Request finished in 0.7007ms 304 image/png +2018-08-03 09:40:01.491 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 09:40:01.491 +03:00 [INF] Request finished in 0.5358ms 304 image/png +2018-08-03 09:40:01.491 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 09:40:01.492 +03:00 [INF] Request finished in 3.5567ms 304 image/png +2018-08-03 09:40:01.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 09:40:01.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 09:40:01.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.501 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 09:40:01.501 +03:00 [INF] Request finished in 3.0136ms 304 image/png +2018-08-03 09:40:01.501 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 09:40:01.501 +03:00 [INF] Request finished in 2.1135ms 304 image/png +2018-08-03 09:40:01.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 09:40:01.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.504 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 09:40:01.505 +03:00 [INF] Request finished in 3.1463ms 304 image/png +2018-08-03 09:40:01.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 09:40:01.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.510 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 09:40:01.510 +03:00 [INF] Request finished in 1.6486ms 304 image/png +2018-08-03 09:40:01.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 09:40:01.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.512 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 09:40:01.512 +03:00 [INF] Request finished in 0.8107ms 304 image/png +2018-08-03 09:40:01.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 09:40:01.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.523 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 09:40:01.524 +03:00 [INF] Request finished in 1.6313ms 304 image/png +2018-08-03 09:40:01.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 09:40:01.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.529 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 09:40:01.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 09:40:01.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.530 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 09:40:01.530 +03:00 [INF] Request finished in 1.2532ms 304 image/png +2018-08-03 09:40:01.531 +03:00 [INF] Request finished in 4.4525ms 304 image/png +2018-08-03 09:40:01.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 09:40:01.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.538 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 09:40:01.538 +03:00 [INF] Request finished in 1.3543ms 304 image/png +2018-08-03 09:40:01.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 09:40:01.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.544 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 09:40:01.544 +03:00 [INF] Request finished in 0.7862ms 304 image/png +2018-08-03 09:40:01.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 09:40:01.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.545 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 09:40:01.545 +03:00 [INF] Request finished in 1.1441ms 304 image/png +2018-08-03 09:40:01.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 09:40:01.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 09:40:01.547 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 09:40:01.547 +03:00 [INF] Request finished in 1.7218ms 304 image/png +2018-08-03 09:40:01.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.549 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 09:40:01.549 +03:00 [INF] Request finished in 1.5074ms 304 image/png +2018-08-03 09:40:01.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 09:40:01.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.550 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 09:40:01.550 +03:00 [INF] Request finished in 1.0318ms 304 image/png +2018-08-03 09:40:01.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 09:40:01.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.553 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 09:40:01.555 +03:00 [INF] Request finished in 2.4466ms 304 image/svg+xml +2018-08-03 09:40:01.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 09:40:01.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.566 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 09:40:01.566 +03:00 [INF] Request finished in 1.0984ms 304 application/javascript +2018-08-03 09:40:01.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 09:40:01.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.567 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 09:40:01.567 +03:00 [INF] Request finished in 1.4738ms 304 application/javascript +2018-08-03 09:40:01.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 09:40:01.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.572 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 09:40:01.572 +03:00 [INF] Request finished in 2.5531ms 304 application/javascript +2018-08-03 09:40:01.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 09:40:01.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.582 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 09:40:01.582 +03:00 [INF] Request finished in 0.8162ms 304 application/javascript +2018-08-03 09:40:01.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 09:40:01.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 09:40:01.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.592 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:40:01.594 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 09:40:01.595 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1388ms. +2018-08-03 09:40:01.595 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:40:01.595 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.192ms +2018-08-03 09:40:01.595 +03:00 [INF] Request finished in 9.9447ms 200 text/plain; charset=utf-8 +2018-08-03 09:40:01.604 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 09:40:01.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 09:40:01.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.605 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 09:40:01.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 09:40:01.606 +03:00 [INF] Request finished in 1.7791ms 304 application/javascript +2018-08-03 09:40:01.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.606 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 09:40:01.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 09:40:01.606 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 09:40:01.607 +03:00 [INF] Request finished in 1.0696ms 304 application/javascript +2018-08-03 09:40:01.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:01.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:01.607 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 09:40:01.607 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4786ms. +2018-08-03 09:40:01.607 +03:00 [INF] Request finished in 0.6064ms 304 image/jpeg +2018-08-03 09:40:01.607 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 09:40:01.608 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3.4324000000000003ms +2018-08-03 09:40:01.608 +03:00 [INF] Request finished in 20.3438ms 200 text/plain; charset=utf-8 +2018-08-03 09:40:06.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-08-03 09:40:06.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 09:40:06.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 09:40:06.430 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-08-03 09:40:06.430 +03:00 [INF] Request finished in 2.4281ms 200 image/png +2018-08-03 10:02:54.669 +03:00 [INF] Loaded modules: +2018-08-03 10:02:54.689 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:02:54.689 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:02:54.689 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:02:54.690 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:02:54.691 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:02:54.692 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:02:56.838 +03:00 [INF] Initialized all modules. +2018-08-03 10:02:57.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:02:57.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:02:57.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:02:59.956 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:02:59.979 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:03:01.029 +03:00 [INF] Executed action /Index in 1056.4035000000001ms +2018-08-03 10:03:01.072 +03:00 [INF] Request finished in 3974.8287ms 200 text/html; charset=utf-8 +2018-08-03 10:03:01.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:01.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:01.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:01.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:03:01.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:01.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:01.350 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:01.352 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:01.403 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:03:01.408 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:01.503 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.504 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.505 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.533 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 122.32480000000001ms. +2018-08-03 10:03:01.552 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:01.553 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:03:01.554 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 202.0569ms +2018-08-03 10:03:01.554 +03:00 [INF] Request finished in 218.828ms 200 text/plain; charset=utf-8 +2018-08-03 10:03:01.556 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:01.604 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:01.609 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:01.619 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 269.0097ms +2018-08-03 10:03:01.619 +03:00 [INF] Request finished in 290.8101ms 500 application/json; charset=utf-8 +2018-08-03 10:03:01.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:01.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:01.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:01.654 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:01.655 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.655 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.656 +03:00 [INF] Authorization failed. +2018-08-03 10:03:01.661 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:01.661 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:01.662 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:01.662 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:01.663 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.7418ms +2018-08-03 10:03:01.663 +03:00 [INF] Request finished in 10.0291ms 500 application/json; charset=utf-8 +2018-08-03 10:03:09.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-08-03 10:03:09.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:09.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:09.917 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:03:09.961 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:03:10.039 +03:00 [INF] Executed action /Account/Login in 121.7804ms +2018-08-03 10:03:10.039 +03:00 [INF] Request finished in 734.9606ms 200 text/html; charset=utf-8 +2018-08-03 10:03:10.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:03:10.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:03:10.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.097 +03:00 [INF] Request finished in 4.4043ms 404 +2018-08-03 10:03:10.097 +03:00 [INF] Request finished in 3.0106ms 404 +2018-08-03 10:03:10.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:03:10.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:03:10.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.104 +03:00 [INF] Request finished in 0.8505ms 404 +2018-08-03 10:03:10.104 +03:00 [INF] Request finished in 1.0753ms 404 +2018-08-03 10:03:10.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:10.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.161 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:10.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:03:10.162 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.163 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:03:10.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.168 +03:00 [INF] Request finished in 0.8328ms 404 +2018-08-03 10:03:10.169 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:10.170 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:10.171 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:10.171 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:10.172 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:03:10.172 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:10.173 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.214ms +2018-08-03 10:03:10.173 +03:00 [INF] Request finished in 15.3378ms 500 application/json; charset=utf-8 +2018-08-03 10:03:10.173 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4136ms. +2018-08-03 10:03:10.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:03:10.173 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:03:10.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.174 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6211ms +2018-08-03 10:03:10.174 +03:00 [INF] Request finished in 11.6314ms 200 text/plain; charset=utf-8 +2018-08-03 10:03:10.174 +03:00 [INF] Request finished in 0.7697ms 404 +2018-08-03 10:03:10.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:10.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.255 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:10.255 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:10.255 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.255 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.256 +03:00 [INF] Authorization failed. +2018-08-03 10:03:10.260 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:10.260 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:10.261 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:10.262 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:10.262 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.2202ms +2018-08-03 10:03:10.262 +03:00 [INF] Request finished in 8.1514ms 500 application/json; charset=utf-8 +2018-08-03 10:03:10.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:03:10.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.272 +03:00 [INF] Request finished in 0.7355ms 404 +2018-08-03 10:03:10.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:03:10.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.282 +03:00 [INF] Request finished in 0.6354ms 404 +2018-08-03 10:03:10.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/favicon.ico/apple-touch-icon.png +2018-08-03 10:03:10.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.290 +03:00 [INF] Request finished in 1.0983ms 404 +2018-08-03 10:03:10.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/favicon.ico/favicon-16x16.png +2018-08-03 10:03:10.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:10.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:10.294 +03:00 [INF] Request finished in 0.7325ms 404 +2018-08-03 10:03:26.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:03:26.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:26.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:26.977 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:03:26.977 +03:00 [INF] Request finished in 19.8539ms 200 text/css +2018-08-03 10:03:27.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:03:27.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:27.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:27.226 +03:00 [INF] Request finished in 1.1218ms 404 +2018-08-03 10:03:44.375 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-08-03 10:03:44.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:44.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:44.377 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:03:44.437 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:03:44.613 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-08-03 10:03:44.633 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-08-03 10:03:44.633 +03:00 [INF] Executed action /Account/Login in 255.9576ms +2018-08-03 10:03:44.636 +03:00 [INF] Request finished in 261.3199ms 302 +2018-08-03 10:03:44.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:03:44.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:44.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:44.646 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:03:44.646 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:03:44.652 +03:00 [INF] Executed action /Index in 6.239ms +2018-08-03 10:03:44.652 +03:00 [INF] Request finished in 7.5566ms 200 text/html; charset=utf-8 +2018-08-03 10:03:44.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:44.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:44.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:44.858 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:44.860 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:44.860 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.860 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.862 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.863 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.863 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.863 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.863 +03:00 [INF] Authorization failed. +2018-08-03 10:03:44.863 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:44.866 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:03:44.866 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1211ms. +2018-08-03 10:03:44.866 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:03:44.866 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5924ms +2018-08-03 10:03:44.866 +03:00 [INF] Request finished in 5.1076ms 200 text/plain; charset=utf-8 +2018-08-03 10:03:44.870 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:44.871 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:44.872 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:44.874 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:44.874 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.5167ms +2018-08-03 10:03:44.874 +03:00 [INF] Request finished in 17.4345ms 500 application/json; charset=utf-8 +2018-08-03 10:03:51.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity +2018-08-03 10:03:51.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:51.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:51.310 +03:00 [INF] Request finished in 1.1486ms 404 +2018-08-03 10:03:51.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-08-03 10:03:51.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:51.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:51.343 +03:00 [INF] Request finished in 0.7397ms 404 +2018-08-03 10:03:55.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-08-03 10:03:55.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:55.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:55.862 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", area = "", action = "", controller = ""}. Executing action /Identity/Roles/Index +2018-08-03 10:03:55.869 +03:00 [INF] Authorization failed. +2018-08-03 10:03:55.869 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:03:55.872 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:03:55.876 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:03:55.876 +03:00 [INF] Executed action /Identity/Roles/Index in 13.224ms +2018-08-03 10:03:55.876 +03:00 [INF] Request finished in 277.0683ms 302 +2018-08-03 10:03:55.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FRoles +2018-08-03 10:03:55.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:55.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:55.884 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:03:55.916 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:03:55.948 +03:00 [INF] Executed action /Account/Login in 64.15740000000001ms +2018-08-03 10:03:55.948 +03:00 [INF] Request finished in 65.1303ms 200 text/html; charset=utf-8 +2018-08-03 10:03:55.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:03:55.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:03:55.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:55.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:55.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:55.993 +03:00 [INF] Request finished in 0.6733ms 404 +2018-08-03 10:03:55.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:55.994 +03:00 [INF] Request finished in 2.1447ms 404 +2018-08-03 10:03:56.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:03:56.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:03:56.005 +03:00 [INF] Request finished in 1.2444ms 404 +2018-08-03 10:03:56.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.007 +03:00 [INF] Request finished in 2.5782ms 404 +2018-08-03 10:03:56.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:56.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.078 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:56.079 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:56.079 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.080 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:03:56.081 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.082 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:56.083 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:03:56.083 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11520000000000001ms. +2018-08-03 10:03:56.083 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:03:56.084 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1395ms +2018-08-03 10:03:56.084 +03:00 [INF] Request finished in 2.4714ms 200 text/plain; charset=utf-8 +2018-08-03 10:03:56.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:03:56.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.085 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:56.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.086 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:56.086 +03:00 [INF] Request finished in 1.1929ms 404 +2018-08-03 10:03:56.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:03:56.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.088 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:56.089 +03:00 [INF] Request finished in 1.9154ms 404 +2018-08-03 10:03:56.090 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:56.091 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.5446ms +2018-08-03 10:03:56.091 +03:00 [INF] Request finished in 15.1023ms 500 application/json; charset=utf-8 +2018-08-03 10:03:56.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:03:56.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.164 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:03:56.164 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:03:56.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.164 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.165 +03:00 [INF] Authorization failed. +2018-08-03 10:03:56.168 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:03:56.169 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:03:56.170 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:03:56.171 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:03:56.171 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.6424ms +2018-08-03 10:03:56.171 +03:00 [INF] Request finished in 8.6016ms 500 application/json; charset=utf-8 +2018-08-03 10:03:56.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:03:56.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.183 +03:00 [INF] Request finished in 0.9133ms 404 +2018-08-03 10:03:56.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:03:56.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:03:56.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:03:56.191 +03:00 [INF] Request finished in 0.7429ms 404 +2018-08-03 10:04:02.022 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FRoles application/x-www-form-urlencoded 263 +2018-08-03 10:04:02.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.023 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:02.058 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:02.091 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-08-03 10:04:02.093 +03:00 [INF] Executing RedirectResult, redirecting to /Identity/Roles. +2018-08-03 10:04:02.093 +03:00 [INF] Executed action /Account/Login in 70.3631ms +2018-08-03 10:04:02.094 +03:00 [INF] Request finished in 72.092ms 302 +2018-08-03 10:04:02.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-08-03 10:04:02.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.103 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", area = "", action = "", controller = ""}. Executing action /Identity/Roles/Index +2018-08-03 10:04:02.104 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.104 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:04:02.104 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:04:02.104 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:04:02.104 +03:00 [INF] Executed action /Identity/Roles/Index in 1.3555000000000001ms +2018-08-03 10:04:02.105 +03:00 [INF] Request finished in 2.5869ms 302 +2018-08-03 10:04:02.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FRoles +2018-08-03 10:04:02.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.114 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:02.135 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:02.165 +03:00 [INF] Executed action /Account/Login in 50.6391ms +2018-08-03 10:04:02.165 +03:00 [INF] Request finished in 52.0851ms 200 text/html; charset=utf-8 +2018-08-03 10:04:02.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:04:02.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.228 +03:00 [INF] Request finished in 1.6126ms 404 +2018-08-03 10:04:02.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:04:02.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.229 +03:00 [INF] Request finished in 0.9203ms 404 +2018-08-03 10:04:02.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:04:02.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:04:02.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.236 +03:00 [INF] Request finished in 0.9619ms 404 +2018-08-03 10:04:02.236 +03:00 [INF] Request finished in 0.941ms 404 +2018-08-03 10:04:02.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:02.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:04:02.285 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:02.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.286 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:02.286 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:02.286 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.286 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:04:02.286 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.287 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1527ms. +2018-08-03 10:04:02.287 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:04:02.287 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.287 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3433000000000002ms +2018-08-03 10:04:02.287 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.287 +03:00 [INF] Request finished in 2.7363ms 200 text/plain; charset=utf-8 +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.288 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.289 +03:00 [INF] Authorization failed. +2018-08-03 10:04:02.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:02.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.291 +03:00 [INF] Request finished in 1.9372ms 404 +2018-08-03 10:04:02.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:02.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.296 +03:00 [INF] Request finished in 4.3423ms 404 +2018-08-03 10:04:02.297 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:02.297 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:02.298 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:02.299 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:02.299 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.212900000000001ms +2018-08-03 10:04:02.299 +03:00 [INF] Request finished in 17.0517ms 500 application/json; charset=utf-8 +2018-08-03 10:04:02.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:02.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.367 +03:00 [INF] Request finished in 0.6326ms 404 +2018-08-03 10:04:02.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:02.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:02.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:02.374 +03:00 [INF] Request finished in 0.8191ms 404 +2018-08-03 10:04:46.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:04:46.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.636 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:04:46.637 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.637 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:04:46.637 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:04:46.637 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:04:46.637 +03:00 [INF] Executed action /Identity/Users/Index in 1.0342ms +2018-08-03 10:04:46.638 +03:00 [INF] Request finished in 289.4976ms 302 +2018-08-03 10:04:46.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers +2018-08-03 10:04:46.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.646 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:46.671 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:46.701 +03:00 [INF] Executed action /Account/Login in 54.5915ms +2018-08-03 10:04:46.701 +03:00 [INF] Request finished in 55.8731ms 200 text/html; charset=utf-8 +2018-08-03 10:04:46.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:04:46.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.752 +03:00 [INF] Request finished in 1.3665ms 404 +2018-08-03 10:04:46.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:04:46.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.756 +03:00 [INF] Request finished in 3.235ms 404 +2018-08-03 10:04:46.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:04:46.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.763 +03:00 [INF] Request finished in 0.896ms 404 +2018-08-03 10:04:46.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:04:46.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.764 +03:00 [INF] Request finished in 0.8962ms 404 +2018-08-03 10:04:46.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:46.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.818 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:46.818 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:46.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.819 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.820 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.821 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:04:46.822 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3951ms. +2018-08-03 10:04:46.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:46.822 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:04:46.822 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3391ms +2018-08-03 10:04:46.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.822 +03:00 [INF] Request finished in 3.9837ms 200 text/plain; charset=utf-8 +2018-08-03 10:04:46.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.825 +03:00 [INF] Request finished in 2.7681ms 404 +2018-08-03 10:04:46.826 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:46.826 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:46.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.827 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:46.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.828 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:46.829 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.8954ms +2018-08-03 10:04:46.829 +03:00 [INF] Request finished in 12.6402ms 500 application/json; charset=utf-8 +2018-08-03 10:04:46.829 +03:00 [INF] Request finished in 2.2056ms 404 +2018-08-03 10:04:46.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:46.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.909 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:46.910 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:46.910 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.911 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.912 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.912 +03:00 [INF] Authorization failed. +2018-08-03 10:04:46.916 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:46.916 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:46.917 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:46.918 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:46.918 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.0201000000000011ms +2018-08-03 10:04:46.919 +03:00 [INF] Request finished in 10.1694ms 500 application/json; charset=utf-8 +2018-08-03 10:04:46.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:46.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.931 +03:00 [INF] Request finished in 0.8418ms 404 +2018-08-03 10:04:46.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:46.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:46.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:46.940 +03:00 [INF] Request finished in 0.8749ms 404 +2018-08-03 10:04:51.422 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers application/x-www-form-urlencoded 263 +2018-08-03 10:04:51.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.423 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:51.453 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:51.468 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-08-03 10:04:51.469 +03:00 [INF] Executing RedirectResult, redirecting to /Identity/Users. +2018-08-03 10:04:51.469 +03:00 [INF] Executed action /Account/Login in 45.5844ms +2018-08-03 10:04:51.469 +03:00 [INF] Request finished in 46.6998ms 302 +2018-08-03 10:04:51.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:04:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.479 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:04:51.480 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.480 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:04:51.480 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:04:51.480 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:04:51.480 +03:00 [INF] Executed action /Identity/Users/Index in 0.5476ms +2018-08-03 10:04:51.480 +03:00 [INF] Request finished in 1.6624ms 302 +2018-08-03 10:04:51.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers +2018-08-03 10:04:51.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.500 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:51.524 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:51.554 +03:00 [INF] Executed action /Account/Login in 53.9484ms +2018-08-03 10:04:51.554 +03:00 [INF] Request finished in 54.9696ms 200 text/html; charset=utf-8 +2018-08-03 10:04:51.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:04:51.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.628 +03:00 [INF] Request finished in 0.9166ms 404 +2018-08-03 10:04:51.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:04:51.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.639 +03:00 [INF] Request finished in 1.137ms 404 +2018-08-03 10:04:51.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:04:51.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.646 +03:00 [INF] Request finished in 1.4101ms 404 +2018-08-03 10:04:51.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:04:51.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.649 +03:00 [INF] Request finished in 2.5964ms 404 +2018-08-03 10:04:51.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:51.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.687 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:51.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:04:51.688 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:51.688 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.688 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.689 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:51.689 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Authorization failed. +2018-08-03 10:04:51.690 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:04:51.691 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.133ms. +2018-08-03 10:04:51.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:51.691 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:04:51.691 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.595ms +2018-08-03 10:04:51.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.691 +03:00 [INF] Request finished in 3.2505ms 200 text/plain; charset=utf-8 +2018-08-03 10:04:51.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.692 +03:00 [INF] Request finished in 0.7734ms 404 +2018-08-03 10:04:51.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:51.695 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:51.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.695 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:51.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.696 +03:00 [INF] Request finished in 2.26ms 404 +2018-08-03 10:04:51.697 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:51.698 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:51.699 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.0716ms +2018-08-03 10:04:51.699 +03:00 [INF] Request finished in 12.8703ms 500 application/json; charset=utf-8 +2018-08-03 10:04:51.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:51.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.779 +03:00 [INF] Request finished in 0.9145ms 404 +2018-08-03 10:04:51.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:51.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:51.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:51.785 +03:00 [INF] Request finished in 0.6617ms 404 +2018-08-03 10:04:54.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:04:54.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.409 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:04:54.409 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.409 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:04:54.409 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:04:54.410 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:04:54.410 +03:00 [INF] Executed action /Identity/Users/Index in 0.732ms +2018-08-03 10:04:54.410 +03:00 [INF] Request finished in 1.865ms 302 +2018-08-03 10:04:54.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers +2018-08-03 10:04:54.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.422 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:04:54.450 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:04:54.484 +03:00 [INF] Executed action /Account/Login in 61.535900000000005ms +2018-08-03 10:04:54.484 +03:00 [INF] Request finished in 62.6389ms 200 text/html; charset=utf-8 +2018-08-03 10:04:54.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:04:54.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.532 +03:00 [INF] Request finished in 1.2398ms 404 +2018-08-03 10:04:54.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:04:54.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.535 +03:00 [INF] Request finished in 2.5837ms 404 +2018-08-03 10:04:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:04:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:04:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.541 +03:00 [INF] Request finished in 0.8886ms 404 +2018-08-03 10:04:54.542 +03:00 [INF] Request finished in 0.9197ms 404 +2018-08-03 10:04:54.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:54.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.594 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:54.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:04:54.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.599 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:54.599 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.599 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.600 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.600 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12490000000000001ms. +2018-08-03 10:04:54.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:54.600 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:04:54.600 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.600 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.600 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.601 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.600 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2894ms +2018-08-03 10:04:54.601 +03:00 [INF] Request finished in 1.5302ms 404 +2018-08-03 10:04:54.601 +03:00 [INF] Request finished in 6.1996ms 200 text/plain; charset=utf-8 +2018-08-03 10:04:54.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:54.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.607 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:54.608 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:54.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.609 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:54.609 +03:00 [INF] Request finished in 7.0726ms 404 +2018-08-03 10:04:54.610 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:54.610 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.527900000000002ms +2018-08-03 10:04:54.611 +03:00 [INF] Request finished in 18.5875ms 500 application/json; charset=utf-8 +2018-08-03 10:04:54.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:04:54.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.680 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:04:54.681 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:04:54.681 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.681 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.681 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.681 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.681 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.682 +03:00 [INF] Authorization failed. +2018-08-03 10:04:54.686 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:04:54.686 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:04:54.687 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:04:54.688 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:04:54.689 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.1777ms +2018-08-03 10:04:54.689 +03:00 [INF] Request finished in 9.2909ms 500 application/json; charset=utf-8 +2018-08-03 10:04:54.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:04:54.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.700 +03:00 [INF] Request finished in 0.7989ms 404 +2018-08-03 10:04:54.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:04:54.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:04:54.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:04:54.708 +03:00 [INF] Request finished in 0.7904ms 404 +2018-08-03 10:05:33.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:05:33.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:33.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:33.894 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:05:33.894 +03:00 [INF] Authorization failed. +2018-08-03 10:05:33.894 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-08-03 10:05:33.894 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-08-03 10:05:33.894 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-08-03 10:05:33.894 +03:00 [INF] Executed action /Identity/Users/Index in 0.7103ms +2018-08-03 10:05:33.894 +03:00 [INF] Request finished in 1.9161ms 302 +2018-08-03 10:05:33.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers +2018-08-03 10:05:33.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:33.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:33.905 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:05:33.937 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:05:33.974 +03:00 [INF] Executed action /Account/Login in 69.2226ms +2018-08-03 10:05:33.974 +03:00 [INF] Request finished in 70.6384ms 200 text/html; charset=utf-8 +2018-08-03 10:05:34.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:05:34.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.029 +03:00 [INF] Request finished in 1.6452ms 404 +2018-08-03 10:05:34.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:05:34.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.031 +03:00 [INF] Request finished in 0.9929ms 404 +2018-08-03 10:05:34.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:05:34.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.043 +03:00 [INF] Request finished in 1.6823ms 404 +2018-08-03 10:05:34.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:05:34.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.046 +03:00 [INF] Request finished in 1.262ms 404 +2018-08-03 10:05:34.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:05:34.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.100 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:05:34.103 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:05:34.104 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.104 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.105 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.105 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.105 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.106 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.106 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.106 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.106 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:05:34.107 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.108 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.108 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.108 +03:00 [INF] Authorization failed. +2018-08-03 10:05:34.109 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:05:34.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:05:34.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.110 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:05:34.110 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1579ms. +2018-08-03 10:05:34.110 +03:00 [INF] Request finished in 0.7796ms 404 +2018-08-03 10:05:34.110 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:05:34.111 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1095000000000002ms +2018-08-03 10:05:34.111 +03:00 [INF] Request finished in 3.7538ms 200 text/plain; charset=utf-8 +2018-08-03 10:05:34.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:05:34.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.112 +03:00 [INF] Request finished in 0.6935ms 404 +2018-08-03 10:05:34.113 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:05:34.113 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:05:34.115 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:05:34.116 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:05:34.116 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.4156ms +2018-08-03 10:05:34.117 +03:00 [INF] Request finished in 18.9398ms 500 application/json; charset=utf-8 +2018-08-03 10:05:34.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:05:34.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.184 +03:00 [INF] Request finished in 0.7158ms 404 +2018-08-03 10:05:34.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:05:34.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.194 +03:00 [INF] Request finished in 1.1216ms 404 +2018-08-03 10:05:34.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/favicon.ico/favicon-32x32.png +2018-08-03 10:05:34.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:05:34.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:05:34.204 +03:00 [INF] Request finished in 2.6585ms 404 +2018-08-03 10:08:01.468 +03:00 [INF] Loaded modules: +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:08:01.484 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:08:01.485 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:08:01.486 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:08:01.487 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:08:01.487 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:08:03.358 +03:00 [INF] Initialized all modules. +2018-08-03 10:08:03.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:08:03.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:03.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:06.048 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:08:06.070 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:06.736 +03:00 [INF] Executed action /Index in 682.591ms +2018-08-03 10:08:06.762 +03:00 [INF] Request finished in 3157.1867ms 200 text/html; charset=utf-8 +2018-08-03 10:08:06.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:08:06.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:06.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:06.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:08:06.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:06.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:06.969 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:06.970 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:07.009 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:08:07.013 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:08:07.099 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 86.039700000000011ms. +2018-08-03 10:08:07.106 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:08:07.107 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 138.2937ms +2018-08-03 10:08:07.109 +03:00 [INF] Request finished in 194.267ms 200 text/plain; charset=utf-8 +2018-08-03 10:08:07.156 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.160 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.163 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.165 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.168 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.171 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.174 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.176 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.180 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.184 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.187 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.190 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.196 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.199 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.201 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.206 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.211 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.215 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:07.263 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:08:07.269 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:08:07.300 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:08:07.309 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:08:07.319 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 348.3519ms +2018-08-03 10:08:07.319 +03:00 [INF] Request finished in 409.4263ms 500 application/json; charset=utf-8 +2018-08-03 10:08:13.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-08-03 10:08:13.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:13.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:13.871 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:08:13.883 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:13.971 +03:00 [INF] Executed action /Account/Login in 100.79820000000001ms +2018-08-03 10:08:13.972 +03:00 [INF] Request finished in 769.0367ms 200 text/html; charset=utf-8 +2018-08-03 10:08:14.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/scss/vs.css +2018-08-03 10:08:14.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.css +2018-08-03 10:08:14.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.060 +03:00 [INF] Request finished in 37.8587ms 404 +2018-08-03 10:08:14.060 +03:00 [INF] Request finished in 33.5741ms 404 +2018-08-03 10:08:14.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/abp-logo-dark.svg +2018-08-03 10:08:14.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:08:14.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:08:14.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:08:14.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:08:14.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:08:14.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.120 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.122 +03:00 [INF] Request finished in 52.172ms 404 +2018-08-03 10:08:14.126 +03:00 [INF] Request finished in 55.8304ms 404 +2018-08-03 10:08:14.150 +03:00 [INF] Request finished in 33.2159ms 404 +2018-08-03 10:08:14.150 +03:00 [INF] Request finished in 30.7842ms 404 +2018-08-03 10:08:14.155 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:14.156 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:08:14.166 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:14.167 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:08:14.168 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2679ms. +2018-08-03 10:08:14.168 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:08:14.169 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.117ms +2018-08-03 10:08:14.169 +03:00 [INF] Request finished in 52.8726ms 200 text/plain; charset=utf-8 +2018-08-03 10:08:14.169 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.169 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.170 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.170 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.171 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.173 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.174 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.175 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.175 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.176 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.177 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.178 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.179 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.180 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.182 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.183 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.183 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.184 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:14.189 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:08:14.189 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:08:14.191 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:08:14.193 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:08:14.194 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 38.8966ms +2018-08-03 10:08:14.194 +03:00 [INF] Request finished in 84.5333ms 500 application/json; charset=utf-8 +2018-08-03 10:08:14.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/prism/prism.js +2018-08-03 10:08:14.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.258 +03:00 [INF] Request finished in 22.2811ms 404 +2018-08-03 10:08:14.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/js/vs.js +2018-08-03 10:08:14.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:14.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:14.308 +03:00 [INF] Request finished in 21.4232ms 404 +2018-08-03 10:08:18.333 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 306 +2018-08-03 10:08:18.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:18.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:18.359 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:08:18.397 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:18.610 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-08-03 10:08:18.627 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-08-03 10:08:18.627 +03:00 [INF] Executed action /Account/Login in 268.1458ms +2018-08-03 10:08:18.627 +03:00 [INF] Request finished in 294.4139ms 302 +2018-08-03 10:08:18.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:08:18.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:18.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:18.666 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:08:18.667 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:18.672 +03:00 [INF] Executed action /Index in 6.0191ms +2018-08-03 10:08:18.673 +03:00 [INF] Request finished in 33.98ms 200 text/html; charset=utf-8 +2018-08-03 10:08:18.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:08:18.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:18.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:18.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:08:18.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:18.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:18.825 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:18.825 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:18.826 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:08:18.826 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:08:18.826 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1753ms. +2018-08-03 10:08:18.826 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:08:18.826 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1968ms +2018-08-03 10:08:18.826 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.826 +03:00 [INF] Request finished in 36.7192ms 200 text/plain; charset=utf-8 +2018-08-03 10:08:18.827 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.828 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.828 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.829 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.829 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.830 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.831 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.832 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.834 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.835 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.836 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.837 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.837 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.838 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.838 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.839 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.839 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:18.843 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:08:18.843 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:08:18.844 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:08:18.845 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:08:18.846 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.511300000000002ms +2018-08-03 10:08:18.846 +03:00 [INF] Request finished in 57.7577ms 500 application/json; charset=utf-8 +2018-08-03 10:08:23.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:08:23.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:23.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.190 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:08:24.202 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.204 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:24.244 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.288 +03:00 [INF] Executed action /Identity/Users/Index in 98.63900000000001ms +2018-08-03 10:08:24.289 +03:00 [INF] Request finished in 505.2083ms 200 text/html; charset=utf-8 +2018-08-03 10:08:24.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.css +2018-08-03 10:08:24.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/scss/vs.css +2018-08-03 10:08:24.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:08:24.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:08:24.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.js +2018-08-03 10:08:24.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/vs.js +2018-08-03 10:08:24.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.436 +03:00 [INF] Request finished in 101.6858ms 404 +2018-08-03 10:08:24.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:08:24.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.454 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:08:24.455 +03:00 [INF] Request finished in 8.2215ms 200 application/javascript +2018-08-03 10:08:24.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:08:24.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.465 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:08:24.465 +03:00 [INF] Request finished in 2.9799ms 200 application/javascript +2018-08-03 10:08:24.482 +03:00 [INF] Request finished in 147.3798ms 404 +2018-08-03 10:08:24.485 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:24.486 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:08:24.487 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.488 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.489 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.491 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.492 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.494 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.495 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.495 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:08:24.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.496 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.497 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.497 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/abp-logo-dark.svg +2018-08-03 10:08:24.498 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.498 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.499 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.500 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.500 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:24.503 +03:00 [INF] Request finished in 85.4504ms 404 +2018-08-03 10:08:24.503 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:24.504 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:08:24.504 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1173ms. +2018-08-03 10:08:24.504 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:08:24.505 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1305ms +2018-08-03 10:08:24.505 +03:00 [INF] Request finished in 102.7058ms 200 text/plain; charset=utf-8 +2018-08-03 10:08:24.505 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:08:24.506 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:08:24.508 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:08:24.509 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:08:24.510 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.152800000000003ms +2018-08-03 10:08:24.510 +03:00 [INF] Request finished in 107.3532ms 500 application/json; charset=utf-8 +2018-08-03 10:08:24.530 +03:00 [INF] Request finished in 119.662ms 404 +2018-08-03 10:08:24.549 +03:00 [INF] Request finished in 53.0644ms 404 +2018-08-03 10:08:24.552 +03:00 [INF] Request finished in 54.5835ms 404 +2018-08-03 10:08:24.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.js +2018-08-03 10:08:24.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.638 +03:00 [INF] Request finished in 28.114ms 404 +2018-08-03 10:08:24.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/vs.js +2018-08-03 10:08:24.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.668 +03:00 [INF] Request finished in 22.1042ms 404 +2018-08-03 10:08:24.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/favicon.ico/apple-touch-icon.png +2018-08-03 10:08:24.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/favicon.ico/favicon-32x32.png +2018-08-03 10:08:24.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/favicon.ico/favicon-32x32.png +2018-08-03 10:08:24.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.701 +03:00 [INF] Request finished in 1.0832ms 404 +2018-08-03 10:08:24.711 +03:00 [INF] Request finished in 31.7183ms 404 +2018-08-03 10:08:24.716 +03:00 [INF] Request finished in 32.6948ms 404 +2018-08-03 10:08:24.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:08:24.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:24.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:24.786 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:08:24.815 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:08:24.826 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:25.305 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 489.41740000000004ms. +2018-08-03 10:08:25.305 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:08:25.315 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 529.5366ms +2018-08-03 10:08:25.316 +03:00 [INF] Request finished in 562.6491ms 200 application/json; charset=utf-8 +2018-08-03 10:08:31.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:08:31.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:31.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:31.088 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:08:31.088 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:31.094 +03:00 [INF] Executed action /Index in 5.9427ms +2018-08-03 10:08:31.094 +03:00 [INF] Request finished in 35.2294ms 200 text/html; charset=utf-8 +2018-08-03 10:08:33.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 10:08:33.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:33.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:34.163 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 10:08:34.189 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:08:34.223 +03:00 [INF] Executed action /Templates in 59.1835ms +2018-08-03 10:08:34.223 +03:00 [INF] Request finished in 361.5766ms 200 text/html; charset=utf-8 +2018-08-03 10:08:34.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:08:34.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:34.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:34.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:08:34.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:34.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:34.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 10:08:34.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:08:34.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:08:34.355 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-03 10:08:34.355 +03:00 [INF] Request finished in 11.2031ms 200 application/javascript +2018-08-03 10:08:34.371 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:34.371 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:08:34.371 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:08:34.371 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:08:34.372 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1173ms. +2018-08-03 10:08:34.372 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:08:34.372 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.163ms +2018-08-03 10:08:34.372 +03:00 [INF] Request finished in 35.9453ms 200 text/plain; charset=utf-8 +2018-08-03 10:08:34.373 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.373 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.375 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.376 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.376 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.377 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.378 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.378 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.379 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.380 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.381 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.383 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.383 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.384 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.385 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.385 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.386 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.386 +03:00 [INF] Authorization was successful. +2018-08-03 10:08:34.392 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:08:34.392 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:08:34.393 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:08:34.394 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:08:34.394 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.426000000000002ms +2018-08-03 10:08:34.394 +03:00 [INF] Request finished in 60.7848ms 500 application/json; charset=utf-8 +2018-08-03 10:09:12.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 10:09:12.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:12.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.175 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 10:09:13.176 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:09:13.202 +03:00 [INF] Executed action /Templates in 27.4419ms +2018-08-03 10:09:13.202 +03:00 [INF] Request finished in 374.9107ms 200 text/html; charset=utf-8 +2018-08-03 10:09:13.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:09:13.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:09:13.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:09:13.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.238 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 10:09:13.238 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 10:09:13.238 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 10:09:13.239 +03:00 [INF] Request finished in 4.1352ms 304 text/css +2018-08-03 10:09:13.239 +03:00 [INF] Request finished in 3.3138ms 304 text/css +2018-08-03 10:09:13.239 +03:00 [INF] Request finished in 3.9724ms 304 text/css +2018-08-03 10:09:13.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:09:13.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.242 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 10:09:13.242 +03:00 [INF] Request finished in 1.015ms 304 text/css +2018-08-03 10:09:13.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:09:13.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.258 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 10:09:13.259 +03:00 [INF] Request finished in 1.5173ms 304 text/css +2018-08-03 10:09:13.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:09:13.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.264 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 10:09:13.264 +03:00 [INF] Request finished in 4.0342ms 304 text/css +2018-08-03 10:09:13.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:09:13.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.267 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 10:09:13.267 +03:00 [INF] Request finished in 0.8799ms 304 text/css +2018-08-03 10:09:13.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:09:13.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:09:13.280 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 10:09:13.280 +03:00 [INF] Request finished in 0.9016ms 304 text/css +2018-08-03 10:09:13.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.280 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 10:09:13.280 +03:00 [INF] Request finished in 0.6563ms 304 application/javascript +2018-08-03 10:09:13.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:09:13.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.291 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 10:09:13.292 +03:00 [INF] Request finished in 2.0784ms 304 application/javascript +2018-08-03 10:09:13.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:09:13.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.293 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 10:09:13.293 +03:00 [INF] Request finished in 0.9117ms 304 image/svg+xml +2018-08-03 10:09:13.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:09:13.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:09:13.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.311 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 10:09:13.311 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 10:09:13.311 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 10:09:13.311 +03:00 [INF] Request finished in 0.6861ms 304 image/svg+xml +2018-08-03 10:09:13.311 +03:00 [INF] Request finished in 0.6912ms 304 application/javascript +2018-08-03 10:09:13.311 +03:00 [INF] Request finished in 0.6018ms 304 image/png +2018-08-03 10:09:13.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:09:13.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:09:13.315 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 10:09:13.315 +03:00 [INF] Request finished in 3.0716ms 304 application/javascript +2018-08-03 10:09:13.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.315 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 10:09:13.315 +03:00 [INF] Request finished in 0.7623ms 304 application/javascript +2018-08-03 10:09:13.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:09:13.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.330 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 10:09:13.330 +03:00 [INF] Request finished in 0.7736ms 304 application/javascript +2018-08-03 10:09:13.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:09:13.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.331 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 10:09:13.331 +03:00 [INF] Request finished in 1.2364ms 304 application/javascript +2018-08-03 10:09:13.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:09:13.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.334 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 10:09:13.336 +03:00 [INF] Request finished in 2.4908ms 304 application/javascript +2018-08-03 10:09:13.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:09:13.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.341 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 10:09:13.342 +03:00 [INF] Request finished in 2.0114ms 304 application/javascript +2018-08-03 10:09:13.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:09:13.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.344 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 10:09:13.346 +03:00 [INF] Request finished in 1.1095ms 304 application/javascript +2018-08-03 10:09:13.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:09:13.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.359 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 10:09:13.359 +03:00 [INF] Request finished in 5.7208ms 304 application/javascript +2018-08-03 10:09:13.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:09:13.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:09:13.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.361 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 10:09:13.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.361 +03:00 [INF] Request finished in 1.2817ms 304 application/javascript +2018-08-03 10:09:13.362 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 10:09:13.362 +03:00 [INF] Request finished in 2.406ms 304 application/javascript +2018-08-03 10:09:13.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:09:13.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.366 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 10:09:13.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:09:13.366 +03:00 [INF] Request finished in 1.3547ms 304 application/javascript +2018-08-03 10:09:13.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:09:13.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.367 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 10:09:13.367 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 10:09:13.368 +03:00 [INF] Request finished in 0.7508ms 304 application/javascript +2018-08-03 10:09:13.368 +03:00 [INF] Request finished in 1.0544ms 304 application/javascript +2018-08-03 10:09:13.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:09:13.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:09:13.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.382 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 10:09:13.382 +03:00 [INF] Request finished in 1.7515ms 304 application/javascript +2018-08-03 10:09:13.383 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 10:09:13.383 +03:00 [INF] Request finished in 1.5726ms 304 application/javascript +2018-08-03 10:09:13.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:09:13.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.390 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 10:09:13.390 +03:00 [INF] Request finished in 1.9033ms 304 application/javascript +2018-08-03 10:09:13.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:09:13.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.396 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 10:09:13.396 +03:00 [INF] Request finished in 1.5508ms 304 application/javascript +2018-08-03 10:09:13.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:09:13.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.402 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 10:09:13.402 +03:00 [INF] Request finished in 1.3396ms 304 application/javascript +2018-08-03 10:09:13.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:09:13.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:09:13.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:09:13.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.415 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 10:09:13.415 +03:00 [INF] Request finished in 0.6229ms 304 application/javascript +2018-08-03 10:09:13.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:09:13.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.424 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 10:09:13.424 +03:00 [INF] Request finished in 0.8867ms 304 application/javascript +2018-08-03 10:09:13.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 10:09:13.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.427 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 10:09:13.427 +03:00 [INF] Request finished in 1.3297ms 304 application/javascript +2018-08-03 10:09:13.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:09:13.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:13.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:13.429 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 10:09:13.429 +03:00 [INF] Request finished in 1.1196ms 304 image/jpeg +2018-08-03 10:09:13.462 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:09:13.462 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:09:13.462 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:09:13.463 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:09:13.463 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1165ms. +2018-08-03 10:09:13.463 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.463 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:09:13.464 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8098ms +2018-08-03 10:09:13.464 +03:00 [INF] Request finished in 50.7335ms 200 text/plain; charset=utf-8 +2018-08-03 10:09:13.464 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.465 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.465 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.466 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.467 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.468 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.471 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.474 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.476 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.477 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.478 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.478 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.479 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.479 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.480 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.480 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.481 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:13.486 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:09:13.487 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:09:13.488 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:09:13.490 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:09:13.492 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 29.555500000000002ms +2018-08-03 10:09:13.492 +03:00 [INF] Request finished in 86.6179ms 500 application/json; charset=utf-8 +2018-08-03 10:09:50.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 10:09:50.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:50.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.398 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 10:09:51.399 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:09:51.421 +03:00 [INF] Executed action /Templates in 22.3181ms +2018-08-03 10:09:51.421 +03:00 [INF] Request finished in 460.8499ms 200 text/html; charset=utf-8 +2018-08-03 10:09:51.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:09:51.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:09:51.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.455 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 10:09:51.455 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 10:09:51.455 +03:00 [INF] Request finished in 1.9453ms 304 text/css +2018-08-03 10:09:51.455 +03:00 [INF] Request finished in 2.711ms 304 text/css +2018-08-03 10:09:51.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:09:51.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.456 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 10:09:51.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:09:51.456 +03:00 [INF] Request finished in 0.6085ms 304 text/css +2018-08-03 10:09:51.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.457 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 10:09:51.457 +03:00 [INF] Request finished in 0.9358ms 304 text/css +2018-08-03 10:09:51.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:09:51.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.462 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 10:09:51.462 +03:00 [INF] Request finished in 3.9036ms 304 text/css +2018-08-03 10:09:51.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:09:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.464 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 10:09:51.464 +03:00 [INF] Request finished in 8.3003ms 304 text/css +2018-08-03 10:09:51.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:09:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.479 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 10:09:51.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:09:51.479 +03:00 [INF] Request finished in 0.7952ms 304 text/css +2018-08-03 10:09:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.479 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 10:09:51.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:09:51.480 +03:00 [INF] Request finished in 0.5656ms 304 text/css +2018-08-03 10:09:51.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.480 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 10:09:51.481 +03:00 [INF] Request finished in 0.9718ms 304 application/javascript +2018-08-03 10:09:51.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:09:51.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:09:51.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.482 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 10:09:51.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.482 +03:00 [INF] Request finished in 0.8598ms 304 application/javascript +2018-08-03 10:09:51.482 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 10:09:51.483 +03:00 [INF] Request finished in 1.6621ms 304 application/javascript +2018-08-03 10:09:51.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:09:51.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.484 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 10:09:51.484 +03:00 [INF] Request finished in 0.8344ms 304 application/javascript +2018-08-03 10:09:51.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:09:51.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:09:51.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.496 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 10:09:51.497 +03:00 [INF] Request finished in 0.992ms 304 application/javascript +2018-08-03 10:09:51.499 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 10:09:51.499 +03:00 [INF] Request finished in 4.6829ms 304 application/javascript +2018-08-03 10:09:51.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:09:51.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.507 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 10:09:51.508 +03:00 [INF] Request finished in 1.925ms 304 application/javascript +2018-08-03 10:09:51.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:09:51.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:09:51.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.512 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 10:09:51.512 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 10:09:51.512 +03:00 [INF] Request finished in 1.9262ms 304 application/javascript +2018-08-03 10:09:51.512 +03:00 [INF] Request finished in 2.8002ms 304 application/javascript +2018-08-03 10:09:51.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:09:51.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.519 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 10:09:51.519 +03:00 [INF] Request finished in 0.9593ms 304 application/javascript +2018-08-03 10:09:51.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:09:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:09:51.529 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 10:09:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.529 +03:00 [INF] Request finished in 6.0581ms 304 application/javascript +2018-08-03 10:09:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.529 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 10:09:51.530 +03:00 [INF] Request finished in 0.6081ms 304 application/javascript +2018-08-03 10:09:51.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:09:51.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.534 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 10:09:51.534 +03:00 [INF] Request finished in 0.9456ms 304 application/javascript +2018-08-03 10:09:51.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:09:51.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.536 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 10:09:51.536 +03:00 [INF] Request finished in 1.4312ms 304 application/javascript +2018-08-03 10:09:51.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:09:51.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:09:51.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:09:51.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.547 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 10:09:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.547 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 10:09:51.547 +03:00 [INF] Request finished in 2.2362ms 304 image/svg+xml +2018-08-03 10:09:51.547 +03:00 [INF] Request finished in 1.5798ms 304 image/png +2018-08-03 10:09:51.547 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 10:09:51.547 +03:00 [INF] Request finished in 0.6348ms 304 image/svg+xml +2018-08-03 10:09:51.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:09:51.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.553 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 10:09:51.554 +03:00 [INF] Request finished in 1.3854ms 304 application/javascript +2018-08-03 10:09:51.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:09:51.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.563 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 10:09:51.563 +03:00 [INF] Request finished in 1.4524ms 304 application/javascript +2018-08-03 10:09:51.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:09:51.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:09:51.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:09:51.564 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 10:09:51.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:09:51.565 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 10:09:51.565 +03:00 [INF] Request finished in 1.4249ms 304 application/javascript +2018-08-03 10:09:51.565 +03:00 [INF] Request finished in 1.328ms 304 application/javascript +2018-08-03 10:09:51.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.565 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 10:09:51.565 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 10:09:51.565 +03:00 [INF] Request finished in 0.7344ms 304 application/javascript +2018-08-03 10:09:51.565 +03:00 [INF] Request finished in 0.9525ms 304 application/javascript +2018-08-03 10:09:51.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:09:51.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.567 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 10:09:51.567 +03:00 [INF] Request finished in 1.5371ms 304 application/javascript +2018-08-03 10:09:51.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:09:51.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:09:51.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:09:51.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.580 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 10:09:51.580 +03:00 [INF] Request finished in 1.074ms 304 application/javascript +2018-08-03 10:09:51.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 10:09:51.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:09:51.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.586 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 10:09:51.586 +03:00 [INF] Request finished in 1.5836ms 304 application/javascript +2018-08-03 10:09:51.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.588 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 10:09:51.588 +03:00 [INF] Request finished in 2.6913ms 304 application/javascript +2018-08-03 10:09:51.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:09:51.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:51.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:09:51.592 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 10:09:51.593 +03:00 [INF] Request finished in 1.8072ms 304 image/jpeg +2018-08-03 10:09:51.640 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:09:51.640 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:09:51.641 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:09:51.642 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:09:51.642 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.642 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21580000000000002ms. +2018-08-03 10:09:51.642 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:09:51.643 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2006ms +2018-08-03 10:09:51.643 +03:00 [INF] Request finished in 65.4767ms 200 text/plain; charset=utf-8 +2018-08-03 10:09:51.643 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.644 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.644 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.645 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.645 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.646 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.646 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.647 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.647 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.648 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.649 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.649 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.650 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.650 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.651 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.651 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.652 +03:00 [INF] Authorization was successful. +2018-08-03 10:09:51.657 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:09:51.657 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:09:51.660 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:09:51.661 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:09:51.661 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.6174ms +2018-08-03 10:09:51.661 +03:00 [INF] Request finished in 84.1279ms 500 application/json; charset=utf-8 +2018-08-03 10:09:59.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 10:09:59.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:09:59.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.141 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 10:10:00.142 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:10:00.172 +03:00 [INF] Executed action /Templates in 31.0839ms +2018-08-03 10:10:00.172 +03:00 [INF] Request finished in 438.425ms 200 text/html; charset=utf-8 +2018-08-03 10:10:00.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:10:00.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.200 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 10:10:00.202 +03:00 [INF] Request finished in 4.533ms 304 text/css +2018-08-03 10:10:00.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:10:00.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:10:00.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.211 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 10:10:00.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.211 +03:00 [INF] Request finished in 2.9404ms 304 text/css +2018-08-03 10:10:00.211 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 10:10:00.211 +03:00 [INF] Request finished in 3.499ms 304 text/css +2018-08-03 10:10:00.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:10:00.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.214 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 10:10:00.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:10:00.215 +03:00 [INF] Request finished in 2.2964ms 304 text/css +2018-08-03 10:10:00.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.215 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 10:10:00.215 +03:00 [INF] Request finished in 0.7712ms 304 text/css +2018-08-03 10:10:00.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:10:00.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.218 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 10:10:00.219 +03:00 [INF] Request finished in 2.6912ms 304 text/css +2018-08-03 10:10:00.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:10:00.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.220 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 10:10:00.221 +03:00 [INF] Request finished in 1.438ms 304 text/css +2018-08-03 10:10:00.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:10:00.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.224 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 10:10:00.224 +03:00 [INF] Request finished in 0.6674ms 304 text/css +2018-08-03 10:10:00.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:10:00.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.229 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 10:10:00.230 +03:00 [INF] Request finished in 0.9139ms 304 application/javascript +2018-08-03 10:10:00.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:10:00.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.235 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 10:10:00.236 +03:00 [INF] Request finished in 3.3536ms 304 application/javascript +2018-08-03 10:10:00.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:10:00.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.238 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 10:10:00.239 +03:00 [INF] Request finished in 1.2718ms 304 application/javascript +2018-08-03 10:10:00.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:10:00.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:10:00.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.245 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 10:10:00.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.245 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 10:10:00.245 +03:00 [INF] Request finished in 0.6334ms 304 application/javascript +2018-08-03 10:10:00.247 +03:00 [INF] Request finished in 3.0355ms 304 application/javascript +2018-08-03 10:10:00.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:10:00.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:10:00.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.262 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.262 +03:00 [INF] Request finished in 0.7333ms 304 application/javascript +2018-08-03 10:10:00.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.263 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 10:10:00.263 +03:00 [INF] Request finished in 1.1798ms 304 application/javascript +2018-08-03 10:10:00.263 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 10:10:00.263 +03:00 [INF] Request finished in 2.7067ms 304 application/javascript +2018-08-03 10:10:00.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:10:00.266 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [INF] Request finished in 1.2314ms 304 application/javascript +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 10:10:00.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.266 +03:00 [INF] Request finished in 0.5613ms 304 application/javascript +2018-08-03 10:10:00.267 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 10:10:00.267 +03:00 [INF] Request finished in 0.5547ms 304 application/javascript +2018-08-03 10:10:00.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:10:00.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:10:00.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.283 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 10:10:00.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.283 +03:00 [INF] Request finished in 0.844ms 304 application/javascript +2018-08-03 10:10:00.283 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 10:10:00.283 +03:00 [INF] Request finished in 1.7608ms 304 application/javascript +2018-08-03 10:10:00.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:10:00.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.289 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 10:10:00.290 +03:00 [INF] Request finished in 1.9934ms 304 application/javascript +2018-08-03 10:10:00.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:10:00.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:10:00.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.296 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 10:10:00.296 +03:00 [INF] Request finished in 0.8511ms 304 application/javascript +2018-08-03 10:10:00.297 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 10:10:00.297 +03:00 [INF] Request finished in 1.6622ms 304 application/javascript +2018-08-03 10:10:00.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:10:00.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.306 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 10:10:00.306 +03:00 [INF] Request finished in 3.1399ms 304 application/javascript +2018-08-03 10:10:00.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:10:00.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.311 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 10:10:00.311 +03:00 [INF] Request finished in 2.0336ms 304 application/javascript +2018-08-03 10:10:00.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.317 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 10:10:00.317 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 10:10:00.317 +03:00 [INF] Request finished in 0.8277ms 304 application/javascript +2018-08-03 10:10:00.317 +03:00 [INF] Request finished in 0.8543ms 304 application/javascript +2018-08-03 10:10:00.317 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 10:10:00.317 +03:00 [INF] Request finished in 1.8704ms 304 application/javascript +2018-08-03 10:10:00.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:10:00.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:10:00.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:10:00.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.330 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 10:10:00.330 +03:00 [INF] Request finished in 0.8206ms 304 application/javascript +2018-08-03 10:10:00.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:10:00.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 10:10:00.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.342 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 10:10:00.342 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 10:10:00.342 +03:00 [INF] Request finished in 0.8148ms 304 application/javascript +2018-08-03 10:10:00.342 +03:00 [INF] Request finished in 0.7306ms 304 application/javascript +2018-08-03 10:10:00.342 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 10:10:00.343 +03:00 [INF] Request finished in 0.9551ms 304 image/svg+xml +2018-08-03 10:10:00.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:10:00.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.347 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 10:10:00.347 +03:00 [INF] Request finished in 2.6591ms 304 image/png +2018-08-03 10:10:00.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:10:00.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.360 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 10:10:00.360 +03:00 [INF] Request finished in 0.8366ms 304 image/svg+xml +2018-08-03 10:10:00.387 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:10:00.388 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:10:00.389 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0994ms. +2018-08-03 10:10:00.389 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:10:00.389 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:10:00.389 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8526ms +2018-08-03 10:10:00.389 +03:00 [INF] Request finished in 62.3009ms 200 text/plain; charset=utf-8 +2018-08-03 10:10:00.389 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:10:00.390 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.391 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.392 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.392 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.393 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.394 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.395 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.395 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.396 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.396 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.397 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.397 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.398 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.398 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.399 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.399 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.399 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:10:00.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:10:00.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:10:00.400 +03:00 [INF] Authorization was successful. +2018-08-03 10:10:00.400 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 10:10:00.400 +03:00 [INF] Request finished in 0.5031ms 304 image/jpeg +2018-08-03 10:10:00.406 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:10:00.406 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:10:00.407 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:10:00.408 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:10:00.409 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.9209ms +2018-08-03 10:10:00.409 +03:00 [INF] Request finished in 85.5385ms 500 application/json; charset=utf-8 +2018-08-03 10:11:03.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:11:03.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:03.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:03.716 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:11:03.716 +03:00 [INF] Request finished in 10.4253ms 200 text/css +2018-08-03 10:11:03.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:11:03.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:03.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:03.938 +03:00 [INF] Request finished in 2.9096ms 404 +2018-08-03 10:11:04.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:11:04.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.368 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:11:04.369 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.369 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:11:04.372 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.659 +03:00 [INF] Executed action /Identity/Users/Index in 291.4601ms +2018-08-03 10:11:04.659 +03:00 [INF] Request finished in 322.2618ms 200 text/html; charset=utf-8 +2018-08-03 10:11:04.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:11:04.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.700 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:11:04.700 +03:00 [INF] Request finished in 5.2738ms 200 text/css +2018-08-03 10:11:04.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:11:04.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.704 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:11:04.704 +03:00 [INF] Request finished in 3.0373ms 200 text/css +2018-08-03 10:11:04.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:11:04.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.708 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:11:04.709 +03:00 [INF] Request finished in 3.9833ms 200 text/css +2018-08-03 10:11:04.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:11:04.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:11:04.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:11:04.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.715 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:11:04.715 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:11:04.715 +03:00 [INF] Request finished in 4.2468ms 200 text/css +2018-08-03 10:11:04.715 +03:00 [INF] Request finished in 2.3736ms 200 text/css +2018-08-03 10:11:04.717 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:11:04.718 +03:00 [INF] Request finished in 6.7853ms 200 text/css +2018-08-03 10:11:04.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.css +2018-08-03 10:11:04.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/scss/vs.css +2018-08-03 10:11:04.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:11:04.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.745 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:11:04.746 +03:00 [INF] Request finished in 1.4557ms 200 application/javascript +2018-08-03 10:11:04.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:11:04.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:11:04.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:11:04.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.762 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:11:04.762 +03:00 [INF] Request finished in 1.6089ms 200 application/javascript +2018-08-03 10:11:04.769 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:11:04.769 +03:00 [INF] Request finished in 7.5118ms 200 application/javascript +2018-08-03 10:11:04.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:11:04.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.779 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:11:04.780 +03:00 [INF] Request finished in 18.5978ms 200 application/javascript +2018-08-03 10:11:04.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:11:04.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.788 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:11:04.788 +03:00 [INF] Request finished in 14.0663ms 200 application/javascript +2018-08-03 10:11:04.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.789 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:11:04.789 +03:00 [INF] Request finished in 2.322ms 200 application/javascript +2018-08-03 10:11:04.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:11:04.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.810 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:11:04.810 +03:00 [INF] Request finished in 4.6457ms 200 application/javascript +2018-08-03 10:11:04.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:11:04.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:11:04.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.821 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:11:04.821 +03:00 [INF] Request finished in 7.9191ms 200 application/javascript +2018-08-03 10:11:04.824 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:11:04.824 +03:00 [INF] Request finished in 6.8204ms 200 application/javascript +2018-08-03 10:11:04.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:11:04.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.826 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:11:04.826 +03:00 [INF] Request finished in 1.3653ms 200 application/javascript +2018-08-03 10:11:04.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:11:04.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:11:04.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:11:04.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.847 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:11:04.847 +03:00 [INF] Request finished in 2.3289ms 200 application/javascript +2018-08-03 10:11:04.847 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:11:04.848 +03:00 [INF] Request finished in 2.0785ms 200 application/javascript +2018-08-03 10:11:04.853 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:11:04.854 +03:00 [INF] Request finished in 23.5541ms 200 application/javascript +2018-08-03 10:11:04.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:11:04.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:11:04.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:11:04.863 +03:00 [INF] Request finished in 1.2493ms 200 application/javascript +2018-08-03 10:11:04.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.867 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:11:04.867 +03:00 [INF] Request finished in 5.553ms 200 application/javascript +2018-08-03 10:11:04.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:11:04.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.870 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:11:04.870 +03:00 [INF] Request finished in 1.5105ms 200 application/javascript +2018-08-03 10:11:04.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:11:04.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:11:04.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.875 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:11:04.875 +03:00 [INF] Request finished in 1.2951ms 200 application/javascript +2018-08-03 10:11:04.876 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:11:04.876 +03:00 [INF] Request finished in 2.1861ms 200 application/javascript +2018-08-03 10:11:04.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:11:04.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.883 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:11:04.883 +03:00 [INF] Request finished in 2.9352ms 200 application/javascript +2018-08-03 10:11:04.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:11:04.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:11:04.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.889 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:11:04.889 +03:00 [INF] Request finished in 2.8665ms 200 application/javascript +2018-08-03 10:11:04.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.891 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:11:04.891 +03:00 [INF] Request finished in 2.2786ms 200 application/javascript +2018-08-03 10:11:04.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:11:04.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.898 +03:00 [INF] Request finished in 175.8362ms 404 +2018-08-03 10:11:04.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.js +2018-08-03 10:11:04.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:11:04.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/vs.js +2018-08-03 10:11:04.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.914 +03:00 [INF] Request finished in 194.2075ms 404 +2018-08-03 10:11:04.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:11:04.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.923 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:11:04.923 +03:00 [INF] Request finished in 2.212ms 200 application/javascript +2018-08-03 10:11:04.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:11:04.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.929 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:11:04.929 +03:00 [INF] Request finished in 0.9813ms 200 application/javascript +2018-08-03 10:11:04.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:11:04.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/abp-logo-dark.svg +2018-08-03 10:11:04.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.963 +03:00 [INF] Request finished in 55.0464ms 404 +2018-08-03 10:11:04.964 +03:00 [INF] Request finished in 65.3848ms 404 +2018-08-03 10:11:04.965 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:11:04.968 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:11:04.968 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.097200000000000009ms. +2018-08-03 10:11:04.968 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:11:04.969 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.8299000000000003ms +2018-08-03 10:11:04.969 +03:00 [INF] Request finished in 74.2289ms 200 text/plain; charset=utf-8 +2018-08-03 10:11:04.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:11:04.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:04.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:04.974 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:11:04.974 +03:00 [INF] Request finished in 1.5003ms 200 image/svg+xml +2018-08-03 10:11:04.977 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:11:04.978 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:11:04.979 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.979 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.980 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.980 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.981 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.982 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.982 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.983 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.984 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.984 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.985 +03:00 [INF] Request finished in 55.2163ms 404 +2018-08-03 10:11:04.985 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.986 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.986 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.987 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.988 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.988 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.989 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.989 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:04.990 +03:00 [INF] Request finished in 54.5356ms 404 +2018-08-03 10:11:04.993 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:11:04.994 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:11:04.995 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:11:04.996 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:11:04.996 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.628700000000002ms +2018-08-03 10:11:04.996 +03:00 [INF] Request finished in 97.3147ms 500 application/json; charset=utf-8 +2018-08-03 10:11:05.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:11:05.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/prism/prism.js +2018-08-03 10:11:05.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.331 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:11:05.332 +03:00 [INF] Request finished in 3.2631ms 200 font/woff2 +2018-08-03 10:11:05.360 +03:00 [INF] Request finished in 30.4592ms 404 +2018-08-03 10:11:05.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/js/vs.js +2018-08-03 10:11:05.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.489 +03:00 [INF] Request finished in 27.0548ms 404 +2018-08-03 10:11:05.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/favicon.ico/favicon-16x16.png +2018-08-03 10:11:05.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.535 +03:00 [INF] Request finished in 30.4738ms 404 +2018-08-03 10:11:05.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:11:05.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.634 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:11:05.637 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:11:05.638 +03:00 [INF] Authorization was successful. +2018-08-03 10:11:05.651 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.4716ms. +2018-08-03 10:11:05.652 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:11:05.652 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 17.6656ms +2018-08-03 10:11:05.652 +03:00 [INF] Request finished in 52.1728ms 200 application/json; charset=utf-8 +2018-08-03 10:11:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:11:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:11:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:11:05.869 +03:00 [INF] Request finished in 0.9955ms 404 +2018-08-03 10:12:05.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:12:05.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.201 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:12:05.202 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.202 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:12:05.204 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.524 +03:00 [INF] Executed action /Identity/Users/Index in 323.29650000000004ms +2018-08-03 10:12:05.524 +03:00 [INF] Request finished in 363.176ms 200 text/html; charset=utf-8 +2018-08-03 10:12:05.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:12:05.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:12:05.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:12:05.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.578 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:12:05.578 +03:00 [INF] Request finished in 2.8405ms 200 text/css +2018-08-03 10:12:05.578 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:12:05.578 +03:00 [INF] Request finished in 8.5031ms 200 text/css +2018-08-03 10:12:05.578 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:12:05.579 +03:00 [INF] Request finished in 2.0485ms 200 text/css +2018-08-03 10:12:05.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:12:05.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.583 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:12:05.583 +03:00 [INF] Request finished in 2.4701ms 200 text/css +2018-08-03 10:12:05.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:12:05.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.586 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:12:05.586 +03:00 [INF] Request finished in 3.7783ms 200 text/css +2018-08-03 10:12:05.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:12:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:12:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.595 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:12:05.595 +03:00 [INF] Request finished in 1.3503ms 200 text/css +2018-08-03 10:12:05.596 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:12:05.597 +03:00 [INF] Request finished in 3.3587ms 200 text/css +2018-08-03 10:12:05.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:12:05.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.608 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:12:05.609 +03:00 [INF] Request finished in 2.0439ms 200 text/css +2018-08-03 10:12:05.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:12:05.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.612 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:12:05.612 +03:00 [INF] Request finished in 2.5741ms 200 application/javascript +2018-08-03 10:12:05.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:12:05.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:12:05.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.623 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:12:05.623 +03:00 [INF] Request finished in 1.2124ms 200 application/javascript +2018-08-03 10:12:05.627 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:12:05.627 +03:00 [INF] Request finished in 7.6898ms 200 application/javascript +2018-08-03 10:12:05.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/abp-logo-dark.svg +2018-08-03 10:12:05.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:12:05.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:12:05.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.639 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:12:05.639 +03:00 [INF] Request finished in 7.8343ms 200 application/javascript +2018-08-03 10:12:05.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:12:05.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.649 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:12:05.649 +03:00 [INF] Request finished in 2.4101ms 200 application/javascript +2018-08-03 10:12:05.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:12:05.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.682 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:12:05.682 +03:00 [INF] Request finished in 1.3051ms 200 application/javascript +2018-08-03 10:12:05.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:12:05.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:12:05.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.697 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:12:05.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.697 +03:00 [INF] Request finished in 1.1678ms 200 application/javascript +2018-08-03 10:12:05.698 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:12:05.698 +03:00 [INF] Request finished in 1.8105ms 200 application/javascript +2018-08-03 10:12:05.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:12:05.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.714 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:12:05.715 +03:00 [INF] Request finished in 4.4134ms 200 application/javascript +2018-08-03 10:12:05.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:12:05.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.725 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:12:05.725 +03:00 [INF] Request finished in 1.2957ms 200 application/javascript +2018-08-03 10:12:05.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:12:05.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:12:05.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.731 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:12:05.731 +03:00 [INF] Request finished in 1.2787ms 200 application/javascript +2018-08-03 10:12:05.746 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:12:05.746 +03:00 [INF] Request finished in 16.1236ms 200 application/javascript +2018-08-03 10:12:05.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:12:05.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:12:05.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.751 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:12:05.751 +03:00 [INF] Request finished in 0.9311ms 200 application/javascript +2018-08-03 10:12:05.752 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:12:05.752 +03:00 [INF] Request finished in 1.437ms 200 application/javascript +2018-08-03 10:12:05.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:12:05.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.759 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:12:05.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:12:05.762 +03:00 [INF] Request finished in 4.7811ms 200 application/javascript +2018-08-03 10:12:05.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:12:05.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.764 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:12:05.764 +03:00 [INF] Request finished in 2.337ms 200 application/javascript +2018-08-03 10:12:05.765 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:12:05.765 +03:00 [INF] Request finished in 3.0223ms 200 application/javascript +2018-08-03 10:12:05.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:12:05.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.771 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:12:05.772 +03:00 [INF] Request finished in 2.3913ms 200 application/javascript +2018-08-03 10:12:05.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:12:05.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:12:05.777 +03:00 [INF] Request finished in 2.6096ms 200 application/javascript +2018-08-03 10:12:05.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:12:05.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.780 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:12:05.780 +03:00 [INF] Request finished in 1.52ms 200 application/javascript +2018-08-03 10:12:05.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:12:05.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.786 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:12:05.786 +03:00 [INF] Request finished in 2.1174ms 200 application/javascript +2018-08-03 10:12:05.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:12:05.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:12:05.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:12:05.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.802 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:12:05.802 +03:00 [INF] Request finished in 2.3142ms 200 application/javascript +2018-08-03 10:12:05.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:12:05.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.824 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:12:05.825 +03:00 [INF] Request finished in 3.9854ms 200 application/javascript +2018-08-03 10:12:05.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:12:05.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.844 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:12:05.844 +03:00 [INF] Request finished in 3.2538ms 200 application/javascript +2018-08-03 10:12:05.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:12:05.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.846 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:12:05.846 +03:00 [INF] Request finished in 1.7288ms 200 application/javascript +2018-08-03 10:12:05.856 +03:00 [INF] Request finished in 223.5974ms 404 +2018-08-03 10:12:05.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:12:05.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.861 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:12:05.861 +03:00 [INF] Request finished in 1.6205ms 200 image/svg+xml +2018-08-03 10:12:05.874 +03:00 [INF] Request finished in 243.5419ms 404 +2018-08-03 10:12:05.898 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:05.899 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:12:05.900 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.901 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.901 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.901 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.902 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.903 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.903 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:05.903 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.904 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.904 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:12:05.905 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.905 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1405ms. +2018-08-03 10:12:05.905 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:12:05.905 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.905 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6677000000000002ms +2018-08-03 10:12:05.905 +03:00 [INF] Request finished in 107.5866ms 200 text/plain; charset=utf-8 +2018-08-03 10:12:05.906 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.906 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.907 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.907 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.908 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.908 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.909 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.910 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:05.916 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:12:05.916 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:12:05.917 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:12:05.919 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:12:05.919 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.6279ms +2018-08-03 10:12:05.919 +03:00 [INF] Request finished in 123.9779ms 500 application/json; charset=utf-8 +2018-08-03 10:12:05.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:12:05.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:12:05.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:05.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:05.927 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:12:05.928 +03:00 [INF] Request finished in 3.7347ms 200 font/woff2 +2018-08-03 10:12:05.935 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:12:05.935 +03:00 [INF] Request finished in 11.5563ms 200 image/jpeg +2018-08-03 10:12:06.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:12:06.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:06.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:06.447 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:12:06.450 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:12:06.450 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:06.463 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.8521ms. +2018-08-03 10:12:06.463 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:12:06.463 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 16.6879ms +2018-08-03 10:12:06.463 +03:00 [INF] Request finished in 58.6848ms 200 application/json; charset=utf-8 +2018-08-03 10:12:06.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-08-03 10:12:06.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:06.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:06.740 +03:00 [INF] Sending file. Request path: '/scss/vs.css.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css.map' +2018-08-03 10:12:06.740 +03:00 [INF] Request finished in 2.681ms 200 text/plain +2018-08-03 10:12:06.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:12:06.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:06.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:06.741 +03:00 [INF] Request finished in 0.8417ms 404 +2018-08-03 10:12:26.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:12:26.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:26.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:26.765 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:12:26.766 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:26.767 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:12:26.769 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.123 +03:00 [INF] Executed action /Identity/Users/Index in 357.3662ms +2018-08-03 10:12:27.123 +03:00 [INF] Request finished in 397.8061ms 200 text/html; charset=utf-8 +2018-08-03 10:12:27.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:12:27.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.170 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:12:27.170 +03:00 [INF] Request finished in 4.0713ms 200 text/css +2018-08-03 10:12:27.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:12:27.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.178 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:12:27.179 +03:00 [INF] Request finished in 2.5335ms 200 text/css +2018-08-03 10:12:27.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:12:27.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.180 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:12:27.180 +03:00 [INF] Request finished in 1.4688ms 200 text/css +2018-08-03 10:12:27.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:12:27.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.182 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:12:27.183 +03:00 [INF] Request finished in 2.5134ms 200 text/css +2018-08-03 10:12:27.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:12:27.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:12:27.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.186 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:12:27.186 +03:00 [INF] Request finished in 1.0268ms 200 text/css +2018-08-03 10:12:27.187 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:12:27.187 +03:00 [INF] Request finished in 1.2237ms 200 text/css +2018-08-03 10:12:27.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:12:27.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.199 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:12:27.200 +03:00 [INF] Request finished in 1.4923ms 200 text/css +2018-08-03 10:12:27.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:12:27.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.212 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:12:27.212 +03:00 [INF] Request finished in 2.6069ms 200 text/css +2018-08-03 10:12:27.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:12:27.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:12:27.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.228 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:12:27.229 +03:00 [INF] Request finished in 1.2824ms 200 image/svg+xml +2018-08-03 10:12:27.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:12:27.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.242 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:12:27.242 +03:00 [INF] Request finished in 2.2075ms 200 application/javascript +2018-08-03 10:12:27.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:12:27.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:12:27.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.245 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:12:27.245 +03:00 [INF] Request finished in 1.9852ms 200 application/javascript +2018-08-03 10:12:27.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:12:27.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:12:27.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.255 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:12:27.255 +03:00 [INF] Request finished in 6.0846ms 200 application/javascript +2018-08-03 10:12:27.256 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:12:27.257 +03:00 [INF] Request finished in 14.2772ms 200 application/javascript +2018-08-03 10:12:27.257 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:12:27.257 +03:00 [INF] Request finished in 4.4676ms 200 application/javascript +2018-08-03 10:12:27.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:12:27.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.266 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:12:27.267 +03:00 [INF] Request finished in 1.6269ms 200 application/javascript +2018-08-03 10:12:27.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:12:27.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.287 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:12:27.287 +03:00 [INF] Request finished in 2.6764ms 200 application/javascript +2018-08-03 10:12:27.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:12:27.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.290 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:12:27.290 +03:00 [INF] Request finished in 1.5022ms 200 application/javascript +2018-08-03 10:12:27.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:12:27.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.300 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:12:27.300 +03:00 [INF] Request finished in 2.2223ms 200 application/javascript +2018-08-03 10:12:27.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:12:27.320 +03:00 [INF] Request finished in 97.0302ms 404 +2018-08-03 10:12:27.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:12:27.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.321 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:12:27.322 +03:00 [INF] Request finished in 1.8048ms 200 application/javascript +2018-08-03 10:12:27.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:12:27.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.327 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:12:27.327 +03:00 [INF] Request finished in 1.3136ms 200 application/javascript +2018-08-03 10:12:27.329 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:12:27.330 +03:00 [INF] Request finished in 10.7477ms 200 application/javascript +2018-08-03 10:12:27.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:12:27.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:12:27.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.335 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:12:27.335 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:12:27.335 +03:00 [INF] Request finished in 1.9193ms 200 application/javascript +2018-08-03 10:12:27.335 +03:00 [INF] Request finished in 4.0286ms 200 application/javascript +2018-08-03 10:12:27.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:12:27.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.355 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:12:27.355 +03:00 [INF] Request finished in 6.3739ms 200 application/javascript +2018-08-03 10:12:27.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:12:27.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.362 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:12:27.362 +03:00 [INF] Request finished in 1.9983ms 200 application/javascript +2018-08-03 10:12:27.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:12:27.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.370 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:12:27.371 +03:00 [INF] Request finished in 2.0896ms 200 application/javascript +2018-08-03 10:12:27.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:12:27.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.377 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:12:27.377 +03:00 [INF] Request finished in 1.6668ms 200 application/javascript +2018-08-03 10:12:27.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:12:27.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:12:27.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.385 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:12:27.385 +03:00 [INF] Request finished in 1.1048ms 200 application/javascript +2018-08-03 10:12:27.385 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:12:27.385 +03:00 [INF] Request finished in 1.4092ms 200 application/javascript +2018-08-03 10:12:27.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:12:27.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.387 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:12:27.387 +03:00 [INF] Request finished in 1.4015ms 200 application/javascript +2018-08-03 10:12:27.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:12:27.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:12:27.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:12:27.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.395 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:12:27.395 +03:00 [INF] Request finished in 1.0734ms 200 application/javascript +2018-08-03 10:12:27.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:12:27.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:12:27.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.399 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:12:27.399 +03:00 [INF] Request finished in 2.8061ms 200 application/javascript +2018-08-03 10:12:27.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.401 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:12:27.401 +03:00 [INF] Request finished in 2.9228ms 200 application/javascript +2018-08-03 10:12:27.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:12:27.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.412 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:12:27.412 +03:00 [INF] Request finished in 1.4005ms 200 application/javascript +2018-08-03 10:12:27.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:12:27.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.418 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:12:27.418 +03:00 [INF] Request finished in 1.4524ms 200 image/svg+xml +2018-08-03 10:12:27.482 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:27.483 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:12:27.484 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.484 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.485 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.486 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.486 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.487 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.487 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.488 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.488 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.489 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.490 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.490 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.491 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.491 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.492 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.492 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.497 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:12:27.498 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:12:27.499 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:12:27.502 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:12:27.502 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.8734ms +2018-08-03 10:12:27.502 +03:00 [INF] Request finished in 111.4601ms 500 application/json; charset=utf-8 +2018-08-03 10:12:27.507 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:27.508 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:12:27.508 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.092800000000000007ms. +2018-08-03 10:12:27.508 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:12:27.509 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8298ms +2018-08-03 10:12:27.509 +03:00 [INF] Request finished in 118.0944ms 200 text/plain; charset=utf-8 +2018-08-03 10:12:27.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:12:27.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.607 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:12:27.607 +03:00 [INF] Request finished in 11.1787ms 200 image/jpeg +2018-08-03 10:12:27.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:12:27.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.633 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:12:27.633 +03:00 [INF] Request finished in 3.4327ms 200 font/woff2 +2018-08-03 10:12:27.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:12:27.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:27.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:27.824 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:27.825 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:12:27.827 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.828 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.828 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.829 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.829 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.830 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.830 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.831 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.833 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.833 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.834 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.834 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.835 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.835 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.836 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.836 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.837 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.837 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:27.841 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:12:27.841 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:12:27.842 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:12:27.843 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:12:27.843 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.0428ms +2018-08-03 10:12:27.843 +03:00 [INF] Request finished in 66.8433ms 500 application/json; charset=utf-8 +2018-08-03 10:12:28.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:12:28.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:28.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:28.088 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:12:28.092 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:12:28.092 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:28.096 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1958ms. +2018-08-03 10:12:28.096 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:12:28.097 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 8.0236ms +2018-08-03 10:12:28.097 +03:00 [INF] Request finished in 47.0395ms 200 application/json; charset=utf-8 +2018-08-03 10:12:28.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-08-03 10:12:28.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:28.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:28.350 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-08-03 10:12:28.351 +03:00 [INF] Request finished in 0.78ms 304 text/plain +2018-08-03 10:12:28.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:12:28.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:28.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:28.357 +03:00 [INF] Request finished in 0.9459ms 404 +2018-08-03 10:12:38.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 10:12:38.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.868 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 10:12:38.869 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:12:38.874 +03:00 [INF] Executed action /Templates in 6.0093000000000005ms +2018-08-03 10:12:38.874 +03:00 [INF] Request finished in 40.6641ms 200 text/html; charset=utf-8 +2018-08-03 10:12:38.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:12:38.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:12:38.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.936 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:12:38.936 +03:00 [INF] Request finished in 1.4756ms 200 text/css +2018-08-03 10:12:38.938 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:12:38.939 +03:00 [INF] Request finished in 4.4685ms 200 text/css +2018-08-03 10:12:38.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:12:38.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:12:38.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.945 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:12:38.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.945 +03:00 [INF] Request finished in 1.936ms 200 text/css +2018-08-03 10:12:38.946 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:12:38.947 +03:00 [INF] Request finished in 2.1252ms 200 text/css +2018-08-03 10:12:38.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:12:38.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:12:38.960 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:12:38.960 +03:00 [INF] Request finished in 3.4223ms 200 text/css +2018-08-03 10:12:38.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.964 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:12:38.964 +03:00 [INF] Request finished in 5.1565ms 200 text/css +2018-08-03 10:12:38.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:12:38.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.973 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:12:38.974 +03:00 [INF] Request finished in 1.6689ms 200 text/css +2018-08-03 10:12:38.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:12:38.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.976 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:12:38.976 +03:00 [INF] Request finished in 2.3266ms 200 text/css +2018-08-03 10:12:38.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:12:38.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:12:38.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:12:38.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:12:38.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.994 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:12:38.994 +03:00 [INF] Request finished in 1.4305ms 200 application/javascript +2018-08-03 10:12:38.994 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-03 10:12:38.994 +03:00 [INF] Request finished in 1.0009ms 200 image/png +2018-08-03 10:12:38.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:12:38.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:38.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:38.997 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:12:38.997 +03:00 [INF] Request finished in 1.4922ms 200 application/javascript +2018-08-03 10:12:39.001 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:12:39.001 +03:00 [INF] Request finished in 9.2356ms 200 application/javascript +2018-08-03 10:12:39.002 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:12:39.003 +03:00 [INF] Request finished in 11.4533ms 200 application/javascript +2018-08-03 10:12:39.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:12:39.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:12:39.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:12:39.014 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:12:39.014 +03:00 [INF] Request finished in 2.5235ms 200 application/javascript +2018-08-03 10:12:39.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.015 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:12:39.015 +03:00 [INF] Request finished in 1.1085ms 200 application/javascript +2018-08-03 10:12:39.015 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:12:39.015 +03:00 [INF] Request finished in 1.4822ms 200 application/javascript +2018-08-03 10:12:39.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:12:39.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.036 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:12:39.036 +03:00 [INF] Request finished in 2.9303ms 200 application/javascript +2018-08-03 10:12:39.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:12:39.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:12:39.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.049 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:12:39.050 +03:00 [INF] Request finished in 3.2295ms 200 application/javascript +2018-08-03 10:12:39.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:12:39.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.058 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:12:39.059 +03:00 [INF] Request finished in 1.7544ms 200 application/javascript +2018-08-03 10:12:39.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:12:39.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.061 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:12:39.061 +03:00 [INF] Request finished in 13.459ms 200 application/javascript +2018-08-03 10:12:39.061 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:12:39.061 +03:00 [INF] Request finished in 1.7438ms 200 application/javascript +2018-08-03 10:12:39.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:12:39.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.070 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:12:39.070 +03:00 [INF] Request finished in 3.0081ms 200 application/javascript +2018-08-03 10:12:39.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:12:39.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:12:39.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.093 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:12:39.094 +03:00 [INF] Request finished in 2.2967ms 200 application/javascript +2018-08-03 10:12:39.094 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:12:39.094 +03:00 [INF] Request finished in 1.6629ms 200 application/javascript +2018-08-03 10:12:39.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:12:39.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.102 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:12:39.102 +03:00 [INF] Request finished in 2.8168ms 200 application/javascript +2018-08-03 10:12:39.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:12:39.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.103 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:12:39.104 +03:00 [INF] Request finished in 1.2381ms 200 application/javascript +2018-08-03 10:12:39.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:12:39.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.109 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:12:39.109 +03:00 [INF] Request finished in 2.0129ms 200 application/javascript +2018-08-03 10:12:39.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:12:39.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.115 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:12:39.117 +03:00 [INF] Request finished in 2.89ms 200 application/javascript +2018-08-03 10:12:39.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:12:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.127 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:12:39.127 +03:00 [INF] Request finished in 2.603ms 200 application/javascript +2018-08-03 10:12:39.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:12:39.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.132 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:12:39.132 +03:00 [INF] Request finished in 1.3027ms 200 application/javascript +2018-08-03 10:12:39.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:12:39.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:12:39.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:12:39.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.185 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:12:39.186 +03:00 [INF] Request finished in 4.9175ms 200 application/javascript +2018-08-03 10:12:39.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:12:39.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.196 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:12:39.196 +03:00 [INF] Request finished in 2.8074ms 200 application/javascript +2018-08-03 10:12:39.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 10:12:39.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.202 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-03 10:12:39.203 +03:00 [INF] Request finished in 1.5249ms 200 application/javascript +2018-08-03 10:12:39.211 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:39.212 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:12:39.213 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.213 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.214 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:12:39.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.214 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.215 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:12:39.215 +03:00 [INF] Request finished in 1.277ms 200 image/svg+xml +2018-08-03 10:12:39.216 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.217 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.217 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.218 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.219 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.219 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.220 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.220 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:12:39.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.221 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.221 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:12:39.222 +03:00 [INF] Request finished in 1.2023ms 200 image/svg+xml +2018-08-03 10:12:39.222 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.222 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.223 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.224 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.224 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:39.229 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:12:39.230 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:12:39.230 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:12:39.231 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:12:39.231 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:39.231 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.5018ms +2018-08-03 10:12:39.231 +03:00 [INF] Request finished in 84.1034ms 500 application/json; charset=utf-8 +2018-08-03 10:12:39.232 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:12:39.232 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0931ms. +2018-08-03 10:12:39.232 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:12:39.232 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.9172ms +2018-08-03 10:12:39.232 +03:00 [INF] Request finished in 62.2913ms 200 text/plain; charset=utf-8 +2018-08-03 10:12:39.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:12:39.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.318 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:12:39.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:12:39.318 +03:00 [INF] Request finished in 9.2213ms 200 image/jpeg +2018-08-03 10:12:39.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.321 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:12:39.321 +03:00 [INF] Request finished in 3.0243ms 200 font/woff2 +2018-08-03 10:12:39.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-08-03 10:12:39.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.872 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-08-03 10:12:39.872 +03:00 [INF] Request finished in 0.831ms 304 text/plain +2018-08-03 10:12:39.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:12:39.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:39.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:39.875 +03:00 [INF] Request finished in 1.1813ms 404 +2018-08-03 10:12:40.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:12:40.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.486 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:12:40.487 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.487 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:12:40.489 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.504 +03:00 [INF] Executed action /Identity/Users/Index in 18.0169ms +2018-08-03 10:12:40.504 +03:00 [INF] Request finished in 42.0981ms 200 text/html; charset=utf-8 +2018-08-03 10:12:40.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:12:40.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:12:40.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:12:40.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.564 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:12:40.564 +03:00 [INF] Request finished in 1.0513ms 200 text/css +2018-08-03 10:12:40.564 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:12:40.565 +03:00 [INF] Request finished in 2.0709ms 200 text/css +2018-08-03 10:12:40.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:12:40.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.567 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:12:40.567 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:12:40.567 +03:00 [INF] Request finished in 0.953ms 200 text/css +2018-08-03 10:12:40.567 +03:00 [INF] Request finished in 4.1219ms 200 text/css +2018-08-03 10:12:40.567 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:12:40.567 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:12:40.567 +03:00 [INF] Request finished in 1.1236ms 200 text/css +2018-08-03 10:12:40.567 +03:00 [INF] Request finished in 0.9506ms 200 text/css +2018-08-03 10:12:40.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:12:40.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:12:40.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.579 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:12:40.579 +03:00 [INF] Request finished in 0.8263ms 200 text/css +2018-08-03 10:12:40.579 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:12:40.580 +03:00 [INF] Request finished in 7.2737ms 200 text/css +2018-08-03 10:12:40.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:12:40.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:12:40.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.599 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:12:40.599 +03:00 [INF] Request finished in 2.6532ms 200 application/javascript +2018-08-03 10:12:40.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:12:40.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.610 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:12:40.610 +03:00 [INF] Request finished in 8.069ms 200 application/javascript +2018-08-03 10:12:40.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:12:40.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:12:40.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:12:40.612 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:12:40.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:12:40.614 +03:00 [INF] Request finished in 3.1157ms 200 application/javascript +2018-08-03 10:12:40.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.615 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:12:40.615 +03:00 [INF] Request finished in 1.37ms 200 application/javascript +2018-08-03 10:12:40.615 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:12:40.615 +03:00 [INF] Request finished in 3.551ms 200 application/javascript +2018-08-03 10:12:40.618 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:12:40.618 +03:00 [INF] Request finished in 6.3364ms 200 application/javascript +2018-08-03 10:12:40.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:12:40.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.626 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:12:40.626 +03:00 [INF] Request finished in 1.6899ms 200 application/javascript +2018-08-03 10:12:40.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:12:40.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:12:40.636 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:12:40.636 +03:00 [INF] Request finished in 1.9508ms 200 application/javascript +2018-08-03 10:12:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.638 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:12:40.638 +03:00 [INF] Request finished in 2.6441ms 200 application/javascript +2018-08-03 10:12:40.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:12:40.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:12:40.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.648 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:12:40.649 +03:00 [INF] Request finished in 1.4774ms 200 application/javascript +2018-08-03 10:12:40.660 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:12:40.660 +03:00 [INF] Request finished in 12.1472ms 200 application/javascript +2018-08-03 10:12:40.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:12:40.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:12:40.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.662 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:12:40.662 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:12:40.662 +03:00 [INF] Request finished in 1.5404ms 200 application/javascript +2018-08-03 10:12:40.662 +03:00 [INF] Request finished in 1.4665ms 200 application/javascript +2018-08-03 10:12:40.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:12:40.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.664 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:12:40.664 +03:00 [INF] Request finished in 1.1237ms 200 application/javascript +2018-08-03 10:12:40.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:12:40.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.685 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:12:40.685 +03:00 [INF] Request finished in 1.982ms 200 application/javascript +2018-08-03 10:12:40.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:12:40.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.690 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:12:40.690 +03:00 [INF] Request finished in 3.0465ms 200 application/javascript +2018-08-03 10:12:40.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:12:40.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.692 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:12:40.692 +03:00 [INF] Request finished in 2.0763ms 200 application/javascript +2018-08-03 10:12:40.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:12:40.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.710 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:12:40.711 +03:00 [INF] Request finished in 1.4797ms 200 application/javascript +2018-08-03 10:12:40.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:12:40.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.715 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:12:40.715 +03:00 [INF] Request finished in 1.2761ms 200 application/javascript +2018-08-03 10:12:40.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:12:40.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.720 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:12:40.720 +03:00 [INF] Request finished in 1.3427ms 200 application/javascript +2018-08-03 10:12:40.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:12:40.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:12:40.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.732 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:12:40.732 +03:00 [INF] Request finished in 1.274ms 200 application/javascript +2018-08-03 10:12:40.740 +03:00 [INF] Request finished in 142.1737ms 404 +2018-08-03 10:12:40.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:12:40.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:12:40.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.753 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:12:40.753 +03:00 [INF] Request finished in 1.5164ms 200 application/javascript +2018-08-03 10:12:40.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:12:40.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.760 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:12:40.760 +03:00 [INF] Request finished in 1.8089ms 200 application/javascript +2018-08-03 10:12:40.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:12:40.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.770 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:12:40.770 +03:00 [INF] Request finished in 1.2982ms 200 application/javascript +2018-08-03 10:12:40.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:12:40.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.772 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:12:40.772 +03:00 [INF] Request finished in 1.4579ms 200 application/javascript +2018-08-03 10:12:40.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:12:40.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.775 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:12:40.775 +03:00 [INF] Request finished in 1.2139ms 200 image/svg+xml +2018-08-03 10:12:40.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:12:40.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.781 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:40.781 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:12:40.781 +03:00 [INF] Request finished in 1.0692ms 200 image/svg+xml +2018-08-03 10:12:40.781 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:12:40.782 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.783 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.784 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.784 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.785 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.785 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.786 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.787 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.787 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.788 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.789 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.789 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.790 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.790 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.791 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.791 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.792 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.792 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:12:40.792 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:40.792 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:12:40.793 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10200000000000001ms. +2018-08-03 10:12:40.793 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:12:40.793 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0054ms +2018-08-03 10:12:40.793 +03:00 [INF] Request finished in 43.4369ms 200 text/plain; charset=utf-8 +2018-08-03 10:12:40.797 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:12:40.798 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:12:40.799 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:12:40.800 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:12:40.800 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.317ms +2018-08-03 10:12:40.800 +03:00 [INF] Request finished in 69.9636ms 500 application/json; charset=utf-8 +2018-08-03 10:12:40.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:12:40.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:12:40.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:40.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:40.941 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:12:40.941 +03:00 [INF] Request finished in 3.1295ms 200 font/woff2 +2018-08-03 10:12:40.945 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:12:40.946 +03:00 [INF] Request finished in 9.9965ms 200 image/jpeg +2018-08-03 10:12:41.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:12:41.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:41.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:41.182 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:12:41.183 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:12:41.184 +03:00 [INF] Authorization was successful. +2018-08-03 10:12:41.187 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.2640000000000002ms. +2018-08-03 10:12:41.187 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:12:41.187 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 5.6934000000000005ms +2018-08-03 10:12:41.188 +03:00 [INF] Request finished in 43.1071ms 200 application/json; charset=utf-8 +2018-08-03 10:12:41.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-08-03 10:12:41.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:41.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:41.462 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-08-03 10:12:41.463 +03:00 [INF] Request finished in 1.2822ms 304 text/plain +2018-08-03 10:12:41.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-08-03 10:12:41.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:12:41.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:12:41.465 +03:00 [INF] Request finished in 0.9864ms 404 +2018-08-03 10:14:27.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users/CreateModal +2018-08-03 10:14:27.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:27.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:28.007 +03:00 [INF] Route matched with {page = "/Identity/Users/CreateModal", area = "", action = "", controller = ""}. Executing action /Identity/Users/CreateModal +2018-08-03 10:14:28.008 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:28.021 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:14:28.024 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:28.178 +03:00 [INF] Executed action /Identity/Users/CreateModal in 170.799ms +2018-08-03 10:14:28.178 +03:00 [INF] Request finished in 536.3029ms 200 text/html; charset=utf-8 +2018-08-03 10:14:38.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:14:38.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:38.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.028 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:14:39.029 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.029 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:14:39.032 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.041 +03:00 [INF] Executed action /Identity/Users/Index in 12.855ms +2018-08-03 10:14:39.041 +03:00 [INF] Request finished in 43.0116ms 200 text/html; charset=utf-8 +2018-08-03 10:14:39.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:14:39.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:14:39.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.094 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:14:39.094 +03:00 [INF] Request finished in 3.8034ms 200 text/css +2018-08-03 10:14:39.094 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:14:39.094 +03:00 [INF] Request finished in 2.889ms 200 text/css +2018-08-03 10:14:39.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:14:39.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:14:39.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.102 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:14:39.102 +03:00 [INF] Request finished in 1.3053ms 200 text/css +2018-08-03 10:14:39.102 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:14:39.103 +03:00 [INF] Request finished in 2.0455ms 200 text/css +2018-08-03 10:14:39.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:14:39.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.109 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:14:39.109 +03:00 [INF] Request finished in 1.9756ms 200 text/css +2018-08-03 10:14:39.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:14:39.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:14:39.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.116 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:14:39.116 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:14:39.116 +03:00 [INF] Request finished in 1.1351ms 200 text/css +2018-08-03 10:14:39.116 +03:00 [INF] Request finished in 1.1747ms 200 text/css +2018-08-03 10:14:39.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:14:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.127 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:14:39.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:14:39.127 +03:00 [INF] Request finished in 1.7167ms 200 text/css +2018-08-03 10:14:39.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:14:39.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.128 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:14:39.128 +03:00 [INF] Request finished in 1.2357ms 200 application/javascript +2018-08-03 10:14:39.136 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:14:39.137 +03:00 [INF] Request finished in 9.9726ms 200 application/javascript +2018-08-03 10:14:39.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:14:39.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:14:39.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.158 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:14:39.158 +03:00 [INF] Request finished in 1.1797ms 200 application/javascript +2018-08-03 10:14:39.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:14:39.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:14:39.176 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:14:39.176 +03:00 [INF] Request finished in 5.2316ms 200 application/javascript +2018-08-03 10:14:39.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.183 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:14:39.184 +03:00 [INF] Request finished in 7.8611ms 200 application/javascript +2018-08-03 10:14:39.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:14:39.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.199 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:14:39.199 +03:00 [INF] Request finished in 4.6749ms 200 application/javascript +2018-08-03 10:14:39.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:14:39.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.212 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:14:39.212 +03:00 [INF] Request finished in 1.7543ms 200 application/javascript +2018-08-03 10:14:39.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:14:39.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.217 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:14:39.217 +03:00 [INF] Request finished in 1.9529ms 200 application/javascript +2018-08-03 10:14:39.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:14:39.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.224 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:14:39.224 +03:00 [INF] Request finished in 4.2429ms 200 application/javascript +2018-08-03 10:14:39.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:14:39.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.236 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:14:39.236 +03:00 [INF] Request finished in 1.0373ms 200 application/javascript +2018-08-03 10:14:39.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:14:39.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:14:39.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:14:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.251 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:14:39.251 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:14:39.251 +03:00 [INF] Request finished in 0.9458ms 200 application/javascript +2018-08-03 10:14:39.251 +03:00 [INF] Request finished in 1.8812ms 200 application/javascript +2018-08-03 10:14:39.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:14:39.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:14:39.255 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:14:39.256 +03:00 [INF] Request finished in 14.5697ms 200 application/javascript +2018-08-03 10:14:39.257 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.257 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:14:39.257 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.257 +03:00 [INF] Request finished in 1.4397ms 200 application/javascript +2018-08-03 10:14:39.257 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:14:39.257 +03:00 [INF] Request finished in 1.4165ms 200 application/javascript +2018-08-03 10:14:39.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:14:39.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:14:39.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:14:39.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:14:39.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:14:39.265 +03:00 [INF] Request finished in 0.755ms 200 application/javascript +2018-08-03 10:14:39.265 +03:00 [INF] Request finished in 1.086ms 200 application/javascript +2018-08-03 10:14:39.265 +03:00 [INF] Request finished in 1.1789ms 200 application/javascript +2018-08-03 10:14:39.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:14:39.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.277 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:14:39.277 +03:00 [INF] Request finished in 1.2485ms 200 application/javascript +2018-08-03 10:14:39.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:14:39.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.281 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:14:39.282 +03:00 [INF] Request finished in 1.146ms 200 application/javascript +2018-08-03 10:14:39.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:14:39.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:14:39.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.298 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:14:39.304 +03:00 [INF] Request finished in 10.7031ms 200 application/javascript +2018-08-03 10:14:39.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:14:39.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:14:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:14:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.328 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:14:39.329 +03:00 [INF] Request finished in 1.205ms 200 application/javascript +2018-08-03 10:14:39.329 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:14:39.329 +03:00 [INF] Request finished in 0.8767ms 200 application/javascript +2018-08-03 10:14:39.339 +03:00 [INF] Request finished in 196.4987ms 404 +2018-08-03 10:14:39.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:14:39.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.341 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:14:39.341 +03:00 [INF] Request finished in 0.9385ms 200 application/javascript +2018-08-03 10:14:39.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:14:39.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.343 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:14:39.343 +03:00 [INF] Request finished in 3.1821ms 200 application/javascript +2018-08-03 10:14:39.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:14:39.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.349 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:14:39.349 +03:00 [INF] Request finished in 4.3431ms 200 image/svg+xml +2018-08-03 10:14:39.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:14:39.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.352 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:14:39.353 +03:00 [INF] Request finished in 1.7125ms 200 image/svg+xml +2018-08-03 10:14:39.376 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:14:39.376 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:14:39.377 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.378 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.379 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.379 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.380 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.381 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.382 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.382 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.383 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.384 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.384 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.385 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.385 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:14:39.385 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.386 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.386 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:14:39.386 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1422ms. +2018-08-03 10:14:39.386 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.386 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:14:39.387 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6702000000000001ms +2018-08-03 10:14:39.387 +03:00 [INF] Request finished in 70.9787ms 200 text/plain; charset=utf-8 +2018-08-03 10:14:39.387 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.388 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.388 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.392 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:14:39.393 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:14:39.394 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:14:39.395 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:14:39.395 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.3057ms +2018-08-03 10:14:39.395 +03:00 [INF] Request finished in 97.2902ms 500 application/json; charset=utf-8 +2018-08-03 10:14:39.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:14:39.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:14:39.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.474 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:14:39.474 +03:00 [INF] Request finished in 2.535ms 200 font/woff2 +2018-08-03 10:14:39.480 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:14:39.480 +03:00 [INF] Request finished in 10.9634ms 200 image/jpeg +2018-08-03 10:14:39.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:14:39.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.654 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:14:39.655 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:14:39.655 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.656 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.656 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.657 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.657 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.658 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.658 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.658 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.659 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.659 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.660 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.660 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.661 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.661 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.661 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.662 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.662 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.663 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.667 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:14:39.667 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:14:39.668 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:14:39.670 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:14:39.670 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.700800000000001ms +2018-08-03 10:14:39.670 +03:00 [INF] Request finished in 35.6207ms 500 application/json; charset=utf-8 +2018-08-03 10:14:39.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:14:39.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:14:39.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:14:39.886 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:14:39.890 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:14:39.891 +03:00 [INF] Authorization was successful. +2018-08-03 10:14:39.902 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.619200000000001ms. +2018-08-03 10:14:39.903 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:14:39.903 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 16.5873ms +2018-08-03 10:14:39.903 +03:00 [INF] Request finished in 44.4184ms 200 application/json; charset=utf-8 +2018-08-03 10:15:00.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:15:00.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.256 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:15:00.257 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.257 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:15:00.260 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.274 +03:00 [INF] Executed action /Identity/Users/Index in 17.5002ms +2018-08-03 10:15:00.274 +03:00 [INF] Request finished in 50.3053ms 200 text/html; charset=utf-8 +2018-08-03 10:15:00.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:15:00.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.334 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:15:00.334 +03:00 [INF] Request finished in 4.6766ms 200 text/css +2018-08-03 10:15:00.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:15:00.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.337 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:15:00.337 +03:00 [INF] Request finished in 1.2956ms 200 text/css +2018-08-03 10:15:00.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:15:00.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.338 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:15:00.338 +03:00 [INF] Request finished in 1.2626ms 200 text/css +2018-08-03 10:15:00.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:15:00.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.351 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:15:00.352 +03:00 [INF] Request finished in 4.0373ms 200 text/css +2018-08-03 10:15:00.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:15:00.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.356 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:15:00.356 +03:00 [INF] Request finished in 2.0457ms 200 text/css +2018-08-03 10:15:00.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:15:00.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.358 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:15:00.358 +03:00 [INF] Request finished in 2.3775ms 200 text/css +2018-08-03 10:15:00.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:15:00.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.372 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:15:00.373 +03:00 [INF] Request finished in 2.4128ms 200 text/css +2018-08-03 10:15:00.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:15:00.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:15:00.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.374 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:15:00.374 +03:00 [INF] Request finished in 1.1383ms 200 text/css +2018-08-03 10:15:00.374 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:15:00.375 +03:00 [INF] Request finished in 1.5565ms 200 application/javascript +2018-08-03 10:15:00.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:15:00.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:15:00.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.391 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:15:00.391 +03:00 [INF] Request finished in 8.6655ms 200 application/javascript +2018-08-03 10:15:00.392 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:15:00.392 +03:00 [INF] Request finished in 1.6968ms 200 application/javascript +2018-08-03 10:15:00.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:15:00.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:15:00.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.400 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:15:00.400 +03:00 [INF] Request finished in 4.9492ms 200 application/javascript +2018-08-03 10:15:00.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:15:00.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:15:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.408 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:15:00.408 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:15:00.408 +03:00 [INF] Request finished in 2.8878ms 200 application/javascript +2018-08-03 10:15:00.408 +03:00 [INF] Request finished in 3.2916ms 200 application/javascript +2018-08-03 10:15:00.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:15:00.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.416 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:15:00.417 +03:00 [INF] Request finished in 3.3423ms 200 application/javascript +2018-08-03 10:15:00.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:15:00.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.431 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:15:00.431 +03:00 [INF] Request finished in 1.9063ms 200 application/javascript +2018-08-03 10:15:00.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:15:00.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.458 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:15:00.458 +03:00 [INF] Request finished in 2.6882ms 200 application/javascript +2018-08-03 10:15:00.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:15:00.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:15:00.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.489 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:15:00.489 +03:00 [INF] Request finished in 1.2617ms 200 application/javascript +2018-08-03 10:15:00.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:15:00.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.496 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:15:00.496 +03:00 [INF] Request finished in 1.5456ms 200 application/javascript +2018-08-03 10:15:00.497 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:15:00.497 +03:00 [INF] Request finished in 10.2823ms 200 application/javascript +2018-08-03 10:15:00.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:15:00.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.500 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:15:00.500 +03:00 [INF] Request finished in 1.1935ms 200 application/javascript +2018-08-03 10:15:00.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:15:00.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:15:00.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.521 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:15:00.521 +03:00 [INF] Request finished in 2.6108ms 200 application/javascript +2018-08-03 10:15:00.523 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:15:00.523 +03:00 [INF] Request finished in 2.5354ms 200 application/javascript +2018-08-03 10:15:00.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:15:00.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.529 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:15:00.529 +03:00 [INF] Request finished in 1.291ms 200 application/javascript +2018-08-03 10:15:00.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:15:00.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.532 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:15:00.532 +03:00 [INF] Request finished in 1.1196ms 200 application/javascript +2018-08-03 10:15:00.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:15:00.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:15:00.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.538 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:15:00.538 +03:00 [INF] Request finished in 1.4923ms 200 application/javascript +2018-08-03 10:15:00.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:15:00.538 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:15:00.538 +03:00 [INF] Request finished in 2.338ms 200 application/javascript +2018-08-03 10:15:00.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.539 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:15:00.540 +03:00 [INF] Request finished in 1.3817ms 200 application/javascript +2018-08-03 10:15:00.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:15:00.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.549 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:15:00.549 +03:00 [INF] Request finished in 1.985ms 200 application/javascript +2018-08-03 10:15:00.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:15:00.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:15:00.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:15:00.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.562 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:15:00.562 +03:00 [INF] Request finished in 2.5582ms 200 application/javascript +2018-08-03 10:15:00.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:15:00.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.587 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:15:00.587 +03:00 [INF] Request finished in 1.2973ms 200 application/javascript +2018-08-03 10:15:00.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:15:00.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.593 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:15:00.593 +03:00 [INF] Request finished in 0.9383ms 200 application/javascript +2018-08-03 10:15:00.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:15:00.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.597 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:15:00.598 +03:00 [INF] Request finished in 0.9322ms 200 application/javascript +2018-08-03 10:15:00.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:15:00.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.601 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:15:00.602 +03:00 [INF] Request finished in 1.3176ms 200 image/svg+xml +2018-08-03 10:15:00.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:15:00.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.606 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:15:00.606 +03:00 [INF] Request finished in 3.6144ms 200 image/svg+xml +2018-08-03 10:15:00.616 +03:00 [INF] Request finished in 221.9496ms 404 +2018-08-03 10:15:00.640 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:00.640 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:00.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:15:00.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:15:00.640 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11180000000000001ms. +2018-08-03 10:15:00.641 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:15:00.641 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0984ms +2018-08-03 10:15:00.641 +03:00 [INF] Request finished in 85.8419ms 200 text/plain; charset=utf-8 +2018-08-03 10:15:00.641 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.642 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.642 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.643 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.644 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.644 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.645 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.645 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.646 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.647 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.647 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.648 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.648 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.649 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.649 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.649 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.650 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.650 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:00.655 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:15:00.655 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:15:00.656 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:15:00.657 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:15:00.658 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.030900000000003ms +2018-08-03 10:15:00.658 +03:00 [INF] Request finished in 107.0827ms 500 application/json; charset=utf-8 +2018-08-03 10:15:00.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:15:00.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:15:00.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:00.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:00.738 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:15:00.738 +03:00 [INF] Request finished in 3.6446ms 200 font/woff2 +2018-08-03 10:15:00.739 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:15:00.739 +03:00 [INF] Request finished in 10.3171ms 200 image/jpeg +2018-08-03 10:15:01.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:15:01.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:01.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:01.073 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:15:01.075 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:15:01.076 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:01.087 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 11.585ms. +2018-08-03 10:15:01.088 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:15:01.088 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 15.354000000000001ms +2018-08-03 10:15:01.088 +03:00 [INF] Request finished in 45.3275ms 200 application/json; charset=utf-8 +2018-08-03 10:15:21.954 +03:00 [INF] Loaded modules: +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:15:21.968 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:15:21.969 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:15:21.970 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:15:21.971 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:15:21.971 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:15:24.020 +03:00 [INF] Initialized all modules. +2018-08-03 10:15:24.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:15:24.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:24.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:26.688 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:15:26.801 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:26.826 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:15:26.975 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:27.636 +03:00 [INF] Executed action /Identity/Users/Index in 941.9261ms +2018-08-03 10:15:27.661 +03:00 [INF] Request finished in 3465.6722ms 200 text/html; charset=utf-8 +2018-08-03 10:15:27.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:15:27.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:15:27.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:15:27.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:15:27.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:15:27.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.686 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:15:27.686 +03:00 [INF] Request finished in 9.8526ms 200 text/css +2018-08-03 10:15:27.689 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:15:27.689 +03:00 [INF] Request finished in 5.9301ms 200 text/css +2018-08-03 10:15:27.700 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:15:27.700 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:15:27.700 +03:00 [INF] Request finished in 26.1372ms 200 text/css +2018-08-03 10:15:27.700 +03:00 [INF] Request finished in 15.5959ms 200 text/css +2018-08-03 10:15:27.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:15:27.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.712 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:15:27.712 +03:00 [INF] Request finished in 32.298ms 200 text/css +2018-08-03 10:15:27.714 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:15:27.714 +03:00 [INF] Request finished in 10.0423ms 200 text/css +2018-08-03 10:15:27.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:15:27.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.716 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:15:27.716 +03:00 [INF] Request finished in 1.5007ms 200 text/css +2018-08-03 10:15:27.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:15:27.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:15:27.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.724 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:15:27.724 +03:00 [INF] Request finished in 2.6409ms 200 application/javascript +2018-08-03 10:15:27.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:15:27.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:15:27.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.728 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:15:27.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.729 +03:00 [INF] Request finished in 2.2935ms 200 text/css +2018-08-03 10:15:27.732 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:15:27.732 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:15:27.733 +03:00 [INF] Request finished in 9.6701ms 200 application/javascript +2018-08-03 10:15:27.733 +03:00 [INF] Request finished in 5.3446ms 200 application/javascript +2018-08-03 10:15:27.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:15:27.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:15:27.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.739 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:15:27.740 +03:00 [INF] Request finished in 2.0148ms 200 application/javascript +2018-08-03 10:15:27.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:15:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.742 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:15:27.742 +03:00 [INF] Request finished in 5.3358ms 200 application/javascript +2018-08-03 10:15:27.751 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:15:27.751 +03:00 [INF] Request finished in 11.1975ms 200 application/javascript +2018-08-03 10:15:27.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:15:27.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.755 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:15:27.755 +03:00 [INF] Request finished in 2.2703ms 200 application/javascript +2018-08-03 10:15:27.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:15:27.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.765 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:15:27.765 +03:00 [INF] Request finished in 1.4246ms 200 application/javascript +2018-08-03 10:15:27.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:15:27.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:15:27.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:15:27.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.799 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:15:27.800 +03:00 [INF] Request finished in 16.7599ms 200 application/javascript +2018-08-03 10:15:27.801 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:15:27.802 +03:00 [INF] Request finished in 16.3871ms 200 application/javascript +2018-08-03 10:15:27.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:15:27.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:15:27.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:15:27.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.832 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:15:27.832 +03:00 [INF] Request finished in 4.8598ms 200 application/javascript +2018-08-03 10:15:27.833 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:15:27.833 +03:00 [INF] Request finished in 3.0812ms 200 application/javascript +2018-08-03 10:15:27.833 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:15:27.833 +03:00 [INF] Request finished in 1.5251ms 200 application/javascript +2018-08-03 10:15:27.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:15:27.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.843 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:15:27.843 +03:00 [INF] Request finished in 7.224ms 200 application/javascript +2018-08-03 10:15:27.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:15:27.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:15:27.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.858 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:15:27.858 +03:00 [INF] Request finished in 6.7226ms 200 application/javascript +2018-08-03 10:15:27.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:15:27.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.860 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:15:27.860 +03:00 [INF] Request finished in 1.413ms 200 application/javascript +2018-08-03 10:15:27.870 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:15:27.870 +03:00 [INF] Request finished in 19.8749ms 200 application/javascript +2018-08-03 10:15:27.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:15:27.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:15:27.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:15:27.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.890 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:15:27.890 +03:00 [INF] Request finished in 1.8356ms 200 application/javascript +2018-08-03 10:15:27.891 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:15:27.891 +03:00 [INF] Request finished in 1.6661ms 200 application/javascript +2018-08-03 10:15:27.891 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:15:27.891 +03:00 [INF] Request finished in 1.5795ms 200 application/javascript +2018-08-03 10:15:27.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:15:27.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:15:27.896 +03:00 [INF] Request finished in 2.9915ms 200 application/javascript +2018-08-03 10:15:27.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:15:27.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:15:27.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.914 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:15:27.915 +03:00 [INF] Request finished in 2.3391ms 200 application/javascript +2018-08-03 10:15:27.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:15:27.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:15:27.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.935 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:15:27.935 +03:00 [INF] Request finished in 2.4379ms 200 application/javascript +2018-08-03 10:15:27.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:15:27.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.949 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:15:27.949 +03:00 [INF] Request finished in 1.8548ms 200 application/javascript +2018-08-03 10:15:27.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636688157943270289 +2018-08-03 10:15:27.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.950 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-08-03 10:15:27.951 +03:00 [INF] Request finished in 1.09ms 200 application/javascript +2018-08-03 10:15:27.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:15:27.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.965 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:15:27.965 +03:00 [INF] Request finished in 2.1873ms 200 image/svg+xml +2018-08-03 10:15:27.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:15:27.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:27.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:27.970 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:15:27.970 +03:00 [INF] Request finished in 7.7364ms 200 image/svg+xml +2018-08-03 10:15:28.022 +03:00 [INF] Request finished in 234.0764ms 404 +2018-08-03 10:15:28.057 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:28.073 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:28.107 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:15:28.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:15:28.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:28.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:28.131 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.134 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:15:28.135 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:15:28.135 +03:00 [INF] Request finished in 12.8277ms 200 image/jpeg +2018-08-03 10:15:28.138 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:15:28.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:28.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:28.142 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:15:28.142 +03:00 [INF] Request finished in 2.8869ms 200 font/woff2 +2018-08-03 10:15:28.143 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.150 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.154 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.171 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.172 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.175 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.182 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.185 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.188 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.192 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.195 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.199 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.201 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.204 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.207 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.211 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:28.264 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.7038ms. +2018-08-03 10:15:28.265 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:15:28.268 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:15:28.270 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:15:28.271 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 197.6631ms +2018-08-03 10:15:28.271 +03:00 [INF] Request finished in 355.0562ms 200 text/plain; charset=utf-8 +2018-08-03 10:15:28.303 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:15:28.310 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:15:28.322 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 264.7958ms +2018-08-03 10:15:28.322 +03:00 [INF] Request finished in 410.041ms 500 application/json; charset=utf-8 +2018-08-03 10:15:28.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:15:28.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:28.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:28.554 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:15:28.589 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:15:28.599 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:29.091 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 501.8998ms. +2018-08-03 10:15:29.092 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:15:29.107 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 552.1213ms +2018-08-03 10:15:29.107 +03:00 [INF] Request finished in 591.6554ms 200 application/json; charset=utf-8 +2018-08-03 10:15:52.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:15:52.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:52.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:52.341 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:52.341 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:15:52.342 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.342 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.343 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.343 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.343 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.344 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.344 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.345 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.345 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.345 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.346 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.346 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.346 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.347 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.347 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.347 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.348 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.348 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:52.353 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:15:52.353 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:15:52.354 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:15:52.355 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:15:52.356 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.1782ms +2018-08-03 10:15:52.356 +03:00 [INF] Request finished in 51.733ms 500 application/json; charset=utf-8 +2018-08-03 10:15:59.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:15:59.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:15:59.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:15:59.080 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:15:59.080 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:15:59.081 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.081 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.082 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.082 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.082 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.083 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.083 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.084 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.084 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.085 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.085 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.086 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.087 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.087 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.088 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.088 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.089 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.089 +03:00 [INF] Authorization was successful. +2018-08-03 10:15:59.094 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:15:59.095 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:15:59.096 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:15:59.097 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:15:59.097 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.3796ms +2018-08-03 10:15:59.097 +03:00 [INF] Request finished in 43.1609ms 500 application/json; charset=utf-8 +2018-08-03 10:18:26.886 +03:00 [INF] Loaded modules: +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:18:26.903 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:18:26.904 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:18:26.906 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:18:26.906 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:18:28.687 +03:00 [INF] Initialized all modules. +2018-08-03 10:18:29.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:18:29.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:18:29.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:18:29.050 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["en-US","en"]'. +2018-08-03 10:18:29.396 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:18:29.436 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:18:29.564 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.569 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.572 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.575 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.578 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.581 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.584 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.587 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.589 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.592 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.596 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.598 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.601 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.604 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.606 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.608 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.612 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.615 +03:00 [INF] Authorization was successful. +2018-08-03 10:18:29.690 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:18:29.702 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:18:29.742 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:18:29.756 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:18:29.785 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 382.2789ms +2018-08-03 10:18:29.806 +03:00 [INF] Request finished in 799.541ms 500 application/json; charset=utf-8 +2018-08-03 10:22:44.930 +03:00 [INF] Loaded modules: +2018-08-03 10:22:44.952 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:22:44.953 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:22:44.954 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:22:46.730 +03:00 [INF] Initialized all modules. +2018-08-03 10:22:47.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:22:47.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:22:47.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:22:49.706 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:22:49.726 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:22:50.407 +03:00 [INF] Executed action /Index in 693.17860000000007ms +2018-08-03 10:22:50.429 +03:00 [INF] Request finished in 3384.6743ms 200 text/html; charset=utf-8 +2018-08-03 10:22:50.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:22:50.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:22:50.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:22:50.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:22:50.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:22:50.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:22:50.649 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:22:50.651 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:22:50.710 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:22:50.714 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:22:50.794 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 79.3275ms. +2018-08-03 10:22:50.802 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:22:50.803 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 153.0301ms +2018-08-03 10:22:50.804 +03:00 [INF] Request finished in 202.0166ms 200 text/plain; charset=utf-8 +2018-08-03 10:22:50.854 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.859 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.862 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.863 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.865 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.867 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.868 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.870 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.873 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.875 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.877 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.878 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.880 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.882 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.883 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.885 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.886 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.890 +03:00 [INF] Authorization was successful. +2018-08-03 10:22:50.925 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:22:50.927 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:22:50.951 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:22:50.958 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:22:50.966 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 314.838ms +2018-08-03 10:22:50.966 +03:00 [INF] Request finished in 368.7585ms 500 application/json; charset=utf-8 +2018-08-03 10:24:30.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:24:30.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.347 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:24:30.348 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:24:30.356 +03:00 [INF] Executed action /Index in 8.7499ms +2018-08-03 10:24:30.357 +03:00 [INF] Request finished in 43.6555ms 200 text/html; charset=utf-8 +2018-08-03 10:24:30.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:24:30.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:24:30.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:24:30.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.457 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:24:30.457 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:24:30.457 +03:00 [INF] Request finished in 5.2314ms 200 text/css +2018-08-03 10:24:30.457 +03:00 [INF] Request finished in 17.0086ms 200 text/css +2018-08-03 10:24:30.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:24:30.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.459 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:24:30.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:24:30.459 +03:00 [INF] Request finished in 2.0767ms 200 text/css +2018-08-03 10:24:30.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.461 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:24:30.461 +03:00 [INF] Request finished in 2.5348ms 200 text/css +2018-08-03 10:24:30.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:24:30.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.464 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:24:30.464 +03:00 [INF] Request finished in 2.1834ms 200 text/css +2018-08-03 10:24:30.468 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:24:30.468 +03:00 [INF] Request finished in 28.4829ms 200 text/css +2018-08-03 10:24:30.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:24:30.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.470 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:24:30.470 +03:00 [INF] Request finished in 2.209ms 200 text/css +2018-08-03 10:24:30.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:24:30.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.474 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:24:30.474 +03:00 [INF] Request finished in 2.2458ms 200 application/javascript +2018-08-03 10:24:30.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:24:30.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.480 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:24:30.480 +03:00 [INF] Request finished in 5.9432ms 200 application/javascript +2018-08-03 10:24:30.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:24:30.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.483 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:24:30.484 +03:00 [INF] Request finished in 1.7745ms 200 text/css +2018-08-03 10:24:30.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:24:30.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.488 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:24:30.488 +03:00 [INF] Request finished in 3.1107ms 200 application/javascript +2018-08-03 10:24:30.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:24:30.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.499 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:24:30.499 +03:00 [INF] Request finished in 6.6508ms 200 application/javascript +2018-08-03 10:24:30.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:24:30.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.514 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:24:30.514 +03:00 [INF] Request finished in 12.2271ms 200 application/javascript +2018-08-03 10:24:30.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:24:30.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.516 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:24:30.517 +03:00 [INF] Request finished in 1.654ms 200 application/javascript +2018-08-03 10:24:30.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:24:30.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.543 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:24:30.543 +03:00 [INF] Request finished in 1.4992ms 200 application/javascript +2018-08-03 10:24:30.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:24:30.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:24:30.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.560 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:24:30.560 +03:00 [INF] Request finished in 1.4342ms 200 application/javascript +2018-08-03 10:24:30.562 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:24:30.562 +03:00 [INF] Request finished in 3.0873ms 200 application/javascript +2018-08-03 10:24:30.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:24:30.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:24:30.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.570 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:24:30.570 +03:00 [INF] Request finished in 1.6096ms 200 application/javascript +2018-08-03 10:24:30.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:24:30.577 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:24:30.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.577 +03:00 [INF] Request finished in 12.4918ms 200 application/javascript +2018-08-03 10:24:30.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.579 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:24:30.579 +03:00 [INF] Request finished in 2.377ms 200 application/javascript +2018-08-03 10:24:30.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:24:30.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.584 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:24:30.584 +03:00 [INF] Request finished in 2.7216ms 200 application/javascript +2018-08-03 10:24:30.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:24:30.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.591 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:24:30.591 +03:00 [INF] Request finished in 2.4353ms 200 application/javascript +2018-08-03 10:24:30.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:24:30.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.594 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:24:30.594 +03:00 [INF] Request finished in 1.7286ms 200 application/javascript +2018-08-03 10:24:30.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:24:30.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:24:30.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.603 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:24:30.603 +03:00 [INF] Request finished in 1.2521ms 200 application/javascript +2018-08-03 10:24:30.606 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:24:30.607 +03:00 [INF] Request finished in 4.2144ms 200 application/javascript +2018-08-03 10:24:30.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:24:30.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:24:30.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.614 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:24:30.614 +03:00 [INF] Request finished in 1.342ms 200 application/javascript +2018-08-03 10:24:30.614 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:24:30.614 +03:00 [INF] Request finished in 2.7134ms 200 application/javascript +2018-08-03 10:24:30.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:24:30.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.620 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:24:30.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:24:30.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:24:30.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.622 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:24:30.621 +03:00 [INF] Request finished in 5.3873ms 200 application/javascript +2018-08-03 10:24:30.622 +03:00 [INF] Request finished in 4.2453ms 200 application/javascript +2018-08-03 10:24:30.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:24:30.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:24:30.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.651 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:24:30.651 +03:00 [INF] Request finished in 1.2065ms 200 application/javascript +2018-08-03 10:24:30.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:24:30.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.655 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:24:30.655 +03:00 [INF] Request finished in 2.1916ms 200 application/javascript +2018-08-03 10:24:30.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:24:30.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.667 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:24:30.667 +03:00 [INF] Request finished in 1.6525ms 200 image/svg+xml +2018-08-03 10:24:30.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 10:24:30.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.682 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-08-03 10:24:30.683 +03:00 [INF] Request finished in 1.2258ms 200 image/png +2018-08-03 10:24:30.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 10:24:30.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.690 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-08-03 10:24:30.691 +03:00 [INF] Request finished in 2.5485ms 200 image/png +2018-08-03 10:24:30.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 10:24:30.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.707 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-08-03 10:24:30.707 +03:00 [INF] Request finished in 1.3605ms 200 image/png +2018-08-03 10:24:30.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 10:24:30.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.725 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-08-03 10:24:30.725 +03:00 [INF] Request finished in 1.291ms 200 image/png +2018-08-03 10:24:30.729 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:24:30.730 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:24:30.730 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:24:30.731 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:24:30.732 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2664ms. +2018-08-03 10:24:30.732 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:24:30.732 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9203000000000001ms +2018-08-03 10:24:30.732 +03:00 [INF] Request finished in 103.2788ms 200 text/plain; charset=utf-8 +2018-08-03 10:24:30.744 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.745 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.746 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.746 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.747 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.747 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.748 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.748 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.749 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.750 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.751 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 10:24:30.751 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.752 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.752 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-03 10:24:30.752 +03:00 [INF] Request finished in 1.2696ms 200 image/png +2018-08-03 10:24:30.753 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.754 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.754 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.755 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.756 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:30.761 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:24:30.762 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:24:30.763 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:24:30.765 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:24:30.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 10:24:30.766 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 36.827200000000005ms +2018-08-03 10:24:30.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.766 +03:00 [INF] Request finished in 145.6161ms 500 application/json; charset=utf-8 +2018-08-03 10:24:30.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.767 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-03 10:24:30.767 +03:00 [INF] Request finished in 1.4794ms 200 image/png +2018-08-03 10:24:30.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 10:24:30.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.779 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-03 10:24:30.779 +03:00 [INF] Request finished in 1.417ms 200 image/png +2018-08-03 10:24:30.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 10:24:30.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.788 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-03 10:24:30.789 +03:00 [INF] Request finished in 2.3572ms 200 image/png +2018-08-03 10:24:30.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 10:24:30.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.806 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-03 10:24:30.807 +03:00 [INF] Request finished in 2.9021ms 200 image/png +2018-08-03 10:24:30.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 10:24:30.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 10:24:30.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.814 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-03 10:24:30.814 +03:00 [INF] Request finished in 1.5799ms 200 image/png +2018-08-03 10:24:30.814 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-03 10:24:30.814 +03:00 [INF] Request finished in 1.797ms 200 image/png +2018-08-03 10:24:30.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 10:24:30.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.816 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-08-03 10:24:30.817 +03:00 [INF] Request finished in 1.6313ms 200 image/png +2018-08-03 10:24:30.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 10:24:30.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.822 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-08-03 10:24:30.824 +03:00 [INF] Request finished in 3.0789ms 200 image/png +2018-08-03 10:24:30.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 10:24:30.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.826 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-03 10:24:30.826 +03:00 [INF] Request finished in 1.2805ms 200 image/png +2018-08-03 10:24:30.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 10:24:30.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.827 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-08-03 10:24:30.828 +03:00 [INF] Request finished in 1.3586ms 200 image/png +2018-08-03 10:24:30.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 10:24:30.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.831 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-08-03 10:24:30.831 +03:00 [INF] Request finished in 2.7112ms 200 image/png +2018-08-03 10:24:30.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 10:24:30.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.844 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-08-03 10:24:30.845 +03:00 [INF] Request finished in 10.02ms 200 image/png +2018-08-03 10:24:30.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 10:24:30.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.847 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-08-03 10:24:30.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 10:24:30.848 +03:00 [INF] Request finished in 1.3827ms 200 image/png +2018-08-03 10:24:30.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 10:24:30.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.850 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-03 10:24:30.850 +03:00 [INF] Request finished in 1.7451ms 200 image/png +2018-08-03 10:24:30.851 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-08-03 10:24:30.851 +03:00 [INF] Request finished in 1.7949ms 200 image/png +2018-08-03 10:24:30.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 10:24:30.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.852 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-03 10:24:30.852 +03:00 [INF] Request finished in 1.4767ms 200 image/png +2018-08-03 10:24:30.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 10:24:30.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.858 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-03 10:24:30.859 +03:00 [INF] Request finished in 4.9113ms 200 image/png +2018-08-03 10:24:30.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 10:24:30.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.869 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-03 10:24:30.869 +03:00 [INF] Request finished in 2.6136ms 200 image/png +2018-08-03 10:24:30.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 10:24:30.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.875 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-03 10:24:30.875 +03:00 [INF] Request finished in 2.723ms 200 image/png +2018-08-03 10:24:30.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 10:24:30.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 10:24:30.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.878 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.878 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-03 10:24:30.878 +03:00 [INF] Request finished in 1.3353ms 200 image/png +2018-08-03 10:24:30.881 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-03 10:24:30.882 +03:00 [INF] Request finished in 4.7115ms 200 image/png +2018-08-03 10:24:30.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 10:24:30.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.889 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-03 10:24:30.889 +03:00 [INF] Request finished in 1.9914ms 200 image/png +2018-08-03 10:24:30.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 10:24:30.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.894 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-03 10:24:30.894 +03:00 [INF] Request finished in 2.7944ms 200 image/png +2018-08-03 10:24:30.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 10:24:30.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.895 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-03 10:24:30.895 +03:00 [INF] Request finished in 0.7716ms 200 image/png +2018-08-03 10:24:30.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 10:24:30.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.898 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-03 10:24:30.898 +03:00 [INF] Request finished in 1.9468ms 200 image/png +2018-08-03 10:24:30.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 10:24:30.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.903 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-03 10:24:30.904 +03:00 [INF] Request finished in 2.3874ms 200 image/png +2018-08-03 10:24:30.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 10:24:30.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.910 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-03 10:24:30.911 +03:00 [INF] Request finished in 1.607ms 200 image/png +2018-08-03 10:24:30.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:24:30.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.912 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:24:30.912 +03:00 [INF] Request finished in 0.9209ms 200 image/svg+xml +2018-08-03 10:24:30.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 10:24:30.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 10:24:30.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.919 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-03 10:24:30.919 +03:00 [INF] Request finished in 4.0455ms 200 image/png +2018-08-03 10:24:30.921 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-03 10:24:30.922 +03:00 [INF] Request finished in 3.0824ms 200 image/png +2018-08-03 10:24:30.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:24:30.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:30.925 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-03 10:24:30.926 +03:00 [INF] Request finished in 1.3834ms 200 image/png +2018-08-03 10:24:30.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:24:30.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:30.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:31.007 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:24:31.008 +03:00 [INF] Request finished in 10.9439ms 200 image/jpeg +2018-08-03 10:24:31.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:24:31.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:31.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:31.011 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:24:31.011 +03:00 [INF] Request finished in 2.7696ms 200 font/woff2 +2018-08-03 10:24:40.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:24:40.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:24:40.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:24:40.958 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:24:40.959 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:24:40.959 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.960 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.960 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.961 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.961 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.963 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.963 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.963 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.964 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.965 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.965 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.966 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.966 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.966 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.967 +03:00 [INF] Authorization was successful. +2018-08-03 10:24:40.971 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:24:40.971 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:24:40.972 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:24:40.973 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:24:40.973 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.0083ms +2018-08-03 10:24:40.973 +03:00 [INF] Request finished in 36.34ms 500 application/json; charset=utf-8 +2018-08-03 10:26:35.984 +03:00 [INF] Loaded modules: +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:26:36.002 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:26:36.003 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:26:36.004 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:26:37.751 +03:00 [INF] Initialized all modules. +2018-08-03 10:26:38.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:26:38.342 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:26:38.375 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:26:38.485 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.489 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.491 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.495 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.497 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.500 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.503 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.505 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.507 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.509 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.511 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.513 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.516 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.519 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.521 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.524 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.526 +03:00 [INF] Authorization was successful. +2018-08-03 10:26:38.605 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:26:38.616 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:26:38.662 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 119 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 28 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:26:38.677 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:26:38.711 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 361.8792ms +2018-08-03 10:26:38.735 +03:00 [INF] Request finished in 718.1585ms 500 application/json; charset=utf-8 +2018-08-03 10:31:55.688 +03:00 [INF] Loaded modules: +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:31:55.707 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:31:55.708 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:31:55.709 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:31:57.743 +03:00 [INF] Initialized all modules. +2018-08-03 10:31:58.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:32:01.049 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:32:01.071 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:32:01.896 +03:00 [INF] Executed action /Index in 837.7417ms +2018-08-03 10:32:01.919 +03:00 [INF] Request finished in 3819.9729ms 200 text/html; charset=utf-8 +2018-08-03 10:32:02.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:32:02.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:32:02.208 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:02.210 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:02.272 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:32:02.274 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:32:02.405 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.68950000000001ms. +2018-08-03 10:32:02.413 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:32:02.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 203.946ms +2018-08-03 10:32:02.415 +03:00 [INF] Request finished in 343.5987ms 200 text/plain; charset=utf-8 +2018-08-03 10:32:02.455 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.462 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.464 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.467 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.470 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.474 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.476 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.480 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.482 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.484 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.487 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.491 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.494 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.496 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.498 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.501 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.503 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.507 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:02.541 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:32:02.544 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:32:02.577 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:32:02.583 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:32:02.593 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 383.8677ms +2018-08-03 10:32:02.593 +03:00 [INF] Request finished in 521.5171ms 500 application/json; charset=utf-8 +2018-08-03 10:32:11.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-08-03 10:32:11.807 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", area = "", action = "", controller = ""}. Executing action /Identity/Roles/Index +2018-08-03 10:32:11.825 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:11.829 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:32:11.927 +03:00 [INF] Executed action /Identity/Roles/Index in 119.65920000000001ms +2018-08-03 10:32:11.927 +03:00 [INF] Request finished in 520.3468ms 200 text/html; charset=utf-8 +2018-08-03 10:32:12.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:32:12.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:32:12.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:32:12.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/roles/index.js?_v=636688157943270289 +2018-08-03 10:32:12.139 +03:00 [INF] Sending file. Request path: '/Pages/identity/roles/index.js'. Physical path: '/Pages/Identity/Roles/index.js' +2018-08-03 10:32:12.139 +03:00 [INF] Request finished in 10.7269ms 200 application/javascript +2018-08-03 10:32:12.176 +03:00 [INF] Request finished in 174.88ms 404 +2018-08-03 10:32:12.197 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:12.198 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:32:12.200 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.201 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.202 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.203 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.203 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.204 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.204 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.205 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.206 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.206 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.207 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.208 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.209 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.209 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.210 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.211 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.211 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.212 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:12.217 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:32:12.217 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:32:12.218 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:32:12.220 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:32:12.220 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.3575ms +2018-08-03 10:32:12.220 +03:00 [INF] Request finished in 137.8341ms 500 application/json; charset=utf-8 +2018-08-03 10:32:12.221 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:12.222 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:32:12.222 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2551ms. +2018-08-03 10:32:12.222 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:32:12.223 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9554ms +2018-08-03 10:32:12.223 +03:00 [INF] Request finished in 140.827ms 200 text/plain; charset=utf-8 +2018-08-03 10:32:12.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityRole application/json +2018-08-03 10:32:12.497 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:32:12.529 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityRolesInput"]) - Validation state: "Valid" +2018-08-03 10:32:12.545 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:13.292 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 762.67820000000006ms. +2018-08-03 10:32:13.300 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:32:13.306 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 809.81170000000009ms +2018-08-03 10:32:13.307 +03:00 [INF] Request finished in 869.6469ms 200 application/json; charset=utf-8 +2018-08-03 10:32:19.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-08-03 10:32:19.345 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", area = "", action = "", controller = ""}. Executing action /Identity/Roles/Index +2018-08-03 10:32:19.346 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.347 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:32:19.357 +03:00 [INF] Executed action /Identity/Roles/Index in 11.6358ms +2018-08-03 10:32:19.357 +03:00 [INF] Request finished in 43.2302ms 200 text/html; charset=utf-8 +2018-08-03 10:32:19.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:32:19.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:32:19.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:32:19.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:32:19.421 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:32:19.421 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:32:19.421 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:32:19.421 +03:00 [INF] Request finished in 1.7997ms 200 text/css +2018-08-03 10:32:19.421 +03:00 [INF] Request finished in 4.2565ms 200 text/css +2018-08-03 10:32:19.421 +03:00 [INF] Request finished in 1.5139ms 200 text/css +2018-08-03 10:32:19.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:32:19.429 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:32:19.429 +03:00 [INF] Request finished in 2.689ms 200 text/css +2018-08-03 10:32:19.430 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:32:19.430 +03:00 [INF] Request finished in 22.3262ms 200 text/css +2018-08-03 10:32:19.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:32:19.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:32:19.450 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:32:19.450 +03:00 [INF] Request finished in 1.8137ms 200 text/css +2018-08-03 10:32:19.450 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:32:19.450 +03:00 [INF] Request finished in 1.9038ms 200 text/css +2018-08-03 10:32:19.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:32:19.467 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:32:19.467 +03:00 [INF] Request finished in 0.7876ms 200 text/css +2018-08-03 10:32:19.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:32:19.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:32:19.475 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:32:19.476 +03:00 [INF] Request finished in 3.9226ms 200 application/javascript +2018-08-03 10:32:19.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:32:19.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:32:19.481 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:32:19.482 +03:00 [INF] Request finished in 9.5587ms 200 application/javascript +2018-08-03 10:32:19.483 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:32:19.483 +03:00 [INF] Request finished in 2.7244ms 200 application/javascript +2018-08-03 10:32:19.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:32:19.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:32:19.486 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:32:19.488 +03:00 [INF] Request finished in 1.3592ms 200 application/javascript +2018-08-03 10:32:19.491 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:32:19.491 +03:00 [INF] Request finished in 10.8362ms 200 application/javascript +2018-08-03 10:32:19.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:32:19.501 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:32:19.501 +03:00 [INF] Request finished in 1.1317ms 200 application/javascript +2018-08-03 10:32:19.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:32:19.509 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:32:19.509 +03:00 [INF] Request finished in 2.3054ms 200 application/javascript +2018-08-03 10:32:19.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:32:19.531 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:32:19.531 +03:00 [INF] Request finished in 1.808ms 200 application/javascript +2018-08-03 10:32:19.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:32:19.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:32:19.539 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:32:19.539 +03:00 [INF] Request finished in 2.0164ms 200 application/javascript +2018-08-03 10:32:19.549 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:32:19.550 +03:00 [INF] Request finished in 12.5851ms 200 application/javascript +2018-08-03 10:32:19.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:32:19.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:32:19.553 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:32:19.553 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:32:19.553 +03:00 [INF] Request finished in 0.8332ms 200 application/javascript +2018-08-03 10:32:19.553 +03:00 [INF] Request finished in 1.7581ms 200 application/javascript +2018-08-03 10:32:19.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:32:19.558 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:32:19.559 +03:00 [INF] Request finished in 0.8338ms 200 application/javascript +2018-08-03 10:32:19.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:32:19.568 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:32:19.568 +03:00 [INF] Request finished in 1.0739ms 200 application/javascript +2018-08-03 10:32:19.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:32:19.588 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:32:19.588 +03:00 [INF] Request finished in 2.0736ms 200 application/javascript +2018-08-03 10:32:19.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:32:19.592 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:32:19.592 +03:00 [INF] Request finished in 1.9538ms 200 application/javascript +2018-08-03 10:32:19.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:32:19.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:32:19.597 +03:00 [INF] Request finished in 4.2585ms 200 application/javascript +2018-08-03 10:32:19.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:32:19.599 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:32:19.599 +03:00 [INF] Request finished in 0.8693ms 200 application/javascript +2018-08-03 10:32:19.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:32:19.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:32:19.605 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:32:19.605 +03:00 [INF] Request finished in 1.7705ms 200 application/javascript +2018-08-03 10:32:19.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:32:19.607 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:32:19.607 +03:00 [INF] Request finished in 1.6333ms 200 application/javascript +2018-08-03 10:32:19.607 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:32:19.607 +03:00 [INF] Request finished in 3.7045ms 200 application/javascript +2018-08-03 10:32:19.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:32:19.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:32:19.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:32:19.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:32:19.621 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:32:19.622 +03:00 [INF] Request finished in 1.4832ms 200 application/javascript +2018-08-03 10:32:19.623 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:32:19.624 +03:00 [INF] Request finished in 3.4461ms 200 application/javascript +2018-08-03 10:32:19.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:32:19.632 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:32:19.632 +03:00 [INF] Request finished in 1.1075ms 200 application/javascript +2018-08-03 10:32:19.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/roles/index.js?_v=636688157943270289 +2018-08-03 10:32:19.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:32:19.638 +03:00 [INF] Sending file. Request path: '/Pages/identity/roles/index.js'. Physical path: '/Pages/Identity/Roles/index.js' +2018-08-03 10:32:19.638 +03:00 [INF] Request finished in 0.6846ms 200 application/javascript +2018-08-03 10:32:19.638 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:32:19.638 +03:00 [INF] Request finished in 0.7935ms 200 image/svg+xml +2018-08-03 10:32:19.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:32:19.645 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:32:19.646 +03:00 [INF] Request finished in 4.3706ms 200 image/svg+xml +2018-08-03 10:32:19.659 +03:00 [INF] Request finished in 174.4941ms 404 +2018-08-03 10:32:19.685 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:19.686 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:32:19.687 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.687 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.688 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:19.688 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.688 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.688 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:32:19.689 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.162ms. +2018-08-03 10:32:19.689 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:32:19.689 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.689 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4848000000000001ms +2018-08-03 10:32:19.690 +03:00 [INF] Request finished in 69.4571ms 200 text/plain; charset=utf-8 +2018-08-03 10:32:19.691 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.692 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.692 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.693 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.694 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.694 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.695 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.696 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.697 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.698 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.698 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.699 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.700 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.704 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:32:19.704 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:32:19.706 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:32:19.708 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:32:19.709 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.4934ms +2018-08-03 10:32:19.709 +03:00 [INF] Request finished in 96.2748ms 500 application/json; charset=utf-8 +2018-08-03 10:32:19.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:32:19.801 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:32:19.801 +03:00 [INF] Request finished in 6.0018ms 200 image/jpeg +2018-08-03 10:32:19.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:32:19.828 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:32:19.828 +03:00 [INF] Request finished in 2.3667ms 200 font/woff2 +2018-08-03 10:32:19.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:32:19.957 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:19.958 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:32:19.959 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.959 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.960 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.960 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.960 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.961 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.961 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.962 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.963 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.963 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.964 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.964 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.965 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.965 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.965 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.966 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:19.969 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:32:19.970 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:32:19.971 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:32:19.972 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:32:19.972 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.949200000000001ms +2018-08-03 10:32:19.972 +03:00 [INF] Request finished in 45.801ms 500 application/json; charset=utf-8 +2018-08-03 10:32:20.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityRole application/json +2018-08-03 10:32:20.285 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:32:20.286 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityRolesInput"]) - Validation state: "Valid" +2018-08-03 10:32:20.287 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:20.293 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.2918ms. +2018-08-03 10:32:20.293 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:32:20.293 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 8.4653000000000009ms +2018-08-03 10:32:20.293 +03:00 [INF] Request finished in 40.262ms 200 application/json; charset=utf-8 +2018-08-03 10:32:22.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:32:22.279 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:32:22.279 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:32:22.280 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.280 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.281 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.281 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.281 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.282 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.282 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.283 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.283 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.283 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.284 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.284 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.285 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.285 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.286 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.286 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.287 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.287 +03:00 [INF] Authorization was successful. +2018-08-03 10:32:22.291 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:32:22.291 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:32:22.293 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:32:22.295 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:32:22.295 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.7282ms +2018-08-03 10:32:22.296 +03:00 [INF] Request finished in 40.9828ms 500 application/json; charset=utf-8 +2018-08-03 10:35:08.200 +03:00 [INF] Loaded modules: +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:35:08.225 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:35:08.226 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:35:08.227 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:35:10.055 +03:00 [INF] Initialized all modules. +2018-08-03 10:35:10.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:35:12.890 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:35:12.912 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:35:13.578 +03:00 [INF] Executed action /Index in 683.0202ms +2018-08-03 10:35:13.604 +03:00 [INF] Request finished in 3169.938ms 200 text/html; charset=utf-8 +2018-08-03 10:35:13.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:35:13.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:35:13.700 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:35:13.700 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:35:13.740 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:35:13.741 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:35:13.813 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 66.7803ms. +2018-08-03 10:35:13.820 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:35:13.821 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 120.54780000000001ms +2018-08-03 10:35:13.821 +03:00 [INF] Request finished in 159.9041ms 200 text/plain; charset=utf-8 +2018-08-03 10:35:13.857 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.861 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.866 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.874 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.883 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.889 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.894 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.899 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.904 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.909 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.914 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.920 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.926 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.933 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.938 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.943 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.948 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:13.952 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:14.000 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:35:14.004 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:35:14.029 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:35:14.036 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:35:14.046 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 345.12030000000004ms +2018-08-03 10:35:14.046 +03:00 [INF] Request finished in 385.3703ms 500 application/json; charset=utf-8 +2018-08-03 10:35:17.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:35:17.092 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:35:17.093 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:35:17.105 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.106 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.106 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.107 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.107 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.107 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.108 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.108 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.109 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.109 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.110 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.110 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.111 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.111 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.112 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.112 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.113 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.113 +03:00 [INF] Authorization was successful. +2018-08-03 10:35:17.118 +03:00 [ERR] ---------- RemoteServiceErrorInfo ---------- +2018-08-03 10:35:17.118 +03:00 [ERR] { + "code": null, + "message": "An internal error occurred during your request!", + "details": null, + "validationErrors": null +} +2018-08-03 10:35:17.119 +03:00 [ERR] No manifests exist for the current culture. +System.Resources.MissingManifestResourceException: No manifests exist for the current culture. + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetResourceNamesFromCultureHierarchy(CultureInfo startingCulture) + at Microsoft.Extensions.Localization.ResourceManagerStringLocalizer.GetAllStrings(Boolean includeParentCultures, CultureInfo culture)+MoveNext() + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(String cultureName, Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 131 + at Volo.Abp.Localization.AbpDictionaryBasedStringLocalizer.GetAllStrings(Boolean includeParentCultures) in D:\Github\abp\framework\src\Volo.Abp.Localization\Volo\Abp\Localization\AbpDictionaryBasedStringLocalizer.cs:line 29 + at Microsoft.Extensions.Localization.StringLocalizer`1.GetAllStrings(Boolean includeParentCultures) + at Microsoft.Extensions.Localization.StringLocalizerExtensions.GetAllStrings(IStringLocalizer stringLocalizer) + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetLocalizationConfig() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 71 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationBuilder.GetAsync() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\ApplicationConfigurationBuilder.cs:line 37 + at Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get() in D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc\Volo\Abp\AspNetCore\Mvc\ApplicationConfigurations\AbpApplicationConfigurationScriptController.cs:line 30 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-08-03 10:35:17.120 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-08-03 10:35:17.121 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 28.5877ms +2018-08-03 10:35:17.121 +03:00 [INF] Request finished in 60.8226ms 500 application/json; charset=utf-8 +2018-08-03 10:36:44.222 +03:00 [INF] Loaded modules: +2018-08-03 10:36:44.238 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:36:44.239 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:36:44.239 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:36:44.239 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:36:44.240 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:36:44.241 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:36:46.187 +03:00 [INF] Initialized all modules. +2018-08-03 10:36:46.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:36:46.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:46.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:46.842 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:36:46.888 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:36:47.049 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.062 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.067 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.070 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.073 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.077 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.080 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.083 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.088 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.093 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.096 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.100 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.103 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.106 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.111 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.121 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.133 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.144 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:47.277 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 377.80170000000004ms. +2018-08-03 10:36:47.325 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:36:47.350 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 503.0699ms +2018-08-03 10:36:47.379 +03:00 [INF] Request finished in 1004.5188ms 200 text/plain; charset=utf-8 +2018-08-03 10:36:53.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-08-03 10:36:53.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:53.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:55.904 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", area = "", action = "", controller = ""}. Executing action /Identity/Roles/Index +2018-08-03 10:36:55.919 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:55.931 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:36:56.574 +03:00 [INF] Executed action /Identity/Roles/Index in 669.6874ms +2018-08-03 10:36:56.578 +03:00 [INF] Request finished in 2793.3864ms 200 text/html; charset=utf-8 +2018-08-03 10:36:56.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:36:56.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:36:56.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:36:56.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.621 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:36:56.621 +03:00 [INF] Request finished in 2.7417ms 200 text/css +2018-08-03 10:36:56.631 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:36:56.632 +03:00 [INF] Request finished in 13.7491ms 200 text/css +2018-08-03 10:36:56.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:36:56.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.640 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:36:56.640 +03:00 [INF] Request finished in 2.0201ms 200 text/css +2018-08-03 10:36:56.642 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:36:56.642 +03:00 [INF] Request finished in 33.1606ms 200 text/css +2018-08-03 10:36:56.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:36:56.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.645 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:36:56.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:36:56.645 +03:00 [INF] Request finished in 2.2846ms 200 text/css +2018-08-03 10:36:56.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:36:56.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.646 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:36:56.646 +03:00 [INF] Request finished in 0.9134ms 200 text/css +2018-08-03 10:36:56.647 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:36:56.647 +03:00 [INF] Request finished in 1.7346ms 200 text/css +2018-08-03 10:36:56.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:36:56.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.656 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:36:56.657 +03:00 [INF] Request finished in 1.5317ms 200 text/css +2018-08-03 10:36:56.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:36:56.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.665 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:36:56.665 +03:00 [INF] Request finished in 1.7576ms 200 application/javascript +2018-08-03 10:36:56.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:36:56.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:36:56.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.676 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:36:56.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.676 +03:00 [INF] Request finished in 8.5855ms 200 application/javascript +2018-08-03 10:36:56.677 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:36:56.677 +03:00 [INF] Request finished in 2.1277ms 200 application/javascript +2018-08-03 10:36:56.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:36:56.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:36:56.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.687 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:36:56.687 +03:00 [INF] Request finished in 8.0321ms 200 application/javascript +2018-08-03 10:36:56.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:36:56.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.711 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:36:56.711 +03:00 [INF] Request finished in 4.5485ms 200 application/javascript +2018-08-03 10:36:56.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:36:56.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.727 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:36:56.727 +03:00 [INF] Request finished in 2.5214ms 200 application/javascript +2018-08-03 10:36:56.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:36:56.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:36:56.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.733 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:36:56.733 +03:00 [INF] Request finished in 3.4013ms 200 application/javascript +2018-08-03 10:36:56.734 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:36:56.734 +03:00 [INF] Request finished in 6.3637ms 200 application/javascript +2018-08-03 10:36:56.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:36:56.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.753 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:36:56.754 +03:00 [INF] Request finished in 10.1795ms 200 application/javascript +2018-08-03 10:36:56.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:36:56.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:36:56.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.756 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:36:56.757 +03:00 [INF] Request finished in 1.0191ms 200 application/javascript +2018-08-03 10:36:56.757 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:36:56.757 +03:00 [INF] Request finished in 1.1772ms 200 application/javascript +2018-08-03 10:36:56.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:36:56.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:36:56.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.759 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:36:56.759 +03:00 [INF] Request finished in 1.7372ms 200 application/javascript +2018-08-03 10:36:56.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:36:56.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.770 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:36:56.770 +03:00 [INF] Request finished in 1.4118ms 200 application/javascript +2018-08-03 10:36:56.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:36:56.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.771 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:36:56.771 +03:00 [INF] Request finished in 1.0508ms 200 application/javascript +2018-08-03 10:36:56.772 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:36:56.772 +03:00 [INF] Request finished in 16.24ms 200 application/javascript +2018-08-03 10:36:56.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:36:56.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:36:56.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:36:56.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.781 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:36:56.781 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:36:56.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:36:56.781 +03:00 [INF] Request finished in 2.3214ms 200 application/javascript +2018-08-03 10:36:56.781 +03:00 [INF] Request finished in 4.1463ms 200 application/javascript +2018-08-03 10:36:56.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.782 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:36:56.782 +03:00 [INF] Request finished in 1.2641ms 200 application/javascript +2018-08-03 10:36:56.782 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:36:56.782 +03:00 [INF] Request finished in 1.2498ms 200 application/javascript +2018-08-03 10:36:56.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:36:56.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.793 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:36:56.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:36:56.793 +03:00 [INF] Request finished in 2.8332ms 200 application/javascript +2018-08-03 10:36:56.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:36:56.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.794 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:36:56.795 +03:00 [INF] Request finished in 1.7461ms 200 application/javascript +2018-08-03 10:36:56.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:36:56.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:36:56.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.803 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:36:56.803 +03:00 [INF] Request finished in 1.2614ms 200 application/javascript +2018-08-03 10:36:56.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:36:56.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.811 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:36:56.811 +03:00 [INF] Request finished in 1.1657ms 200 application/javascript +2018-08-03 10:36:56.821 +03:00 [INF] Request finished in 140.3858ms 404 +2018-08-03 10:36:56.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636687058608915846 +2018-08-03 10:36:56.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.823 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-08-03 10:36:56.824 +03:00 [INF] Request finished in 2.2839ms 200 application/javascript +2018-08-03 10:36:56.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/roles/index.js?_v=636688157943270289 +2018-08-03 10:36:56.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:36:56.831 +03:00 [INF] Sending file. Request path: '/Pages/identity/roles/index.js'. Physical path: '/Pages/Identity/Roles/index.js' +2018-08-03 10:36:56.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.831 +03:00 [INF] Request finished in 1.4545ms 200 application/javascript +2018-08-03 10:36:56.832 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:36:56.832 +03:00 [INF] Request finished in 1.0483ms 200 image/svg+xml +2018-08-03 10:36:56.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:36:56.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:56.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:56.837 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:36:56.837 +03:00 [INF] Request finished in 1.6591ms 200 image/svg+xml +2018-08-03 10:36:56.879 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:36:56.881 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:36:56.883 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.885 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.886 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.887 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.888 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.889 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.890 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.891 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.892 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.892 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.893 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.894 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.894 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.895 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.896 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.896 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.897 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.898 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:56.901 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.4132ms. +2018-08-03 10:36:56.901 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:36:56.902 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.551000000000002ms +2018-08-03 10:36:56.903 +03:00 [INF] Request finished in 109.5349ms 200 text/plain; charset=utf-8 +2018-08-03 10:36:56.918 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:36:56.979 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:36:57.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:36:57.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:57.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:57.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:36:57.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:57.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:57.035 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:36:57.035 +03:00 [INF] Request finished in 11.2007ms 200 image/jpeg +2018-08-03 10:36:57.035 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:36:57.035 +03:00 [INF] Request finished in 2.8557ms 200 font/woff2 +2018-08-03 10:36:57.098 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 118.6734ms. +2018-08-03 10:36:57.099 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:36:57.100 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 181.2133ms +2018-08-03 10:36:57.100 +03:00 [INF] Request finished in 299.8756ms 200 text/plain; charset=utf-8 +2018-08-03 10:36:57.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityRole application/json +2018-08-03 10:36:57.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:36:57.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:36:57.452 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:36:57.484 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityRolesInput"]) - Validation state: "Valid" +2018-08-03 10:36:57.495 +03:00 [INF] Authorization was successful. +2018-08-03 10:36:57.950 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 465.4789ms. +2018-08-03 10:36:57.955 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:36:57.963 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 510.1662ms +2018-08-03 10:36:57.963 +03:00 [INF] Request finished in 557.8676ms 200 application/json; charset=utf-8 +2018-08-03 10:37:51.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 10:37:51.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:51.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:51.908 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 10:37:51.959 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:37:52.090 +03:00 [INF] Executed action /Blog/Index in 182.0001ms +2018-08-03 10:37:52.091 +03:00 [INF] Request finished in 639.4998ms 200 text/html; charset=utf-8 +2018-08-03 10:37:52.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:37:52.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.167 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:37:52.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:37:52.167 +03:00 [INF] Request finished in 1.2109ms 200 text/css +2018-08-03 10:37:52.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:37:52.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.168 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:37:52.168 +03:00 [INF] Request finished in 0.9037ms 200 text/css +2018-08-03 10:37:52.168 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:37:52.168 +03:00 [INF] Request finished in 1.5368ms 200 text/css +2018-08-03 10:37:52.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:37:52.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.171 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:37:52.171 +03:00 [INF] Request finished in 2.464ms 200 text/css +2018-08-03 10:37:52.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:37:52.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.189 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:37:52.190 +03:00 [INF] Request finished in 5.8935ms 200 text/css +2018-08-03 10:37:52.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:37:52.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.199 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:37:52.199 +03:00 [INF] Request finished in 5.8374ms 200 text/css +2018-08-03 10:37:52.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:37:52.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.212 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:37:52.213 +03:00 [INF] Request finished in 1.5121ms 200 text/css +2018-08-03 10:37:52.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:37:52.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.215 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:37:52.215 +03:00 [INF] Request finished in 1.5433ms 200 text/css +2018-08-03 10:37:52.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:37:52.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.221 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:37:52.223 +03:00 [INF] Request finished in 4.1208ms 200 application/javascript +2018-08-03 10:37:52.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:37:52.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.261 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:37:52.262 +03:00 [INF] Request finished in 9.3927ms 200 application/javascript +2018-08-03 10:37:52.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:37:52.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.272 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:37:52.272 +03:00 [INF] Request finished in 2.2239ms 200 application/javascript +2018-08-03 10:37:52.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:37:52.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:37:52.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.306 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:37:52.306 +03:00 [INF] Request finished in 5.2471ms 200 application/javascript +2018-08-03 10:37:52.308 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:37:52.308 +03:00 [INF] Request finished in 9.0647ms 200 application/javascript +2018-08-03 10:37:52.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:37:52.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.352 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:37:52.353 +03:00 [INF] Request finished in 1.9979ms 200 application/javascript +2018-08-03 10:37:52.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:37:52.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.423 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:37:52.423 +03:00 [INF] Request finished in 2.6957ms 200 application/javascript +2018-08-03 10:37:52.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:37:52.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.467 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:37:52.467 +03:00 [INF] Request finished in 1.5302ms 200 application/javascript +2018-08-03 10:37:52.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:37:52.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:37:52.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.517 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:37:52.517 +03:00 [INF] Request finished in 1.7988ms 200 application/javascript +2018-08-03 10:37:52.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:37:52.519 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:37:52.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.519 +03:00 [INF] Request finished in 3.3312ms 200 application/javascript +2018-08-03 10:37:52.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:37:52.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.534 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:37:52.534 +03:00 [INF] Request finished in 1.1942ms 200 application/javascript +2018-08-03 10:37:52.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:37:52.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.536 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:37:52.536 +03:00 [INF] Request finished in 1.2999ms 200 application/javascript +2018-08-03 10:37:52.538 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:37:52.539 +03:00 [INF] Request finished in 20.6181ms 200 application/javascript +2018-08-03 10:37:52.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:37:52.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:37:52.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:37:52.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:37:52.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.572 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:37:52.573 +03:00 [INF] Request finished in 1.9529ms 200 application/javascript +2018-08-03 10:37:52.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:37:52.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.575 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:37:52.575 +03:00 [INF] Request finished in 1.9618ms 200 application/javascript +2018-08-03 10:37:52.575 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:37:52.575 +03:00 [INF] Request finished in 7.1294ms 200 application/javascript +2018-08-03 10:37:52.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:37:52.576 +03:00 [INF] Request finished in 7.6453ms 200 application/javascript +2018-08-03 10:37:52.577 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:37:52.577 +03:00 [INF] Request finished in 6.9198ms 200 application/javascript +2018-08-03 10:37:52.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:37:52.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.619 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:37:52.619 +03:00 [INF] Request finished in 1.1367ms 200 application/javascript +2018-08-03 10:37:52.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:37:52.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:37:52.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:37:52.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.628 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:37:52.628 +03:00 [INF] Request finished in 1.0235ms 200 application/javascript +2018-08-03 10:37:52.638 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:37:52.639 +03:00 [INF] Request finished in 18.3209ms 200 application/javascript +2018-08-03 10:37:52.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:37:52.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.704 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:37:52.705 +03:00 [INF] Request finished in 1.2906ms 200 application/javascript +2018-08-03 10:37:52.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:37:52.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:37:52.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.709 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:37:52.709 +03:00 [INF] Request finished in 1.2855ms 200 application/javascript +2018-08-03 10:37:52.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:37:52.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.720 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:37:52.720 +03:00 [INF] Request finished in 5.823ms 200 font/woff2 +2018-08-03 10:37:52.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 10:37:52.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.797 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-03 10:37:52.797 +03:00 [INF] Request finished in 1.3402ms 200 image/png +2018-08-03 10:37:52.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:37:52.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:37:52.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.803 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:37:52.803 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:37:52.803 +03:00 [INF] Request finished in 0.9957ms 200 image/svg+xml +2018-08-03 10:37:52.803 +03:00 [INF] Request finished in 0.9374ms 200 image/svg+xml +2018-08-03 10:37:52.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:37:52.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:37:52.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:37:52.830 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:37:52.830 +03:00 [INF] Request finished in 10.2792ms 200 image/jpeg +2018-08-03 10:37:52.874 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:37:52.875 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:37:52.876 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.878 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.878 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.879 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.880 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.880 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.881 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.881 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.882 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.882 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.883 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.883 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.884 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.884 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.885 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.886 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.886 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.887 +03:00 [INF] Authorization was successful. +2018-08-03 10:37:52.890 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.156400000000001ms. +2018-08-03 10:37:52.890 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:37:52.890 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.579400000000001ms +2018-08-03 10:37:52.890 +03:00 [INF] Request finished in 264.7664ms 200 text/plain; charset=utf-8 +2018-08-03 10:37:53.083 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:37:53.083 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:37:53.084 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2614ms. +2018-08-03 10:37:53.084 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:37:53.084 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4804000000000002ms +2018-08-03 10:37:53.084 +03:00 [INF] Request finished in 380.6876ms 200 text/plain; charset=utf-8 +2018-08-03 10:38:40.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 10:38:40.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:40.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.035 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 10:38:41.037 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:41.083 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-08-03 10:38:41.083 +03:00 [INF] Executed action /Blog/Index in 48.1169ms +2018-08-03 10:38:41.086 +03:00 [INF] Request finished in 287.6945ms 302 +2018-08-03 10:38:41.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:38:41.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.365 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 10:38:41.399 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:41.428 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.471 +03:00 [INF] Executed action /Blog/Posts/Index in 105.1722ms +2018-08-03 10:38:41.471 +03:00 [INF] Request finished in 374.8482ms 200 text/html; charset=utf-8 +2018-08-03 10:38:41.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:38:41.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:38:41.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.507 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:38:41.507 +03:00 [INF] Request finished in 1.2476ms 200 text/css +2018-08-03 10:38:41.509 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:38:41.509 +03:00 [INF] Request finished in 6.0029ms 200 text/css +2018-08-03 10:38:41.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:38:41.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.517 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:38:41.517 +03:00 [INF] Request finished in 1.8749ms 200 text/css +2018-08-03 10:38:41.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:38:41.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.525 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:38:41.525 +03:00 [INF] Request finished in 2.817ms 200 text/css +2018-08-03 10:38:41.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:38:41.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.527 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:38:41.527 +03:00 [INF] Request finished in 2.3161ms 200 text/css +2018-08-03 10:38:41.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:38:41.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.531 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:38:41.531 +03:00 [INF] Request finished in 1.2457ms 200 text/css +2018-08-03 10:38:41.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:38:41.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.542 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:38:41.542 +03:00 [INF] Request finished in 2.223ms 200 text/css +2018-08-03 10:38:41.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:38:41.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.545 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:38:41.546 +03:00 [INF] Request finished in 0.9476ms 200 text/css +2018-08-03 10:38:41.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:38:41.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:38:41.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.562 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:38:41.562 +03:00 [INF] Request finished in 2.4979ms 200 application/javascript +2018-08-03 10:38:41.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:38:41.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.564 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:38:41.564 +03:00 [INF] Request finished in 1.9408ms 200 application/javascript +2018-08-03 10:38:41.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 10:38:41.567 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:38:41.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.567 +03:00 [INF] Request finished in 9.7562ms 200 application/javascript +2018-08-03 10:38:41.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:38:41.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.600 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:38:41.601 +03:00 [INF] Request finished in 5.3363ms 200 application/javascript +2018-08-03 10:38:41.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:38:41.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.613 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:38:41.613 +03:00 [INF] Request finished in 8.1823ms 200 application/javascript +2018-08-03 10:38:41.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:38:41.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.625 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:38:41.625 +03:00 [INF] Request finished in 4.7791ms 200 application/javascript +2018-08-03 10:38:41.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:38:41.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.630 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:38:41.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:38:41.630 +03:00 [INF] Request finished in 3.4428ms 200 application/javascript +2018-08-03 10:38:41.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.631 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:38:41.632 +03:00 [INF] Request finished in 1.7409ms 200 application/javascript +2018-08-03 10:38:41.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:38:41.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.647 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:38:41.647 +03:00 [INF] Request finished in 4.4176ms 200 application/javascript +2018-08-03 10:38:41.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:38:41.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:38:41.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.675 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:38:41.675 +03:00 [INF] Request finished in 16.1458ms 200 application/javascript +2018-08-03 10:38:41.675 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:38:41.675 +03:00 [INF] Request finished in 8.2ms 200 application/javascript +2018-08-03 10:38:41.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:38:41.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.683 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:38:41.683 +03:00 [INF] Request finished in 6.8632ms 200 application/javascript +2018-08-03 10:38:41.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:38:41.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:38:41.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.686 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:38:41.686 +03:00 [INF] Request finished in 1.8332ms 200 application/javascript +2018-08-03 10:38:41.687 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:38:41.688 +03:00 [INF] Request finished in 3.8638ms 200 application/javascript +2018-08-03 10:38:41.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:38:41.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.690 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:38:41.691 +03:00 [INF] Request finished in 1.8603ms 200 application/javascript +2018-08-03 10:38:41.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:38:41.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.701 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:38:41.701 +03:00 [INF] Request finished in 1.247ms 200 application/javascript +2018-08-03 10:38:41.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:38:41.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.702 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:38:41.702 +03:00 [INF] Request finished in 0.9608ms 200 application/javascript +2018-08-03 10:38:41.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:38:41.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.707 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:38:41.707 +03:00 [INF] Request finished in 1.9871ms 200 application/javascript +2018-08-03 10:38:41.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:38:41.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.716 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:38:41.716 +03:00 [INF] Request finished in 1.3433ms 200 application/javascript +2018-08-03 10:38:41.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:38:41.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:38:41.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.726 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:38:41.726 +03:00 [INF] Request finished in 1.3447ms 200 application/javascript +2018-08-03 10:38:41.726 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:38:41.726 +03:00 [INF] Request finished in 1.3928ms 200 application/javascript +2018-08-03 10:38:41.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:38:41.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:38:41.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:38:41.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:38:41.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.760 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:38:41.760 +03:00 [INF] Request finished in 1.2745ms 200 application/javascript +2018-08-03 10:38:41.760 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:38:41.760 +03:00 [INF] Request finished in 2.2451ms 200 application/javascript +2018-08-03 10:38:41.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:38:41.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:38:41.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.778 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:38:41.778 +03:00 [INF] Request finished in 1.6399ms 200 image/svg+xml +2018-08-03 10:38:41.778 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:38:41.778 +03:00 [INF] Request finished in 1.3261ms 200 image/svg+xml +2018-08-03 10:38:41.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:38:41.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.822 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:38:41.823 +03:00 [INF] Request finished in 13.7307ms 200 image/jpeg +2018-08-03 10:38:41.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:38:41.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:41.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:41.844 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:38:41.844 +03:00 [INF] Request finished in 2.1621ms 200 font/woff2 +2018-08-03 10:38:41.892 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:38:41.893 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:38:41.893 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11810000000000001ms. +2018-08-03 10:38:41.894 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:38:41.894 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1189ms +2018-08-03 10:38:41.894 +03:00 [INF] Request finished in 150.9642ms 200 text/plain; charset=utf-8 +2018-08-03 10:38:41.911 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:38:41.912 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:38:41.913 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.914 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.914 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.915 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.915 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.916 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.916 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.917 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.917 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.918 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.918 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.919 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.919 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.920 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.920 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.921 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.922 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.923 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:41.925 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.2583ms. +2018-08-03 10:38:41.925 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:38:41.926 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.5176ms +2018-08-03 10:38:41.926 +03:00 [INF] Request finished in 184.5832ms 200 text/plain; charset=utf-8 +2018-08-03 10:38:42.218 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 10:38:42.221 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:42.236 +03:00 [INF] Executed action /Blog/Posts/Detail in 17.9125ms +2018-08-03 10:38:42.257 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 10:38:42.303 +03:00 [INF] Request finished in 736.2601ms 500 text/html; charset=utf-8 +2018-08-03 10:38:49.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 10:38:49.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:49.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:53.671 +03:00 [INF] Loaded modules: +2018-08-03 10:38:53.688 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:38:53.688 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:38:53.689 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:38:53.690 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:38:55.346 +03:00 [INF] Initialized all modules. +2018-08-03 10:38:55.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:38:55.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:38:55.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:55.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:55.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:55.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:57.843 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 10:38:57.843 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 10:38:57.947 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:57.947 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:58.194 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:58.194 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:58.894 +03:00 [INF] Executed action /Blog/Posts/Index in 1045.3768ms +2018-08-03 10:38:58.894 +03:00 [INF] Executed action /Blog/Posts/Index in 1045.3776ms +2018-08-03 10:38:58.903 +03:00 [INF] Request finished in 3327.0802ms 200 text/html; charset=utf-8 +2018-08-03 10:38:58.904 +03:00 [INF] Request finished in 3327.0792ms 200 text/html; charset=utf-8 +2018-08-03 10:38:58.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 10:38:58.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 10:38:58.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 10:38:58.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.943 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-08-03 10:38:58.943 +03:00 [INF] Request finished in 10.4802ms 200 text/css +2018-08-03 10:38:58.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 10:38:58.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.950 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-08-03 10:38:58.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 10:38:58.951 +03:00 [INF] Request finished in 4.0187ms 200 text/css +2018-08-03 10:38:58.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 10:38:58.955 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-08-03 10:38:58.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.956 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 10:38:58.958 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-08-03 10:38:58.958 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-03 10:38:58.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 10:38:58.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.965 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-03 10:38:58.965 +03:00 [INF] Request finished in 1.2874ms 200 text/css +2018-08-03 10:38:58.969 +03:00 [INF] Request finished in 37.2211ms 200 text/css +2018-08-03 10:38:58.970 +03:00 [INF] Request finished in 18.6014ms 200 text/css +2018-08-03 10:38:58.970 +03:00 [INF] Request finished in 37.4057ms 200 text/css +2018-08-03 10:38:58.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 10:38:58.970 +03:00 [INF] Request finished in 15.4879ms 200 text/css +2018-08-03 10:38:58.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.971 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-03 10:38:58.971 +03:00 [INF] Request finished in 0.9762ms 200 text/css +2018-08-03 10:38:58.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 10:38:58.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 10:38:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.977 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-08-03 10:38:58.977 +03:00 [INF] Request finished in 1.5429ms 200 application/javascript +2018-08-03 10:38:58.984 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-08-03 10:38:58.984 +03:00 [INF] Request finished in 13.1233ms 200 application/javascript +2018-08-03 10:38:58.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 10:38:58.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.988 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-08-03 10:38:58.989 +03:00 [INF] Request finished in 2.144ms 200 application/javascript +2018-08-03 10:38:58.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 10:38:58.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 10:38:58.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:58.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:58.992 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-08-03 10:38:58.993 +03:00 [INF] Request finished in 2.7753ms 200 application/javascript +2018-08-03 10:38:59.001 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-08-03 10:38:59.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 10:38:59.001 +03:00 [INF] Request finished in 9.8452ms 200 application/javascript +2018-08-03 10:38:59.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 10:38:59.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.012 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-08-03 10:38:59.012 +03:00 [INF] Request finished in 1.6578ms 200 application/javascript +2018-08-03 10:38:59.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 10:38:59.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.025 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-08-03 10:38:59.026 +03:00 [INF] Request finished in 1.9091ms 200 application/javascript +2018-08-03 10:38:59.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 10:38:59.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.034 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-08-03 10:38:59.034 +03:00 [INF] Request finished in 2.7003ms 200 application/javascript +2018-08-03 10:38:59.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 10:38:59.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 10:38:59.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.048 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-08-03 10:38:59.048 +03:00 [INF] Request finished in 4.3876ms 200 application/javascript +2018-08-03 10:38:59.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 10:38:59.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.062 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-08-03 10:38:59.062 +03:00 [INF] Request finished in 2.8653ms 200 application/javascript +2018-08-03 10:38:59.062 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-08-03 10:38:59.062 +03:00 [INF] Request finished in 15.8614ms 200 application/javascript +2018-08-03 10:38:59.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 10:38:59.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.066 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-08-03 10:38:59.067 +03:00 [INF] Request finished in 3.2932ms 200 application/javascript +2018-08-03 10:38:59.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 10:38:59.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.070 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-08-03 10:38:59.070 +03:00 [INF] Request finished in 1.3109ms 200 application/javascript +2018-08-03 10:38:59.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 10:38:59.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.075 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-08-03 10:38:59.075 +03:00 [INF] Request finished in 2.3209ms 200 application/javascript +2018-08-03 10:38:59.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 10:38:59.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 10:38:59.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 10:38:59.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.087 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-08-03 10:38:59.087 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-08-03 10:38:59.087 +03:00 [INF] Request finished in 10.5641ms 200 application/javascript +2018-08-03 10:38:59.087 +03:00 [INF] Request finished in 1.2223ms 200 application/javascript +2018-08-03 10:38:59.087 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-08-03 10:38:59.087 +03:00 [INF] Request finished in 1.4238ms 200 application/javascript +2018-08-03 10:38:59.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 10:38:59.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.092 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-08-03 10:38:59.092 +03:00 [INF] Request finished in 1.418ms 200 application/javascript +2018-08-03 10:38:59.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 10:38:59.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 10:38:59.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.095 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-08-03 10:38:59.096 +03:00 [INF] Request finished in 1.1233ms 200 application/javascript +2018-08-03 10:38:59.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-08-03 10:38:59.096 +03:00 [INF] Request finished in 1.1047ms 200 application/javascript +2018-08-03 10:38:59.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 10:38:59.107 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.110 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-03 10:38:59.110 +03:00 [INF] Request finished in 3.5444ms 200 application/javascript +2018-08-03 10:38:59.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:38:59.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:38:59.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 10:38:59.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.131 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-03 10:38:59.131 +03:00 [INF] Request finished in 1.071ms 200 application/javascript +2018-08-03 10:38:59.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 10:38:59.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.136 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-03 10:38:59.136 +03:00 [INF] Request finished in 1.3701ms 200 application/javascript +2018-08-03 10:38:59.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 10:38:59.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.145 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-08-03 10:38:59.146 +03:00 [INF] Request finished in 1.9163ms 200 image/svg+xml +2018-08-03 10:38:59.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 10:38:59.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.151 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-03 10:38:59.151 +03:00 [INF] Request finished in 1.7518ms 200 image/svg+xml +2018-08-03 10:38:59.246 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:38:59.246 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:38:59.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 10:38:59.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 10:38:59.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:38:59.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:38:59.271 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-08-03 10:38:59.271 +03:00 [INF] Request finished in 2.0984ms 200 font/woff2 +2018-08-03 10:38:59.280 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-08-03 10:38:59.282 +03:00 [INF] Request finished in 12.5411ms 200 image/jpeg +2018-08-03 10:38:59.309 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:38:59.314 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:38:59.344 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.347 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.350 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.354 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.360 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.369 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.373 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.377 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.384 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.389 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.398 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.407 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.410 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.419 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.436 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.443 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.451 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.455 +03:00 [INF] Authorization was successful. +2018-08-03 10:38:59.487 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 171.1365ms. +2018-08-03 10:38:59.501 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:38:59.504 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 257.2898ms +2018-08-03 10:38:59.504 +03:00 [INF] Request finished in 375.6087ms 200 text/plain; charset=utf-8 +2018-08-03 10:38:59.532 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 217.25900000000001ms. +2018-08-03 10:38:59.541 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:38:59.545 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 298.5903ms +2018-08-03 10:38:59.548 +03:00 [INF] Request finished in 418.659ms 200 text/plain; charset=utf-8 +2018-08-03 10:38:59.659 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 10:38:59.663 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:38:59.686 +03:00 [INF] Executed action /Blog/Posts/Detail in 27.227600000000002ms +2018-08-03 10:38:59.710 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 10:38:59.761 +03:00 [INF] Request finished in 760.1868ms 500 text/html; charset=utf-8 +2018-08-03 10:39:06.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:39:06.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-08-03 10:39:06.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-08-03 10:39:37.984 +03:00 [INF] Loaded modules: +2018-08-03 10:39:38.003 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:39:38.003 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:39:38.004 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:39:38.005 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:39:39.967 +03:00 [INF] Initialized all modules. +2018-08-03 10:39:40.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:39:42.645 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:39:42.670 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:39:43.354 +03:00 [INF] Executed action /Index in 701.42950000000008ms +2018-08-03 10:39:43.373 +03:00 [INF] Request finished in 3048.7668ms 200 text/html; charset=utf-8 +2018-08-03 10:39:43.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 10:39:43.475 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-08-03 10:39:43.476 +03:00 [INF] Request finished in 18.4248ms 200 image/png +2018-08-03 10:39:43.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:39:43.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:39:43.573 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:39:43.575 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:39:43.624 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:39:43.625 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:39:43.677 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.678 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.679 +03:00 [INF] Authorization failed. +2018-08-03 10:39:43.712 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.7144ms. +2018-08-03 10:39:43.713 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 88.811ms. +2018-08-03 10:39:43.719 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:39:43.719 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:39:43.719 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 145.8828ms +2018-08-03 10:39:43.719 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 144.359ms +2018-08-03 10:39:43.720 +03:00 [INF] Request finished in 164.263ms 200 text/plain; charset=utf-8 +2018-08-03 10:39:43.720 +03:00 [INF] Request finished in 161.8858ms 200 text/plain; charset=utf-8 +2018-08-03 10:39:44.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-08-03 10:39:44.481 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-08-03 10:39:44.481 +03:00 [INF] Request finished in 2.3247ms 200 image/png +2018-08-03 10:39:56.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-08-03 10:39:56.710 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:39:56.759 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:39:56.844 +03:00 [INF] Executed action /Account/Login in 133.5261ms +2018-08-03 10:39:56.844 +03:00 [INF] Request finished in 741.0905ms 200 text/html; charset=utf-8 +2018-08-03 10:39:56.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-08-03 10:39:56.903 +03:00 [INF] Request finished in 8.3614ms 404 +2018-08-03 10:39:56.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:39:56.965 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:39:56.969 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:39:56.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:39:56.969 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.970 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.971 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.971 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.971 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.972 +03:00 [INF] Authorization failed. +2018-08-03 10:39:56.974 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.3878ms. +2018-08-03 10:39:56.975 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:39:56.975 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.730500000000001ms +2018-08-03 10:39:56.975 +03:00 [INF] Request finished in 13.2761ms 200 text/plain; charset=utf-8 +2018-08-03 10:39:56.978 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:39:56.991 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:39:56.992 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6087ms. +2018-08-03 10:39:56.992 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:39:56.992 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 14.1917ms +2018-08-03 10:39:56.993 +03:00 [INF] Request finished in 23.1739ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:02.947 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-08-03 10:40:02.948 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-08-03 10:40:03.006 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:03.215 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-08-03 10:40:03.232 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-08-03 10:40:03.232 +03:00 [INF] Executed action /Account/Login in 284.3066ms +2018-08-03 10:40:03.232 +03:00 [INF] Request finished in 285.5825ms 302 +2018-08-03 10:40:03.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 10:40:03.281 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 10:40:03.281 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:03.288 +03:00 [INF] Executed action /Index in 7.1514000000000006ms +2018-08-03 10:40:03.288 +03:00 [INF] Request finished in 40.4972ms 200 text/html; charset=utf-8 +2018-08-03 10:40:03.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:40:03.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:40:03.422 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:03.423 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:40:03.424 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:03.425 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:40:03.425 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1274ms. +2018-08-03 10:40:03.426 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:03.426 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3014000000000001ms +2018-08-03 10:40:03.426 +03:00 [INF] Request finished in 29.7568ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:03.493 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.496 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.498 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.500 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.503 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.507 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.509 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.511 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.514 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.516 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.518 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.521 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.523 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.525 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.527 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.529 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.530 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.532 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:03.536 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 113.7363ms. +2018-08-03 10:40:03.546 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:03.546 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 124.5049ms +2018-08-03 10:40:03.547 +03:00 [INF] Request finished in 150.1361ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:08.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-08-03 10:40:09.062 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", area = "", action = "", controller = ""}. Executing action /Identity/Users/Index +2018-08-03 10:40:09.076 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.078 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:09.103 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.148 +03:00 [INF] Executed action /Identity/Users/Index in 85.438600000000008ms +2018-08-03 10:40:09.148 +03:00 [INF] Request finished in 433.2217ms 200 text/html; charset=utf-8 +2018-08-03 10:40:09.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-08-03 10:40:09.245 +03:00 [INF] Request finished in 49.4524ms 404 +2018-08-03 10:40:09.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:40:09.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:40:09.287 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:09.288 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:40:09.289 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.290 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.290 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.291 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.291 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:09.293 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.293 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:40:09.293 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.15760000000000002ms. +2018-08-03 10:40:09.294 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:09.294 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.294 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.39ms +2018-08-03 10:40:09.294 +03:00 [INF] Request finished in 44.3844ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:09.294 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.295 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.296 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.297 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.298 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.299 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.300 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.300 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.301 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.302 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.302 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.303 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.305 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.5171ms. +2018-08-03 10:40:09.305 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:09.305 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.226200000000002ms +2018-08-03 10:40:09.305 +03:00 [INF] Request finished in 59.5233ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:09.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser application/json +2018-08-03 10:40:09.518 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-08-03 10:40:09.546 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-08-03 10:40:09.557 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:09.998 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 451.1571ms. +2018-08-03 10:40:09.998 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null]]'. +2018-08-03 10:40:10.014 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 495.27930000000003ms +2018-08-03 10:40:10.014 +03:00 [INF] Request finished in 530.7691ms 200 application/json; charset=utf-8 +2018-08-03 10:40:18.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 10:40:18.564 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 10:40:18.593 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:18.680 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-08-03 10:40:18.680 +03:00 [INF] Executed action /Blog/Index in 116.5631ms +2018-08-03 10:40:18.681 +03:00 [INF] Request finished in 371.1234ms 302 +2018-08-03 10:40:18.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:40:18.957 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 10:40:18.988 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:19.015 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.058 +03:00 [INF] Executed action /Blog/Posts/Index in 101.2197ms +2018-08-03 10:40:19.058 +03:00 [INF] Request finished in 370.7937ms 200 text/html; charset=utf-8 +2018-08-03 10:40:19.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 10:40:19.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 10:40:19.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 10:40:19.193 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:19.194 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 10:40:19.194 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.195 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.196 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.196 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 10:40:19.196 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.197 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 10:40:19.197 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.197 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1003ms. +2018-08-03 10:40:19.197 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:19.198 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2071ms +2018-08-03 10:40:19.198 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.198 +03:00 [INF] Request finished in 34.0045ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:19.198 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.199 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.200 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.200 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.201 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.203 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.205 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.206 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.206 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.207 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.207 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.208 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:19.210 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.3586ms. +2018-08-03 10:40:19.210 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 10:40:19.210 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.5209ms +2018-08-03 10:40:19.211 +03:00 [INF] Request finished in 51.8137ms 200 text/plain; charset=utf-8 +2018-08-03 10:40:19.472 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 10:40:19.475 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:19.491 +03:00 [INF] Executed action /Blog/Posts/Detail in 19.024900000000002ms +2018-08-03 10:40:19.505 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 10:40:19.551 +03:00 [INF] Request finished in 444.5952ms 500 text/html; charset=utf-8 +2018-08-03 10:40:26.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 10:40:37.481 +03:00 [INF] Loaded modules: +2018-08-03 10:40:37.500 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 10:40:37.500 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 10:40:37.500 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 10:40:37.500 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 10:40:37.500 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 10:40:37.501 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 10:40:37.502 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 10:40:37.504 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 10:40:37.504 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 10:40:37.504 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 10:40:39.328 +03:00 [INF] Initialized all modules. +2018-08-03 10:40:39.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 10:40:41.565 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 10:40:41.660 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:41.890 +03:00 [INF] Authorization was successful. +2018-08-03 10:40:42.581 +03:00 [INF] Executed action /Blog/Posts/Index in 1005.5652ms +2018-08-03 10:40:42.597 +03:00 [INF] Request finished in 3124.9748ms 200 text/html; charset=utf-8 +2018-08-03 10:40:42.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 10:40:43.260 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 10:40:43.265 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 10:40:43.285 +03:00 [INF] Executed action /Blog/Posts/Detail in 24.387500000000003ms +2018-08-03 10:40:43.300 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 10:40:43.367 +03:00 [INF] Request finished in 667.5689ms 500 text/html; charset=utf-8 +2018-08-03 11:15:51.485 +03:00 [INF] Loaded modules: +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:15:51.501 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:15:51.502 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:15:51.503 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:15:51.504 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:15:51.504 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:15:53.317 +03:00 [INF] Initialized all modules. +2018-08-03 11:15:53.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:15:56.484 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:15:56.542 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:15:57.231 +03:00 [INF] Executed action /Documents/Index in 742.3455ms +2018-08-03 11:15:57.251 +03:00 [INF] Request finished in 3659.2756ms 200 text/html; charset=utf-8 +2018-08-03 11:15:57.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:15:57.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:15:57.390 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:15:57.405 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:15:57.429 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:15:57.454 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:15:57.546 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.550 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 91.144600000000011ms. +2018-08-03 11:15:57.552 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.555 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.557 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.559 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:15:57.560 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 154.9049ms +2018-08-03 11:15:57.561 +03:00 [INF] Request finished in 219.3773ms 200 text/plain; charset=utf-8 +2018-08-03 11:15:57.561 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.565 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.567 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.569 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.571 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.573 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.577 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.579 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.581 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.583 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.586 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.588 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.590 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.594 +03:00 [INF] Authorization was successful. +2018-08-03 11:15:57.630 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 201.1456ms. +2018-08-03 11:15:57.643 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:15:57.647 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 256.8758ms +2018-08-03 11:15:57.649 +03:00 [INF] Request finished in 309.7193ms 200 text/plain; charset=utf-8 +2018-08-03 11:27:16.863 +03:00 [INF] Loaded modules: +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:27:16.883 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:27:16.884 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:27:19.000 +03:00 [INF] Initialized all modules. +2018-08-03 11:27:19.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:27:23.020 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:27:23.072 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:27:24.356 +03:00 [INF] Executed action /Index in 1325.7326ms +2018-08-03 11:27:24.392 +03:00 [INF] Request finished in 5026.1238ms 200 text/html; charset=utf-8 +2018-08-03 11:27:24.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:27:24.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:27:24.427 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:27:24.427 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:27:24.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:27:24.432 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:27:24.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:27:24.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:27:24.435 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:27:24.435 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:27:24.437 +03:00 [INF] Request finished in 7.59ms 304 image/png +2018-08-03 11:27:24.437 +03:00 [INF] Request finished in 2.6325ms 304 image/png +2018-08-03 11:27:24.437 +03:00 [INF] Request finished in 2.2946ms 304 image/png +2018-08-03 11:27:24.437 +03:00 [INF] Request finished in 12.1759ms 304 image/png +2018-08-03 11:27:24.437 +03:00 [INF] Request finished in 18.5892ms 304 image/png +2018-08-03 11:27:24.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:27:24.439 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:27:24.439 +03:00 [INF] Request finished in 0.599ms 304 image/png +2018-08-03 11:27:24.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:27:24.456 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:27:24.456 +03:00 [INF] Request finished in 1.2834ms 304 image/png +2018-08-03 11:27:24.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:27:24.461 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:27:24.462 +03:00 [INF] Request finished in 1.6921ms 304 image/png +2018-08-03 11:27:24.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:27:24.467 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:27:24.468 +03:00 [INF] Request finished in 4.2756ms 304 image/png +2018-08-03 11:27:24.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:27:24.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:27:24.470 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:27:24.470 +03:00 [INF] Request finished in 0.5897ms 304 image/png +2018-08-03 11:27:24.472 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:27:24.472 +03:00 [INF] Request finished in 2.7906ms 304 image/png +2018-08-03 11:27:24.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:27:24.477 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:27:24.477 +03:00 [INF] Request finished in 3.624ms 304 image/png +2018-08-03 11:27:24.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:27:24.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:27:24.487 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:27:24.487 +03:00 [INF] Request finished in 0.965ms 304 image/png +2018-08-03 11:27:24.487 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:27:24.487 +03:00 [INF] Request finished in 0.7131ms 304 image/png +2018-08-03 11:27:24.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:27:24.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:27:24.504 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:27:24.504 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:27:24.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:27:24.504 +03:00 [INF] Request finished in 1.2633ms 304 image/png +2018-08-03 11:27:24.504 +03:00 [INF] Request finished in 0.9501ms 304 image/png +2018-08-03 11:27:24.504 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:27:24.505 +03:00 [INF] Request finished in 1.8673ms 304 image/png +2018-08-03 11:27:24.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:27:24.509 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:27:24.509 +03:00 [INF] Request finished in 0.6141ms 304 image/png +2018-08-03 11:27:24.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:27:24.522 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:27:24.524 +03:00 [INF] Request finished in 2.0138ms 304 image/png +2018-08-03 11:27:24.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:27:24.526 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:27:24.527 +03:00 [INF] Request finished in 1.4157ms 304 image/png +2018-08-03 11:27:24.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:27:24.541 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:27:24.541 +03:00 [INF] Request finished in 0.618ms 304 image/png +2018-08-03 11:27:24.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:27:24.556 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:27:24.557 +03:00 [INF] Request finished in 9.6364ms 304 image/png +2018-08-03 11:27:24.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:27:24.564 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:27:24.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:27:24.565 +03:00 [INF] Request finished in 2.6279ms 304 image/png +2018-08-03 11:27:24.565 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:27:24.565 +03:00 [INF] Request finished in 0.8314ms 304 image/png +2018-08-03 11:27:24.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:27:24.568 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:27:24.569 +03:00 [INF] Request finished in 2.3027ms 304 image/png +2018-08-03 11:27:24.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:27:24.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:27:24.597 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:27:24.597 +03:00 [INF] Request finished in 10.8898ms 304 image/png +2018-08-03 11:27:24.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:27:24.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:27:24.598 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:27:24.598 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:27:24.598 +03:00 [INF] Request finished in 0.4267ms 304 image/png +2018-08-03 11:27:24.598 +03:00 [INF] Request finished in 12.0149ms 304 image/png +2018-08-03 11:27:24.598 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:27:24.598 +03:00 [INF] Request finished in 0.5734ms 304 image/png +2018-08-03 11:27:24.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:27:24.611 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:27:24.611 +03:00 [INF] Request finished in 4.7621ms 304 image/png +2018-08-03 11:27:24.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:27:24.620 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:27:24.620 +03:00 [INF] Request finished in 1.296ms 304 image/png +2018-08-03 11:27:24.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:27:24.633 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:27:24.634 +03:00 [INF] Request finished in 2.571ms 304 image/png +2018-08-03 11:27:24.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:27:24.645 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:27:24.646 +03:00 [INF] Request finished in 1.2775ms 304 image/png +2018-08-03 11:27:24.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:27:24.648 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:27:24.648 +03:00 [INF] Request finished in 0.5317ms 304 image/png +2018-08-03 11:27:24.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:27:24.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:27:24.868 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:27:24.873 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:27:24.952 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:27:24.973 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:27:25.158 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 164.8247ms. +2018-08-03 11:27:25.174 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:27:25.175 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 301.9329ms +2018-08-03 11:27:25.175 +03:00 [INF] Request finished in 409.8886ms 200 text/plain; charset=utf-8 +2018-08-03 11:27:25.250 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.256 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.259 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.263 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.266 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.269 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.277 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.281 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.287 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.295 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.300 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.304 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.308 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.315 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.319 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.322 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.326 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.336 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:25.402 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 449.1204ms. +2018-08-03 11:27:25.433 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:27:25.434 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 565.4385ms +2018-08-03 11:27:25.434 +03:00 [INF] Request finished in 670.8781ms 200 text/plain; charset=utf-8 +2018-08-03 11:27:33.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:27:34.125 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:27:34.160 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:27:34.248 +03:00 [INF] Executed action /Documents/Index in 123.281ms +2018-08-03 11:27:34.249 +03:00 [INF] Request finished in 450.3495ms 200 text/html; charset=utf-8 +2018-08-03 11:27:34.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:27:34.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:27:34.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:27:34.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:27:34.295 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:27:34.295 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:27:34.295 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:27:34.295 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:27:34.295 +03:00 [INF] Request finished in 0.6583ms 304 text/css +2018-08-03 11:27:34.295 +03:00 [INF] Request finished in 0.9803ms 304 text/css +2018-08-03 11:27:34.295 +03:00 [INF] Request finished in 1.115ms 304 text/css +2018-08-03 11:27:34.295 +03:00 [INF] Request finished in 1.1573ms 304 text/css +2018-08-03 11:27:34.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:27:34.308 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:27:34.308 +03:00 [INF] Request finished in 2.5451ms 304 text/css +2018-08-03 11:27:34.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:27:34.317 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:27:34.317 +03:00 [INF] Request finished in 0.7376ms 304 text/css +2018-08-03 11:27:34.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:27:34.318 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:27:34.318 +03:00 [INF] Request finished in 0.623ms 304 text/css +2018-08-03 11:27:34.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:27:34.319 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:27:34.319 +03:00 [INF] Request finished in 0.9007ms 304 text/css +2018-08-03 11:27:34.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:27:34.325 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:27:34.326 +03:00 [INF] Request finished in 0.9521ms 304 application/javascript +2018-08-03 11:27:34.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:27:34.335 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:27:34.336 +03:00 [INF] Request finished in 0.7155ms 304 application/javascript +2018-08-03 11:27:34.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:27:34.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:27:34.344 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:27:34.344 +03:00 [INF] Request finished in 0.5932ms 304 application/javascript +2018-08-03 11:27:34.344 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:27:34.344 +03:00 [INF] Request finished in 0.6851ms 304 application/javascript +2018-08-03 11:27:34.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:27:34.347 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:27:34.347 +03:00 [INF] Request finished in 0.6006ms 304 application/javascript +2018-08-03 11:27:34.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:27:34.353 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:27:34.356 +03:00 [INF] Request finished in 4.8313ms 304 application/javascript +2018-08-03 11:27:34.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:27:34.358 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:27:34.358 +03:00 [INF] Request finished in 1.0652ms 304 application/javascript +2018-08-03 11:27:34.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:27:34.362 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:27:34.362 +03:00 [INF] Request finished in 1.0352ms 304 application/javascript +2018-08-03 11:27:34.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:27:34.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:27:34.376 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:27:34.376 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:27:34.376 +03:00 [INF] Request finished in 1.1159ms 304 application/javascript +2018-08-03 11:27:34.376 +03:00 [INF] Request finished in 0.9714ms 304 application/javascript +2018-08-03 11:27:34.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:27:34.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:27:34.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:27:34.378 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:27:34.378 +03:00 [INF] Request finished in 0.5197ms 304 application/javascript +2018-08-03 11:27:34.379 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:27:34.379 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:27:34.380 +03:00 [INF] Request finished in 2.4073ms 304 application/javascript +2018-08-03 11:27:34.380 +03:00 [INF] Request finished in 2.028ms 304 application/javascript +2018-08-03 11:27:34.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:27:34.383 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:27:34.383 +03:00 [INF] Request finished in 2.1325ms 304 application/javascript +2018-08-03 11:27:34.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:27:34.391 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:27:34.392 +03:00 [INF] Request finished in 1.2343ms 304 application/javascript +2018-08-03 11:27:34.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:27:34.396 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:27:34.397 +03:00 [INF] Request finished in 1.1166ms 304 application/javascript +2018-08-03 11:27:34.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:27:34.397 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:27:34.398 +03:00 [INF] Request finished in 1.0147ms 304 application/javascript +2018-08-03 11:27:34.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:27:34.401 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:27:34.402 +03:00 [INF] Request finished in 1.0806ms 304 application/javascript +2018-08-03 11:27:34.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:27:34.408 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:27:34.408 +03:00 [INF] Request finished in 0.7801ms 304 application/javascript +2018-08-03 11:27:34.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:27:34.411 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:27:34.411 +03:00 [INF] Request finished in 1.309ms 304 application/javascript +2018-08-03 11:27:34.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:27:34.415 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:27:34.415 +03:00 [INF] Request finished in 1.3342ms 304 application/javascript +2018-08-03 11:27:34.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:27:34.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:27:34.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:27:34.428 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:27:34.428 +03:00 [INF] Request finished in 0.5766ms 304 application/javascript +2018-08-03 11:27:34.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:27:34.434 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:27:34.435 +03:00 [INF] Request finished in 3.0104ms 304 application/javascript +2018-08-03 11:27:34.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:27:34.445 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:27:34.445 +03:00 [INF] Request finished in 0.5546ms 304 image/svg+xml +2018-08-03 11:27:34.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:27:34.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:27:34.446 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:27:34.446 +03:00 [INF] Request finished in 0.4577ms 304 image/png +2018-08-03 11:27:34.446 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:27:34.446 +03:00 [INF] Request finished in 0.9083ms 304 image/svg+xml +2018-08-03 11:27:34.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:27:34.451 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:27:34.451 +03:00 [INF] Request finished in 0.544ms 304 image/jpeg +2018-08-03 11:27:34.482 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:27:34.483 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:27:34.484 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:27:34.485 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:27:34.485 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2011ms. +2018-08-03 11:27:34.486 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:27:34.486 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8141ms +2018-08-03 11:27:34.486 +03:00 [INF] Request finished in 61.4579ms 200 text/plain; charset=utf-8 +2018-08-03 11:27:34.498 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.499 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.499 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.500 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.500 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.501 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.501 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.502 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.502 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.503 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.504 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.506 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.507 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.507 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.508 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.508 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.509 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.509 +03:00 [INF] Authorization was successful. +2018-08-03 11:27:34.512 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 28.661900000000003ms. +2018-08-03 11:27:34.512 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:27:34.512 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 30.0056ms +2018-08-03 11:27:34.512 +03:00 [INF] Request finished in 87.8355ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:03.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:28:03.928 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:28:03.928 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:28:03.965 +03:00 [INF] Executed action /Index in 36.8031ms +2018-08-03 11:28:03.965 +03:00 [INF] Request finished in 440.5898ms 200 text/html; charset=utf-8 +2018-08-03 11:28:03.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:28:03.997 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:28:03.998 +03:00 [INF] Request finished in 0.7099ms 304 text/css +2018-08-03 11:28:04.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:28:04.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:28:04.008 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:28:04.008 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:28:04.008 +03:00 [INF] Request finished in 0.5369ms 304 text/css +2018-08-03 11:28:04.008 +03:00 [INF] Request finished in 0.5975ms 304 text/css +2018-08-03 11:28:04.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:28:04.009 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:28:04.009 +03:00 [INF] Request finished in 0.4371ms 304 text/css +2018-08-03 11:28:04.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:28:04.013 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:28:04.014 +03:00 [INF] Request finished in 1.6981ms 304 text/css +2018-08-03 11:28:04.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:28:04.016 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:28:04.016 +03:00 [INF] Request finished in 2.4695ms 304 text/css +2018-08-03 11:28:04.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:28:04.018 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:28:04.018 +03:00 [INF] Request finished in 1.2896ms 304 text/css +2018-08-03 11:28:04.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:28:04.028 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:28:04.029 +03:00 [INF] Request finished in 1.4709ms 304 text/css +2018-08-03 11:28:04.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:28:04.034 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:28:04.035 +03:00 [INF] Request finished in 0.9845ms 304 application/javascript +2018-08-03 11:28:04.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:28:04.039 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:28:04.039 +03:00 [INF] Request finished in 0.6124ms 304 application/javascript +2018-08-03 11:28:04.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:28:04.047 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:28:04.048 +03:00 [INF] Request finished in 1.0425ms 304 application/javascript +2018-08-03 11:28:04.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:28:04.054 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:28:04.054 +03:00 [INF] Request finished in 0.6899ms 304 application/javascript +2018-08-03 11:28:04.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:28:04.057 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:28:04.057 +03:00 [INF] Request finished in 1.1588ms 304 application/javascript +2018-08-03 11:28:04.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:28:04.062 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:28:04.062 +03:00 [INF] Request finished in 2.2028ms 304 application/javascript +2018-08-03 11:28:04.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:28:04.065 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:28:04.065 +03:00 [INF] Request finished in 0.7167ms 304 application/javascript +2018-08-03 11:28:04.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:28:04.071 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:28:04.071 +03:00 [INF] Request finished in 1.1826ms 304 application/javascript +2018-08-03 11:28:04.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:28:04.074 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:28:04.074 +03:00 [INF] Request finished in 1.3418ms 304 application/javascript +2018-08-03 11:28:04.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:28:04.078 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:28:04.078 +03:00 [INF] Request finished in 1.203ms 304 application/javascript +2018-08-03 11:28:04.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:28:04.081 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:28:04.081 +03:00 [INF] Request finished in 0.8915ms 304 application/javascript +2018-08-03 11:28:04.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:28:04.094 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:28:04.094 +03:00 [INF] Request finished in 0.6302ms 304 application/javascript +2018-08-03 11:28:04.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:28:04.096 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:28:04.096 +03:00 [INF] Request finished in 0.5389ms 304 application/javascript +2018-08-03 11:28:04.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:28:04.102 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:28:04.102 +03:00 [INF] Request finished in 1.3999ms 304 application/javascript +2018-08-03 11:28:04.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:28:04.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:28:04.118 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:28:04.119 +03:00 [INF] Request finished in 2.2582ms 304 application/javascript +2018-08-03 11:28:04.121 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:28:04.121 +03:00 [INF] Request finished in 4.7877ms 304 application/javascript +2018-08-03 11:28:04.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:28:04.127 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:28:04.128 +03:00 [INF] Request finished in 1.0625ms 304 application/javascript +2018-08-03 11:28:04.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:28:04.130 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:28:04.132 +03:00 [INF] Request finished in 1.6607ms 304 application/javascript +2018-08-03 11:28:04.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:28:04.134 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:28:04.135 +03:00 [INF] Request finished in 1.2205ms 304 application/javascript +2018-08-03 11:28:04.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:28:04.146 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:28:04.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:28:04.147 +03:00 [INF] Request finished in 1.3204ms 304 application/javascript +2018-08-03 11:28:04.147 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:28:04.147 +03:00 [INF] Request finished in 0.6205ms 304 application/javascript +2018-08-03 11:28:04.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:28:04.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:28:04.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:28:04.154 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:28:04.154 +03:00 [INF] Request finished in 0.9947ms 304 application/javascript +2018-08-03 11:28:04.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:28:04.161 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:28:04.161 +03:00 [INF] Request finished in 0.602ms 304 application/javascript +2018-08-03 11:28:04.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:28:04.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:28:04.174 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:28:04.174 +03:00 [INF] Request finished in 0.4864ms 304 image/svg+xml +2018-08-03 11:28:04.174 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:28:04.174 +03:00 [INF] Request finished in 0.6783ms 304 image/png +2018-08-03 11:28:04.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:28:04.177 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:28:04.177 +03:00 [INF] Request finished in 0.5431ms 304 image/png +2018-08-03 11:28:04.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:28:04.182 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:28:04.182 +03:00 [INF] Request finished in 0.6272ms 304 image/png +2018-08-03 11:28:04.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:28:04.188 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:28:04.188 +03:00 [INF] Request finished in 0.5887ms 304 image/png +2018-08-03 11:28:04.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:28:04.192 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:28:04.192 +03:00 [INF] Request finished in 0.6703ms 304 image/png +2018-08-03 11:28:04.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:28:04.196 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:28:04.196 +03:00 [INF] Request finished in 0.6493ms 304 image/png +2018-08-03 11:28:04.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:28:04.198 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:28:04.198 +03:00 [INF] Request finished in 1.645ms 304 image/png +2018-08-03 11:28:04.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:28:04.206 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:28:04.206 +03:00 [INF] Request finished in 0.5122ms 304 image/png +2018-08-03 11:28:04.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:28:04.210 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:28:04.210 +03:00 [INF] Request finished in 0.5908ms 304 image/png +2018-08-03 11:28:04.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:28:04.213 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:28:04.213 +03:00 [INF] Request finished in 0.7544ms 304 image/png +2018-08-03 11:28:04.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:28:04.217 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:28:04.217 +03:00 [INF] Request finished in 1.8257ms 304 image/png +2018-08-03 11:28:04.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:28:04.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:28:04.230 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:28:04.230 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:28:04.230 +03:00 [INF] Request finished in 1.3656ms 304 image/png +2018-08-03 11:28:04.230 +03:00 [INF] Request finished in 1.2446ms 304 image/png +2018-08-03 11:28:04.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:28:04.233 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:28:04.233 +03:00 [INF] Request finished in 0.7469ms 304 image/png +2018-08-03 11:28:04.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:28:04.241 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:28:04.241 +03:00 [INF] Request finished in 0.6477ms 304 image/png +2018-08-03 11:28:04.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:28:04.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:28:04.243 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:28:04.243 +03:00 [INF] Request finished in 0.7548ms 304 image/png +2018-08-03 11:28:04.243 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:28:04.243 +03:00 [INF] Request finished in 1.1736ms 304 image/png +2018-08-03 11:28:04.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:28:04.250 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:28:04.250 +03:00 [INF] Request finished in 1.9257ms 304 image/png +2018-08-03 11:28:04.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:28:04.251 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:28:04.252 +03:00 [INF] Request finished in 0.9323ms 304 image/png +2018-08-03 11:28:04.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:28:04.256 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:28:04.256 +03:00 [INF] Request finished in 0.6902ms 304 image/png +2018-08-03 11:28:04.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:28:04.261 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:28:04.261 +03:00 [INF] Request finished in 0.61ms 304 image/png +2018-08-03 11:28:04.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:28:04.266 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:28:04.266 +03:00 [INF] Request finished in 2.8848ms 304 image/png +2018-08-03 11:28:04.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:28:04.276 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:28:04.276 +03:00 [INF] Request finished in 1.6718ms 304 image/png +2018-08-03 11:28:04.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:28:04.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:28:04.281 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:28:04.280 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:28:04.281 +03:00 [INF] Request finished in 1.4827ms 304 image/png +2018-08-03 11:28:04.281 +03:00 [INF] Request finished in 2.2177ms 304 image/png +2018-08-03 11:28:04.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:28:04.290 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:28:04.290 +03:00 [INF] Request finished in 0.5721ms 304 image/png +2018-08-03 11:28:04.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:28:04.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:28:04.293 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:28:04.293 +03:00 [INF] Request finished in 0.6999ms 304 image/png +2018-08-03 11:28:04.293 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:28:04.293 +03:00 [INF] Request finished in 2.4593ms 304 image/png +2018-08-03 11:28:04.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:28:04.302 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:28:04.303 +03:00 [INF] Request finished in 0.8874ms 304 image/png +2018-08-03 11:28:04.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:28:04.306 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:28:04.306 +03:00 [INF] Request finished in 0.8331ms 304 image/png +2018-08-03 11:28:04.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:28:04.314 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:04.314 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:28:04.314 +03:00 [INF] Request finished in 1.082ms 304 image/png +2018-08-03 11:28:04.315 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:04.315 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:28:04.317 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.318 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.319 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:28:04.319 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.319 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.19160000000000002ms. +2018-08-03 11:28:04.319 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:04.319 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.5063ms +2018-08-03 11:28:04.320 +03:00 [INF] Request finished in 171.408ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:04.320 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.320 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.321 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:28:04.322 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.324 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:28:04.325 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.326 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:28:04.326 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.326 +03:00 [INF] Request finished in 1.6607ms 304 image/png +2018-08-03 11:28:04.327 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.328 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.328 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:28:04.329 +03:00 [INF] Request finished in 7.1965ms 304 image/png +2018-08-03 11:28:04.329 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.329 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.331 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.332 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.332 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:28:04.333 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:04.335 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:28:04.336 +03:00 [INF] Request finished in 3.393ms 304 image/png +2018-08-03 11:28:04.337 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.361700000000003ms. +2018-08-03 11:28:04.338 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:04.338 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.9388ms +2018-08-03 11:28:04.338 +03:00 [INF] Request finished in 189.8591ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:04.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:28:04.346 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:28:04.348 +03:00 [INF] Request finished in 1.7782ms 304 image/png +2018-08-03 11:28:04.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:28:04.353 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:28:04.353 +03:00 [INF] Request finished in 1.7872ms 304 image/svg+xml +2018-08-03 11:28:04.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:28:04.369 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:28:04.369 +03:00 [INF] Request finished in 7.2466ms 304 image/jpeg +2018-08-03 11:28:05.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:28:05.490 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:28:05.490 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:28:05.496 +03:00 [INF] Executed action /Index in 5.6075ms +2018-08-03 11:28:05.496 +03:00 [INF] Request finished in 33.6125ms 200 text/html; charset=utf-8 +2018-08-03 11:28:05.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:28:05.527 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:28:05.528 +03:00 [INF] Request finished in 0.8899ms 304 text/css +2018-08-03 11:28:05.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:28:05.530 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:28:05.530 +03:00 [INF] Request finished in 0.7698ms 304 text/css +2018-08-03 11:28:05.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:28:05.536 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:28:05.537 +03:00 [INF] Request finished in 1.0864ms 304 text/css +2018-08-03 11:28:05.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:28:05.537 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:28:05.537 +03:00 [INF] Request finished in 0.7059ms 304 text/css +2018-08-03 11:28:05.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:28:05.543 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:28:05.544 +03:00 [INF] Request finished in 0.8212ms 304 text/css +2018-08-03 11:28:05.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:28:05.545 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:28:05.545 +03:00 [INF] Request finished in 0.9101ms 304 text/css +2018-08-03 11:28:05.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:28:05.551 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:28:05.551 +03:00 [INF] Request finished in 1.6375ms 304 text/css +2018-08-03 11:28:05.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:28:05.554 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:28:05.554 +03:00 [INF] Request finished in 0.5463ms 304 text/css +2018-08-03 11:28:05.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:28:05.560 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:28:05.560 +03:00 [INF] Request finished in 0.6329ms 304 application/javascript +2018-08-03 11:28:05.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:28:05.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:28:05.562 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:28:05.562 +03:00 [INF] Request finished in 1.0285ms 304 application/javascript +2018-08-03 11:28:05.562 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:28:05.562 +03:00 [INF] Request finished in 0.5294ms 304 application/javascript +2018-08-03 11:28:05.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:28:05.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:28:05.572 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:28:05.572 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:28:05.572 +03:00 [INF] Request finished in 0.6565ms 304 application/javascript +2018-08-03 11:28:05.572 +03:00 [INF] Request finished in 0.5347ms 304 application/javascript +2018-08-03 11:28:05.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:28:05.580 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:28:05.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:28:05.581 +03:00 [INF] Request finished in 1.4649ms 304 application/javascript +2018-08-03 11:28:05.582 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:28:05.582 +03:00 [INF] Request finished in 1.7211ms 304 application/javascript +2018-08-03 11:28:05.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:28:05.588 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:28:05.588 +03:00 [INF] Request finished in 1.5958ms 304 application/javascript +2018-08-03 11:28:05.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:28:05.592 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:28:05.592 +03:00 [INF] Request finished in 1.6588ms 304 application/javascript +2018-08-03 11:28:05.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:28:05.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:28:05.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:28:05.600 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:28:05.601 +03:00 [INF] Request finished in 4.0894ms 304 application/javascript +2018-08-03 11:28:05.601 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:28:05.601 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:28:05.601 +03:00 [INF] Request finished in 0.8772ms 304 application/javascript +2018-08-03 11:28:05.601 +03:00 [INF] Request finished in 2.9236ms 304 application/javascript +2018-08-03 11:28:05.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:28:05.605 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:28:05.605 +03:00 [INF] Request finished in 2.9713ms 304 application/javascript +2018-08-03 11:28:05.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:28:05.614 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:28:05.614 +03:00 [INF] Request finished in 1.3162ms 304 application/javascript +2018-08-03 11:28:05.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:28:05.618 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:28:05.618 +03:00 [INF] Request finished in 2.0787ms 304 application/javascript +2018-08-03 11:28:05.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:28:05.620 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:28:05.621 +03:00 [INF] Request finished in 2.102ms 304 application/javascript +2018-08-03 11:28:05.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:28:05.629 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:28:05.629 +03:00 [INF] Request finished in 0.8358ms 304 application/javascript +2018-08-03 11:28:05.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:28:05.636 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:28:05.636 +03:00 [INF] Request finished in 2.0855ms 304 application/javascript +2018-08-03 11:28:05.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:28:05.639 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:28:05.639 +03:00 [INF] Request finished in 0.9536ms 304 application/javascript +2018-08-03 11:28:05.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:28:05.649 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:28:05.649 +03:00 [INF] Request finished in 1.0984ms 304 application/javascript +2018-08-03 11:28:05.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:28:05.656 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:28:05.657 +03:00 [INF] Request finished in 0.7013ms 304 application/javascript +2018-08-03 11:28:05.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:28:05.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:28:05.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:28:05.666 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:28:05.666 +03:00 [INF] Request finished in 1.181ms 304 application/javascript +2018-08-03 11:28:05.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:28:05.671 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:28:05.671 +03:00 [INF] Request finished in 1.3184ms 304 application/javascript +2018-08-03 11:28:05.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:28:05.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:28:05.675 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:28:05.676 +03:00 [INF] Request finished in 1.5126ms 304 image/png +2018-08-03 11:28:05.678 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:28:05.678 +03:00 [INF] Request finished in 3.6262ms 304 image/svg+xml +2018-08-03 11:28:05.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:28:05.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:28:05.685 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:28:05.686 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:28:05.686 +03:00 [INF] Request finished in 0.6639ms 304 image/png +2018-08-03 11:28:05.686 +03:00 [INF] Request finished in 1.0355ms 304 image/png +2018-08-03 11:28:05.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:28:05.688 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:28:05.688 +03:00 [INF] Request finished in 0.9762ms 304 image/png +2018-08-03 11:28:05.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:28:05.694 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:28:05.694 +03:00 [INF] Request finished in 0.7402ms 304 image/png +2018-08-03 11:28:05.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:28:05.697 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:28:05.697 +03:00 [INF] Request finished in 0.7136ms 304 image/png +2018-08-03 11:28:05.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:28:05.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:28:05.701 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:28:05.701 +03:00 [INF] Request finished in 1.7645ms 304 image/png +2018-08-03 11:28:05.702 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:28:05.702 +03:00 [INF] Request finished in 1.9792ms 304 image/png +2018-08-03 11:28:05.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:28:05.704 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:28:05.704 +03:00 [INF] Request finished in 0.8306ms 304 image/png +2018-08-03 11:28:05.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:28:05.706 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:28:05.706 +03:00 [INF] Request finished in 0.7437ms 304 image/png +2018-08-03 11:28:05.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:28:05.713 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:28:05.713 +03:00 [INF] Request finished in 0.7127ms 304 image/png +2018-08-03 11:28:05.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:28:05.716 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:28:05.717 +03:00 [INF] Request finished in 0.7724ms 304 image/png +2018-08-03 11:28:05.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:28:05.724 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:28:05.725 +03:00 [INF] Request finished in 0.6854ms 304 image/png +2018-08-03 11:28:05.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:28:05.728 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:28:05.729 +03:00 [INF] Request finished in 2.1172ms 304 image/png +2018-08-03 11:28:05.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:28:05.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:28:05.734 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:28:05.734 +03:00 [INF] Request finished in 0.767ms 304 image/png +2018-08-03 11:28:05.735 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:28:05.735 +03:00 [INF] Request finished in 3.4149ms 304 image/png +2018-08-03 11:28:05.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:28:05.739 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:28:05.740 +03:00 [INF] Request finished in 0.6762ms 304 image/png +2018-08-03 11:28:05.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:28:05.746 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:28:05.746 +03:00 [INF] Request finished in 0.5624ms 304 image/png +2018-08-03 11:28:05.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:28:05.749 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:28:05.749 +03:00 [INF] Request finished in 0.4994ms 304 image/png +2018-08-03 11:28:05.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:28:05.757 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:28:05.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:28:05.758 +03:00 [INF] Request finished in 3.1098ms 304 image/png +2018-08-03 11:28:05.758 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:28:05.758 +03:00 [INF] Request finished in 0.607ms 304 image/png +2018-08-03 11:28:05.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:28:05.765 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:28:05.765 +03:00 [INF] Request finished in 0.9389ms 304 image/png +2018-08-03 11:28:05.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:28:05.773 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:28:05.773 +03:00 [INF] Request finished in 0.5816ms 304 image/png +2018-08-03 11:28:05.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:28:05.777 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:28:05.777 +03:00 [INF] Request finished in 1.1072ms 304 image/png +2018-08-03 11:28:05.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:28:05.780 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:28:05.780 +03:00 [INF] Request finished in 0.5573ms 304 image/png +2018-08-03 11:28:05.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:28:05.787 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:28:05.787 +03:00 [INF] Request finished in 3.0202ms 304 image/png +2018-08-03 11:28:05.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:28:05.789 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:28:05.791 +03:00 [INF] Request finished in 2.422ms 304 image/png +2018-08-03 11:28:05.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:28:05.798 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:28:05.798 +03:00 [INF] Request finished in 0.8727ms 304 image/png +2018-08-03 11:28:05.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:28:05.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:28:05.807 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:28:05.807 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:28:05.807 +03:00 [INF] Request finished in 2.6245ms 304 image/png +2018-08-03 11:28:05.807 +03:00 [INF] Request finished in 3.3323ms 304 image/png +2018-08-03 11:28:05.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:28:05.817 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:28:05.817 +03:00 [INF] Request finished in 0.7947ms 304 image/png +2018-08-03 11:28:05.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:28:05.820 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:28:05.820 +03:00 [INF] Request finished in 1.3736ms 304 image/png +2018-08-03 11:28:05.823 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:05.824 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:28:05.824 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11720000000000001ms. +2018-08-03 11:28:05.824 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:05.825 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4299000000000002ms +2018-08-03 11:28:05.825 +03:00 [INF] Request finished in 163.6718ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:05.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:28:05.826 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:28:05.826 +03:00 [INF] Request finished in 0.6525ms 304 image/png +2018-08-03 11:28:05.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:28:05.836 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:28:05.836 +03:00 [INF] Request finished in 2.6464ms 304 image/png +2018-08-03 11:28:05.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:28:05.839 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:28:05.839 +03:00 [INF] Request finished in 1.1966ms 304 image/png +2018-08-03 11:28:05.843 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:05.844 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:28:05.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:28:05.845 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:28:05.845 +03:00 [INF] Request finished in 0.5067ms 304 image/svg+xml +2018-08-03 11:28:05.845 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.846 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:28:05.846 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.846 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:28:05.847 +03:00 [INF] Request finished in 0.5965ms 304 image/jpeg +2018-08-03 11:28:05.847 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.847 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.848 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.849 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.850 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.850 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.853 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.854 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.855 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.855 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.856 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.857 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.857 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.858 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.858 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:05.861 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.2205ms. +2018-08-03 11:28:05.861 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:05.861 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.7519ms +2018-08-03 11:28:05.861 +03:00 [INF] Request finished in 201.5582ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:52.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:28:52.067 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:28:52.067 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:28:52.411 +03:00 [INF] Executed action /Index in 343.7663ms +2018-08-03 11:28:52.411 +03:00 [INF] Request finished in 372.514ms 200 text/html; charset=utf-8 +2018-08-03 11:28:52.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:28:52.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:28:52.443 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:28:52.443 +03:00 [INF] Request finished in 0.9356ms 304 text/css +2018-08-03 11:28:52.443 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:28:52.444 +03:00 [INF] Request finished in 0.7339ms 304 text/css +2018-08-03 11:28:52.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:28:52.446 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:28:52.447 +03:00 [INF] Request finished in 0.697ms 304 text/css +2018-08-03 11:28:52.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:28:52.451 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:28:52.451 +03:00 [INF] Request finished in 0.6142ms 304 text/css +2018-08-03 11:28:52.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:28:52.462 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:28:52.463 +03:00 [INF] Request finished in 1.4611ms 304 text/css +2018-08-03 11:28:52.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:28:52.463 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:28:52.465 +03:00 [INF] Request finished in 1.9268ms 304 text/css +2018-08-03 11:28:52.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:28:52.467 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:28:52.467 +03:00 [INF] Request finished in 1.3783ms 304 text/css +2018-08-03 11:28:52.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:28:52.471 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:28:52.472 +03:00 [INF] Request finished in 2.799ms 304 text/css +2018-08-03 11:28:52.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:28:52.475 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:28:52.475 +03:00 [INF] Request finished in 0.6382ms 304 application/javascript +2018-08-03 11:28:52.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:28:52.485 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:28:52.485 +03:00 [INF] Request finished in 0.6477ms 304 application/javascript +2018-08-03 11:28:52.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:28:52.493 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:28:52.493 +03:00 [INF] Request finished in 1.0149ms 304 application/javascript +2018-08-03 11:28:52.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:28:52.502 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:28:52.502 +03:00 [INF] Request finished in 0.7159ms 304 application/javascript +2018-08-03 11:28:52.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:28:52.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:28:52.503 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:28:52.503 +03:00 [INF] Request finished in 0.4544ms 304 application/javascript +2018-08-03 11:28:52.503 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:28:52.503 +03:00 [INF] Request finished in 0.4207ms 304 application/javascript +2018-08-03 11:28:52.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:28:52.507 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:28:52.508 +03:00 [INF] Request finished in 0.7689ms 304 application/javascript +2018-08-03 11:28:52.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:28:52.516 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:28:52.517 +03:00 [INF] Request finished in 1.5056ms 304 application/javascript +2018-08-03 11:28:52.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:28:52.521 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:28:52.521 +03:00 [INF] Request finished in 0.7603ms 304 application/javascript +2018-08-03 11:28:52.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:28:52.526 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:28:52.526 +03:00 [INF] Request finished in 0.6214ms 304 application/javascript +2018-08-03 11:28:52.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:28:52.530 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:28:52.530 +03:00 [INF] Request finished in 0.8197ms 304 application/javascript +2018-08-03 11:28:52.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:28:52.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:28:52.540 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:28:52.540 +03:00 [INF] Request finished in 0.7325ms 304 application/javascript +2018-08-03 11:28:52.540 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:28:52.540 +03:00 [INF] Request finished in 1.0927ms 304 application/javascript +2018-08-03 11:28:52.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:28:52.549 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:28:52.550 +03:00 [INF] Request finished in 1.6001ms 304 application/javascript +2018-08-03 11:28:52.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:28:52.553 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:28:52.553 +03:00 [INF] Request finished in 3.2212ms 304 application/javascript +2018-08-03 11:28:52.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:28:52.563 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:28:52.563 +03:00 [INF] Request finished in 1.9507ms 304 application/javascript +2018-08-03 11:28:52.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:28:52.565 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:28:52.565 +03:00 [INF] Request finished in 0.9429ms 304 image/svg+xml +2018-08-03 11:28:52.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:28:52.573 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:28:52.574 +03:00 [INF] Request finished in 1.229ms 304 image/png +2018-08-03 11:28:52.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:28:52.578 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:28:52.579 +03:00 [INF] Request finished in 1.3418ms 304 image/png +2018-08-03 11:28:52.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:28:52.583 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:28:52.583 +03:00 [INF] Request finished in 0.9384ms 304 image/png +2018-08-03 11:28:52.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:28:52.585 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:28:52.586 +03:00 [INF] Request finished in 1.9726ms 304 image/png +2018-08-03 11:28:52.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:28:52.595 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:28:52.595 +03:00 [INF] Request finished in 1.1559ms 304 image/png +2018-08-03 11:28:52.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:28:52.601 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:28:52.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:28:52.601 +03:00 [INF] Request finished in 2.6862ms 304 image/png +2018-08-03 11:28:52.601 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:28:52.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:28:52.602 +03:00 [INF] Request finished in 1.0486ms 304 image/png +2018-08-03 11:28:52.602 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:28:52.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:28:52.623 +03:00 [INF] Request finished in 21.2886ms 304 image/png +2018-08-03 11:28:52.623 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:28:52.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:28:52.624 +03:00 [INF] Request finished in 5.288ms 304 image/png +2018-08-03 11:28:52.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:28:52.624 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:28:52.624 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:28:52.624 +03:00 [INF] Request finished in 0.3964ms 304 image/png +2018-08-03 11:28:52.624 +03:00 [INF] Request finished in 0.6188ms 304 image/png +2018-08-03 11:28:52.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:28:52.625 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:28:52.625 +03:00 [INF] Request finished in 0.5258ms 304 image/png +2018-08-03 11:28:52.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:28:52.628 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:28:52.628 +03:00 [INF] Request finished in 0.6639ms 304 image/png +2018-08-03 11:28:52.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:28:52.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:28:52.637 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:28:52.637 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:28:52.638 +03:00 [INF] Request finished in 1.4186ms 304 image/png +2018-08-03 11:28:52.638 +03:00 [INF] Request finished in 1.0077ms 304 image/png +2018-08-03 11:28:52.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:28:52.642 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:28:52.642 +03:00 [INF] Request finished in 0.5459ms 304 image/png +2018-08-03 11:28:52.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:28:52.645 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:28:52.645 +03:00 [INF] Request finished in 0.7032ms 304 image/png +2018-08-03 11:28:52.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:28:52.648 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:28:52.649 +03:00 [INF] Request finished in 3.1069ms 304 image/png +2018-08-03 11:28:52.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:28:52.656 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:28:52.656 +03:00 [INF] Request finished in 1.5724ms 304 image/png +2018-08-03 11:28:52.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:28:52.657 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:28:52.658 +03:00 [INF] Request finished in 1.3123ms 304 image/png +2018-08-03 11:28:52.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:28:52.658 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:28:52.659 +03:00 [INF] Request finished in 0.7586ms 304 image/png +2018-08-03 11:28:52.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:28:52.671 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:28:52.671 +03:00 [INF] Request finished in 0.9705ms 304 image/png +2018-08-03 11:28:52.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:28:52.677 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:28:52.677 +03:00 [INF] Request finished in 2.2506ms 304 image/png +2018-08-03 11:28:52.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:28:52.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:28:52.680 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:28:52.680 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:28:52.680 +03:00 [INF] Request finished in 1.3788ms 304 image/png +2018-08-03 11:28:52.680 +03:00 [INF] Request finished in 0.3806ms 304 image/png +2018-08-03 11:28:52.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:28:52.685 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:28:52.685 +03:00 [INF] Request finished in 0.9416ms 304 image/png +2018-08-03 11:28:52.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:28:52.690 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:28:52.690 +03:00 [INF] Request finished in 0.8666ms 304 image/png +2018-08-03 11:28:52.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:28:52.696 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:28:52.696 +03:00 [INF] Request finished in 0.9927ms 304 image/png +2018-08-03 11:28:52.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:28:52.700 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:28:52.700 +03:00 [INF] Request finished in 0.4754ms 304 image/png +2018-08-03 11:28:52.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:28:52.709 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:28:52.709 +03:00 [INF] Request finished in 1.734ms 304 image/png +2018-08-03 11:28:52.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:28:52.710 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:28:52.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:28:52.710 +03:00 [INF] Request finished in 0.5979ms 304 image/png +2018-08-03 11:28:52.710 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:28:52.711 +03:00 [INF] Request finished in 0.4428ms 304 image/png +2018-08-03 11:28:52.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:28:52.717 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:28:52.718 +03:00 [INF] Request finished in 1.2919ms 304 image/png +2018-08-03 11:28:52.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:28:52.729 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:28:52.730 +03:00 [INF] Request finished in 3.8496ms 304 image/png +2018-08-03 11:28:52.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:28:52.732 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:28:52.733 +03:00 [INF] Request finished in 1.5564ms 304 image/png +2018-08-03 11:28:52.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:28:52.739 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:28:52.740 +03:00 [INF] Request finished in 1.6774ms 304 image/svg+xml +2018-08-03 11:28:52.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:28:52.744 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:28:52.744 +03:00 [INF] Request finished in 1.4003ms 304 application/javascript +2018-08-03 11:28:52.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:28:52.750 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:28:52.750 +03:00 [INF] Request finished in 1.081ms 304 application/javascript +2018-08-03 11:28:52.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:28:52.754 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:28:52.754 +03:00 [INF] Request finished in 0.7092ms 304 application/javascript +2018-08-03 11:28:52.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:28:52.758 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:28:52.758 +03:00 [INF] Request finished in 0.6934ms 304 application/javascript +2018-08-03 11:28:52.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:28:52.760 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:28:52.760 +03:00 [INF] Request finished in 0.8356ms 304 application/javascript +2018-08-03 11:28:52.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:28:52.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:28:52.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:28:52.772 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:28:52.772 +03:00 [INF] Request finished in 0.7529ms 304 application/javascript +2018-08-03 11:28:52.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:28:52.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:28:52.780 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:28:52.780 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:28:52.780 +03:00 [INF] Request finished in 0.6033ms 304 application/javascript +2018-08-03 11:28:52.780 +03:00 [INF] Request finished in 0.7051ms 304 image/jpeg +2018-08-03 11:28:52.852 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:52.853 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:28:52.853 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1346ms. +2018-08-03 11:28:52.853 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:52.853 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7476ms +2018-08-03 11:28:52.854 +03:00 [INF] Request finished in 85.5831ms 200 text/plain; charset=utf-8 +2018-08-03 11:28:52.854 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:28:52.855 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:28:52.856 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.857 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.857 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.858 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.859 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.859 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.860 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.861 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.862 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.863 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.865 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.868 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.870 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.873 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.874 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.875 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.877 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.878 +03:00 [INF] Authorization was successful. +2018-08-03 11:28:52.881 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 25.7998ms. +2018-08-03 11:28:52.881 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:28:52.882 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 27.3824ms +2018-08-03 11:28:52.882 +03:00 [INF] Request finished in 116.3985ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:08.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:29:08.069 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:29:08.069 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:29:08.451 +03:00 [INF] Executed action /Index in 381.4714ms +2018-08-03 11:29:08.451 +03:00 [INF] Request finished in 413.8607ms 200 text/html; charset=utf-8 +2018-08-03 11:29:08.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:29:08.490 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:29:08.491 +03:00 [INF] Request finished in 2.1839ms 304 text/css +2018-08-03 11:29:08.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:29:08.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:29:08.495 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:29:08.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:29:08.495 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:29:08.495 +03:00 [INF] Request finished in 0.9141ms 304 text/css +2018-08-03 11:29:08.495 +03:00 [INF] Request finished in 0.7146ms 304 text/css +2018-08-03 11:29:08.496 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:29:08.496 +03:00 [INF] Request finished in 0.3771ms 304 text/css +2018-08-03 11:29:08.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:29:08.511 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:29:08.511 +03:00 [INF] Request finished in 0.7192ms 304 text/css +2018-08-03 11:29:08.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:29:08.512 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:29:08.512 +03:00 [INF] Request finished in 1.1232ms 304 text/css +2018-08-03 11:29:08.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:29:08.513 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:29:08.513 +03:00 [INF] Request finished in 0.5552ms 304 text/css +2018-08-03 11:29:08.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:29:08.526 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:29:08.526 +03:00 [INF] Request finished in 1.2855ms 304 text/css +2018-08-03 11:29:08.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:29:08.528 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:29:08.528 +03:00 [INF] Request finished in 0.5988ms 304 application/javascript +2018-08-03 11:29:08.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:29:08.536 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:29:08.536 +03:00 [INF] Request finished in 0.5698ms 304 application/javascript +2018-08-03 11:29:08.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:29:08.541 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:29:08.541 +03:00 [INF] Request finished in 0.6438ms 304 application/javascript +2018-08-03 11:29:08.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:29:08.543 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:29:08.543 +03:00 [INF] Request finished in 0.6334ms 304 application/javascript +2018-08-03 11:29:08.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:29:08.546 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:29:08.546 +03:00 [INF] Request finished in 0.8535ms 304 application/javascript +2018-08-03 11:29:08.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:29:08.564 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:29:08.565 +03:00 [INF] Request finished in 1.1859ms 304 application/javascript +2018-08-03 11:29:08.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:29:08.566 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:29:08.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:29:08.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:29:08.566 +03:00 [INF] Request finished in 0.9926ms 304 application/javascript +2018-08-03 11:29:08.567 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:29:08.567 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:29:08.567 +03:00 [INF] Request finished in 1.1086ms 304 application/javascript +2018-08-03 11:29:08.567 +03:00 [INF] Request finished in 1.0139ms 304 application/javascript +2018-08-03 11:29:08.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:29:08.572 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:29:08.572 +03:00 [INF] Request finished in 0.6099ms 304 application/javascript +2018-08-03 11:29:08.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:29:08.578 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:29:08.578 +03:00 [INF] Request finished in 0.7694ms 304 application/javascript +2018-08-03 11:29:08.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:29:08.580 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:29:08.580 +03:00 [INF] Request finished in 0.7879ms 304 application/javascript +2018-08-03 11:29:08.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:29:08.590 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:29:08.590 +03:00 [INF] Request finished in 0.7133ms 304 application/javascript +2018-08-03 11:29:08.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:29:08.599 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:29:08.600 +03:00 [INF] Request finished in 1.5324ms 304 application/javascript +2018-08-03 11:29:08.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:29:08.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:29:08.601 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:29:08.601 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:29:08.601 +03:00 [INF] Request finished in 1.4205ms 304 application/javascript +2018-08-03 11:29:08.601 +03:00 [INF] Request finished in 1.0785ms 304 application/javascript +2018-08-03 11:29:08.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:29:08.604 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:29:08.604 +03:00 [INF] Request finished in 1.6843ms 304 application/javascript +2018-08-03 11:29:08.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:29:08.612 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:29:08.613 +03:00 [INF] Request finished in 0.9342ms 304 application/javascript +2018-08-03 11:29:08.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:29:08.613 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:29:08.613 +03:00 [INF] Request finished in 0.7492ms 304 application/javascript +2018-08-03 11:29:08.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:29:08.616 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:29:08.616 +03:00 [INF] Request finished in 1.1837ms 304 application/javascript +2018-08-03 11:29:08.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:29:08.622 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:29:08.622 +03:00 [INF] Request finished in 0.7947ms 304 application/javascript +2018-08-03 11:29:08.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:29:08.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:29:08.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:29:08.640 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:29:08.640 +03:00 [INF] Request finished in 2.0806ms 304 application/javascript +2018-08-03 11:29:08.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:29:08.643 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:29:08.643 +03:00 [INF] Request finished in 0.7134ms 304 application/javascript +2018-08-03 11:29:08.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:29:08.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:29:08.656 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:29:08.656 +03:00 [INF] Request finished in 0.5373ms 304 image/png +2018-08-03 11:29:08.656 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:29:08.656 +03:00 [INF] Request finished in 0.8655ms 304 image/svg+xml +2018-08-03 11:29:08.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:29:08.657 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:29:08.657 +03:00 [INF] Request finished in 0.6166ms 304 image/png +2018-08-03 11:29:08.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:29:08.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:29:08.662 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:29:08.663 +03:00 [INF] Request finished in 0.8127ms 304 image/png +2018-08-03 11:29:08.663 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:29:08.663 +03:00 [INF] Request finished in 3.2086ms 304 image/png +2018-08-03 11:29:08.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:29:08.670 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:29:08.670 +03:00 [INF] Request finished in 0.5749ms 304 image/png +2018-08-03 11:29:08.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:29:08.687 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:29:08.687 +03:00 [INF] Request finished in 0.9895ms 304 image/png +2018-08-03 11:29:08.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:29:08.688 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:29:08.688 +03:00 [INF] Request finished in 0.7518ms 304 image/png +2018-08-03 11:29:08.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:29:08.689 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:29:08.689 +03:00 [INF] Request finished in 1.1442ms 304 image/png +2018-08-03 11:29:08.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:29:08.695 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:29:08.695 +03:00 [INF] Request finished in 0.627ms 304 image/png +2018-08-03 11:29:08.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:29:08.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:29:08.702 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:29:08.702 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:29:08.702 +03:00 [INF] Request finished in 0.66ms 304 image/png +2018-08-03 11:29:08.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:29:08.703 +03:00 [INF] Request finished in 1.3642ms 304 image/png +2018-08-03 11:29:08.703 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:29:08.703 +03:00 [INF] Request finished in 0.6627ms 304 image/png +2018-08-03 11:29:08.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:29:08.708 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:29:08.709 +03:00 [INF] Request finished in 0.5965ms 304 image/png +2018-08-03 11:29:08.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:29:08.715 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:29:08.716 +03:00 [INF] Request finished in 1.0329ms 304 image/png +2018-08-03 11:29:08.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:29:08.718 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:29:08.718 +03:00 [INF] Request finished in 0.937ms 304 image/png +2018-08-03 11:29:08.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:29:08.721 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:29:08.721 +03:00 [INF] Request finished in 1.1219ms 304 image/png +2018-08-03 11:29:08.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:29:08.724 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:29:08.724 +03:00 [INF] Request finished in 0.5433ms 304 image/png +2018-08-03 11:29:08.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:29:08.729 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:29:08.729 +03:00 [INF] Request finished in 0.6237ms 304 image/png +2018-08-03 11:29:08.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:29:08.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:29:08.735 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:29:08.735 +03:00 [INF] Request finished in 0.5417ms 304 image/png +2018-08-03 11:29:08.735 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:29:08.735 +03:00 [INF] Request finished in 0.6331ms 304 image/png +2018-08-03 11:29:08.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:29:08.737 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:29:08.737 +03:00 [INF] Request finished in 0.6114ms 304 image/png +2018-08-03 11:29:08.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:29:08.745 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:29:08.745 +03:00 [INF] Request finished in 0.5197ms 304 image/png +2018-08-03 11:29:08.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:29:08.747 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:29:08.748 +03:00 [INF] Request finished in 2.1897ms 304 image/png +2018-08-03 11:29:08.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:29:08.749 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:29:08.749 +03:00 [INF] Request finished in 0.9465ms 304 image/png +2018-08-03 11:29:08.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:29:08.752 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:29:08.752 +03:00 [INF] Request finished in 0.7709ms 304 image/png +2018-08-03 11:29:08.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:29:08.757 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:29:08.757 +03:00 [INF] Request finished in 0.5513ms 304 image/png +2018-08-03 11:29:08.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:29:08.759 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:29:08.760 +03:00 [INF] Request finished in 1.8553ms 304 image/png +2018-08-03 11:29:08.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:29:08.765 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:29:08.765 +03:00 [INF] Request finished in 2.8413ms 304 image/png +2018-08-03 11:29:08.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:29:08.768 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:29:08.769 +03:00 [INF] Request finished in 0.7726ms 304 image/png +2018-08-03 11:29:08.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:29:08.774 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:29:08.775 +03:00 [INF] Request finished in 0.9028ms 304 image/png +2018-08-03 11:29:08.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:29:08.779 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:29:08.779 +03:00 [INF] Request finished in 0.7821ms 304 image/png +2018-08-03 11:29:08.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:29:08.784 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:29:08.784 +03:00 [INF] Request finished in 1.6942ms 304 image/png +2018-08-03 11:29:08.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:29:08.785 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:29:08.785 +03:00 [INF] Request finished in 0.5764ms 304 image/png +2018-08-03 11:29:08.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:29:08.790 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:29:08.790 +03:00 [INF] Request finished in 0.6372ms 304 image/png +2018-08-03 11:29:08.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:29:08.794 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:29:08.794 +03:00 [INF] Request finished in 1.8674ms 304 image/png +2018-08-03 11:29:08.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:29:08.801 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:29:08.802 +03:00 [INF] Request finished in 0.5662ms 304 image/svg+xml +2018-08-03 11:29:08.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:29:08.803 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:29:08.803 +03:00 [INF] Request finished in 0.7511ms 304 image/jpeg +2018-08-03 11:29:08.806 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:08.808 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:29:08.808 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10500000000000001ms. +2018-08-03 11:29:08.808 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:08.808 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1142000000000003ms +2018-08-03 11:29:08.808 +03:00 [INF] Request finished in 174.44ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:08.810 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:08.810 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:29:08.811 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.812 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.813 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.813 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.814 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.815 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.816 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.817 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.818 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.818 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.819 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.819 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.820 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.820 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.820 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.821 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.821 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.821 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:08.823 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.3512ms. +2018-08-03 11:29:08.823 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:08.823 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.546700000000001ms +2018-08-03 11:29:08.823 +03:00 [INF] Request finished in 197.2477ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:09.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:29:09.476 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:29:09.478 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:29:09.488 +03:00 [INF] Executed action /Documents/Index in 11.1899ms +2018-08-03 11:29:09.488 +03:00 [INF] Request finished in 46.943ms 200 text/html; charset=utf-8 +2018-08-03 11:29:09.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:29:09.522 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:29:09.522 +03:00 [INF] Request finished in 2.214ms 304 text/css +2018-08-03 11:29:09.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:29:09.523 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:29:09.523 +03:00 [INF] Request finished in 0.5075ms 304 text/css +2018-08-03 11:29:09.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:29:09.524 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:29:09.524 +03:00 [INF] Request finished in 0.4816ms 304 text/css +2018-08-03 11:29:09.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:29:09.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:29:09.526 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:29:09.526 +03:00 [INF] Request finished in 1.1446ms 304 text/css +2018-08-03 11:29:09.526 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:29:09.527 +03:00 [INF] Request finished in 2.5509ms 304 text/css +2018-08-03 11:29:09.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:29:09.537 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:29:09.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:29:09.537 +03:00 [INF] Request finished in 1.3771ms 304 text/css +2018-08-03 11:29:09.539 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:29:09.539 +03:00 [INF] Request finished in 2.9356ms 304 text/css +2018-08-03 11:29:09.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:29:09.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:29:09.543 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:29:09.543 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:29:09.543 +03:00 [INF] Request finished in 0.5466ms 304 application/javascript +2018-08-03 11:29:09.543 +03:00 [INF] Request finished in 0.5631ms 304 text/css +2018-08-03 11:29:09.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:29:09.552 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:29:09.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:29:09.553 +03:00 [INF] Request finished in 2.07ms 304 application/javascript +2018-08-03 11:29:09.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:29:09.553 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:29:09.553 +03:00 [INF] Request finished in 0.5123ms 304 application/javascript +2018-08-03 11:29:09.553 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:29:09.553 +03:00 [INF] Request finished in 0.4919ms 304 application/javascript +2018-08-03 11:29:09.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:29:09.562 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:29:09.562 +03:00 [INF] Request finished in 0.8704ms 304 application/javascript +2018-08-03 11:29:09.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:29:09.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:29:09.568 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:29:09.568 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:29:09.569 +03:00 [INF] Request finished in 0.3967ms 304 application/javascript +2018-08-03 11:29:09.569 +03:00 [INF] Request finished in 0.6658ms 304 application/javascript +2018-08-03 11:29:09.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:29:09.569 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:29:09.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:29:09.569 +03:00 [INF] Request finished in 0.5253ms 304 application/javascript +2018-08-03 11:29:09.570 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:29:09.571 +03:00 [INF] Request finished in 1.2005ms 304 application/javascript +2018-08-03 11:29:09.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:29:09.581 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:29:09.581 +03:00 [INF] Request finished in 0.6444ms 304 application/javascript +2018-08-03 11:29:09.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:29:09.587 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:29:09.587 +03:00 [INF] Request finished in 2.7593ms 304 application/javascript +2018-08-03 11:29:09.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:29:09.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:29:09.591 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:29:09.591 +03:00 [INF] Request finished in 0.9306ms 304 application/javascript +2018-08-03 11:29:09.591 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:29:09.592 +03:00 [INF] Request finished in 2.2614ms 304 application/javascript +2018-08-03 11:29:09.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:29:09.596 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:29:09.596 +03:00 [INF] Request finished in 0.7812ms 304 application/javascript +2018-08-03 11:29:09.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:29:09.601 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:29:09.601 +03:00 [INF] Request finished in 3.269ms 304 application/javascript +2018-08-03 11:29:09.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:29:09.603 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:29:09.603 +03:00 [INF] Request finished in 0.7592ms 304 image/svg+xml +2018-08-03 11:29:09.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:29:09.608 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:29:09.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:29:09.609 +03:00 [INF] Request finished in 0.8563ms 304 image/png +2018-08-03 11:29:09.609 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:29:09.609 +03:00 [INF] Request finished in 0.4802ms 304 image/svg+xml +2018-08-03 11:29:09.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:29:09.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:29:09.619 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:29:09.618 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:29:09.620 +03:00 [INF] Request finished in 1.9727ms 304 application/javascript +2018-08-03 11:29:09.620 +03:00 [INF] Request finished in 3.3449ms 304 application/javascript +2018-08-03 11:29:09.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:29:09.631 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:29:09.632 +03:00 [INF] Request finished in 2.3379ms 304 application/javascript +2018-08-03 11:29:09.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:29:09.634 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:29:09.634 +03:00 [INF] Request finished in 1.0058ms 304 application/javascript +2018-08-03 11:29:09.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:29:09.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:29:09.643 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:29:09.643 +03:00 [INF] Request finished in 1.0224ms 304 application/javascript +2018-08-03 11:29:09.643 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:29:09.643 +03:00 [INF] Request finished in 1.6297ms 304 application/javascript +2018-08-03 11:29:09.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:29:09.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:29:09.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:29:09.662 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:29:09.662 +03:00 [INF] Request finished in 0.5448ms 304 application/javascript +2018-08-03 11:29:09.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:29:09.663 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:29:09.663 +03:00 [INF] Request finished in 0.3832ms 304 application/javascript +2018-08-03 11:29:09.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:29:09.663 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:29:09.664 +03:00 [INF] Request finished in 0.4469ms 304 image/jpeg +2018-08-03 11:29:09.696 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:09.696 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:29:09.697 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.698 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:09.698 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.699 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:29:09.699 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.699 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1771ms. +2018-08-03 11:29:09.699 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:09.699 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7419ms +2018-08-03 11:29:09.700 +03:00 [INF] Request finished in 43.0497ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:09.700 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.701 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.702 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.702 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.703 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.704 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.704 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.705 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.706 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.706 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.707 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.707 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.708 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.709 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.709 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:09.711 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.6751ms. +2018-08-03 11:29:09.711 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:09.712 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.799600000000002ms +2018-08-03 11:29:09.712 +03:00 [INF] Request finished in 64.1138ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:17.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:29:17.582 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:29:17.584 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:29:18.027 +03:00 [INF] Executed action /Documents/Index in 444.53470000000004ms +2018-08-03 11:29:18.027 +03:00 [INF] Request finished in 480.4172ms 200 text/html; charset=utf-8 +2018-08-03 11:29:18.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:29:18.055 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:29:18.055 +03:00 [INF] Request finished in 0.554ms 304 text/css +2018-08-03 11:29:18.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:29:18.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:29:18.056 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:29:18.056 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:29:18.056 +03:00 [INF] Request finished in 0.5496ms 304 text/css +2018-08-03 11:29:18.056 +03:00 [INF] Request finished in 0.3866ms 304 text/css +2018-08-03 11:29:18.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:29:18.065 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:29:18.065 +03:00 [INF] Request finished in 6.4361ms 304 text/css +2018-08-03 11:29:18.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:29:18.069 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:29:18.069 +03:00 [INF] Request finished in 2.0643ms 304 text/css +2018-08-03 11:29:18.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:29:18.071 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:29:18.072 +03:00 [INF] Request finished in 0.7516ms 304 text/css +2018-08-03 11:29:18.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:29:18.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:29:18.073 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:29:18.074 +03:00 [INF] Request finished in 1.684ms 304 text/css +2018-08-03 11:29:18.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:29:18.074 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:29:18.074 +03:00 [INF] Request finished in 0.5062ms 304 text/css +2018-08-03 11:29:18.075 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:29:18.075 +03:00 [INF] Request finished in 1.9997ms 304 application/javascript +2018-08-03 11:29:18.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:29:18.085 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:29:18.086 +03:00 [INF] Request finished in 0.7097ms 304 application/javascript +2018-08-03 11:29:18.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:29:18.093 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:29:18.093 +03:00 [INF] Request finished in 0.6186ms 304 application/javascript +2018-08-03 11:29:18.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:29:18.095 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:29:18.095 +03:00 [INF] Request finished in 0.6558ms 304 image/svg+xml +2018-08-03 11:29:18.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:29:18.099 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:29:18.100 +03:00 [INF] Request finished in 0.7615ms 304 image/png +2018-08-03 11:29:18.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:29:18.103 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:29:18.104 +03:00 [INF] Request finished in 2.9256ms 304 image/svg+xml +2018-08-03 11:29:18.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:29:18.108 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:29:18.108 +03:00 [INF] Request finished in 1.8656ms 304 application/javascript +2018-08-03 11:29:18.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:29:18.111 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:29:18.111 +03:00 [INF] Request finished in 1.131ms 304 application/javascript +2018-08-03 11:29:18.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:29:18.119 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:29:18.119 +03:00 [INF] Request finished in 0.5951ms 304 application/javascript +2018-08-03 11:29:18.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:29:18.120 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:29:18.120 +03:00 [INF] Request finished in 0.4929ms 304 application/javascript +2018-08-03 11:29:18.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:29:18.123 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:29:18.124 +03:00 [INF] Request finished in 1.0745ms 304 application/javascript +2018-08-03 11:29:18.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:29:18.131 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:29:18.131 +03:00 [INF] Request finished in 0.7141ms 304 application/javascript +2018-08-03 11:29:18.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:29:18.138 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:29:18.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:29:18.139 +03:00 [INF] Request finished in 1.2462ms 304 application/javascript +2018-08-03 11:29:18.139 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:29:18.139 +03:00 [INF] Request finished in 0.6016ms 304 application/javascript +2018-08-03 11:29:18.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:29:18.152 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:29:18.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:29:18.152 +03:00 [INF] Request finished in 2.244ms 304 application/javascript +2018-08-03 11:29:18.153 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:29:18.153 +03:00 [INF] Request finished in 0.5767ms 304 application/javascript +2018-08-03 11:29:18.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:29:18.156 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:29:18.157 +03:00 [INF] Request finished in 2.1339ms 304 application/javascript +2018-08-03 11:29:18.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:29:18.169 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:29:18.170 +03:00 [INF] Request finished in 1.0471ms 304 application/javascript +2018-08-03 11:29:18.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:29:18.178 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:29:18.178 +03:00 [INF] Request finished in 1.8212ms 304 application/javascript +2018-08-03 11:29:18.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:29:18.179 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:29:18.180 +03:00 [INF] Request finished in 1.3686ms 304 application/javascript +2018-08-03 11:29:18.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:29:18.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:29:18.188 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:29:18.188 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:29:18.189 +03:00 [INF] Request finished in 0.7133ms 304 application/javascript +2018-08-03 11:29:18.190 +03:00 [INF] Request finished in 1.6534ms 304 application/javascript +2018-08-03 11:29:18.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:29:18.193 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:29:18.193 +03:00 [INF] Request finished in 1.2161ms 304 application/javascript +2018-08-03 11:29:18.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:29:18.195 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:29:18.195 +03:00 [INF] Request finished in 0.9757ms 304 application/javascript +2018-08-03 11:29:18.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:29:18.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:29:18.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:29:18.205 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:29:18.205 +03:00 [INF] Request finished in 0.5675ms 304 application/javascript +2018-08-03 11:29:18.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:29:18.212 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:29:18.212 +03:00 [INF] Request finished in 0.6392ms 304 application/javascript +2018-08-03 11:29:18.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:29:18.216 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:29:18.216 +03:00 [INF] Request finished in 0.5974ms 304 image/jpeg +2018-08-03 11:29:18.256 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:18.257 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:18.257 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:29:18.258 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.260 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:29:18.260 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.260 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3015ms. +2018-08-03 11:29:18.261 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:18.261 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.7551ms +2018-08-03 11:29:18.261 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.262 +03:00 [INF] Request finished in 59.6389ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:18.262 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.264 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.266 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.268 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.269 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.270 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.271 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.272 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.273 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.273 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.274 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.275 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.276 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.277 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.278 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:18.282 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 24.250600000000002ms. +2018-08-03 11:29:18.282 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:18.282 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 25.982300000000002ms +2018-08-03 11:29:18.282 +03:00 [INF] Request finished in 85.0257ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:19.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:29:19.209 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:29:19.210 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:29:19.219 +03:00 [INF] Executed action /Index in 9.469100000000001ms +2018-08-03 11:29:19.219 +03:00 [INF] Request finished in 45.9829ms 200 text/html; charset=utf-8 +2018-08-03 11:29:19.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:29:19.285 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:29:19.286 +03:00 [INF] Request finished in 4.8012ms 304 text/css +2018-08-03 11:29:19.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:29:19.290 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:29:19.291 +03:00 [INF] Request finished in 1.5926ms 304 text/css +2018-08-03 11:29:19.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:29:19.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:29:19.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:29:19.296 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:29:19.296 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:29:19.296 +03:00 [INF] Request finished in 0.6733ms 304 text/css +2018-08-03 11:29:19.296 +03:00 [INF] Request finished in 0.542ms 304 text/css +2018-08-03 11:29:19.296 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:29:19.296 +03:00 [INF] Request finished in 0.7223ms 304 text/css +2018-08-03 11:29:19.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:29:19.298 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:29:19.298 +03:00 [INF] Request finished in 0.587ms 304 text/css +2018-08-03 11:29:19.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:29:19.303 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:29:19.303 +03:00 [INF] Request finished in 0.614ms 304 text/css +2018-08-03 11:29:19.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:29:19.308 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:29:19.308 +03:00 [INF] Request finished in 0.743ms 304 application/javascript +2018-08-03 11:29:19.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:29:19.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:29:19.312 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:29:19.312 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:29:19.312 +03:00 [INF] Request finished in 0.5498ms 304 application/javascript +2018-08-03 11:29:19.312 +03:00 [INF] Request finished in 0.7068ms 304 text/css +2018-08-03 11:29:19.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:29:19.313 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:29:19.313 +03:00 [INF] Request finished in 0.6261ms 304 application/javascript +2018-08-03 11:29:19.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:29:19.318 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:29:19.319 +03:00 [INF] Request finished in 2.5417ms 304 application/javascript +2018-08-03 11:29:19.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:29:19.331 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:29:19.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:29:19.331 +03:00 [INF] Request finished in 0.8171ms 304 application/javascript +2018-08-03 11:29:19.331 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:29:19.331 +03:00 [INF] Request finished in 0.4764ms 304 application/javascript +2018-08-03 11:29:19.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:29:19.332 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:29:19.332 +03:00 [INF] Request finished in 0.6448ms 304 application/javascript +2018-08-03 11:29:19.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:29:19.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:29:19.348 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:29:19.348 +03:00 [INF] Request finished in 2.0427ms 304 application/javascript +2018-08-03 11:29:19.348 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:29:19.348 +03:00 [INF] Request finished in 0.4795ms 304 application/javascript +2018-08-03 11:29:19.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:29:19.349 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:29:19.349 +03:00 [INF] Request finished in 0.6359ms 304 application/javascript +2018-08-03 11:29:19.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:29:19.366 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:29:19.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:29:19.366 +03:00 [INF] Request finished in 0.6041ms 304 application/javascript +2018-08-03 11:29:19.368 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:29:19.368 +03:00 [INF] Request finished in 2.2053ms 304 application/javascript +2018-08-03 11:29:19.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:29:19.369 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:29:19.369 +03:00 [INF] Request finished in 0.5424ms 304 application/javascript +2018-08-03 11:29:19.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:29:19.373 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:29:19.373 +03:00 [INF] Request finished in 0.6677ms 304 application/javascript +2018-08-03 11:29:19.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:29:19.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:29:19.378 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:29:19.378 +03:00 [INF] Request finished in 0.915ms 304 application/javascript +2018-08-03 11:29:19.378 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:29:19.379 +03:00 [INF] Request finished in 1.8055ms 304 application/javascript +2018-08-03 11:29:19.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:29:19.383 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:29:19.383 +03:00 [INF] Request finished in 2.2755ms 304 application/javascript +2018-08-03 11:29:19.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:29:19.384 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:29:19.385 +03:00 [INF] Request finished in 1.6848ms 304 application/javascript +2018-08-03 11:29:19.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:29:19.386 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:29:19.386 +03:00 [INF] Request finished in 0.7848ms 304 application/javascript +2018-08-03 11:29:19.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:29:19.394 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:29:19.395 +03:00 [INF] Request finished in 0.7308ms 304 application/javascript +2018-08-03 11:29:19.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:29:19.397 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:29:19.397 +03:00 [INF] Request finished in 2.2593ms 304 application/javascript +2018-08-03 11:29:19.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:29:19.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:29:19.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:29:19.408 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:29:19.408 +03:00 [INF] Request finished in 0.5092ms 304 application/javascript +2018-08-03 11:29:19.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:29:19.417 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:29:19.417 +03:00 [INF] Request finished in 0.8751ms 304 application/javascript +2018-08-03 11:29:19.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:29:19.425 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:29:19.425 +03:00 [INF] Request finished in 0.7435ms 304 image/svg+xml +2018-08-03 11:29:19.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:29:19.427 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:29:19.427 +03:00 [INF] Request finished in 0.6726ms 304 image/png +2018-08-03 11:29:19.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:29:19.435 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:29:19.435 +03:00 [INF] Request finished in 2.4955ms 304 image/png +2018-08-03 11:29:19.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:29:19.438 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:29:19.439 +03:00 [INF] Request finished in 1.6455ms 304 image/png +2018-08-03 11:29:19.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:29:19.445 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:29:19.445 +03:00 [INF] Request finished in 1.3731ms 304 image/png +2018-08-03 11:29:19.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:29:19.454 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:29:19.455 +03:00 [INF] Request finished in 4.9515ms 304 image/png +2018-08-03 11:29:19.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:29:19.465 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:29:19.466 +03:00 [INF] Request finished in 0.5239ms 304 image/png +2018-08-03 11:29:19.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:29:19.471 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:29:19.471 +03:00 [INF] Request finished in 0.629ms 304 image/png +2018-08-03 11:29:19.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:29:19.479 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:29:19.479 +03:00 [INF] Request finished in 1.0401ms 304 image/png +2018-08-03 11:29:19.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:29:19.482 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:29:19.482 +03:00 [INF] Request finished in 0.6026ms 304 image/png +2018-08-03 11:29:19.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:29:19.483 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:29:19.484 +03:00 [INF] Request finished in 1.3585ms 304 image/png +2018-08-03 11:29:19.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:29:19.493 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:29:19.494 +03:00 [INF] Request finished in 2.2501ms 304 image/png +2018-08-03 11:29:19.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:29:19.497 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:29:19.498 +03:00 [INF] Request finished in 1.7332ms 304 image/png +2018-08-03 11:29:19.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:29:19.510 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:29:19.510 +03:00 [INF] Request finished in 0.7048ms 304 image/png +2018-08-03 11:29:19.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:29:19.523 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:29:19.524 +03:00 [INF] Request finished in 1.9609ms 304 image/png +2018-08-03 11:29:19.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:29:19.530 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:29:19.530 +03:00 [INF] Request finished in 3.9025ms 304 image/png +2018-08-03 11:29:19.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:29:19.530 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:29:19.531 +03:00 [INF] Request finished in 0.5191ms 304 image/png +2018-08-03 11:29:19.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:29:19.547 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:29:19.547 +03:00 [INF] Request finished in 1.834ms 304 image/png +2018-08-03 11:29:19.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:29:19.551 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:29:19.551 +03:00 [INF] Request finished in 1.1587ms 304 image/png +2018-08-03 11:29:19.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:29:19.558 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:29:19.558 +03:00 [INF] Request finished in 1.4317ms 304 image/png +2018-08-03 11:29:19.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:29:19.561 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:29:19.561 +03:00 [INF] Request finished in 0.5218ms 304 image/png +2018-08-03 11:29:19.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:29:19.564 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:29:19.564 +03:00 [INF] Request finished in 0.5726ms 304 image/png +2018-08-03 11:29:19.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:29:19.566 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:29:19.566 +03:00 [INF] Request finished in 0.7036ms 304 image/png +2018-08-03 11:29:19.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:29:19.570 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:29:19.570 +03:00 [INF] Request finished in 0.9452ms 304 image/png +2018-08-03 11:29:19.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:29:19.571 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:29:19.571 +03:00 [INF] Request finished in 0.7105ms 304 image/png +2018-08-03 11:29:19.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:29:19.571 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:29:19.572 +03:00 [INF] Request finished in 0.8056ms 304 image/png +2018-08-03 11:29:19.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:29:19.573 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:29:19.573 +03:00 [INF] Request finished in 0.6012ms 304 image/png +2018-08-03 11:29:19.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:29:19.580 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:29:19.580 +03:00 [INF] Request finished in 0.6181ms 304 image/png +2018-08-03 11:29:19.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:29:19.583 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:29:19.583 +03:00 [INF] Request finished in 2.3195ms 304 image/png +2018-08-03 11:29:19.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:29:19.587 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:29:19.588 +03:00 [INF] Request finished in 0.8615ms 304 image/png +2018-08-03 11:29:19.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:29:19.593 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:29:19.594 +03:00 [INF] Request finished in 0.7795ms 304 image/png +2018-08-03 11:29:19.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:29:19.597 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:29:19.597 +03:00 [INF] Request finished in 0.5954ms 304 image/png +2018-08-03 11:29:19.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:29:19.607 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:29:19.607 +03:00 [INF] Request finished in 0.8469ms 304 image/png +2018-08-03 11:29:19.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:29:19.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:29:19.608 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:29:19.608 +03:00 [INF] Request finished in 0.5134ms 304 image/png +2018-08-03 11:29:19.608 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:29:19.608 +03:00 [INF] Request finished in 0.7824ms 304 image/png +2018-08-03 11:29:19.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:29:19.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:29:19.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:29:19.617 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:29:19.617 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:29:19.617 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:29:19.617 +03:00 [INF] Request finished in 0.4746ms 304 image/jpeg +2018-08-03 11:29:19.617 +03:00 [INF] Request finished in 0.5243ms 304 image/png +2018-08-03 11:29:19.617 +03:00 [INF] Request finished in 0.5139ms 304 image/svg+xml +2018-08-03 11:29:19.629 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:19.629 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:29:19.630 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.093ms. +2018-08-03 11:29:19.630 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:19.630 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.919ms +2018-08-03 11:29:19.630 +03:00 [INF] Request finished in 225.3ms 200 text/plain; charset=utf-8 +2018-08-03 11:29:19.639 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:29:19.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:29:19.641 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.643 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.643 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.645 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.647 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.647 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.648 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.649 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.650 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.651 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.651 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.652 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.653 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.654 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.654 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.655 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.656 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.657 +03:00 [INF] Authorization was successful. +2018-08-03 11:29:19.661 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.4308ms. +2018-08-03 11:29:19.661 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:29:19.661 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.898500000000002ms +2018-08-03 11:29:19.661 +03:00 [INF] Request finished in 259.3493ms 200 text/plain; charset=utf-8 +2018-08-03 11:31:45.241 +03:00 [INF] Loaded modules: +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:31:45.257 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:31:45.258 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:31:45.259 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:31:47.013 +03:00 [INF] Initialized all modules. +2018-08-03 11:31:47.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:31:49.779 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:31:49.802 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:31:50.533 +03:00 [INF] Executed action /Index in 747.832ms +2018-08-03 11:31:50.558 +03:00 [INF] Request finished in 3280.1539ms 200 text/html; charset=utf-8 +2018-08-03 11:31:50.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:31:50.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:31:50.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:31:50.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:31:50.569 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:31:50.569 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:31:50.569 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:31:50.569 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:31:50.573 +03:00 [INF] Request finished in 11.3022ms 304 text/css +2018-08-03 11:31:50.573 +03:00 [INF] Request finished in 6.9808ms 304 text/css +2018-08-03 11:31:50.573 +03:00 [INF] Request finished in 10.371ms 304 text/css +2018-08-03 11:31:50.573 +03:00 [INF] Request finished in 6.9369ms 304 text/css +2018-08-03 11:31:50.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:31:50.574 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:31:50.575 +03:00 [INF] Request finished in 0.8982ms 304 text/css +2018-08-03 11:31:50.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:31:50.584 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:31:50.585 +03:00 [INF] Request finished in 2.4231ms 304 text/css +2018-08-03 11:31:50.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:31:50.588 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:31:50.588 +03:00 [INF] Request finished in 2.2396ms 304 text/css +2018-08-03 11:31:50.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:31:50.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:31:50.591 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:31:50.591 +03:00 [INF] Request finished in 2.609ms 304 application/javascript +2018-08-03 11:31:50.593 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:31:50.594 +03:00 [INF] Request finished in 5.3936ms 304 application/javascript +2018-08-03 11:31:50.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:31:50.596 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:31:50.596 +03:00 [INF] Request finished in 0.6571ms 304 text/css +2018-08-03 11:31:50.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:31:50.602 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:31:50.602 +03:00 [INF] Request finished in 1.1742ms 304 application/javascript +2018-08-03 11:31:50.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:31:50.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:31:50.604 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:31:50.604 +03:00 [INF] Request finished in 0.4729ms 304 application/javascript +2018-08-03 11:31:50.605 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:31:50.608 +03:00 [INF] Request finished in 4.878ms 304 application/javascript +2018-08-03 11:31:50.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:31:50.618 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:31:50.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:31:50.618 +03:00 [INF] Request finished in 0.9336ms 304 application/javascript +2018-08-03 11:31:50.619 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:31:50.620 +03:00 [INF] Request finished in 1.3336ms 304 application/javascript +2018-08-03 11:31:50.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:31:50.621 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:31:50.621 +03:00 [INF] Request finished in 1.2851ms 304 application/javascript +2018-08-03 11:31:50.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:31:50.623 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:31:50.623 +03:00 [INF] Request finished in 1.218ms 304 application/javascript +2018-08-03 11:31:50.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:31:50.633 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:31:50.634 +03:00 [INF] Request finished in 4.1514ms 304 application/javascript +2018-08-03 11:31:50.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:31:50.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:31:50.638 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:31:50.638 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:31:50.638 +03:00 [INF] Request finished in 0.5256ms 304 application/javascript +2018-08-03 11:31:50.638 +03:00 [INF] Request finished in 0.5743ms 304 application/javascript +2018-08-03 11:31:50.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:31:50.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:31:50.644 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:31:50.645 +03:00 [INF] Request finished in 0.7275ms 304 application/javascript +2018-08-03 11:31:50.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:31:50.647 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:31:50.647 +03:00 [INF] Request finished in 3.2535ms 304 application/javascript +2018-08-03 11:31:50.648 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:31:50.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:31:50.648 +03:00 [INF] Request finished in 3.13ms 304 application/javascript +2018-08-03 11:31:50.648 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:31:50.649 +03:00 [INF] Request finished in 0.6591ms 304 application/javascript +2018-08-03 11:31:50.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:31:50.657 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:31:50.657 +03:00 [INF] Request finished in 0.8018ms 304 application/javascript +2018-08-03 11:31:50.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:31:50.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:31:50.665 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:31:50.666 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:31:50.666 +03:00 [INF] Request finished in 3.4607ms 304 application/javascript +2018-08-03 11:31:50.666 +03:00 [INF] Request finished in 0.8714ms 304 application/javascript +2018-08-03 11:31:50.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:31:50.668 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:31:50.668 +03:00 [INF] Request finished in 0.9192ms 304 application/javascript +2018-08-03 11:31:50.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:31:50.673 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:31:50.673 +03:00 [INF] Request finished in 0.9248ms 304 application/javascript +2018-08-03 11:31:50.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:31:50.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:31:50.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:31:50.684 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:31:50.684 +03:00 [INF] Request finished in 0.8403ms 304 application/javascript +2018-08-03 11:31:50.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:31:50.690 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:31:50.690 +03:00 [INF] Request finished in 0.6604ms 304 application/javascript +2018-08-03 11:31:50.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:31:50.697 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:31:50.697 +03:00 [INF] Request finished in 0.7215ms 304 image/svg+xml +2018-08-03 11:31:50.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:31:50.701 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:31:50.701 +03:00 [INF] Request finished in 0.8421ms 304 image/png +2018-08-03 11:31:50.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:31:50.703 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:31:50.703 +03:00 [INF] Request finished in 0.6638ms 304 image/png +2018-08-03 11:31:50.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:31:50.708 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:31:50.708 +03:00 [INF] Request finished in 0.584ms 304 image/png +2018-08-03 11:31:50.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:31:50.711 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:31:50.711 +03:00 [INF] Request finished in 1.1208ms 304 image/png +2018-08-03 11:31:50.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:31:50.717 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:31:50.717 +03:00 [INF] Request finished in 0.5676ms 304 image/png +2018-08-03 11:31:50.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:31:50.720 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:31:50.720 +03:00 [INF] Request finished in 0.5978ms 304 image/png +2018-08-03 11:31:50.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:31:50.724 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:31:50.724 +03:00 [INF] Request finished in 0.6536ms 304 image/png +2018-08-03 11:31:50.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:31:50.733 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:31:50.733 +03:00 [INF] Request finished in 0.5831ms 304 image/png +2018-08-03 11:31:50.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:31:50.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:31:50.736 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:31:50.736 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:31:50.736 +03:00 [INF] Request finished in 1.0631ms 304 image/png +2018-08-03 11:31:50.736 +03:00 [INF] Request finished in 2.204ms 304 image/png +2018-08-03 11:31:50.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:31:50.741 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:31:50.741 +03:00 [INF] Request finished in 0.6396ms 304 image/png +2018-08-03 11:31:50.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:31:50.746 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:31:50.747 +03:00 [INF] Request finished in 0.5678ms 304 image/png +2018-08-03 11:31:50.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:31:50.750 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:31:50.751 +03:00 [INF] Request finished in 1.057ms 304 image/png +2018-08-03 11:31:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:31:50.752 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:31:50.752 +03:00 [INF] Request finished in 0.573ms 304 image/png +2018-08-03 11:31:50.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:31:50.756 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:31:50.756 +03:00 [INF] Request finished in 0.6336ms 304 image/png +2018-08-03 11:31:50.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:31:50.762 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:31:50.762 +03:00 [INF] Request finished in 0.4792ms 304 image/png +2018-08-03 11:31:50.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:31:50.763 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:31:50.763 +03:00 [INF] Request finished in 0.6731ms 304 image/png +2018-08-03 11:31:50.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:31:50.764 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:31:50.764 +03:00 [INF] Request finished in 0.7467ms 304 image/png +2018-08-03 11:31:50.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:31:50.772 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:31:50.773 +03:00 [INF] Request finished in 0.7204ms 304 image/png +2018-08-03 11:31:50.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:31:50.773 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:31:50.773 +03:00 [INF] Request finished in 0.406ms 304 image/png +2018-08-03 11:31:50.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:31:50.784 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:31:50.784 +03:00 [INF] Request finished in 0.7749ms 304 image/png +2018-08-03 11:31:50.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:31:50.785 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:31:50.785 +03:00 [INF] Request finished in 0.5167ms 304 image/png +2018-08-03 11:31:50.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:31:50.785 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:31:50.786 +03:00 [INF] Request finished in 0.5265ms 304 image/png +2018-08-03 11:31:50.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:31:50.796 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:31:50.797 +03:00 [INF] Request finished in 1.6733ms 304 image/png +2018-08-03 11:31:50.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:31:50.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:31:50.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:31:50.803 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:31:50.803 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:31:50.803 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:31:50.803 +03:00 [INF] Request finished in 1.4646ms 304 image/png +2018-08-03 11:31:50.803 +03:00 [INF] Request finished in 1.2352ms 304 image/png +2018-08-03 11:31:50.803 +03:00 [INF] Request finished in 1.5199ms 304 image/png +2018-08-03 11:31:50.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:31:50.808 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:31:50.808 +03:00 [INF] Request finished in 0.7652ms 304 image/png +2018-08-03 11:31:50.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:31:50.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:31:50.815 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:31:50.815 +03:00 [INF] Request finished in 1.5812ms 304 image/png +2018-08-03 11:31:50.816 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:31:50.817 +03:00 [INF] Request finished in 3.066ms 304 image/png +2018-08-03 11:31:50.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:31:50.819 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:31:50.819 +03:00 [INF] Request finished in 1.2106ms 304 image/png +2018-08-03 11:31:50.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:31:50.828 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:31:50.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:31:50.828 +03:00 [INF] Request finished in 2.8573ms 304 image/png +2018-08-03 11:31:50.828 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:31:50.829 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:31:50.829 +03:00 [INF] Request finished in 3.7308ms 304 image/png +2018-08-03 11:31:50.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:31:50.831 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:31:50.831 +03:00 [INF] Request finished in 0.5304ms 304 image/png +2018-08-03 11:31:50.839 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:31:50.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:31:50.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:31:50.848 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:31:50.848 +03:00 [INF] Request finished in 1.1346ms 304 image/svg+xml +2018-08-03 11:31:50.849 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:31:50.849 +03:00 [INF] Request finished in 1.7446ms 304 image/png +2018-08-03 11:31:50.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:31:50.852 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:31:50.852 +03:00 [INF] Request finished in 0.869ms 304 image/jpeg +2018-08-03 11:31:50.922 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:31:50.926 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:31:51.020 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 89.076900000000009ms. +2018-08-03 11:31:51.025 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:31:51.026 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 197.82260000000002ms +2018-08-03 11:31:51.027 +03:00 [INF] Request finished in 350.9245ms 200 text/plain; charset=utf-8 +2018-08-03 11:31:51.059 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.065 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.067 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.068 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.070 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.072 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.074 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.076 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.080 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.082 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.084 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.085 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.087 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.089 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.090 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.092 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.095 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.097 +03:00 [INF] Authorization was successful. +2018-08-03 11:31:51.122 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 199.8872ms. +2018-08-03 11:31:51.136 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:31:51.136 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 296.3315ms +2018-08-03 11:31:51.136 +03:00 [INF] Request finished in 456.06ms 200 text/plain; charset=utf-8 +2018-08-03 11:32:13.980 +03:00 [INF] Loaded modules: +2018-08-03 11:32:13.998 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:32:14.001 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:32:14.003 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:32:14.005 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:32:14.008 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:32:14.010 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:32:14.012 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:32:14.014 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:32:14.017 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:32:14.020 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:32:14.022 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:32:14.024 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:32:14.026 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:32:14.028 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:32:14.030 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:32:14.032 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:32:14.035 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:32:14.037 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:32:14.040 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:32:14.042 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:32:14.044 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:32:14.046 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:32:14.048 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:32:14.051 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:32:14.053 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:32:14.055 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:32:14.057 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:32:14.059 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:32:14.061 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:32:14.063 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:32:14.065 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:32:14.068 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:32:14.070 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:32:14.072 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:32:14.074 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:32:14.076 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:32:14.078 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:32:14.080 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:32:14.083 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:32:14.085 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:32:14.087 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:32:14.089 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:32:14.091 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:32:14.093 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:32:14.094 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:32:14.096 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:32:14.098 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:32:14.100 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:32:14.101 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:32:14.103 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:32:14.105 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:32:14.107 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:32:14.109 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:32:14.111 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:32:14.112 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:32:14.114 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:32:14.116 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:32:14.118 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:32:14.120 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:32:14.122 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:32:14.124 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:32:14.125 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:32:14.127 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:32:14.129 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:32:14.131 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:32:14.133 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:32:14.135 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:32:14.137 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:32:14.139 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:32:14.141 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:32:14.142 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:32:14.144 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:32:14.146 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:32:14.148 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:32:14.149 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:32:14.152 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:32:14.154 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:32:17.765 +03:00 [INF] Initialized all modules. +2018-08-03 11:32:18.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:32:18.064 +03:00 [INF] Request starting HTTP/1.1 DEBUG http://localhost:53074/ 0 +2018-08-03 11:32:18.126 +03:00 [INF] Request finished in 55.3811ms 200 +2018-08-03 11:32:21.581 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:32:21.624 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:32:28.212 +03:00 [INF] Executed action /Index in 6618.9328000000005ms +2018-08-03 11:32:28.236 +03:00 [INF] Request finished in 10178.7781ms 200 text/html; charset=utf-8 +2018-08-03 11:32:28.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:32:28.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:32:29.679 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:32:29.681 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:32:29.835 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:32:29.837 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:32:30.080 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 234.88400000000001ms. +2018-08-03 11:32:30.097 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:32:30.105 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 419.30400000000003ms +2018-08-03 11:32:30.109 +03:00 [INF] Request finished in 1702.4252ms 200 text/plain; charset=utf-8 +2018-08-03 11:32:30.209 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:30.353 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:30.489 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:30.618 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:30.756 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:30.903 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.028 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.161 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.293 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.422 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.570 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.701 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:31.853 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.017 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.173 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.307 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.454 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.580 +03:00 [INF] Authorization was successful. +2018-08-03 11:32:32.772 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2933.5115ms. +2018-08-03 11:32:32.793 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:32:32.797 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 3114.0063ms +2018-08-03 11:32:32.800 +03:00 [INF] Request finished in 4394.9389ms 200 text/plain; charset=utf-8 +2018-08-03 11:35:39.964 +03:00 [INF] Loaded modules: +2018-08-03 11:35:39.984 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:35:39.985 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:35:39.986 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:35:42.016 +03:00 [INF] Initialized all modules. +2018-08-03 11:35:42.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:35:45.316 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:35:45.339 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:35:46.126 +03:00 [INF] Executed action /Index in 802.0547ms +2018-08-03 11:35:46.150 +03:00 [INF] Request finished in 3852.8943ms 200 text/html; charset=utf-8 +2018-08-03 11:35:46.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:35:46.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:35:46.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:35:46.175 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:35:46.175 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:35:46.178 +03:00 [INF] Request finished in 7.6483ms 304 text/css +2018-08-03 11:35:46.179 +03:00 [INF] Request finished in 7.3688ms 304 text/css +2018-08-03 11:35:46.181 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:35:46.184 +03:00 [INF] Request finished in 13.4665ms 304 text/css +2018-08-03 11:35:46.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:35:46.185 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:35:46.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:35:46.185 +03:00 [INF] Request finished in 0.6943ms 304 text/css +2018-08-03 11:35:46.185 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:35:46.186 +03:00 [INF] Request finished in 0.4845ms 304 text/css +2018-08-03 11:35:46.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:35:46.204 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:35:46.204 +03:00 [INF] Request finished in 3.8574ms 304 text/css +2018-08-03 11:35:46.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:35:46.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:35:46.205 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:35:46.205 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:35:46.205 +03:00 [INF] Request finished in 0.6788ms 304 text/css +2018-08-03 11:35:46.205 +03:00 [INF] Request finished in 0.5501ms 304 application/javascript +2018-08-03 11:35:46.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:35:46.209 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:35:46.209 +03:00 [INF] Request finished in 0.5049ms 304 text/css +2018-08-03 11:35:46.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:35:46.215 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:35:46.215 +03:00 [INF] Request finished in 1.2024ms 304 application/javascript +2018-08-03 11:35:46.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:35:46.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:35:46.221 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:35:46.221 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:35:46.221 +03:00 [INF] Request finished in 0.8589ms 304 application/javascript +2018-08-03 11:35:46.222 +03:00 [INF] Request finished in 0.6719ms 304 application/javascript +2018-08-03 11:35:46.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:35:46.230 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:35:46.230 +03:00 [INF] Request finished in 1.7123ms 304 application/javascript +2018-08-03 11:35:46.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:35:46.232 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:35:46.232 +03:00 [INF] Request finished in 0.6372ms 304 application/javascript +2018-08-03 11:35:46.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:35:46.240 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:35:46.240 +03:00 [INF] Request finished in 0.571ms 304 application/javascript +2018-08-03 11:35:46.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:35:46.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:35:46.249 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:35:46.250 +03:00 [INF] Request finished in 2.487ms 304 application/javascript +2018-08-03 11:35:46.250 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:35:46.250 +03:00 [INF] Request finished in 2.0605ms 304 application/javascript +2018-08-03 11:35:46.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:35:46.251 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:35:46.252 +03:00 [INF] Request finished in 0.8132ms 304 application/javascript +2018-08-03 11:35:46.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:35:46.256 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:35:46.256 +03:00 [INF] Request finished in 0.9896ms 304 application/javascript +2018-08-03 11:35:46.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:35:46.259 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:35:46.260 +03:00 [INF] Request finished in 1.2374ms 304 application/javascript +2018-08-03 11:35:46.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:35:46.268 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:35:46.268 +03:00 [INF] Request finished in 3.78ms 304 application/javascript +2018-08-03 11:35:46.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:35:46.269 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:35:46.269 +03:00 [INF] Request finished in 1.8173ms 304 application/javascript +2018-08-03 11:35:46.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:35:46.271 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:35:46.272 +03:00 [INF] Request finished in 1.2793ms 304 application/javascript +2018-08-03 11:35:46.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:35:46.275 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:35:46.275 +03:00 [INF] Request finished in 1.0377ms 304 application/javascript +2018-08-03 11:35:46.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:35:46.276 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:35:46.276 +03:00 [INF] Request finished in 0.8492ms 304 application/javascript +2018-08-03 11:35:46.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:35:46.284 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:35:46.284 +03:00 [INF] Request finished in 2.5583ms 304 application/javascript +2018-08-03 11:35:46.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:35:46.287 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:35:46.287 +03:00 [INF] Request finished in 0.8626ms 304 application/javascript +2018-08-03 11:35:46.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:35:46.289 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:35:46.289 +03:00 [INF] Request finished in 0.7946ms 304 application/javascript +2018-08-03 11:35:46.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:35:46.291 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:35:46.291 +03:00 [INF] Request finished in 1.0421ms 304 application/javascript +2018-08-03 11:35:46.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:35:46.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:35:46.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:35:46.304 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:35:46.304 +03:00 [INF] Request finished in 0.8218ms 304 application/javascript +2018-08-03 11:35:46.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:35:46.307 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:35:46.307 +03:00 [INF] Request finished in 0.9553ms 304 application/javascript +2018-08-03 11:35:46.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:35:46.320 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:35:46.321 +03:00 [INF] Request finished in 2.0491ms 304 image/svg+xml +2018-08-03 11:35:46.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:35:46.324 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:35:46.324 +03:00 [INF] Request finished in 1.5166ms 304 image/png +2018-08-03 11:35:46.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:35:46.326 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:35:46.327 +03:00 [INF] Request finished in 1.2984ms 304 image/png +2018-08-03 11:35:46.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:35:46.333 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:35:46.333 +03:00 [INF] Request finished in 1.696ms 304 image/png +2018-08-03 11:35:46.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:35:46.340 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:35:46.340 +03:00 [INF] Request finished in 0.6683ms 304 image/png +2018-08-03 11:35:46.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:35:46.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:35:46.345 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:35:46.345 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:35:46.345 +03:00 [INF] Request finished in 0.585ms 304 image/png +2018-08-03 11:35:46.345 +03:00 [INF] Request finished in 0.9483ms 304 image/png +2018-08-03 11:35:46.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:35:46.348 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:35:46.349 +03:00 [INF] Request finished in 1.0244ms 304 image/png +2018-08-03 11:35:46.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:35:46.359 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:35:46.360 +03:00 [INF] Request finished in 1.3431ms 304 image/png +2018-08-03 11:35:46.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:35:46.367 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:35:46.367 +03:00 [INF] Request finished in 1.8885ms 304 image/png +2018-08-03 11:35:46.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:35:46.368 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:35:46.368 +03:00 [INF] Request finished in 0.5956ms 304 image/png +2018-08-03 11:35:46.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:35:46.370 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:35:46.371 +03:00 [INF] Request finished in 0.8484ms 304 image/png +2018-08-03 11:35:46.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:35:46.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:35:46.397 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:35:46.397 +03:00 [INF] Request finished in 7.0306ms 304 image/png +2018-08-03 11:35:46.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:35:46.398 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:35:46.398 +03:00 [INF] Request finished in 0.7749ms 304 image/png +2018-08-03 11:35:46.399 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:35:46.401 +03:00 [INF] Request finished in 11.0366ms 304 image/png +2018-08-03 11:35:46.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:35:46.404 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:35:46.404 +03:00 [INF] Request finished in 1.9675ms 304 image/png +2018-08-03 11:35:46.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:35:46.423 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:35:46.423 +03:00 [INF] Request finished in 1.0625ms 304 image/png +2018-08-03 11:35:46.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:35:46.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:35:46.431 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:35:46.432 +03:00 [INF] Request finished in 1.3463ms 304 image/png +2018-08-03 11:35:46.432 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:35:46.432 +03:00 [INF] Request finished in 4.713ms 304 image/png +2018-08-03 11:35:46.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:35:46.435 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:35:46.436 +03:00 [INF] Request finished in 2.1238ms 304 image/png +2018-08-03 11:35:46.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:35:46.453 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:35:46.453 +03:00 [INF] Request finished in 0.7737ms 304 image/png +2018-08-03 11:35:46.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:35:46.454 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:35:46.454 +03:00 [INF] Request finished in 0.9282ms 304 image/png +2018-08-03 11:35:46.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:35:46.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:35:46.471 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:35:46.471 +03:00 [INF] Request finished in 0.7231ms 304 image/png +2018-08-03 11:35:46.472 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:35:46.472 +03:00 [INF] Request finished in 1.9688ms 304 image/png +2018-08-03 11:35:46.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:35:46.488 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:35:46.488 +03:00 [INF] Request finished in 0.774ms 304 image/png +2018-08-03 11:35:46.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:35:46.496 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:35:46.496 +03:00 [INF] Request finished in 4.4255ms 304 image/png +2018-08-03 11:35:46.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:35:46.504 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:35:46.504 +03:00 [INF] Request finished in 0.5854ms 304 image/png +2018-08-03 11:35:46.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:35:46.516 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:35:46.516 +03:00 [INF] Request finished in 0.5708ms 304 image/png +2018-08-03 11:35:46.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:35:46.518 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:35:46.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:35:46.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:35:46.518 +03:00 [INF] Request finished in 1.1821ms 304 image/png +2018-08-03 11:35:46.518 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:35:46.518 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:35:46.518 +03:00 [INF] Request finished in 1.2516ms 304 image/png +2018-08-03 11:35:46.518 +03:00 [INF] Request finished in 0.7338ms 304 image/png +2018-08-03 11:35:46.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:35:46.526 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:35:46.526 +03:00 [INF] Request finished in 0.7614ms 304 image/png +2018-08-03 11:35:46.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:35:46.529 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:35:46.530 +03:00 [INF] Request finished in 5.1057ms 304 image/png +2018-08-03 11:35:46.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:35:46.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:35:46.537 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:35:46.537 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:35:46.537 +03:00 [INF] Request finished in 0.522ms 304 image/png +2018-08-03 11:35:46.537 +03:00 [INF] Request finished in 0.5602ms 304 image/png +2018-08-03 11:35:46.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:35:46.538 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:35:46.538 +03:00 [INF] Request finished in 0.9885ms 304 image/png +2018-08-03 11:35:46.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:35:46.542 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:35:46.542 +03:00 [INF] Request finished in 1.6698ms 304 image/svg+xml +2018-08-03 11:35:46.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:35:46.549 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:35:46.549 +03:00 [INF] Request finished in 0.6129ms 304 image/jpeg +2018-08-03 11:35:46.589 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:35:46.589 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:35:46.675 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:35:46.676 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:35:46.824 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 133.5068ms. +2018-08-03 11:35:46.837 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:35:46.838 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 248.7551ms +2018-08-03 11:35:46.838 +03:00 [INF] Request finished in 540.4652ms 200 text/plain; charset=utf-8 +2018-08-03 11:35:46.892 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.901 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.903 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.905 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.908 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.910 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.914 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.917 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.920 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.923 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.926 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.929 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.934 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.937 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.940 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.943 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.948 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:46.952 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:47.018 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 342.8792ms. +2018-08-03 11:35:47.050 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:35:47.050 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 461.0899ms +2018-08-03 11:35:47.050 +03:00 [INF] Request finished in 748.7039ms 200 text/plain; charset=utf-8 +2018-08-03 11:35:48.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:35:48.408 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:35:48.454 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:35:48.991 +03:00 [INF] Executed action /Documents/Index in 583.5379ms +2018-08-03 11:35:48.992 +03:00 [INF] Request finished in 933.4423ms 200 text/html; charset=utf-8 +2018-08-03 11:35:49.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:35:49.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:35:49.030 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:35:49.030 +03:00 [INF] Request finished in 2.7414ms 304 text/css +2018-08-03 11:35:49.031 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:35:49.031 +03:00 [INF] Request finished in 3.3424ms 304 text/css +2018-08-03 11:35:49.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:35:49.033 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:35:49.033 +03:00 [INF] Request finished in 0.5733ms 304 text/css +2018-08-03 11:35:49.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:35:49.043 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:35:49.044 +03:00 [INF] Request finished in 0.5425ms 304 text/css +2018-08-03 11:35:49.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:35:49.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:35:49.049 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:35:49.049 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:35:49.049 +03:00 [INF] Request finished in 1.0008ms 304 text/css +2018-08-03 11:35:49.050 +03:00 [INF] Request finished in 1.3459ms 304 text/css +2018-08-03 11:35:49.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:35:49.053 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:35:49.053 +03:00 [INF] Request finished in 0.5797ms 304 text/css +2018-08-03 11:35:49.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:35:49.062 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:35:49.062 +03:00 [INF] Request finished in 0.5544ms 304 text/css +2018-08-03 11:35:49.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:35:49.068 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:35:49.069 +03:00 [INF] Request finished in 3.8742ms 304 application/javascript +2018-08-03 11:35:49.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:35:49.078 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:35:49.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:35:49.079 +03:00 [INF] Request finished in 1.9329ms 304 application/javascript +2018-08-03 11:35:49.079 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:35:49.079 +03:00 [INF] Request finished in 0.7111ms 304 application/javascript +2018-08-03 11:35:49.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:35:49.081 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:35:49.081 +03:00 [INF] Request finished in 0.703ms 304 application/javascript +2018-08-03 11:35:49.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:35:49.087 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:35:49.087 +03:00 [INF] Request finished in 0.6238ms 304 application/javascript +2018-08-03 11:35:49.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:35:49.100 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:35:49.102 +03:00 [INF] Request finished in 6.7351ms 304 application/javascript +2018-08-03 11:35:49.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:35:49.103 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:35:49.103 +03:00 [INF] Request finished in 1.618ms 304 application/javascript +2018-08-03 11:35:49.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:35:49.119 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:35:49.120 +03:00 [INF] Request finished in 6.7758ms 304 application/javascript +2018-08-03 11:35:49.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:35:49.122 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:35:49.122 +03:00 [INF] Request finished in 1.4627ms 304 application/javascript +2018-08-03 11:35:49.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:35:49.126 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:35:49.127 +03:00 [INF] Request finished in 0.8181ms 304 application/javascript +2018-08-03 11:35:49.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:35:49.140 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:35:49.140 +03:00 [INF] Request finished in 8.2456ms 304 application/javascript +2018-08-03 11:35:49.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:35:49.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:35:49.142 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:35:49.142 +03:00 [INF] Request finished in 0.7735ms 304 application/javascript +2018-08-03 11:35:49.142 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:35:49.143 +03:00 [INF] Request finished in 0.5554ms 304 application/javascript +2018-08-03 11:35:49.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:35:49.157 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:35:49.157 +03:00 [INF] Request finished in 0.551ms 304 application/javascript +2018-08-03 11:35:49.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:35:49.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:35:49.159 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:35:49.159 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:35:49.159 +03:00 [INF] Request finished in 1.2135ms 304 application/javascript +2018-08-03 11:35:49.159 +03:00 [INF] Request finished in 0.7248ms 304 application/javascript +2018-08-03 11:35:49.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:35:49.160 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:35:49.161 +03:00 [INF] Request finished in 0.8193ms 304 application/javascript +2018-08-03 11:35:49.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:35:49.162 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:35:49.162 +03:00 [INF] Request finished in 0.9345ms 304 application/javascript +2018-08-03 11:35:49.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:35:49.167 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:35:49.167 +03:00 [INF] Request finished in 0.9029ms 304 application/javascript +2018-08-03 11:35:49.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:35:49.175 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:35:49.175 +03:00 [INF] Request finished in 0.8175ms 304 application/javascript +2018-08-03 11:35:49.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:35:49.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:35:49.177 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:35:49.178 +03:00 [INF] Request finished in 1.6999ms 304 application/javascript +2018-08-03 11:35:49.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:35:49.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:35:49.188 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:35:49.188 +03:00 [INF] Request finished in 0.4935ms 304 application/javascript +2018-08-03 11:35:49.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:35:49.195 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:35:49.196 +03:00 [INF] Request finished in 0.8195ms 304 application/javascript +2018-08-03 11:35:49.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:35:49.196 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:35:49.197 +03:00 [INF] Request finished in 1.2461ms 304 image/svg+xml +2018-08-03 11:35:49.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:35:49.202 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:35:49.202 +03:00 [INF] Request finished in 0.6067ms 304 image/png +2018-08-03 11:35:49.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:35:49.206 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:35:49.207 +03:00 [INF] Request finished in 1.3981ms 304 image/svg+xml +2018-08-03 11:35:49.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:35:49.218 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:35:49.218 +03:00 [INF] Request finished in 1.1953ms 304 image/jpeg +2018-08-03 11:35:49.279 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:35:49.280 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:35:49.280 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.215ms. +2018-08-03 11:35:49.281 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:35:49.281 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8902ms +2018-08-03 11:35:49.281 +03:00 [INF] Request finished in 97.8211ms 200 text/plain; charset=utf-8 +2018-08-03 11:35:49.293 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:35:49.294 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:35:49.309 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.309 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.310 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.310 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.311 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.312 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.312 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.313 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.313 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.313 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.315 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.316 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.317 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.319 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.320 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.320 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.321 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.322 +03:00 [INF] Authorization was successful. +2018-08-03 11:35:49.325 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 30.8471ms. +2018-08-03 11:35:49.325 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:35:49.325 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 32.370400000000004ms +2018-08-03 11:35:49.326 +03:00 [INF] Request finished in 149.8608ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:35.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:40:35.299 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:40:35.300 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:40:35.560 +03:00 [INF] Executed action /Documents/Index in 261.2653ms +2018-08-03 11:40:35.560 +03:00 [INF] Request finished in 293.6838ms 200 text/html; charset=utf-8 +2018-08-03 11:40:35.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:40:35.594 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:40:35.594 +03:00 [INF] Request finished in 1.1258ms 304 text/css +2018-08-03 11:40:35.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:40:35.599 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:40:35.599 +03:00 [INF] Request finished in 0.8474ms 304 text/css +2018-08-03 11:40:35.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:40:35.608 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:40:35.609 +03:00 [INF] Request finished in 0.7753ms 304 text/css +2018-08-03 11:40:35.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:40:35.612 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:40:35.613 +03:00 [INF] Request finished in 0.84ms 304 text/css +2018-08-03 11:40:35.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:40:35.615 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:40:35.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:40:35.615 +03:00 [INF] Request finished in 1.6377ms 304 text/css +2018-08-03 11:40:35.615 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:40:35.615 +03:00 [INF] Request finished in 0.5581ms 304 text/css +2018-08-03 11:40:35.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:40:35.625 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:40:35.625 +03:00 [INF] Request finished in 0.6648ms 304 text/css +2018-08-03 11:40:35.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:40:35.628 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:40:35.628 +03:00 [INF] Request finished in 0.6272ms 304 text/css +2018-08-03 11:40:35.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:40:35.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:40:35.629 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:40:35.629 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:40:35.629 +03:00 [INF] Request finished in 0.5339ms 304 application/javascript +2018-08-03 11:40:35.629 +03:00 [INF] Request finished in 0.7282ms 304 application/javascript +2018-08-03 11:40:35.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:40:35.637 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:40:35.637 +03:00 [INF] Request finished in 0.7859ms 304 application/javascript +2018-08-03 11:40:35.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:40:35.641 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:40:35.641 +03:00 [INF] Request finished in 0.9603ms 304 image/svg+xml +2018-08-03 11:40:35.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:40:35.647 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:40:35.647 +03:00 [INF] Request finished in 0.7777ms 304 image/png +2018-08-03 11:40:35.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:40:35.650 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:40:35.650 +03:00 [INF] Request finished in 0.6739ms 304 image/svg+xml +2018-08-03 11:40:35.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:40:35.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:40:35.657 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:40:35.658 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:40:35.658 +03:00 [INF] Request finished in 0.4573ms 304 application/javascript +2018-08-03 11:40:35.658 +03:00 [INF] Request finished in 0.7441ms 304 application/javascript +2018-08-03 11:40:35.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:40:35.666 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:40:35.666 +03:00 [INF] Request finished in 2.3184ms 304 application/javascript +2018-08-03 11:40:35.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:40:35.668 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:40:35.668 +03:00 [INF] Request finished in 1.3616ms 304 application/javascript +2018-08-03 11:40:35.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:40:35.681 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:40:35.681 +03:00 [INF] Request finished in 2.8001ms 304 application/javascript +2018-08-03 11:40:35.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:40:35.683 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:40:35.684 +03:00 [INF] Request finished in 0.9691ms 304 application/javascript +2018-08-03 11:40:35.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:40:35.685 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:40:35.685 +03:00 [INF] Request finished in 0.8263ms 304 application/javascript +2018-08-03 11:40:35.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:40:35.686 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:40:35.686 +03:00 [INF] Request finished in 0.6885ms 304 application/javascript +2018-08-03 11:40:35.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:40:35.689 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:40:35.690 +03:00 [INF] Request finished in 2.7234ms 304 application/javascript +2018-08-03 11:40:35.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:40:35.699 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:40:35.699 +03:00 [INF] Request finished in 1.8711ms 304 application/javascript +2018-08-03 11:40:35.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:40:35.711 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:40:35.711 +03:00 [INF] Request finished in 4.4208ms 304 application/javascript +2018-08-03 11:40:35.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:40:35.713 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:40:35.714 +03:00 [INF] Request finished in 2.7205ms 304 application/javascript +2018-08-03 11:40:35.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:40:35.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:40:35.721 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:40:35.721 +03:00 [INF] Request finished in 1.1663ms 304 application/javascript +2018-08-03 11:40:35.722 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:40:35.722 +03:00 [INF] Request finished in 3.0184ms 304 application/javascript +2018-08-03 11:40:35.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:40:35.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:40:35.729 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:40:35.729 +03:00 [INF] Request finished in 0.6638ms 304 application/javascript +2018-08-03 11:40:35.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:40:35.729 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:40:35.730 +03:00 [INF] Request finished in 1.9748ms 304 application/javascript +2018-08-03 11:40:35.730 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:40:35.730 +03:00 [INF] Request finished in 0.5081ms 304 application/javascript +2018-08-03 11:40:35.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:40:35.737 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:40:35.738 +03:00 [INF] Request finished in 0.877ms 304 application/javascript +2018-08-03 11:40:35.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:40:35.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:40:35.746 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:40:35.747 +03:00 [INF] Request finished in 1.1394ms 304 application/javascript +2018-08-03 11:40:35.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:40:35.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:40:35.756 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:40:35.757 +03:00 [INF] Request finished in 0.6117ms 304 application/javascript +2018-08-03 11:40:35.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:40:35.758 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:40:35.758 +03:00 [INF] Request finished in 0.6118ms 304 image/jpeg +2018-08-03 11:40:35.794 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:35.795 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:40:35.796 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.796 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.797 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.797 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.798 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.798 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:35.798 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.799 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.799 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:40:35.799 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1552ms. +2018-08-03 11:40:35.799 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.799 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:35.800 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.800 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9586000000000001ms +2018-08-03 11:40:35.800 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.801 +03:00 [INF] Request finished in 53.8026ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:35.802 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.803 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.804 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.805 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.807 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.808 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.808 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.809 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:35.812 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.2271ms. +2018-08-03 11:40:35.812 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:35.813 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.9154ms +2018-08-03 11:40:35.813 +03:00 [INF] Request finished in 74.3904ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:37.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:40:37.842 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:40:37.842 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:40:37.851 +03:00 [INF] Executed action /Index in 8.9722ms +2018-08-03 11:40:37.851 +03:00 [INF] Request finished in 42.9871ms 200 text/html; charset=utf-8 +2018-08-03 11:40:37.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:40:37.888 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:40:37.888 +03:00 [INF] Request finished in 0.5915ms 304 text/css +2018-08-03 11:40:37.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:40:37.895 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:40:37.896 +03:00 [INF] Request finished in 6.7518ms 304 text/css +2018-08-03 11:40:37.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:40:37.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:40:37.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:40:37.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:40:37.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:40:37.908 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:40:37.908 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:40:37.908 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:40:37.908 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:40:37.908 +03:00 [INF] Request finished in 0.4401ms 304 text/css +2018-08-03 11:40:37.908 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:40:37.908 +03:00 [INF] Request finished in 5.3089ms 304 text/css +2018-08-03 11:40:37.908 +03:00 [INF] Request finished in 6.5586ms 304 text/css +2018-08-03 11:40:37.908 +03:00 [INF] Request finished in 2.3981ms 304 text/css +2018-08-03 11:40:37.908 +03:00 [INF] Request finished in 5.0047ms 304 text/css +2018-08-03 11:40:37.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:40:37.917 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:40:37.917 +03:00 [INF] Request finished in 2.5306ms 304 text/css +2018-08-03 11:40:37.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:40:37.924 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:40:37.924 +03:00 [INF] Request finished in 1.66ms 304 application/javascript +2018-08-03 11:40:37.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:40:37.925 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:40:37.925 +03:00 [INF] Request finished in 0.5514ms 304 application/javascript +2018-08-03 11:40:37.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:40:37.930 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:40:37.931 +03:00 [INF] Request finished in 1.0878ms 304 application/javascript +2018-08-03 11:40:37.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:40:37.933 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:40:37.933 +03:00 [INF] Request finished in 0.6633ms 304 application/javascript +2018-08-03 11:40:37.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:40:37.936 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:40:37.937 +03:00 [INF] Request finished in 1.0019ms 304 application/javascript +2018-08-03 11:40:37.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:40:37.945 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:40:37.945 +03:00 [INF] Request finished in 0.747ms 304 application/javascript +2018-08-03 11:40:37.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:40:37.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:40:37.955 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:40:37.955 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:40:37.955 +03:00 [INF] Request finished in 0.6673ms 304 application/javascript +2018-08-03 11:40:37.955 +03:00 [INF] Request finished in 0.6838ms 304 application/javascript +2018-08-03 11:40:37.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:40:37.955 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:40:37.956 +03:00 [INF] Request finished in 0.4174ms 304 application/javascript +2018-08-03 11:40:37.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:40:37.962 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:40:37.963 +03:00 [INF] Request finished in 5.0272ms 304 application/javascript +2018-08-03 11:40:37.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:40:37.964 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:40:37.965 +03:00 [INF] Request finished in 1.466ms 304 application/javascript +2018-08-03 11:40:37.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:40:37.973 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:40:37.973 +03:00 [INF] Request finished in 2.363ms 304 application/javascript +2018-08-03 11:40:37.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:40:37.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:40:37.986 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:40:37.986 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:40:37.987 +03:00 [INF] Request finished in 3.5378ms 304 application/javascript +2018-08-03 11:40:37.988 +03:00 [INF] Request finished in 4.3647ms 304 application/javascript +2018-08-03 11:40:37.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:40:37.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:40:37.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:40:37.997 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:40:37.997 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:40:37.997 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:40:37.997 +03:00 [INF] Request finished in 0.752ms 304 application/javascript +2018-08-03 11:40:37.997 +03:00 [INF] Request finished in 1.5907ms 304 application/javascript +2018-08-03 11:40:37.997 +03:00 [INF] Request finished in 0.9167ms 304 application/javascript +2018-08-03 11:40:37.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:40:37.999 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:40:38.000 +03:00 [INF] Request finished in 1.5093ms 304 application/javascript +2018-08-03 11:40:38.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:40:38.001 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:40:38.002 +03:00 [INF] Request finished in 0.9085ms 304 application/javascript +2018-08-03 11:40:38.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:40:38.014 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:40:38.014 +03:00 [INF] Request finished in 0.8906ms 304 application/javascript +2018-08-03 11:40:38.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:40:38.019 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:40:38.019 +03:00 [INF] Request finished in 2.1732ms 304 application/javascript +2018-08-03 11:40:38.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:40:38.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:40:38.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:40:38.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:40:38.043 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:40:38.043 +03:00 [INF] Request finished in 0.7228ms 304 application/javascript +2018-08-03 11:40:38.043 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:40:38.044 +03:00 [INF] Request finished in 0.4446ms 304 application/javascript +2018-08-03 11:40:38.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:40:38.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:40:38.046 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:40:38.046 +03:00 [INF] Request finished in 1.7251ms 304 image/svg+xml +2018-08-03 11:40:38.046 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:40:38.046 +03:00 [INF] Request finished in 1.9968ms 304 image/png +2018-08-03 11:40:38.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:40:38.053 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:40:38.053 +03:00 [INF] Request finished in 1.0489ms 304 image/png +2018-08-03 11:40:38.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:40:38.055 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:40:38.055 +03:00 [INF] Request finished in 1.1659ms 304 image/png +2018-08-03 11:40:38.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:40:38.058 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:40:38.058 +03:00 [INF] Request finished in 1.1827ms 304 image/png +2018-08-03 11:40:38.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:40:38.063 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:40:38.063 +03:00 [INF] Request finished in 0.972ms 304 image/png +2018-08-03 11:40:38.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:40:38.064 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:40:38.064 +03:00 [INF] Request finished in 0.5398ms 304 image/png +2018-08-03 11:40:38.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:40:38.069 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:40:38.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:40:38.069 +03:00 [INF] Request finished in 0.6647ms 304 image/png +2018-08-03 11:40:38.069 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:40:38.070 +03:00 [INF] Request finished in 0.7824ms 304 image/png +2018-08-03 11:40:38.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:40:38.076 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:40:38.076 +03:00 [INF] Request finished in 0.5158ms 304 image/png +2018-08-03 11:40:38.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:40:38.077 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:40:38.078 +03:00 [INF] Request finished in 0.5078ms 304 image/png +2018-08-03 11:40:38.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:40:38.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:40:38.084 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:40:38.085 +03:00 [INF] Request finished in 0.6891ms 304 image/png +2018-08-03 11:40:38.085 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:40:38.085 +03:00 [INF] Request finished in 0.8871ms 304 image/png +2018-08-03 11:40:38.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:40:38.091 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:40:38.091 +03:00 [INF] Request finished in 0.6672ms 304 image/png +2018-08-03 11:40:38.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:40:38.093 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:40:38.094 +03:00 [INF] Request finished in 0.752ms 304 image/png +2018-08-03 11:40:38.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:40:38.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:40:38.102 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:40:38.102 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:40:38.102 +03:00 [INF] Request finished in 1.5684ms 304 image/png +2018-08-03 11:40:38.102 +03:00 [INF] Request finished in 0.9446ms 304 image/png +2018-08-03 11:40:38.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:40:38.108 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:40:38.108 +03:00 [INF] Request finished in 0.5308ms 304 image/png +2018-08-03 11:40:38.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:40:38.112 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:40:38.112 +03:00 [INF] Request finished in 0.6213ms 304 image/png +2018-08-03 11:40:38.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:40:38.117 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:40:38.117 +03:00 [INF] Request finished in 0.9335ms 304 image/png +2018-08-03 11:40:38.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:40:38.118 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:40:38.118 +03:00 [INF] Request finished in 0.4964ms 304 image/png +2018-08-03 11:40:38.123 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:38.124 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:40:38.124 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12490000000000001ms. +2018-08-03 11:40:38.125 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:38.125 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3249ms +2018-08-03 11:40:38.125 +03:00 [INF] Request finished in 100.6473ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:38.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:40:38.127 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:40:38.127 +03:00 [INF] Request finished in 0.6141ms 304 image/png +2018-08-03 11:40:38.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:40:38.129 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:40:38.129 +03:00 [INF] Request finished in 0.5353ms 304 image/png +2018-08-03 11:40:38.131 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:38.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:40:38.132 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:40:38.132 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:40:38.132 +03:00 [INF] Request finished in 0.7234ms 304 image/png +2018-08-03 11:40:38.133 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.135 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.136 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.137 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.138 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.140 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:40:38.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:40:38.141 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.141 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:40:38.141 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:40:38.141 +03:00 [INF] Request finished in 0.4013ms 304 image/png +2018-08-03 11:40:38.141 +03:00 [INF] Request finished in 2.7078ms 304 image/png +2018-08-03 11:40:38.142 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.142 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.144 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.145 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.146 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.147 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.148 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.149 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.149 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.150 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:40:38.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:40:38.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:40:38.152 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:38.152 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:40:38.152 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:40:38.152 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:40:38.152 +03:00 [INF] Request finished in 0.3617ms 304 image/png +2018-08-03 11:40:38.152 +03:00 [INF] Request finished in 0.5087ms 304 image/png +2018-08-03 11:40:38.152 +03:00 [INF] Request finished in 0.5073ms 304 image/png +2018-08-03 11:40:38.154 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.453500000000002ms. +2018-08-03 11:40:38.155 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:38.155 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.773300000000003ms +2018-08-03 11:40:38.155 +03:00 [INF] Request finished in 130.6299ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:38.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:40:38.159 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:40:38.159 +03:00 [INF] Request finished in 0.6143ms 304 image/png +2018-08-03 11:40:38.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:40:38.166 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:40:38.166 +03:00 [INF] Request finished in 1.2778ms 304 image/png +2018-08-03 11:40:38.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:40:38.173 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:40:38.173 +03:00 [INF] Request finished in 0.7809ms 304 image/png +2018-08-03 11:40:38.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:40:38.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:40:38.178 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:40:38.178 +03:00 [INF] Request finished in 0.6801ms 304 image/png +2018-08-03 11:40:38.179 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:40:38.179 +03:00 [INF] Request finished in 1.5752ms 304 image/png +2018-08-03 11:40:38.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:40:38.180 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:40:38.181 +03:00 [INF] Request finished in 1.082ms 304 image/png +2018-08-03 11:40:38.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:40:38.188 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:40:38.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:40:38.188 +03:00 [INF] Request finished in 3.5457ms 304 image/png +2018-08-03 11:40:38.189 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:40:38.189 +03:00 [INF] Request finished in 0.5525ms 304 image/svg+xml +2018-08-03 11:40:38.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:40:38.194 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:40:38.194 +03:00 [INF] Request finished in 0.7064ms 304 image/jpeg +2018-08-03 11:40:43.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:40:43.703 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:40:43.704 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:40:43.934 +03:00 [INF] Executed action /Documents/Index in 230.53390000000002ms +2018-08-03 11:40:43.934 +03:00 [INF] Request finished in 261.4214ms 200 text/html; charset=utf-8 +2018-08-03 11:40:43.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:40:43.961 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:40:43.961 +03:00 [INF] Request finished in 0.7145ms 304 text/css +2018-08-03 11:40:43.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:40:43.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:40:43.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:40:43.970 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:40:43.970 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:40:43.970 +03:00 [INF] Request finished in 0.5927ms 304 text/css +2018-08-03 11:40:43.970 +03:00 [INF] Request finished in 0.5835ms 304 text/css +2018-08-03 11:40:43.970 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:40:43.970 +03:00 [INF] Request finished in 0.7087ms 304 text/css +2018-08-03 11:40:43.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:40:43.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:40:43.980 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:40:43.980 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:40:43.981 +03:00 [INF] Request finished in 0.5436ms 304 text/css +2018-08-03 11:40:43.981 +03:00 [INF] Request finished in 0.54ms 304 text/css +2018-08-03 11:40:43.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:40:43.983 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:40:43.983 +03:00 [INF] Request finished in 0.6551ms 304 text/css +2018-08-03 11:40:43.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:40:44.000 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:40:44.000 +03:00 [INF] Request finished in 1.0928ms 304 text/css +2018-08-03 11:40:44.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:40:44.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:40:44.007 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:40:44.007 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:40:44.007 +03:00 [INF] Request finished in 0.7621ms 304 application/javascript +2018-08-03 11:40:44.007 +03:00 [INF] Request finished in 1.4914ms 304 application/javascript +2018-08-03 11:40:44.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:40:44.014 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:40:44.014 +03:00 [INF] Request finished in 5.4132ms 304 application/javascript +2018-08-03 11:40:44.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:40:44.018 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:40:44.018 +03:00 [INF] Request finished in 2.4946ms 304 application/javascript +2018-08-03 11:40:44.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:40:44.025 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:40:44.025 +03:00 [INF] Request finished in 1.1767ms 304 application/javascript +2018-08-03 11:40:44.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:40:44.031 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:40:44.032 +03:00 [INF] Request finished in 0.7389ms 304 application/javascript +2018-08-03 11:40:44.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:40:44.035 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:40:44.036 +03:00 [INF] Request finished in 1.1227ms 304 application/javascript +2018-08-03 11:40:44.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:40:44.038 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:40:44.039 +03:00 [INF] Request finished in 1.2305ms 304 application/javascript +2018-08-03 11:40:44.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:40:44.041 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:40:44.041 +03:00 [INF] Request finished in 0.6896ms 304 application/javascript +2018-08-03 11:40:44.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:40:44.049 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:40:44.049 +03:00 [INF] Request finished in 0.8775ms 304 image/svg+xml +2018-08-03 11:40:44.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:40:44.050 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:40:44.051 +03:00 [INF] Request finished in 0.943ms 304 image/png +2018-08-03 11:40:44.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:40:44.052 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:40:44.053 +03:00 [INF] Request finished in 0.755ms 304 image/svg+xml +2018-08-03 11:40:44.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:40:44.062 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:40:44.063 +03:00 [INF] Request finished in 1.1384ms 304 application/javascript +2018-08-03 11:40:44.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:40:44.064 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:40:44.064 +03:00 [INF] Request finished in 0.9238ms 304 application/javascript +2018-08-03 11:40:44.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:40:44.068 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:40:44.068 +03:00 [INF] Request finished in 0.7966ms 304 application/javascript +2018-08-03 11:40:44.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:40:44.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:40:44.076 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:40:44.077 +03:00 [INF] Request finished in 1.1167ms 304 application/javascript +2018-08-03 11:40:44.077 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:40:44.078 +03:00 [INF] Request finished in 2.5021ms 304 application/javascript +2018-08-03 11:40:44.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:40:44.081 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:40:44.081 +03:00 [INF] Request finished in 0.6598ms 304 application/javascript +2018-08-03 11:40:44.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:40:44.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:40:44.097 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:40:44.097 +03:00 [INF] Request finished in 1.4755ms 304 application/javascript +2018-08-03 11:40:44.098 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:40:44.098 +03:00 [INF] Request finished in 1.4791ms 304 application/javascript +2018-08-03 11:40:44.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:40:44.106 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:40:44.106 +03:00 [INF] Request finished in 0.7589ms 304 application/javascript +2018-08-03 11:40:44.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:40:44.108 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:40:44.108 +03:00 [INF] Request finished in 0.6212ms 304 application/javascript +2018-08-03 11:40:44.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:40:44.109 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:40:44.109 +03:00 [INF] Request finished in 2.3727ms 304 application/javascript +2018-08-03 11:40:44.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:40:44.116 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:40:44.116 +03:00 [INF] Request finished in 0.6654ms 304 application/javascript +2018-08-03 11:40:44.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:40:44.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:40:44.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:40:44.129 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:40:44.129 +03:00 [INF] Request finished in 0.8541ms 304 application/javascript +2018-08-03 11:40:44.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:40:44.135 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:40:44.135 +03:00 [INF] Request finished in 0.5398ms 304 application/javascript +2018-08-03 11:40:44.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:40:44.137 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:40:44.137 +03:00 [INF] Request finished in 0.6979ms 304 image/jpeg +2018-08-03 11:40:44.182 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:44.185 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:40:44.185 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.186 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.187 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.189 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.190 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.191 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.192 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.192 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.194 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.195 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.195 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:44.196 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.197 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:40:44.197 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.197 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11860000000000001ms. +2018-08-03 11:40:44.197 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:44.197 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9644000000000001ms +2018-08-03 11:40:44.197 +03:00 [INF] Request finished in 72.9169ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:44.197 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.198 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.199 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.199 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.200 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.201 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:44.203 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.3494ms. +2018-08-03 11:40:44.203 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:44.204 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.7043ms +2018-08-03 11:40:44.204 +03:00 [INF] Request finished in 84.2342ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:54.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:40:54.579 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:40:54.581 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:40:54.821 +03:00 [INF] Executed action /Documents/Index in 241.1433ms +2018-08-03 11:40:54.821 +03:00 [INF] Request finished in 275.0477ms 200 text/html; charset=utf-8 +2018-08-03 11:40:54.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:40:54.844 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:40:54.844 +03:00 [INF] Request finished in 0.6911ms 304 text/css +2018-08-03 11:40:54.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:40:54.845 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:40:54.845 +03:00 [INF] Request finished in 0.5169ms 304 text/css +2018-08-03 11:40:54.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:40:54.852 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:40:54.852 +03:00 [INF] Request finished in 1.0433ms 304 text/css +2018-08-03 11:40:54.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:40:54.855 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:40:54.855 +03:00 [INF] Request finished in 0.7764ms 304 text/css +2018-08-03 11:40:54.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:40:54.856 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:40:54.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:40:54.856 +03:00 [INF] Request finished in 0.5814ms 304 text/css +2018-08-03 11:40:54.856 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:40:54.856 +03:00 [INF] Request finished in 0.7277ms 304 text/css +2018-08-03 11:40:54.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:40:54.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:40:54.868 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:40:54.868 +03:00 [INF] Request finished in 0.6464ms 304 application/javascript +2018-08-03 11:40:54.868 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:40:54.868 +03:00 [INF] Request finished in 1.0584ms 304 text/css +2018-08-03 11:40:54.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:40:54.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:40:54.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:40:54.873 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:40:54.873 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:40:54.873 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:40:54.874 +03:00 [INF] Request finished in 1.3282ms 304 application/javascript +2018-08-03 11:40:54.874 +03:00 [INF] Request finished in 1.3587ms 304 application/javascript +2018-08-03 11:40:54.874 +03:00 [INF] Request finished in 4.6566ms 304 text/css +2018-08-03 11:40:54.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:40:54.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:40:54.888 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:40:54.888 +03:00 [INF] Request finished in 0.506ms 304 image/svg+xml +2018-08-03 11:40:54.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:40:54.889 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:40:54.889 +03:00 [INF] Request finished in 0.6476ms 304 image/png +2018-08-03 11:40:54.889 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:40:54.889 +03:00 [INF] Request finished in 1.0289ms 304 image/svg+xml +2018-08-03 11:40:54.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:40:54.895 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:40:54.895 +03:00 [INF] Request finished in 1.0875ms 304 application/javascript +2018-08-03 11:40:54.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:40:54.896 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:40:54.897 +03:00 [INF] Request finished in 0.9867ms 304 application/javascript +2018-08-03 11:40:54.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:40:54.904 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:40:54.904 +03:00 [INF] Request finished in 0.8578ms 304 application/javascript +2018-08-03 11:40:54.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:40:54.906 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:40:54.906 +03:00 [INF] Request finished in 0.6664ms 304 application/javascript +2018-08-03 11:40:54.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:40:54.909 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:40:54.909 +03:00 [INF] Request finished in 1.2747ms 304 application/javascript +2018-08-03 11:40:54.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:40:54.913 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:40:54.913 +03:00 [INF] Request finished in 0.5445ms 304 application/javascript +2018-08-03 11:40:54.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:40:54.922 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:40:54.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:40:54.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:40:54.922 +03:00 [INF] Request finished in 0.683ms 304 application/javascript +2018-08-03 11:40:54.922 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:40:54.922 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:40:54.923 +03:00 [INF] Request finished in 0.4635ms 304 application/javascript +2018-08-03 11:40:54.923 +03:00 [INF] Request finished in 0.5055ms 304 application/javascript +2018-08-03 11:40:54.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:40:54.927 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:40:54.927 +03:00 [INF] Request finished in 0.9125ms 304 application/javascript +2018-08-03 11:40:54.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:40:54.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:40:54.940 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:40:54.940 +03:00 [INF] Request finished in 1.9093ms 304 application/javascript +2018-08-03 11:40:54.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:40:54.941 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:40:54.941 +03:00 [INF] Request finished in 0.603ms 304 application/javascript +2018-08-03 11:40:54.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:40:54.944 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:40:54.944 +03:00 [INF] Request finished in 4.7316ms 304 application/javascript +2018-08-03 11:40:54.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:40:54.947 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:40:54.947 +03:00 [INF] Request finished in 1.2432ms 304 application/javascript +2018-08-03 11:40:54.949 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:40:54.949 +03:00 [INF] Request finished in 6.1688ms 304 application/javascript +2018-08-03 11:40:54.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:40:54.961 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:40:54.961 +03:00 [INF] Request finished in 0.7474ms 304 application/javascript +2018-08-03 11:40:54.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:40:54.963 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:40:54.964 +03:00 [INF] Request finished in 2.1604ms 304 application/javascript +2018-08-03 11:40:54.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:40:54.965 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:40:54.966 +03:00 [INF] Request finished in 0.8832ms 304 application/javascript +2018-08-03 11:40:54.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:40:54.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:40:54.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:40:54.980 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:40:54.980 +03:00 [INF] Request finished in 0.6007ms 304 application/javascript +2018-08-03 11:40:54.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:40:54.983 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:40:54.983 +03:00 [INF] Request finished in 0.6185ms 304 application/javascript +2018-08-03 11:40:54.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:40:54.988 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:40:54.988 +03:00 [INF] Request finished in 0.6834ms 304 image/jpeg +2018-08-03 11:40:55.022 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:55.023 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:40:55.024 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1426ms. +2018-08-03 11:40:55.024 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:55.024 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1668000000000003ms +2018-08-03 11:40:55.024 +03:00 [INF] Request finished in 46.7199ms 200 text/plain; charset=utf-8 +2018-08-03 11:40:55.030 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:40:55.031 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:40:55.032 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.032 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.033 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.033 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.034 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.034 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.035 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.035 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.036 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.037 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.039 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.040 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.041 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.041 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.042 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.042 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.043 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.043 +03:00 [INF] Authorization was successful. +2018-08-03 11:40:55.045 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.486500000000001ms. +2018-08-03 11:40:55.046 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:40:55.046 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.7804ms +2018-08-03 11:40:55.046 +03:00 [INF] Request finished in 71.0737ms 200 text/plain; charset=utf-8 +2018-08-03 11:41:09.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:41:09.038 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:41:09.040 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:41:09.318 +03:00 [INF] Executed action /Documents/Index in 279.6807ms +2018-08-03 11:41:09.318 +03:00 [INF] Request finished in 308.4339ms 200 text/html; charset=utf-8 +2018-08-03 11:41:09.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:41:09.338 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:41:09.338 +03:00 [INF] Request finished in 1.0513ms 304 text/css +2018-08-03 11:41:09.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:41:09.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:41:09.346 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:41:09.346 +03:00 [INF] Request finished in 3.1931ms 304 text/css +2018-08-03 11:41:09.346 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:41:09.346 +03:00 [INF] Request finished in 0.5229ms 304 text/css +2018-08-03 11:41:09.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:41:09.349 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:41:09.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:41:09.349 +03:00 [INF] Request finished in 1.0843ms 304 text/css +2018-08-03 11:41:09.352 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:41:09.352 +03:00 [INF] Request finished in 3.0935ms 304 text/css +2018-08-03 11:41:09.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:41:09.360 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:41:09.361 +03:00 [INF] Request finished in 2.3132ms 304 text/css +2018-08-03 11:41:09.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:41:09.364 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:41:09.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:41:09.365 +03:00 [INF] Request finished in 0.815ms 304 text/css +2018-08-03 11:41:09.365 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:41:09.365 +03:00 [INF] Request finished in 0.5264ms 304 text/css +2018-08-03 11:41:09.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:41:09.374 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:41:09.374 +03:00 [INF] Request finished in 0.6072ms 304 application/javascript +2018-08-03 11:41:09.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:41:09.376 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:41:09.376 +03:00 [INF] Request finished in 1.3675ms 304 application/javascript +2018-08-03 11:41:09.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:41:09.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:41:09.384 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:41:09.384 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:41:09.384 +03:00 [INF] Request finished in 0.5737ms 304 image/png +2018-08-03 11:41:09.384 +03:00 [INF] Request finished in 0.5988ms 304 image/svg+xml +2018-08-03 11:41:09.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:41:09.387 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:41:09.388 +03:00 [INF] Request finished in 1.2416ms 304 image/svg+xml +2018-08-03 11:41:09.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:41:09.391 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:41:09.391 +03:00 [INF] Request finished in 0.7058ms 304 application/javascript +2018-08-03 11:41:09.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:41:09.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:41:09.397 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:41:09.397 +03:00 [INF] Request finished in 0.756ms 304 application/javascript +2018-08-03 11:41:09.397 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:41:09.397 +03:00 [INF] Request finished in 1.1891ms 304 application/javascript +2018-08-03 11:41:09.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:41:09.402 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:41:09.402 +03:00 [INF] Request finished in 0.8927ms 304 application/javascript +2018-08-03 11:41:09.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:41:09.408 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:41:09.408 +03:00 [INF] Request finished in 1.459ms 304 application/javascript +2018-08-03 11:41:09.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:41:09.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:41:09.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:41:09.411 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:41:09.411 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:41:09.411 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:41:09.411 +03:00 [INF] Request finished in 0.5271ms 304 application/javascript +2018-08-03 11:41:09.411 +03:00 [INF] Request finished in 0.6147ms 304 application/javascript +2018-08-03 11:41:09.411 +03:00 [INF] Request finished in 2.1806ms 304 application/javascript +2018-08-03 11:41:09.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:41:09.419 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:41:09.421 +03:00 [INF] Request finished in 8.3615ms 304 application/javascript +2018-08-03 11:41:09.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:41:09.422 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:41:09.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:41:09.422 +03:00 [INF] Request finished in 1.2448ms 304 application/javascript +2018-08-03 11:41:09.422 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:41:09.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:41:09.423 +03:00 [INF] Request finished in 0.8035ms 304 application/javascript +2018-08-03 11:41:09.423 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:41:09.423 +03:00 [INF] Request finished in 0.5154ms 304 application/javascript +2018-08-03 11:41:09.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:41:09.427 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:41:09.427 +03:00 [INF] Request finished in 0.6902ms 304 application/javascript +2018-08-03 11:41:09.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:41:09.430 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:41:09.431 +03:00 [INF] Request finished in 3.0931ms 304 application/javascript +2018-08-03 11:41:09.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:41:09.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:41:09.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:41:09.440 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:41:09.440 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:41:09.440 +03:00 [INF] Request finished in 1.2747ms 304 application/javascript +2018-08-03 11:41:09.440 +03:00 [INF] Request finished in 0.987ms 304 application/javascript +2018-08-03 11:41:09.440 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:41:09.441 +03:00 [INF] Request finished in 0.6503ms 304 application/javascript +2018-08-03 11:41:09.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:41:09.444 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:41:09.444 +03:00 [INF] Request finished in 2.4276ms 304 application/javascript +2018-08-03 11:41:09.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:41:09.448 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:41:09.448 +03:00 [INF] Request finished in 1.2322ms 304 application/javascript +2018-08-03 11:41:09.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:41:09.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:41:09.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:41:09.466 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:41:09.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:41:09.467 +03:00 [INF] Request finished in 1.1778ms 304 application/javascript +2018-08-03 11:41:09.468 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:41:09.468 +03:00 [INF] Request finished in 0.6322ms 304 application/javascript +2018-08-03 11:41:09.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:41:09.477 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:41:09.477 +03:00 [INF] Request finished in 3.11ms 304 image/jpeg +2018-08-03 11:41:09.510 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:41:09.510 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:41:09.511 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:41:09.511 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:41:09.511 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12290000000000001ms. +2018-08-03 11:41:09.511 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:41:09.511 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2961ms +2018-08-03 11:41:09.511 +03:00 [INF] Request finished in 47.1839ms 200 text/plain; charset=utf-8 +2018-08-03 11:41:09.511 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.512 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.513 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.513 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.514 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.515 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.515 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.516 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.517 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.517 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.519 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.520 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.521 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.521 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.522 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.523 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.523 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.523 +03:00 [INF] Authorization was successful. +2018-08-03 11:41:09.526 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.7888ms. +2018-08-03 11:41:09.526 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:41:09.526 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.8208ms +2018-08-03 11:41:09.526 +03:00 [INF] Request finished in 71.176ms 200 text/plain; charset=utf-8 +2018-08-03 11:41:17.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 11:41:17.516 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 11:41:17.565 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:41:17.623 +03:00 [INF] Executed action /Templates in 106.9868ms +2018-08-03 11:41:17.656 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: The following sections have been defined but have not been rendered by the page at '/Pages/Shared/Layout.cshtml': 'scripts'. To ignore an unrendered section call IgnoreSection("sectionName"). + at Microsoft.AspNetCore.Mvc.Razor.RazorPage.EnsureRenderedBodyOrSections() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderLayoutAsync(ViewContext context, ViewBufferTextWriter bodyWriter) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 11:41:17.702 +03:00 [INF] Request finished in 612.3019ms 500 text/html; charset=utf-8 +2018-08-03 11:42:14.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 11:42:14.899 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 11:42:14.901 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:42:15.243 +03:00 [INF] Executed action /Templates in 343.47130000000004ms +2018-08-03 11:42:15.243 +03:00 [INF] Request finished in 377.9481ms 200 text/html; charset=utf-8 +2018-08-03 11:42:15.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:42:15.268 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:42:15.268 +03:00 [INF] Request finished in 1.3957ms 304 text/css +2018-08-03 11:42:15.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:42:15.270 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:42:15.270 +03:00 [INF] Request finished in 0.6873ms 304 text/css +2018-08-03 11:42:15.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:42:15.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:42:15.280 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:42:15.280 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:42:15.280 +03:00 [INF] Request finished in 1.3842ms 304 text/css +2018-08-03 11:42:15.280 +03:00 [INF] Request finished in 0.7755ms 304 text/css +2018-08-03 11:42:15.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:42:15.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:42:15.283 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:42:15.283 +03:00 [INF] Request finished in 0.6621ms 304 text/css +2018-08-03 11:42:15.283 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:42:15.283 +03:00 [INF] Request finished in 2.9788ms 304 text/css +2018-08-03 11:42:15.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:42:15.288 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:42:15.288 +03:00 [INF] Request finished in 0.8244ms 304 text/css +2018-08-03 11:42:15.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:42:15.288 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:42:15.289 +03:00 [INF] Request finished in 0.5617ms 304 text/css +2018-08-03 11:42:15.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:42:15.300 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:42:15.300 +03:00 [INF] Request finished in 1.0515ms 304 image/png +2018-08-03 11:42:15.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:42:15.301 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:42:15.302 +03:00 [INF] Request finished in 0.9402ms 304 image/svg+xml +2018-08-03 11:42:15.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:42:15.307 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:42:15.307 +03:00 [INF] Request finished in 1.0721ms 304 image/svg+xml +2018-08-03 11:42:15.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:42:15.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:42:15.313 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:42:15.313 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:42:15.313 +03:00 [INF] Request finished in 0.5919ms 304 application/javascript +2018-08-03 11:42:15.313 +03:00 [INF] Request finished in 2.1128ms 304 application/javascript +2018-08-03 11:42:15.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:42:15.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:42:15.320 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:42:15.320 +03:00 [INF] Request finished in 4.5306ms 304 application/javascript +2018-08-03 11:42:15.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:42:15.320 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:42:15.320 +03:00 [INF] Request finished in 0.6558ms 304 application/javascript +2018-08-03 11:42:15.321 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:42:15.321 +03:00 [INF] Request finished in 1.3965ms 304 application/javascript +2018-08-03 11:42:15.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:42:15.336 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:42:15.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:42:15.338 +03:00 [INF] Request finished in 4.8056ms 304 application/javascript +2018-08-03 11:42:15.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:42:15.339 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:42:15.339 +03:00 [INF] Request finished in 1.4992ms 304 application/javascript +2018-08-03 11:42:15.339 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:42:15.339 +03:00 [INF] Request finished in 3.8813ms 304 application/javascript +2018-08-03 11:42:15.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:42:15.341 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:42:15.341 +03:00 [INF] Request finished in 0.8338ms 304 application/javascript +2018-08-03 11:42:15.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:42:15.346 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:42:15.346 +03:00 [INF] Request finished in 0.6018ms 304 application/javascript +2018-08-03 11:42:15.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:42:15.350 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:42:15.350 +03:00 [INF] Request finished in 1.165ms 304 application/javascript +2018-08-03 11:42:15.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:42:15.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:42:15.355 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:42:15.355 +03:00 [INF] Request finished in 0.5737ms 304 application/javascript +2018-08-03 11:42:15.355 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:42:15.355 +03:00 [INF] Request finished in 1.2373ms 304 application/javascript +2018-08-03 11:42:15.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:42:15.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:42:15.371 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:42:15.371 +03:00 [INF] Request finished in 0.7676ms 304 application/javascript +2018-08-03 11:42:15.371 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:42:15.375 +03:00 [INF] Request finished in 4.0397ms 304 application/javascript +2018-08-03 11:42:15.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:42:15.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:42:15.382 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:42:15.382 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:42:15.382 +03:00 [INF] Request finished in 0.6965ms 304 application/javascript +2018-08-03 11:42:15.382 +03:00 [INF] Request finished in 0.6587ms 304 application/javascript +2018-08-03 11:42:15.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:42:15.392 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:42:15.392 +03:00 [INF] Request finished in 0.8896ms 304 application/javascript +2018-08-03 11:42:15.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:42:15.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:42:15.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:42:15.395 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:42:15.395 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:42:15.395 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:42:15.395 +03:00 [INF] Request finished in 0.8066ms 304 application/javascript +2018-08-03 11:42:15.395 +03:00 [INF] Request finished in 0.8213ms 304 application/javascript +2018-08-03 11:42:15.395 +03:00 [INF] Request finished in 0.6567ms 304 application/javascript +2018-08-03 11:42:15.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:42:15.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:42:15.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:42:15.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:42:15.406 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:42:15.406 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:42:15.406 +03:00 [INF] Request finished in 0.4743ms 304 application/javascript +2018-08-03 11:42:15.406 +03:00 [INF] Request finished in 0.5347ms 304 application/javascript +2018-08-03 11:42:15.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 11:42:15.420 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-08-03 11:42:15.420 +03:00 [INF] Request finished in 10.4552ms 200 application/javascript +2018-08-03 11:42:15.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:42:15.424 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:42:15.424 +03:00 [INF] Request finished in 0.9463ms 304 image/jpeg +2018-08-03 11:42:15.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-08-03 11:42:15.430 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-08-03 11:42:15.431 +03:00 [INF] Request finished in 0.8288ms 304 font/woff2 +2018-08-03 11:42:15.470 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:15.471 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:42:15.472 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0931ms. +2018-08-03 11:42:15.472 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:15.472 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:15.472 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.752ms +2018-08-03 11:42:15.472 +03:00 [INF] Request finished in 67.2448ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:15.473 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:42:15.473 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.474 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.475 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.476 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.476 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.477 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.478 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.478 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.479 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.480 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.480 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.481 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.481 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.481 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.482 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.482 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.483 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.483 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:15.486 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.4033ms. +2018-08-03 11:42:15.486 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:15.487 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.6035ms +2018-08-03 11:42:15.487 +03:00 [INF] Request finished in 82.2276ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:19.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:42:19.206 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:42:19.208 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:42:19.215 +03:00 [INF] Executed action /Documents/Index in 9.1247ms +2018-08-03 11:42:19.215 +03:00 [INF] Request finished in 38.8238ms 200 text/html; charset=utf-8 +2018-08-03 11:42:19.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:42:19.242 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:42:19.242 +03:00 [INF] Request finished in 0.765ms 304 text/css +2018-08-03 11:42:19.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:42:19.249 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:42:19.249 +03:00 [INF] Request finished in 0.8543ms 304 text/css +2018-08-03 11:42:19.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:42:19.253 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:42:19.253 +03:00 [INF] Request finished in 2.9062ms 304 text/css +2018-08-03 11:42:19.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:42:19.259 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:42:19.261 +03:00 [INF] Request finished in 2.5026ms 304 text/css +2018-08-03 11:42:19.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:42:19.262 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:42:19.262 +03:00 [INF] Request finished in 0.7819ms 304 text/css +2018-08-03 11:42:19.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:42:19.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:42:19.268 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:42:19.268 +03:00 [INF] Request finished in 0.9264ms 304 text/css +2018-08-03 11:42:19.268 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:42:19.269 +03:00 [INF] Request finished in 0.5074ms 304 text/css +2018-08-03 11:42:19.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:42:19.270 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:42:19.272 +03:00 [INF] Request finished in 0.8253ms 304 text/css +2018-08-03 11:42:19.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:42:19.277 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:42:19.277 +03:00 [INF] Request finished in 0.6821ms 304 application/javascript +2018-08-03 11:42:19.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:42:19.282 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:42:19.282 +03:00 [INF] Request finished in 0.7036ms 304 application/javascript +2018-08-03 11:42:19.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:42:19.284 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:42:19.284 +03:00 [INF] Request finished in 0.7634ms 304 application/javascript +2018-08-03 11:42:19.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:42:19.293 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:42:19.294 +03:00 [INF] Request finished in 0.6903ms 304 application/javascript +2018-08-03 11:42:19.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:42:19.297 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:42:19.298 +03:00 [INF] Request finished in 1.8695ms 304 application/javascript +2018-08-03 11:42:19.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:42:19.301 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:42:19.301 +03:00 [INF] Request finished in 1.3447ms 304 application/javascript +2018-08-03 11:42:19.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:42:19.307 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:42:19.307 +03:00 [INF] Request finished in 4.2391ms 304 application/javascript +2018-08-03 11:42:19.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:42:19.310 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:42:19.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:42:19.310 +03:00 [INF] Request finished in 0.6188ms 304 application/javascript +2018-08-03 11:42:19.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:42:19.312 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:42:19.312 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:42:19.312 +03:00 [INF] Request finished in 0.5672ms 304 application/javascript +2018-08-03 11:42:19.312 +03:00 [INF] Request finished in 2.6153ms 304 application/javascript +2018-08-03 11:42:19.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:42:19.320 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:42:19.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:42:19.321 +03:00 [INF] Request finished in 0.6847ms 304 application/javascript +2018-08-03 11:42:19.321 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:42:19.321 +03:00 [INF] Request finished in 0.66ms 304 application/javascript +2018-08-03 11:42:19.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:42:19.326 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:42:19.326 +03:00 [INF] Request finished in 0.6765ms 304 application/javascript +2018-08-03 11:42:19.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:42:19.330 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:42:19.330 +03:00 [INF] Request finished in 0.6533ms 304 application/javascript +2018-08-03 11:42:19.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:42:19.333 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:42:19.333 +03:00 [INF] Request finished in 0.9231ms 304 application/javascript +2018-08-03 11:42:19.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:42:19.339 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:42:19.339 +03:00 [INF] Request finished in 1.0094ms 304 application/javascript +2018-08-03 11:42:19.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:42:19.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:42:19.344 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:42:19.345 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:42:19.345 +03:00 [INF] Request finished in 1.6732ms 304 application/javascript +2018-08-03 11:42:19.345 +03:00 [INF] Request finished in 0.9502ms 304 application/javascript +2018-08-03 11:42:19.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:42:19.351 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:42:19.351 +03:00 [INF] Request finished in 2.3531ms 304 application/javascript +2018-08-03 11:42:19.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:42:19.354 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:42:19.354 +03:00 [INF] Request finished in 0.7419ms 304 application/javascript +2018-08-03 11:42:19.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:42:19.359 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:42:19.359 +03:00 [INF] Request finished in 5.312ms 304 application/javascript +2018-08-03 11:42:19.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:42:19.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:42:19.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:42:19.372 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:42:19.372 +03:00 [INF] Request finished in 2.3595ms 304 application/javascript +2018-08-03 11:42:19.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:42:19.373 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:42:19.374 +03:00 [INF] Request finished in 1.2503ms 304 application/javascript +2018-08-03 11:42:19.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:42:19.379 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:42:19.380 +03:00 [INF] Request finished in 4.2948ms 304 image/svg+xml +2018-08-03 11:42:19.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:42:19.381 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:42:19.381 +03:00 [INF] Request finished in 0.9334ms 304 image/png +2018-08-03 11:42:19.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:42:19.383 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:42:19.383 +03:00 [INF] Request finished in 1.2398ms 304 image/jpeg +2018-08-03 11:42:19.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:42:19.385 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:42:19.385 +03:00 [INF] Request finished in 0.7511ms 304 image/svg+xml +2018-08-03 11:42:19.419 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:19.420 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:42:19.420 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.421 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.422 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.422 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:19.423 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.423 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:42:19.423 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.423 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1024ms. +2018-08-03 11:42:19.423 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:19.424 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0771ms +2018-08-03 11:42:19.424 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.424 +03:00 [INF] Request finished in 53.8875ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:19.424 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.425 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.426 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.427 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.428 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.429 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.429 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.430 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.431 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.431 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.432 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.432 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:19.435 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.9182ms. +2018-08-03 11:42:19.435 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:19.435 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.211100000000002ms +2018-08-03 11:42:19.435 +03:00 [INF] Request finished in 71.4968ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:21.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:42:21.734 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:42:21.734 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:42:21.739 +03:00 [INF] Executed action /Index in 5.6763ms +2018-08-03 11:42:21.740 +03:00 [INF] Request finished in 27.4367ms 200 text/html; charset=utf-8 +2018-08-03 11:42:21.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:42:21.770 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:42:21.771 +03:00 [INF] Request finished in 2.1743ms 304 text/css +2018-08-03 11:42:21.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:42:21.773 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:42:21.773 +03:00 [INF] Request finished in 2.2275ms 304 text/css +2018-08-03 11:42:21.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:42:21.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:42:21.779 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:42:21.780 +03:00 [INF] Request finished in 0.6687ms 304 text/css +2018-08-03 11:42:21.781 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:42:21.782 +03:00 [INF] Request finished in 3.2721ms 304 text/css +2018-08-03 11:42:21.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:42:21.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:42:21.784 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:42:21.786 +03:00 [INF] Request finished in 2.0423ms 304 text/css +2018-08-03 11:42:21.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:42:21.786 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:42:21.786 +03:00 [INF] Request finished in 2.7082ms 304 text/css +2018-08-03 11:42:21.787 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:42:21.787 +03:00 [INF] Request finished in 1.0153ms 304 text/css +2018-08-03 11:42:21.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:42:21.792 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:42:21.792 +03:00 [INF] Request finished in 0.714ms 304 text/css +2018-08-03 11:42:21.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:42:21.803 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:42:21.803 +03:00 [INF] Request finished in 1.3498ms 304 application/javascript +2018-08-03 11:42:21.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:42:21.804 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:42:21.804 +03:00 [INF] Request finished in 1.9346ms 304 application/javascript +2018-08-03 11:42:21.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:42:21.805 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:42:21.805 +03:00 [INF] Request finished in 0.9091ms 304 image/png +2018-08-03 11:42:21.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:42:21.809 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:42:21.809 +03:00 [INF] Request finished in 0.6982ms 304 application/javascript +2018-08-03 11:42:21.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:42:21.810 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:42:21.810 +03:00 [INF] Request finished in 0.5443ms 304 image/svg+xml +2018-08-03 11:42:21.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:42:21.816 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:42:21.816 +03:00 [INF] Request finished in 0.593ms 304 image/png +2018-08-03 11:42:21.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:42:21.826 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:42:21.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:42:21.826 +03:00 [INF] Request finished in 0.8858ms 304 image/png +2018-08-03 11:42:21.826 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:42:21.826 +03:00 [INF] Request finished in 0.5882ms 304 image/png +2018-08-03 11:42:21.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:42:21.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:42:21.829 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:42:21.830 +03:00 [INF] Request finished in 0.8995ms 304 image/png +2018-08-03 11:42:21.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:42:21.830 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:42:21.830 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:42:21.831 +03:00 [INF] Request finished in 0.458ms 304 image/png +2018-08-03 11:42:21.833 +03:00 [INF] Request finished in 1.822ms 304 image/png +2018-08-03 11:42:21.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:42:21.839 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:42:21.839 +03:00 [INF] Request finished in 0.6819ms 304 image/png +2018-08-03 11:42:21.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:42:21.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:42:21.842 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:42:21.842 +03:00 [INF] Request finished in 0.8558ms 304 image/png +2018-08-03 11:42:21.843 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:42:21.843 +03:00 [INF] Request finished in 1.2226ms 304 image/png +2018-08-03 11:42:21.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:42:21.849 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:42:21.849 +03:00 [INF] Request finished in 0.6588ms 304 image/png +2018-08-03 11:42:21.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:42:21.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:42:21.852 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:42:21.852 +03:00 [INF] Request finished in 0.5389ms 304 image/png +2018-08-03 11:42:21.853 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:42:21.853 +03:00 [INF] Request finished in 1.6697ms 304 image/png +2018-08-03 11:42:21.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:42:21.854 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:42:21.854 +03:00 [INF] Request finished in 0.5033ms 304 image/png +2018-08-03 11:42:21.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:42:21.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:42:21.861 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:42:21.861 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:42:21.861 +03:00 [INF] Request finished in 0.6345ms 304 image/png +2018-08-03 11:42:21.861 +03:00 [INF] Request finished in 0.6827ms 304 image/png +2018-08-03 11:42:21.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:42:21.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:42:21.867 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:42:21.867 +03:00 [INF] Request finished in 1.0421ms 304 image/png +2018-08-03 11:42:21.869 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:42:21.869 +03:00 [INF] Request finished in 4.0066ms 304 image/png +2018-08-03 11:42:21.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:42:21.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:42:21.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:42:21.875 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:42:21.875 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:42:21.875 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:42:21.875 +03:00 [INF] Request finished in 0.6537ms 304 image/png +2018-08-03 11:42:21.875 +03:00 [INF] Request finished in 0.6771ms 304 image/png +2018-08-03 11:42:21.875 +03:00 [INF] Request finished in 0.7264ms 304 image/png +2018-08-03 11:42:21.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:42:21.878 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:42:21.878 +03:00 [INF] Request finished in 0.692ms 304 image/png +2018-08-03 11:42:21.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:42:21.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:42:21.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:42:21.888 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:42:21.888 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:42:21.888 +03:00 [INF] Request finished in 0.5215ms 304 image/png +2018-08-03 11:42:21.888 +03:00 [INF] Request finished in 0.5793ms 304 image/png +2018-08-03 11:42:21.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:42:21.888 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:42:21.889 +03:00 [INF] Request finished in 0.4211ms 304 image/png +2018-08-03 11:42:21.898 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:42:21.898 +03:00 [INF] Request finished in 10.7901ms 304 image/png +2018-08-03 11:42:21.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:42:21.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:42:21.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:42:21.902 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:42:21.902 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:42:21.902 +03:00 [INF] Request finished in 0.4778ms 304 image/png +2018-08-03 11:42:21.903 +03:00 [INF] Request finished in 0.5224ms 304 image/png +2018-08-03 11:42:21.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:42:21.903 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:42:21.903 +03:00 [INF] Request finished in 0.4456ms 304 image/png +2018-08-03 11:42:21.902 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:42:21.904 +03:00 [INF] Request finished in 1.6093ms 304 image/png +2018-08-03 11:42:21.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:42:21.907 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:42:21.907 +03:00 [INF] Request finished in 0.9423ms 304 image/png +2018-08-03 11:42:21.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:42:21.912 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:42:21.912 +03:00 [INF] Request finished in 0.5908ms 304 image/png +2018-08-03 11:42:21.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:42:21.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:42:21.913 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:42:21.913 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:42:21.913 +03:00 [INF] Request finished in 0.4095ms 304 image/png +2018-08-03 11:42:21.913 +03:00 [INF] Request finished in 0.5797ms 304 image/png +2018-08-03 11:42:21.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:42:21.919 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:42:21.919 +03:00 [INF] Request finished in 0.5705ms 304 image/png +2018-08-03 11:42:21.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:42:21.924 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:42:21.924 +03:00 [INF] Request finished in 2.2333ms 304 image/svg+xml +2018-08-03 11:42:21.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:42:21.929 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:42:21.929 +03:00 [INF] Request finished in 1.4163ms 304 application/javascript +2018-08-03 11:42:21.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:42:21.934 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:42:21.934 +03:00 [INF] Request finished in 4.0679ms 304 application/javascript +2018-08-03 11:42:21.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:42:21.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:42:21.935 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:42:21.935 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:42:21.935 +03:00 [INF] Request finished in 0.5154ms 304 application/javascript +2018-08-03 11:42:21.935 +03:00 [INF] Request finished in 0.4913ms 304 application/javascript +2018-08-03 11:42:21.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:42:21.942 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:42:21.942 +03:00 [INF] Request finished in 0.6662ms 304 application/javascript +2018-08-03 11:42:21.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:42:21.943 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:42:21.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:42:21.943 +03:00 [INF] Request finished in 0.7389ms 304 application/javascript +2018-08-03 11:42:21.943 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:42:21.943 +03:00 [INF] Request finished in 0.4521ms 304 application/javascript +2018-08-03 11:42:21.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:42:21.946 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:42:21.946 +03:00 [INF] Request finished in 0.7592ms 304 application/javascript +2018-08-03 11:42:21.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:42:21.946 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:42:21.948 +03:00 [INF] Request finished in 1.3161ms 304 application/javascript +2018-08-03 11:42:21.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:42:21.953 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:42:21.953 +03:00 [INF] Request finished in 0.6136ms 304 application/javascript +2018-08-03 11:42:21.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:42:21.966 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:42:21.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:42:21.966 +03:00 [INF] Request finished in 0.7416ms 304 application/javascript +2018-08-03 11:42:21.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:42:21.967 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:42:21.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:42:21.967 +03:00 [INF] Request finished in 1.3306ms 304 application/javascript +2018-08-03 11:42:21.968 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:42:21.968 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:42:21.968 +03:00 [INF] Request finished in 1.493ms 304 application/javascript +2018-08-03 11:42:21.968 +03:00 [INF] Request finished in 0.8248ms 304 application/javascript +2018-08-03 11:42:21.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:42:21.973 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:42:21.974 +03:00 [INF] Request finished in 1.257ms 304 application/javascript +2018-08-03 11:42:21.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:42:21.980 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:42:21.981 +03:00 [INF] Request finished in 1.835ms 304 application/javascript +2018-08-03 11:42:21.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:42:21.981 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:42:21.982 +03:00 [INF] Request finished in 0.6704ms 304 application/javascript +2018-08-03 11:42:21.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:42:21.989 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:42:21.989 +03:00 [INF] Request finished in 0.8291ms 304 application/javascript +2018-08-03 11:42:21.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:42:21.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:42:21.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:42:21.998 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:42:21.998 +03:00 [INF] Request finished in 1.203ms 304 application/javascript +2018-08-03 11:42:21.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:42:21.999 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:42:21.999 +03:00 [INF] Request finished in 0.7611ms 304 application/javascript +2018-08-03 11:42:22.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:42:22.005 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:42:22.005 +03:00 [INF] Request finished in 0.6795ms 304 image/jpeg +2018-08-03 11:42:22.036 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:22.037 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:42:22.038 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.038 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.038 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:22.039 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.039 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:42:22.039 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11230000000000001ms. +2018-08-03 11:42:22.039 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:22.039 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.039 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2241ms +2018-08-03 11:42:22.040 +03:00 [INF] Request finished in 44.8292ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:22.040 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.041 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.042 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.043 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.044 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.045 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.045 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.046 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.046 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.047 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.047 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.048 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.049 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.051 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:22.056 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.151500000000002ms. +2018-08-03 11:42:22.056 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:22.057 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.6236ms +2018-08-03 11:42:22.057 +03:00 [INF] Request finished in 67.7132ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:23.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 11:42:23.533 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 11:42:23.534 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:42:23.539 +03:00 [INF] Executed action /Templates in 5.7732ms +2018-08-03 11:42:23.539 +03:00 [INF] Request finished in 25.8446ms 200 text/html; charset=utf-8 +2018-08-03 11:42:23.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:42:23.567 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:42:23.567 +03:00 [INF] Request finished in 1.3005ms 304 text/css +2018-08-03 11:42:23.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:42:23.569 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:42:23.569 +03:00 [INF] Request finished in 0.7728ms 304 text/css +2018-08-03 11:42:23.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:42:23.571 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:42:23.572 +03:00 [INF] Request finished in 2.0478ms 304 text/css +2018-08-03 11:42:23.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:42:23.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:42:23.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:42:23.580 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:42:23.580 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:42:23.580 +03:00 [INF] Request finished in 1.0102ms 304 text/css +2018-08-03 11:42:23.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:42:23.580 +03:00 [INF] Request finished in 1.0102ms 304 text/css +2018-08-03 11:42:23.581 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:42:23.581 +03:00 [INF] Request finished in 0.9082ms 304 text/css +2018-08-03 11:42:23.581 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:42:23.581 +03:00 [INF] Request finished in 1.6676ms 304 text/css +2018-08-03 11:42:23.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:42:23.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:42:23.588 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:42:23.588 +03:00 [INF] Request finished in 0.5259ms 304 text/css +2018-08-03 11:42:23.588 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:42:23.588 +03:00 [INF] Request finished in 0.9652ms 304 application/javascript +2018-08-03 11:42:23.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:42:23.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:42:23.597 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:42:23.597 +03:00 [INF] Request finished in 0.4769ms 304 application/javascript +2018-08-03 11:42:23.598 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:42:23.598 +03:00 [INF] Request finished in 1.1348ms 304 application/javascript +2018-08-03 11:42:23.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:42:23.601 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:42:23.602 +03:00 [INF] Request finished in 2.4429ms 304 image/svg+xml +2018-08-03 11:42:23.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:42:23.605 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:42:23.605 +03:00 [INF] Request finished in 0.6167ms 304 image/png +2018-08-03 11:42:23.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:42:23.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:42:23.615 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:42:23.615 +03:00 [INF] Request finished in 0.8115ms 304 image/svg+xml +2018-08-03 11:42:23.615 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:42:23.615 +03:00 [INF] Request finished in 0.6115ms 304 application/javascript +2018-08-03 11:42:23.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:42:23.619 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:42:23.619 +03:00 [INF] Request finished in 3.2513ms 304 application/javascript +2018-08-03 11:42:23.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:42:23.620 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:42:23.621 +03:00 [INF] Request finished in 0.8525ms 304 application/javascript +2018-08-03 11:42:23.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:42:23.626 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:42:23.626 +03:00 [INF] Request finished in 0.8226ms 304 application/javascript +2018-08-03 11:42:23.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:42:23.627 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:42:23.627 +03:00 [INF] Request finished in 0.5527ms 304 application/javascript +2018-08-03 11:42:23.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:42:23.636 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:42:23.636 +03:00 [INF] Request finished in 0.7291ms 304 application/javascript +2018-08-03 11:42:23.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:42:23.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:42:23.639 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:42:23.639 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:42:23.639 +03:00 [INF] Request finished in 0.457ms 304 application/javascript +2018-08-03 11:42:23.639 +03:00 [INF] Request finished in 0.6821ms 304 application/javascript +2018-08-03 11:42:23.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:42:23.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:42:23.644 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:42:23.644 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:42:23.644 +03:00 [INF] Request finished in 0.7944ms 304 application/javascript +2018-08-03 11:42:23.644 +03:00 [INF] Request finished in 0.9733ms 304 application/javascript +2018-08-03 11:42:23.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:42:23.653 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:42:23.653 +03:00 [INF] Request finished in 0.5788ms 304 application/javascript +2018-08-03 11:42:23.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:42:23.654 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:42:23.654 +03:00 [INF] Request finished in 0.6792ms 304 application/javascript +2018-08-03 11:42:23.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:42:23.657 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:42:23.659 +03:00 [INF] Request finished in 1.0223ms 304 application/javascript +2018-08-03 11:42:23.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:42:23.664 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:42:23.664 +03:00 [INF] Request finished in 2.9011ms 304 application/javascript +2018-08-03 11:42:23.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:42:23.665 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:42:23.665 +03:00 [INF] Request finished in 0.8834ms 304 application/javascript +2018-08-03 11:42:23.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:42:23.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:42:23.673 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:42:23.673 +03:00 [INF] Request finished in 1.2915ms 304 application/javascript +2018-08-03 11:42:23.680 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:42:23.681 +03:00 [INF] Request finished in 9.1447ms 304 application/javascript +2018-08-03 11:42:23.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:42:23.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:42:23.687 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:42:23.687 +03:00 [INF] Request finished in 0.7348ms 304 application/javascript +2018-08-03 11:42:23.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:42:23.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:42:23.697 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:42:23.698 +03:00 [INF] Request finished in 0.6295ms 304 application/javascript +2018-08-03 11:42:23.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:42:23.699 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:42:23.699 +03:00 [INF] Request finished in 0.6416ms 304 application/javascript +2018-08-03 11:42:23.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 11:42:23.703 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 11:42:23.703 +03:00 [INF] Request finished in 1.3671ms 304 application/javascript +2018-08-03 11:42:23.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:42:23.711 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:42:23.711 +03:00 [INF] Request finished in 1.1091ms 304 image/jpeg +2018-08-03 11:42:23.741 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:23.742 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:42:23.744 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.744 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.745 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:42:23.745 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.746 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:42:23.746 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.746 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1019ms. +2018-08-03 11:42:23.746 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:23.746 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1228ms +2018-08-03 11:42:23.746 +03:00 [INF] Request finished in 60.4761ms 200 text/plain; charset=utf-8 +2018-08-03 11:42:23.746 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.747 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.748 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.748 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.749 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.750 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.750 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.751 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.752 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.752 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.753 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.753 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.754 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.755 +03:00 [INF] Authorization was successful. +2018-08-03 11:42:23.757 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.1006ms. +2018-08-03 11:42:23.757 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:42:23.757 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.9564ms +2018-08-03 11:42:23.757 +03:00 [INF] Request finished in 68.3146ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:34.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 11:43:34.886 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 11:43:34.887 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:35.241 +03:00 [INF] Executed action /Templates in 355.39300000000003ms +2018-08-03 11:43:35.242 +03:00 [INF] Request finished in 701.5172ms 200 text/html; charset=utf-8 +2018-08-03 11:43:35.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:43:35.266 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:43:35.267 +03:00 [INF] Request finished in 1.458ms 304 text/css +2018-08-03 11:43:35.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:43:35.277 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:43:35.277 +03:00 [INF] Request finished in 0.958ms 304 text/css +2018-08-03 11:43:35.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:43:35.279 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:43:35.280 +03:00 [INF] Request finished in 0.8649ms 304 text/css +2018-08-03 11:43:35.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:43:35.282 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:43:35.283 +03:00 [INF] Request finished in 1.7747ms 304 text/css +2018-08-03 11:43:35.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:43:35.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:43:35.284 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:43:35.284 +03:00 [INF] Request finished in 0.915ms 304 text/css +2018-08-03 11:43:35.284 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:43:35.284 +03:00 [INF] Request finished in 0.6504ms 304 text/css +2018-08-03 11:43:35.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:43:35.289 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:43:35.289 +03:00 [INF] Request finished in 0.7951ms 304 text/css +2018-08-03 11:43:35.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:43:35.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:43:35.299 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:43:35.299 +03:00 [INF] Request finished in 4.7529ms 304 text/css +2018-08-03 11:43:35.299 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:43:35.300 +03:00 [INF] Request finished in 0.5112ms 304 application/javascript +2018-08-03 11:43:35.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:43:35.306 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:43:35.306 +03:00 [INF] Request finished in 0.843ms 304 application/javascript +2018-08-03 11:43:35.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:43:35.312 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:43:35.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:43:35.312 +03:00 [INF] Request finished in 2.4209ms 304 application/javascript +2018-08-03 11:43:35.312 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:43:35.312 +03:00 [INF] Request finished in 0.7049ms 304 application/javascript +2018-08-03 11:43:35.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:43:35.318 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:43:35.318 +03:00 [INF] Request finished in 0.7543ms 304 application/javascript +2018-08-03 11:43:35.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:43:35.324 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:43:35.324 +03:00 [INF] Request finished in 0.8531ms 304 application/javascript +2018-08-03 11:43:35.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:43:35.326 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:43:35.326 +03:00 [INF] Request finished in 0.622ms 304 application/javascript +2018-08-03 11:43:35.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:43:35.331 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:43:35.331 +03:00 [INF] Request finished in 1.1738ms 304 application/javascript +2018-08-03 11:43:35.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:43:35.338 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:43:35.338 +03:00 [INF] Request finished in 0.9453ms 304 application/javascript +2018-08-03 11:43:35.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:43:35.342 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:43:35.342 +03:00 [INF] Request finished in 2.3962ms 304 application/javascript +2018-08-03 11:43:35.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:43:35.344 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:43:35.344 +03:00 [INF] Request finished in 0.7779ms 304 application/javascript +2018-08-03 11:43:35.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:43:35.356 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:43:35.357 +03:00 [INF] Request finished in 0.8017ms 304 application/javascript +2018-08-03 11:43:35.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:43:35.360 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:43:35.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:43:35.362 +03:00 [INF] Request finished in 1.903ms 304 application/javascript +2018-08-03 11:43:35.362 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:43:35.363 +03:00 [INF] Request finished in 1.7772ms 304 application/javascript +2018-08-03 11:43:35.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:43:35.364 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:43:35.364 +03:00 [INF] Request finished in 1.0431ms 304 application/javascript +2018-08-03 11:43:35.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:43:35.369 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:43:35.369 +03:00 [INF] Request finished in 2.5531ms 304 application/javascript +2018-08-03 11:43:35.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:43:35.373 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:43:35.374 +03:00 [INF] Request finished in 0.8915ms 304 application/javascript +2018-08-03 11:43:35.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:43:35.377 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:43:35.377 +03:00 [INF] Request finished in 0.6945ms 304 application/javascript +2018-08-03 11:43:35.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:43:35.382 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:43:35.382 +03:00 [INF] Request finished in 1.0457ms 304 application/javascript +2018-08-03 11:43:35.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:43:35.386 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:43:35.387 +03:00 [INF] Request finished in 1.1139ms 304 application/javascript +2018-08-03 11:43:35.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:43:35.389 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:43:35.389 +03:00 [INF] Request finished in 0.791ms 304 application/javascript +2018-08-03 11:43:35.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:43:35.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:43:35.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:43:35.404 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:43:35.404 +03:00 [INF] Request finished in 1.8286ms 304 application/javascript +2018-08-03 11:43:35.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:43:35.406 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:43:35.406 +03:00 [INF] Request finished in 0.5457ms 304 application/javascript +2018-08-03 11:43:35.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 11:43:35.406 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 11:43:35.406 +03:00 [INF] Request finished in 0.4588ms 304 application/javascript +2018-08-03 11:43:35.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:43:35.419 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:43:35.419 +03:00 [INF] Request finished in 1.1939ms 304 image/svg+xml +2018-08-03 11:43:35.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:43:35.424 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:43:35.424 +03:00 [INF] Request finished in 0.5995ms 304 image/png +2018-08-03 11:43:35.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:43:35.426 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:43:35.426 +03:00 [INF] Request finished in 0.8325ms 304 image/svg+xml +2018-08-03 11:43:35.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:43:35.431 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:43:35.432 +03:00 [INF] Request finished in 1.8669ms 304 image/jpeg +2018-08-03 11:43:35.456 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:35.457 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:43:35.457 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1052ms. +2018-08-03 11:43:35.457 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:35.457 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4513ms +2018-08-03 11:43:35.457 +03:00 [INF] Request finished in 54.5921ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:35.459 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:35.460 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:43:35.461 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.461 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.462 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.462 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.463 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.464 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.465 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.466 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.467 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.467 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.468 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.468 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.469 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.469 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.470 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.470 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.471 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.471 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:35.473 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.4129ms. +2018-08-03 11:43:35.473 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:35.473 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.5732ms +2018-08-03 11:43:35.473 +03:00 [INF] Request finished in 80.5239ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:38.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:43:38.332 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:43:38.334 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:38.348 +03:00 [INF] Executed action /Documents/Index in 15.874400000000001ms +2018-08-03 11:43:38.348 +03:00 [INF] Request finished in 51.1496ms 200 text/html; charset=utf-8 +2018-08-03 11:43:38.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:43:38.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:43:38.404 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:43:38.404 +03:00 [INF] Request finished in 0.5933ms 304 text/css +2018-08-03 11:43:38.404 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:43:38.405 +03:00 [INF] Request finished in 0.5445ms 304 text/css +2018-08-03 11:43:38.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:43:38.411 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:43:38.411 +03:00 [INF] Request finished in 1.5451ms 304 text/css +2018-08-03 11:43:38.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:43:38.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:43:38.422 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:43:38.422 +03:00 [INF] Request finished in 0.5424ms 304 text/css +2018-08-03 11:43:38.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:43:38.422 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:43:38.422 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:43:38.422 +03:00 [INF] Request finished in 0.5052ms 304 text/css +2018-08-03 11:43:38.422 +03:00 [INF] Request finished in 0.8475ms 304 text/css +2018-08-03 11:43:38.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:43:38.444 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:43:38.444 +03:00 [INF] Request finished in 0.6192ms 304 text/css +2018-08-03 11:43:38.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:43:38.445 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:43:38.445 +03:00 [INF] Request finished in 0.4861ms 304 text/css +2018-08-03 11:43:38.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:43:38.459 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:43:38.460 +03:00 [INF] Request finished in 6.6863ms 304 application/javascript +2018-08-03 11:43:38.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:43:38.461 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:43:38.461 +03:00 [INF] Request finished in 0.572ms 304 application/javascript +2018-08-03 11:43:38.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:43:38.462 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:43:38.462 +03:00 [INF] Request finished in 1.1197ms 304 application/javascript +2018-08-03 11:43:38.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:43:38.467 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:43:38.467 +03:00 [INF] Request finished in 1.0955ms 304 application/javascript +2018-08-03 11:43:38.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:43:38.470 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:43:38.470 +03:00 [INF] Request finished in 0.657ms 304 application/javascript +2018-08-03 11:43:38.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:43:38.477 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:43:38.477 +03:00 [INF] Request finished in 0.5693ms 304 application/javascript +2018-08-03 11:43:38.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:43:38.492 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:43:38.492 +03:00 [INF] Request finished in 0.891ms 304 application/javascript +2018-08-03 11:43:38.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:43:38.494 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:43:38.494 +03:00 [INF] Request finished in 1.0155ms 304 application/javascript +2018-08-03 11:43:38.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:43:38.497 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:43:38.497 +03:00 [INF] Request finished in 0.9496ms 304 application/javascript +2018-08-03 11:43:38.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:43:38.514 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:43:38.514 +03:00 [INF] Request finished in 0.5443ms 304 application/javascript +2018-08-03 11:43:38.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:43:38.515 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:43:38.515 +03:00 [INF] Request finished in 0.3728ms 304 application/javascript +2018-08-03 11:43:38.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:43:38.522 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:43:38.522 +03:00 [INF] Request finished in 1.6852ms 304 application/javascript +2018-08-03 11:43:38.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:43:38.526 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:43:38.526 +03:00 [INF] Request finished in 0.5338ms 304 application/javascript +2018-08-03 11:43:38.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:43:38.530 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:43:38.530 +03:00 [INF] Request finished in 0.6044ms 304 application/javascript +2018-08-03 11:43:38.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:43:38.531 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:43:38.532 +03:00 [INF] Request finished in 1.0049ms 304 application/javascript +2018-08-03 11:43:38.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:43:38.552 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:43:38.552 +03:00 [INF] Request finished in 0.6499ms 304 application/javascript +2018-08-03 11:43:38.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:43:38.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:43:38.561 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:43:38.561 +03:00 [INF] Request finished in 0.7492ms 304 application/javascript +2018-08-03 11:43:38.562 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:43:38.562 +03:00 [INF] Request finished in 1.0255ms 304 application/javascript +2018-08-03 11:43:38.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:43:38.563 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:43:38.563 +03:00 [INF] Request finished in 0.984ms 304 application/javascript +2018-08-03 11:43:38.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:43:38.565 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:43:38.568 +03:00 [INF] Request finished in 3.8079ms 304 application/javascript +2018-08-03 11:43:38.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:43:38.569 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:43:38.569 +03:00 [INF] Request finished in 0.992ms 304 application/javascript +2018-08-03 11:43:38.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:43:38.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:43:38.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:43:38.589 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:43:38.589 +03:00 [INF] Request finished in 0.7586ms 304 application/javascript +2018-08-03 11:43:38.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:43:38.594 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:43:38.594 +03:00 [INF] Request finished in 1.3232ms 304 application/javascript +2018-08-03 11:43:38.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:43:38.606 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:43:38.606 +03:00 [INF] Request finished in 0.9369ms 304 image/svg+xml +2018-08-03 11:43:38.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:43:38.610 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:43:38.611 +03:00 [INF] Request finished in 0.9884ms 304 image/png +2018-08-03 11:43:38.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:43:38.622 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:43:38.622 +03:00 [INF] Request finished in 0.5254ms 304 image/svg+xml +2018-08-03 11:43:38.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:43:38.624 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:43:38.625 +03:00 [INF] Request finished in 0.7586ms 304 image/jpeg +2018-08-03 11:43:38.710 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:38.712 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:43:38.713 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:38.713 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.715 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:43:38.715 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.715 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.15ms. +2018-08-03 11:43:38.716 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:38.716 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5145ms +2018-08-03 11:43:38.717 +03:00 [INF] Request finished in 132.1514ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:38.717 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.718 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.719 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.720 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.720 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.721 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.723 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.724 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.725 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.726 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.726 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.727 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.727 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.728 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.728 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.729 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:38.731 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.878600000000002ms. +2018-08-03 11:43:38.731 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:38.731 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.654ms +2018-08-03 11:43:38.731 +03:00 [INF] Request finished in 146.6837ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:45.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 11:43:45.146 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 11:43:45.146 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:45.153 +03:00 [INF] Executed action /Index in 6.7066ms +2018-08-03 11:43:45.153 +03:00 [INF] Request finished in 33.0981ms 200 text/html; charset=utf-8 +2018-08-03 11:43:45.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:43:45.175 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:43:45.175 +03:00 [INF] Request finished in 1.1539ms 304 text/css +2018-08-03 11:43:45.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:43:45.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:43:45.182 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:43:45.182 +03:00 [INF] Request finished in 1.2705ms 304 text/css +2018-08-03 11:43:45.182 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:43:45.182 +03:00 [INF] Request finished in 1.7923ms 304 text/css +2018-08-03 11:43:45.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:43:45.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:43:45.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:43:45.191 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:43:45.191 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:43:45.191 +03:00 [INF] Request finished in 4.9928ms 304 text/css +2018-08-03 11:43:45.191 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:43:45.192 +03:00 [INF] Request finished in 1.8097ms 304 text/css +2018-08-03 11:43:45.192 +03:00 [INF] Request finished in 1.4441ms 304 text/css +2018-08-03 11:43:45.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:43:45.199 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:43:45.199 +03:00 [INF] Request finished in 0.7874ms 304 text/css +2018-08-03 11:43:45.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:43:45.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:43:45.207 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:43:45.208 +03:00 [INF] Request finished in 1.0455ms 304 application/javascript +2018-08-03 11:43:45.208 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:43:45.208 +03:00 [INF] Request finished in 1.2916ms 304 text/css +2018-08-03 11:43:45.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:43:45.211 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:43:45.211 +03:00 [INF] Request finished in 0.7336ms 304 application/javascript +2018-08-03 11:43:45.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:43:45.215 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:43:45.216 +03:00 [INF] Request finished in 2.0225ms 304 application/javascript +2018-08-03 11:43:45.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:43:45.221 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:43:45.221 +03:00 [INF] Request finished in 0.6326ms 304 application/javascript +2018-08-03 11:43:45.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:43:45.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:43:45.227 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:43:45.227 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:43:45.227 +03:00 [INF] Request finished in 0.5343ms 304 application/javascript +2018-08-03 11:43:45.227 +03:00 [INF] Request finished in 0.5778ms 304 application/javascript +2018-08-03 11:43:45.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:43:45.228 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:43:45.228 +03:00 [INF] Request finished in 0.5337ms 304 application/javascript +2018-08-03 11:43:45.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:43:45.235 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:43:45.236 +03:00 [INF] Request finished in 1.0891ms 304 application/javascript +2018-08-03 11:43:45.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:43:45.238 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:43:45.238 +03:00 [INF] Request finished in 1.7796ms 304 application/javascript +2018-08-03 11:43:45.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:43:45.242 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:43:45.242 +03:00 [INF] Request finished in 0.6929ms 304 application/javascript +2018-08-03 11:43:45.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:43:45.246 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:43:45.247 +03:00 [INF] Request finished in 1.7677ms 304 application/javascript +2018-08-03 11:43:45.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:43:45.250 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:43:45.250 +03:00 [INF] Request finished in 0.785ms 304 application/javascript +2018-08-03 11:43:45.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:43:45.252 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:43:45.252 +03:00 [INF] Request finished in 0.6532ms 304 application/javascript +2018-08-03 11:43:45.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:43:45.257 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:43:45.257 +03:00 [INF] Request finished in 0.7025ms 304 application/javascript +2018-08-03 11:43:45.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:43:45.260 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:43:45.260 +03:00 [INF] Request finished in 2.1062ms 304 application/javascript +2018-08-03 11:43:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:43:45.262 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:43:45.262 +03:00 [INF] Request finished in 0.9021ms 304 application/javascript +2018-08-03 11:43:45.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:43:45.266 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:43:45.266 +03:00 [INF] Request finished in 1.668ms 304 application/javascript +2018-08-03 11:43:45.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:43:45.269 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:43:45.269 +03:00 [INF] Request finished in 1.8543ms 304 application/javascript +2018-08-03 11:43:45.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:43:45.273 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:43:45.273 +03:00 [INF] Request finished in 0.9679ms 304 application/javascript +2018-08-03 11:43:45.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:43:45.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:43:45.281 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:43:45.281 +03:00 [INF] Request finished in 2.684ms 304 application/javascript +2018-08-03 11:43:45.281 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:43:45.281 +03:00 [INF] Request finished in 0.6902ms 304 application/javascript +2018-08-03 11:43:45.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:43:45.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:43:45.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:43:45.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:43:45.294 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:43:45.295 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:43:45.295 +03:00 [INF] Request finished in 0.4681ms 304 application/javascript +2018-08-03 11:43:45.295 +03:00 [INF] Request finished in 2.4588ms 304 application/javascript +2018-08-03 11:43:45.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 11:43:45.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 11:43:45.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:43:45.306 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:43:45.306 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 11:43:45.306 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 11:43:45.307 +03:00 [INF] Request finished in 0.5847ms 304 image/png +2018-08-03 11:43:45.307 +03:00 [INF] Request finished in 0.6263ms 304 image/png +2018-08-03 11:43:45.307 +03:00 [INF] Request finished in 0.3243ms 304 image/svg+xml +2018-08-03 11:43:45.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 11:43:45.324 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 11:43:45.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 11:43:45.326 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 11:43:45.326 +03:00 [INF] Request finished in 3.1791ms 304 image/png +2018-08-03 11:43:45.326 +03:00 [INF] Request finished in 1.3162ms 304 image/png +2018-08-03 11:43:45.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 11:43:45.334 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 11:43:45.335 +03:00 [INF] Request finished in 0.6715ms 304 image/png +2018-08-03 11:43:45.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 11:43:45.337 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 11:43:45.337 +03:00 [INF] Request finished in 0.553ms 304 image/png +2018-08-03 11:43:45.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 11:43:45.342 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 11:43:45.342 +03:00 [INF] Request finished in 0.7221ms 304 image/png +2018-08-03 11:43:45.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 11:43:45.346 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 11:43:45.347 +03:00 [INF] Request finished in 0.6534ms 304 image/png +2018-08-03 11:43:45.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 11:43:45.348 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 11:43:45.348 +03:00 [INF] Request finished in 0.7351ms 304 image/png +2018-08-03 11:43:45.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 11:43:45.349 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 11:43:45.349 +03:00 [INF] Request finished in 0.5095ms 304 image/png +2018-08-03 11:43:45.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 11:43:45.352 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 11:43:45.352 +03:00 [INF] Request finished in 0.5408ms 304 image/png +2018-08-03 11:43:45.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 11:43:45.359 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 11:43:45.359 +03:00 [INF] Request finished in 0.5595ms 304 image/png +2018-08-03 11:43:45.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 11:43:45.363 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 11:43:45.364 +03:00 [INF] Request finished in 1.4202ms 304 image/png +2018-08-03 11:43:45.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 11:43:45.367 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 11:43:45.367 +03:00 [INF] Request finished in 0.6684ms 304 image/png +2018-08-03 11:43:45.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 11:43:45.369 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 11:43:45.369 +03:00 [INF] Request finished in 0.9202ms 304 image/png +2018-08-03 11:43:45.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 11:43:45.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 11:43:45.378 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 11:43:45.379 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 11:43:45.379 +03:00 [INF] Request finished in 3.3575ms 304 image/png +2018-08-03 11:43:45.379 +03:00 [INF] Request finished in 0.9209ms 304 image/png +2018-08-03 11:43:45.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 11:43:45.383 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 11:43:45.384 +03:00 [INF] Request finished in 1.7395ms 304 image/png +2018-08-03 11:43:45.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 11:43:45.386 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 11:43:45.386 +03:00 [INF] Request finished in 0.5486ms 304 image/png +2018-08-03 11:43:45.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 11:43:45.390 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 11:43:45.391 +03:00 [INF] Request finished in 0.6126ms 304 image/png +2018-08-03 11:43:45.395 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:45.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 11:43:45.396 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:43:45.396 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.090900000000000009ms. +2018-08-03 11:43:45.396 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 11:43:45.396 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:45.396 +03:00 [INF] Request finished in 0.6171ms 304 image/png +2018-08-03 11:43:45.396 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.08ms +2018-08-03 11:43:45.396 +03:00 [INF] Request finished in 109.5318ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:45.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 11:43:45.402 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 11:43:45.402 +03:00 [INF] Request finished in 0.574ms 304 image/png +2018-08-03 11:43:45.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 11:43:45.403 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:45.404 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 11:43:45.404 +03:00 [INF] Request finished in 0.4978ms 304 image/png +2018-08-03 11:43:45.406 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:43:45.407 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.408 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 11:43:45.410 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 11:43:45.410 +03:00 [INF] Request finished in 0.5514ms 304 image/png +2018-08-03 11:43:45.410 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.410 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.411 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.412 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 11:43:45.413 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 11:43:45.413 +03:00 [INF] Request finished in 1.0881ms 304 image/png +2018-08-03 11:43:45.413 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.414 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.414 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.415 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.415 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.416 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 11:43:45.416 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.417 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 11:43:45.417 +03:00 [INF] Request finished in 0.5589ms 304 image/png +2018-08-03 11:43:45.417 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.417 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.418 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.419 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.419 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:45.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 11:43:45.421 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 11:43:45.421 +03:00 [INF] Request finished in 0.6143ms 304 image/png +2018-08-03 11:43:45.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 11:43:45.421 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 15.127400000000002ms. +2018-08-03 11:43:45.421 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:45.422 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.0961ms +2018-08-03 11:43:45.422 +03:00 [INF] Request finished in 138.6988ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:45.424 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 11:43:45.424 +03:00 [INF] Request finished in 3.215ms 304 image/png +2018-08-03 11:43:45.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 11:43:45.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 11:43:45.434 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 11:43:45.434 +03:00 [INF] Request finished in 0.4331ms 304 image/png +2018-08-03 11:43:45.434 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 11:43:45.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 11:43:45.434 +03:00 [INF] Request finished in 0.6987ms 304 image/png +2018-08-03 11:43:45.436 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 11:43:45.436 +03:00 [INF] Request finished in 2.0463ms 304 image/png +2018-08-03 11:43:45.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 11:43:45.437 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 11:43:45.438 +03:00 [INF] Request finished in 1.0453ms 304 image/png +2018-08-03 11:43:45.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 11:43:45.438 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 11:43:45.438 +03:00 [INF] Request finished in 0.4924ms 304 image/png +2018-08-03 11:43:45.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 11:43:45.445 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 11:43:45.446 +03:00 [INF] Request finished in 0.8627ms 304 image/png +2018-08-03 11:43:45.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:43:45.449 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:43:45.449 +03:00 [INF] Request finished in 0.6213ms 304 image/png +2018-08-03 11:43:45.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:43:45.453 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:43:45.453 +03:00 [INF] Request finished in 1.7835ms 304 image/svg+xml +2018-08-03 11:43:45.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:43:45.455 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:43:45.455 +03:00 [INF] Request finished in 0.8209ms 304 image/jpeg +2018-08-03 11:43:55.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 11:43:56.116 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 11:43:56.148 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:56.255 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-08-03 11:43:56.256 +03:00 [INF] Executed action /Blog/Index in 139.6388ms +2018-08-03 11:43:56.256 +03:00 [INF] Request finished in 511.6427ms 302 +2018-08-03 11:43:56.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 11:43:56.511 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 11:43:56.546 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:56.583 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.630 +03:00 [INF] Executed action /Blog/Posts/Index in 118.6877ms +2018-08-03 11:43:56.630 +03:00 [INF] Request finished in 366.3064ms 200 text/html; charset=utf-8 +2018-08-03 11:43:56.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 11:43:56.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:43:56.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:43:56.765 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:56.765 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:43:56.766 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.766 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.767 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.767 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.767 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:43:56.767 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.768 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:43:56.768 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17800000000000002ms. +2018-08-03 11:43:56.768 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.768 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:56.769 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5234ms +2018-08-03 11:43:56.769 +03:00 [INF] Request finished in 28.468ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:56.769 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.770 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.771 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.772 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.773 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.773 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.774 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.774 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.775 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.775 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.776 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.776 +03:00 [INF] Authorization was successful. +2018-08-03 11:43:56.778 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.715900000000001ms. +2018-08-03 11:43:56.778 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:43:56.778 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.683100000000001ms +2018-08-03 11:43:56.778 +03:00 [INF] Request finished in 46.1352ms 200 text/plain; charset=utf-8 +2018-08-03 11:43:57.089 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 11:43:57.092 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:43:57.107 +03:00 [INF] Executed action /Blog/Posts/Detail in 17.7739ms +2018-08-03 11:43:57.110 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 11:43:57.127 +03:00 [INF] Request finished in 451.9375ms 500 text/html; charset=utf-8 +2018-08-03 11:44:04.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 11:44:07.113 +03:00 [INF] Loaded modules: +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 11:44:07.127 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 11:44:07.128 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 11:44:07.129 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 11:44:07.131 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 11:44:07.131 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 11:44:08.917 +03:00 [INF] Initialized all modules. +2018-08-03 11:44:09.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 11:44:10.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-08-03 11:44:11.193 +03:00 [INF] Route matched with {page = "/Documents/Index", area = "", action = "", controller = ""}. Executing action /Documents/Index +2018-08-03 11:44:11.193 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 11:44:11.282 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 11:44:11.311 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 11:44:11.540 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.004 +03:00 [INF] Executed action /Documents/Index in 804.50240000000008ms +2018-08-03 11:44:12.004 +03:00 [INF] Executed action /Blog/Posts/Index in 804.4935ms +2018-08-03 11:44:12.013 +03:00 [INF] Request finished in 1665.7431ms 200 text/html; charset=utf-8 +2018-08-03 11:44:12.013 +03:00 [INF] Request finished in 2939.6855ms 200 text/html; charset=utf-8 +2018-08-03 11:44:12.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 11:44:12.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 11:44:12.039 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 11:44:12.039 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 11:44:12.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 11:44:12.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 11:44:12.042 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 11:44:12.042 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 11:44:12.043 +03:00 [INF] Request finished in 6.3274ms 304 text/css +2018-08-03 11:44:12.043 +03:00 [INF] Request finished in 10.4291ms 304 text/css +2018-08-03 11:44:12.043 +03:00 [INF] Request finished in 1.5136ms 304 text/css +2018-08-03 11:44:12.043 +03:00 [INF] Request finished in 2.7494ms 304 text/css +2018-08-03 11:44:12.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 11:44:12.044 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 11:44:12.044 +03:00 [INF] Request finished in 0.67ms 304 text/css +2018-08-03 11:44:12.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 11:44:12.060 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 11:44:12.060 +03:00 [INF] Request finished in 0.9097ms 304 text/css +2018-08-03 11:44:12.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 11:44:12.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 11:44:12.063 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 11:44:12.063 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 11:44:12.063 +03:00 [INF] Request finished in 0.5414ms 304 text/css +2018-08-03 11:44:12.063 +03:00 [INF] Request finished in 0.6567ms 304 text/css +2018-08-03 11:44:12.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 11:44:12.069 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 11:44:12.069 +03:00 [INF] Request finished in 1.0709ms 304 application/javascript +2018-08-03 11:44:12.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 11:44:12.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 11:44:12.074 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 11:44:12.074 +03:00 [INF] Request finished in 0.5589ms 304 application/javascript +2018-08-03 11:44:12.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 11:44:12.075 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 11:44:12.075 +03:00 [INF] Request finished in 1.7871ms 304 image/svg+xml +2018-08-03 11:44:12.076 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 11:44:12.076 +03:00 [INF] Request finished in 3.0863ms 304 image/png +2018-08-03 11:44:12.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 11:44:12.085 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 11:44:12.086 +03:00 [INF] Request finished in 1.3414ms 304 image/svg+xml +2018-08-03 11:44:12.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 11:44:12.087 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 11:44:12.087 +03:00 [INF] Request finished in 0.8881ms 304 application/javascript +2018-08-03 11:44:12.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 11:44:12.092 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 11:44:12.093 +03:00 [INF] Request finished in 1.7837ms 304 application/javascript +2018-08-03 11:44:12.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 11:44:12.097 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 11:44:12.098 +03:00 [INF] Request finished in 2.5083ms 304 application/javascript +2018-08-03 11:44:12.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 11:44:12.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 11:44:12.104 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 11:44:12.104 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 11:44:12.104 +03:00 [INF] Request finished in 0.5876ms 304 application/javascript +2018-08-03 11:44:12.104 +03:00 [INF] Request finished in 0.6739ms 304 application/javascript +2018-08-03 11:44:12.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 11:44:12.107 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 11:44:12.107 +03:00 [INF] Request finished in 2.4197ms 304 application/javascript +2018-08-03 11:44:12.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 11:44:12.112 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 11:44:12.112 +03:00 [INF] Request finished in 0.7784ms 304 application/javascript +2018-08-03 11:44:12.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 11:44:12.114 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 11:44:12.114 +03:00 [INF] Request finished in 0.6021ms 304 application/javascript +2018-08-03 11:44:12.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 11:44:12.120 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 11:44:12.120 +03:00 [INF] Request finished in 4.0972ms 304 application/javascript +2018-08-03 11:44:12.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 11:44:12.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 11:44:12.126 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 11:44:12.126 +03:00 [INF] Request finished in 0.6298ms 304 application/javascript +2018-08-03 11:44:12.126 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 11:44:12.127 +03:00 [INF] Request finished in 1.6747ms 304 application/javascript +2018-08-03 11:44:12.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 11:44:12.133 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 11:44:12.133 +03:00 [INF] Request finished in 1.0516ms 304 application/javascript +2018-08-03 11:44:12.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 11:44:12.141 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 11:44:12.141 +03:00 [INF] Request finished in 0.7783ms 304 application/javascript +2018-08-03 11:44:12.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 11:44:12.143 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 11:44:12.143 +03:00 [INF] Request finished in 1.2012ms 304 application/javascript +2018-08-03 11:44:12.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 11:44:12.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 11:44:12.159 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 11:44:12.159 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 11:44:12.159 +03:00 [INF] Request finished in 0.815ms 304 application/javascript +2018-08-03 11:44:12.160 +03:00 [INF] Request finished in 1.3852ms 304 application/javascript +2018-08-03 11:44:12.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 11:44:12.166 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 11:44:12.166 +03:00 [INF] Request finished in 1.2415ms 304 application/javascript +2018-08-03 11:44:12.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 11:44:12.170 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 11:44:12.170 +03:00 [INF] Request finished in 0.9919ms 304 application/javascript +2018-08-03 11:44:12.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 11:44:12.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 11:44:12.182 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 11:44:12.182 +03:00 [INF] Request finished in 1.0641ms 304 application/javascript +2018-08-03 11:44:12.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 11:44:12.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 11:44:12.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 11:44:12.230 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 11:44:12.230 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 11:44:12.230 +03:00 [INF] Request finished in 0.4482ms 304 image/jpeg +2018-08-03 11:44:12.230 +03:00 [INF] Request finished in 0.6947ms 304 application/javascript +2018-08-03 11:44:12.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 11:44:12.231 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 11:44:12.232 +03:00 [INF] Request finished in 0.8401ms 304 application/javascript +2018-08-03 11:44:12.341 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:44:12.346 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 11:44:12.381 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 11:44:12.389 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 11:44:12.408 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.413 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.420 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.425 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.428 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.432 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.438 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.441 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.446 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.449 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.454 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.456 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.460 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.463 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.475 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.478 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.480 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.484 +03:00 [INF] Authorization was successful. +2018-08-03 11:44:12.559 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 158.55030000000002ms. +2018-08-03 11:44:12.560 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 178.49630000000002ms. +2018-08-03 11:44:12.566 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:44:12.569 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 222.4085ms +2018-08-03 11:44:12.569 +03:00 [INF] Request finished in 339.6499ms 200 text/plain; charset=utf-8 +2018-08-03 11:44:12.576 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 11:44:12.582 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 241.2133ms +2018-08-03 11:44:12.597 +03:00 [INF] Request finished in 417.3603ms 200 text/plain; charset=utf-8 +2018-08-03 12:30:26.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 12:30:27.262 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 12:30:27.269 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:30:27.294 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-08-03 12:30:27.294 +03:00 [INF] Executed action /Blog/Index in 32.1278ms +2018-08-03 12:30:27.298 +03:00 [INF] Request finished in 577.9713ms 302 +2018-08-03 12:30:27.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 12:30:27.338 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 12:30:27.340 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:30:27.353 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.361 +03:00 [INF] Executed action /Blog/Posts/Index in 22.8369ms +2018-08-03 12:30:27.361 +03:00 [INF] Request finished in 53.0035ms 200 text/html; charset=utf-8 +2018-08-03 12:30:27.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 12:30:27.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 12:30:27.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 12:30:27.502 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:30:27.504 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 12:30:27.507 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:30:27.508 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 12:30:27.509 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2482ms. +2018-08-03 12:30:27.509 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:30:27.509 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.711ms +2018-08-03 12:30:27.509 +03:00 [INF] Request finished in 34.1114ms 200 text/plain; charset=utf-8 +2018-08-03 12:30:27.510 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.514 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.518 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.521 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.524 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.527 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.530 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.534 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.537 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.541 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.545 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.552 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.555 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.558 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.558 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.562 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.565 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.570 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:27.573 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 68.8755ms. +2018-08-03 12:30:27.574 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:30:27.574 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 71.6626ms +2018-08-03 12:30:27.574 +03:00 [INF] Request finished in 101.8221ms 200 text/plain; charset=utf-8 +2018-08-03 12:30:27.810 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 12:30:27.813 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:30:27.833 +03:00 [INF] Executed action /Blog/Posts/Detail in 23.093600000000002ms +2018-08-03 12:30:27.850 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 12:30:27.900 +03:00 [INF] Request finished in 483.0611ms 500 text/html; charset=utf-8 +2018-08-03 12:30:34.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 12:30:37.655 +03:00 [INF] Loaded modules: +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 12:30:37.670 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 12:30:37.671 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 12:30:39.380 +03:00 [INF] Initialized all modules. +2018-08-03 12:30:39.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 12:30:41.754 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 12:30:41.852 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:30:42.091 +03:00 [INF] Authorization was successful. +2018-08-03 12:30:42.737 +03:00 [INF] Executed action /Blog/Posts/Index in 978.0828ms +2018-08-03 12:30:42.745 +03:00 [INF] Request finished in 3153.3597ms 200 text/html; charset=utf-8 +2018-08-03 12:30:42.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 12:30:43.110 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 12:30:43.113 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:30:43.131 +03:00 [INF] Executed action /Blog/Posts/Detail in 21.3243ms +2018-08-03 12:30:43.143 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 12:30:43.187 +03:00 [INF] Request finished in 390.4469ms 500 text/html; charset=utf-8 +2018-08-03 12:49:44.872 +03:00 [INF] Loaded modules: +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 12:49:44.888 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 12:49:44.889 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 12:49:44.890 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 12:49:44.891 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 12:49:44.891 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 12:49:44.891 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 12:49:46.730 +03:00 [INF] Initialized all modules. +2018-08-03 12:49:47.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 12:49:49.684 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 12:49:49.706 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:49:50.541 +03:00 [INF] Executed action /Index in 849.4659ms +2018-08-03 12:49:50.568 +03:00 [INF] Request finished in 3504.3942ms 200 text/html; charset=utf-8 +2018-08-03 12:49:50.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 12:49:50.643 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-08-03 12:49:50.644 +03:00 [INF] Request finished in 29.748ms 200 text/css +2018-08-03 12:49:50.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 12:49:50.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 12:49:50.794 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:49:50.800 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:49:50.846 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 12:49:50.847 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 12:49:50.912 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.914 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.915 +03:00 [INF] Authorization failed. +2018-08-03 12:49:50.965 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 115.6109ms. +2018-08-03 12:49:50.965 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 105.3858ms. +2018-08-03 12:49:50.976 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:49:50.976 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:49:50.978 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 177.8377ms +2018-08-03 12:49:50.978 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 183.70250000000001ms +2018-08-03 12:49:50.979 +03:00 [INF] Request finished in 205.8061ms 200 text/plain; charset=utf-8 +2018-08-03 12:49:50.979 +03:00 [INF] Request finished in 207.7195ms 200 text/plain; charset=utf-8 +2018-08-03 12:49:51.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-08-03 12:49:51.754 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-08-03 12:49:51.754 +03:00 [INF] Request finished in 2.2764ms 0 image/png +2018-08-03 12:50:01.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-08-03 12:50:01.805 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-08-03 12:50:01.850 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:01.969 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-08-03 12:50:01.969 +03:00 [INF] Executed action /Blog/Index in 163.9812ms +2018-08-03 12:50:01.971 +03:00 [INF] Request finished in 454.3159ms 302 +2018-08-03 12:50:01.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 12:50:02.238 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 12:50:02.270 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:02.740 +03:00 [INF] Executed action /Blog/Posts/Index in 501.4945ms +2018-08-03 12:50:02.740 +03:00 [INF] Request finished in 754.0171ms 200 text/html; charset=utf-8 +2018-08-03 12:50:02.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 12:50:02.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 12:50:02.845 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:02.848 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 12:50:02.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 12:50:02.848 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.848 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.848 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.848 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.849 +03:00 [INF] Authorization failed. +2018-08-03 12:50:02.851 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:02.852 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.8752ms. +2018-08-03 12:50:02.852 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 12:50:02.852 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1884ms. +2018-08-03 12:50:02.852 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:02.852 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:02.852 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6384ms +2018-08-03 12:50:02.852 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.0836000000000006ms +2018-08-03 12:50:02.853 +03:00 [INF] Request finished in 4.8817ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:02.853 +03:00 [INF] Request finished in 9.1673ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:03.219 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 12:50:03.223 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:03.239 +03:00 [INF] Executed action /Blog/Posts/Detail in 19.3886ms +2018-08-03 12:50:03.255 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 12:50:03.297 +03:00 [INF] Request finished in 502.188ms 500 text/html; charset=utf-8 +2018-08-03 12:50:18.457 +03:00 [INF] Loaded modules: +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 12:50:18.475 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 12:50:18.476 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 12:50:18.477 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 12:50:18.477 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 12:50:18.477 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 12:50:18.478 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 12:50:18.478 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 12:50:20.403 +03:00 [INF] Initialized all modules. +2018-08-03 12:50:20.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 12:50:22.777 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-08-03 12:50:22.876 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:23.648 +03:00 [INF] Executed action /Blog/Posts/New in 864.67360000000008ms +2018-08-03 12:50:23.658 +03:00 [INF] Request finished in 3143.267ms 200 text/html; charset=utf-8 +2018-08-03 12:50:40.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 12:50:40.573 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-08-03 12:50:40.576 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:40.641 +03:00 [INF] Executed action /Blog/Posts/New in 67.2889ms +2018-08-03 12:50:40.641 +03:00 [INF] Request finished in 69.7705ms 200 text/html; charset=utf-8 +2018-08-03 12:50:40.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636648463774224425 +2018-08-03 12:50:40.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636648463776504408 +2018-08-03 12:50:40.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636648463777474414 +2018-08-03 12:50:40.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636648463774914417 +2018-08-03 12:50:40.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636688864378244997 +2018-08-03 12:50:40.699 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-08-03 12:50:40.700 +03:00 [INF] Request finished in 1.8885ms 200 text/css +2018-08-03 12:50:40.712 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-08-03 12:50:40.712 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-08-03 12:50:40.712 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-08-03 12:50:40.712 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-08-03 12:50:40.718 +03:00 [INF] Request finished in 32.569ms 200 text/css +2018-08-03 12:50:40.718 +03:00 [INF] Request finished in 29.8382ms 200 text/css +2018-08-03 12:50:40.718 +03:00 [INF] Request finished in 29.6453ms 200 text/css +2018-08-03 12:50:40.718 +03:00 [INF] Request finished in 24.6968ms 200 text/css +2018-08-03 12:50:40.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-08-03 12:50:40.729 +03:00 [INF] Request finished in 7.974ms 404 +2018-08-03 12:50:40.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 12:50:40.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 12:50:40.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.js?_v=636648454145383638 +2018-08-03 12:50:40.785 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.js' +2018-08-03 12:50:40.785 +03:00 [INF] Request finished in 1.1543ms 200 application/javascript +2018-08-03 12:50:40.793 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:40.793 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:40.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636648463774484419 +2018-08-03 12:50:40.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636648463774234435 +2018-08-03 12:50:40.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636648463774234435 +2018-08-03 12:50:40.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636648463774234435 +2018-08-03 12:50:40.814 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-08-03 12:50:40.814 +03:00 [INF] Request finished in 2.0268ms 200 application/javascript +2018-08-03 12:50:40.814 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-08-03 12:50:40.814 +03:00 [INF] Request finished in 1.3222ms 200 application/javascript +2018-08-03 12:50:40.825 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-08-03 12:50:40.825 +03:00 [INF] Request finished in 13.5831ms 200 application/javascript +2018-08-03 12:50:40.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636648463774234435 +2018-08-03 12:50:40.830 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-08-03 12:50:40.831 +03:00 [INF] Request finished in 2.3466ms 200 application/javascript +2018-08-03 12:50:40.834 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-08-03 12:50:40.834 +03:00 [INF] Request finished in 23.7345ms 200 application/javascript +2018-08-03 12:50:40.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636648463775334413 +2018-08-03 12:50:40.848 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-08-03 12:50:40.848 +03:00 [INF] Request finished in 11.5737ms 200 application/javascript +2018-08-03 12:50:40.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636688864378244997 +2018-08-03 12:50:40.850 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-08-03 12:50:40.850 +03:00 [INF] Request finished in 1.4923ms 200 application/javascript +2018-08-03 12:50:40.862 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 12:50:40.869 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 12:50:40.923 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.924 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.924 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.924 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.924 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.925 +03:00 [INF] Authorization failed. +2018-08-03 12:50:40.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-08-03 12:50:40.937 +03:00 [INF] Request finished in 0.8295ms 404 +2018-08-03 12:50:40.965 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 95.1044ms. +2018-08-03 12:50:40.966 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 98.865500000000011ms. +2018-08-03 12:50:40.972 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:40.972 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:40.973 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 179.09ms +2018-08-03 12:50:40.973 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 179.1304ms +2018-08-03 12:50:40.973 +03:00 [INF] Request finished in 197.898ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:40.973 +03:00 [INF] Request finished in 200.1225ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:41.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-08-03 12:50:41.358 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-08-03 12:50:41.358 +03:00 [INF] Request finished in 1.8995ms 200 image/png +2018-08-03 12:50:44.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 12:50:44.639 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 12:50:44.642 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:44.700 +03:00 [INF] Executed action /Blog/Posts/Index in 60.840700000000005ms +2018-08-03 12:50:44.701 +03:00 [INF] Request finished in 344.4551ms 200 text/html; charset=utf-8 +2018-08-03 12:50:44.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 12:50:44.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 12:50:44.743 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 12:50:44.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 12:50:44.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 12:50:44.743 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 12:50:44.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 12:50:44.744 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 12:50:44.744 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 12:50:44.745 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 12:50:44.745 +03:00 [INF] Request finished in 2.0199ms 304 text/css +2018-08-03 12:50:44.745 +03:00 [INF] Request finished in 2.0023ms 304 text/css +2018-08-03 12:50:44.745 +03:00 [INF] Request finished in 1.8042ms 304 text/css +2018-08-03 12:50:44.745 +03:00 [INF] Request finished in 3.4078ms 304 text/css +2018-08-03 12:50:44.745 +03:00 [INF] Request finished in 3.0749ms 304 text/css +2018-08-03 12:50:44.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 12:50:44.754 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 12:50:44.754 +03:00 [INF] Request finished in 8.209ms 304 text/css +2018-08-03 12:50:44.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 12:50:44.757 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 12:50:44.758 +03:00 [INF] Request finished in 1.5035ms 304 text/css +2018-08-03 12:50:44.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 12:50:44.760 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 12:50:44.760 +03:00 [INF] Request finished in 0.5886ms 304 text/css +2018-08-03 12:50:44.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 12:50:44.771 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 12:50:44.771 +03:00 [INF] Request finished in 0.6714ms 304 application/javascript +2018-08-03 12:50:44.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 12:50:44.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 12:50:44.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 12:50:44.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 12:50:44.775 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 12:50:44.775 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 12:50:44.775 +03:00 [INF] Request finished in 0.5813ms 304 application/javascript +2018-08-03 12:50:44.775 +03:00 [INF] Request finished in 0.5498ms 304 image/svg+xml +2018-08-03 12:50:44.776 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 12:50:44.776 +03:00 [INF] Request finished in 0.8138ms 304 image/svg+xml +2018-08-03 12:50:44.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 12:50:44.776 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 12:50:44.776 +03:00 [INF] Request finished in 0.471ms 304 application/javascript +2018-08-03 12:50:44.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 12:50:44.786 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 12:50:44.786 +03:00 [INF] Request finished in 1.2051ms 304 application/javascript +2018-08-03 12:50:44.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 12:50:44.790 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 12:50:44.791 +03:00 [INF] Request finished in 1.2746ms 304 application/javascript +2018-08-03 12:50:44.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 12:50:44.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 12:50:44.799 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 12:50:44.799 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 12:50:44.799 +03:00 [INF] Request finished in 3.4997ms 304 application/javascript +2018-08-03 12:50:44.799 +03:00 [INF] Request finished in 1.9285ms 304 application/javascript +2018-08-03 12:50:44.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 12:50:44.807 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 12:50:44.808 +03:00 [INF] Request finished in 0.658ms 304 application/javascript +2018-08-03 12:50:44.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 12:50:44.813 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 12:50:44.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 12:50:44.816 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 12:50:44.816 +03:00 [INF] Request finished in 0.5921ms 304 application/javascript +2018-08-03 12:50:44.816 +03:00 [INF] Request finished in 4.2136ms 304 application/javascript +2018-08-03 12:50:44.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 12:50:44.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 12:50:44.819 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 12:50:44.819 +03:00 [INF] Request finished in 0.7187ms 304 application/javascript +2018-08-03 12:50:44.819 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 12:50:44.820 +03:00 [INF] Request finished in 2.1354ms 304 application/javascript +2018-08-03 12:50:44.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 12:50:44.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 12:50:44.834 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 12:50:44.834 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 12:50:44.834 +03:00 [INF] Request finished in 0.736ms 304 application/javascript +2018-08-03 12:50:44.834 +03:00 [INF] Request finished in 0.7275ms 304 application/javascript +2018-08-03 12:50:44.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 12:50:44.837 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 12:50:44.837 +03:00 [INF] Request finished in 1.8582ms 304 application/javascript +2018-08-03 12:50:44.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 12:50:44.844 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 12:50:44.844 +03:00 [INF] Request finished in 0.9948ms 304 application/javascript +2018-08-03 12:50:44.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 12:50:44.845 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 12:50:44.845 +03:00 [INF] Request finished in 0.6401ms 304 application/javascript +2018-08-03 12:50:44.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 12:50:44.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 12:50:44.854 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 12:50:44.854 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 12:50:44.855 +03:00 [INF] Request finished in 0.6894ms 304 application/javascript +2018-08-03 12:50:44.855 +03:00 [INF] Request finished in 0.6695ms 304 application/javascript +2018-08-03 12:50:44.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 12:50:44.858 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 12:50:44.858 +03:00 [INF] Request finished in 1.5802ms 304 application/javascript +2018-08-03 12:50:44.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 12:50:44.860 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 12:50:44.861 +03:00 [INF] Request finished in 1.2471ms 304 application/javascript +2018-08-03 12:50:44.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 12:50:44.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 12:50:44.872 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:44.873 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 12:50:44.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 12:50:44.874 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 12:50:44.874 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 12:50:44.874 +03:00 [INF] Request finished in 0.5838ms 304 application/javascript +2018-08-03 12:50:44.874 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 12:50:44.874 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3098ms. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5206ms +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Request finished in 3.8041ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.875 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.876 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.876 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.876 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.877 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.877 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 12:50:44.877 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.877 +03:00 [INF] Authorization failed. +2018-08-03 12:50:44.877 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 12:50:44.877 +03:00 [INF] Request finished in 0.7424ms 304 application/javascript +2018-08-03 12:50:44.882 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.4297ms. +2018-08-03 12:50:44.884 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 12:50:44.884 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.97ms +2018-08-03 12:50:44.884 +03:00 [INF] Request finished in 22.9713ms 200 text/plain; charset=utf-8 +2018-08-03 12:50:44.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 12:50:44.891 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 12:50:44.891 +03:00 [INF] Request finished in 1.5427ms 304 image/jpeg +2018-08-03 12:50:45.187 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 12:50:45.190 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:50:45.207 +03:00 [INF] Executed action /Blog/Posts/Detail in 20.183ms +2018-08-03 12:50:45.223 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 12:50:45.264 +03:00 [INF] Request finished in 493.8386ms 500 text/html; charset=utf-8 +2018-08-03 12:50:51.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-08-03 12:50:51.956 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-08-03 12:50:51.959 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:51:14.521 +03:00 [INF] Loaded modules: +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 12:51:14.535 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 12:51:14.536 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 12:51:14.537 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 12:51:16.377 +03:00 [INF] Initialized all modules. +2018-08-03 12:51:16.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-08-03 12:51:18.943 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-08-03 12:51:19.075 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-08-03 12:51:19.865 +03:00 [INF] Executed action /Blog/Posts/Index in 917.904ms +2018-08-03 12:51:19.877 +03:00 [INF] Request finished in 3231.3276ms 200 text/html; charset=utf-8 +2018-08-03 12:51:19.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-08-03 12:51:20.271 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-08-03 12:51:20.275 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 12:51:20.294 +03:00 [INF] Executed action /Blog/Posts/Detail in 23.4801ms +2018-08-03 12:51:20.313 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 7 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 12:51:20.367 +03:00 [INF] Request finished in 431.2752ms 500 text/html; charset=utf-8 +2018-08-03 13:53:48.276 +03:00 [INF] Loaded modules: +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 13:53:48.296 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 13:53:48.297 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 13:53:48.298 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 13:53:50.082 +03:00 [INF] Initialized all modules. +2018-08-03 13:53:50.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 13:53:52.791 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 13:53:52.814 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:53:53.557 +03:00 [INF] Executed action /Index in 760.62110000000007ms +2018-08-03 13:53:53.583 +03:00 [INF] Request finished in 3190.0301ms 200 text/html; charset=utf-8 +2018-08-03 13:53:53.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 13:53:53.611 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 13:53:53.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 13:53:53.616 +03:00 [INF] Request finished in 10.4882ms 304 image/png +2018-08-03 13:53:53.616 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 13:53:53.617 +03:00 [INF] Request finished in 1.5756ms 304 image/png +2018-08-03 13:53:53.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 13:53:53.618 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 13:53:53.619 +03:00 [INF] Request finished in 0.8156ms 304 image/png +2018-08-03 13:53:53.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 13:53:53.629 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 13:53:53.629 +03:00 [INF] Request finished in 0.6239ms 304 image/png +2018-08-03 13:53:53.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 13:53:53.630 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 13:53:53.630 +03:00 [INF] Request finished in 0.4847ms 304 image/png +2018-08-03 13:53:53.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 13:53:53.633 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 13:53:53.634 +03:00 [INF] Request finished in 1.5264ms 304 image/png +2018-08-03 13:53:53.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 13:53:53.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 13:53:53.640 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 13:53:53.640 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 13:53:53.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 13:53:53.640 +03:00 [INF] Request finished in 3.9885ms 304 image/png +2018-08-03 13:53:53.640 +03:00 [INF] Request finished in 6.0228ms 304 image/png +2018-08-03 13:53:53.641 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 13:53:53.641 +03:00 [INF] Request finished in 4.233ms 304 image/png +2018-08-03 13:53:53.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 13:53:53.642 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 13:53:53.642 +03:00 [INF] Request finished in 1.1389ms 304 image/png +2018-08-03 13:53:53.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 13:53:53.649 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 13:53:53.649 +03:00 [INF] Request finished in 1.2657ms 304 image/png +2018-08-03 13:53:53.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 13:53:53.651 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 13:53:53.651 +03:00 [INF] Request finished in 1.1243ms 304 image/png +2018-08-03 13:53:53.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 13:53:53.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 13:53:53.653 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 13:53:53.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 13:53:53.653 +03:00 [INF] Request finished in 0.5479ms 304 image/png +2018-08-03 13:53:53.654 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 13:53:53.654 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 13:53:53.654 +03:00 [INF] Request finished in 0.5735ms 304 image/png +2018-08-03 13:53:53.654 +03:00 [INF] Request finished in 0.7534ms 304 image/png +2018-08-03 13:53:53.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 13:53:53.659 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 13:53:53.659 +03:00 [INF] Request finished in 0.6266ms 304 image/png +2018-08-03 13:53:53.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 13:53:53.668 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 13:53:53.668 +03:00 [INF] Request finished in 0.6352ms 304 image/png +2018-08-03 13:53:53.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 13:53:53.669 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 13:53:53.670 +03:00 [INF] Request finished in 0.9223ms 304 image/png +2018-08-03 13:53:53.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 13:53:53.678 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 13:53:53.678 +03:00 [INF] Request finished in 2.9215ms 304 image/png +2018-08-03 13:53:53.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 13:53:53.679 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 13:53:53.680 +03:00 [INF] Request finished in 0.6256ms 304 image/png +2018-08-03 13:53:53.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 13:53:53.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 13:53:53.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 13:53:53.685 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 13:53:53.685 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 13:53:53.685 +03:00 [INF] Request finished in 0.6548ms 304 image/png +2018-08-03 13:53:53.685 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 13:53:53.685 +03:00 [INF] Request finished in 0.3517ms 304 image/png +2018-08-03 13:53:53.685 +03:00 [INF] Request finished in 0.4064ms 304 image/png +2018-08-03 13:53:53.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 13:53:53.690 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 13:53:53.691 +03:00 [INF] Request finished in 1.3831ms 304 image/png +2018-08-03 13:53:53.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 13:53:53.693 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 13:53:53.693 +03:00 [INF] Request finished in 0.7886ms 304 image/png +2018-08-03 13:53:53.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 13:53:53.700 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 13:53:53.700 +03:00 [INF] Request finished in 1.0108ms 304 image/png +2018-08-03 13:53:53.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 13:53:53.707 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 13:53:53.707 +03:00 [INF] Request finished in 1.1598ms 304 image/png +2018-08-03 13:53:53.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 13:53:53.708 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 13:53:53.708 +03:00 [INF] Request finished in 0.8602ms 304 image/png +2018-08-03 13:53:53.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 13:53:53.710 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 13:53:53.710 +03:00 [INF] Request finished in 0.8402ms 304 image/png +2018-08-03 13:53:53.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 13:53:53.712 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 13:53:53.712 +03:00 [INF] Request finished in 0.8344ms 304 image/png +2018-08-03 13:53:53.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 13:53:53.721 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 13:53:53.721 +03:00 [INF] Request finished in 0.8735ms 304 image/png +2018-08-03 13:53:53.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 13:53:53.725 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 13:53:53.725 +03:00 [INF] Request finished in 0.7943ms 304 image/png +2018-08-03 13:53:53.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 13:53:53.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 13:53:53.726 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 13:53:53.726 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 13:53:53.727 +03:00 [INF] Request finished in 1.7208ms 304 image/png +2018-08-03 13:53:53.728 +03:00 [INF] Request finished in 1.2968ms 304 image/png +2018-08-03 13:53:53.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 13:53:53.733 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 13:53:53.733 +03:00 [INF] Request finished in 1.6562ms 304 image/png +2018-08-03 13:53:53.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:53:53.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:53:53.809 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:53:53.809 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:53:53.865 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:53:53.867 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:53:53.967 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.967 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.968 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.969 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.969 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.969 +03:00 [INF] Authorization failed. +2018-08-03 13:53:53.969 +03:00 [INF] Authorization failed. +2018-08-03 13:53:54.000 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.45840000000001ms. +2018-08-03 13:53:54.010 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:53:54.011 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 201.7624ms +2018-08-03 13:53:54.011 +03:00 [INF] Request finished in 221.1351ms 200 text/plain; charset=utf-8 +2018-08-03 13:53:54.012 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 147.19580000000002ms. +2018-08-03 13:53:54.013 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:53:54.014 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 204.29080000000002ms +2018-08-03 13:53:54.014 +03:00 [INF] Request finished in 225.6509ms 200 text/plain; charset=utf-8 +2018-08-03 13:53:57.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 13:53:58.066 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:53:58.094 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:53:58.478 +03:00 [INF] Executed action /Templates in 411.6802ms +2018-08-03 13:53:58.478 +03:00 [INF] Request finished in 834.7979ms 200 text/html; charset=utf-8 +2018-08-03 13:53:58.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:53:58.588 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:53:58.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:53:58.590 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.591 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.592 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.593 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.593 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:53:58.593 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.593 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.593 +03:00 [INF] Authorization failed. +2018-08-03 13:53:58.594 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:53:58.594 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.19690000000000002ms. +2018-08-03 13:53:58.595 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:53:58.595 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1166ms +2018-08-03 13:53:58.595 +03:00 [INF] Request finished in 6.7564ms 200 text/plain; charset=utf-8 +2018-08-03 13:53:58.596 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.3034ms. +2018-08-03 13:53:58.596 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:53:58.597 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.8455000000000013ms +2018-08-03 13:53:58.597 +03:00 [INF] Request finished in 13.2074ms 200 text/plain; charset=utf-8 +2018-08-03 13:54:10.329 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Templates application/x-www-form-urlencoded 363 +2018-08-03 13:54:10.330 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:54:10.372 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-08-03 13:54:12.840 +03:00 [INF] Executing Microsoft.AspNetCore.Mvc.FileContentResult, sending file with download name 'Demo.zip' ... +2018-08-03 13:54:12.873 +03:00 [INF] Executed action /Templates in 2542.3651ms +2018-08-03 13:54:12.873 +03:00 [INF] Request finished in 2544.1683ms 200 application/zip +2018-08-03 13:55:28.732 +03:00 [INF] Loaded modules: +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 13:55:28.748 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 13:55:28.749 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 13:55:28.750 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 13:55:28.752 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 13:55:30.903 +03:00 [INF] Initialized all modules. +2018-08-03 13:55:31.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 13:55:34.063 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:55:34.125 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:55:34.929 +03:00 [INF] Executed action /Templates in 862.2364ms +2018-08-03 13:55:34.940 +03:00 [INF] Request finished in 3889.4942ms 200 text/html; charset=utf-8 +2018-08-03 13:55:34.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 13:55:34.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 13:55:34.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 13:55:34.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 13:55:34.987 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 13:55:34.987 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 13:55:34.987 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 13:55:34.987 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 13:55:34.990 +03:00 [INF] Request finished in 9.4137ms 304 text/css +2018-08-03 13:55:34.990 +03:00 [INF] Request finished in 3.5102ms 304 text/css +2018-08-03 13:55:34.990 +03:00 [INF] Request finished in 5.1965ms 304 text/css +2018-08-03 13:55:34.990 +03:00 [INF] Request finished in 9.6033ms 304 text/css +2018-08-03 13:55:35.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 13:55:35.002 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 13:55:35.002 +03:00 [INF] Request finished in 1.4229ms 304 text/css +2018-08-03 13:55:35.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 13:55:35.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 13:55:35.008 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 13:55:35.008 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 13:55:35.008 +03:00 [INF] Request finished in 1.0375ms 304 text/css +2018-08-03 13:55:35.008 +03:00 [INF] Request finished in 0.8329ms 304 text/css +2018-08-03 13:55:35.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 13:55:35.008 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 13:55:35.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 13:55:35.009 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 13:55:35.010 +03:00 [INF] Request finished in 1.2401ms 304 text/css +2018-08-03 13:55:35.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 13:55:35.010 +03:00 [INF] Request finished in 1.7147ms 304 application/javascript +2018-08-03 13:55:35.010 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 13:55:35.012 +03:00 [INF] Request finished in 2.672ms 304 application/javascript +2018-08-03 13:55:35.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 13:55:35.026 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 13:55:35.026 +03:00 [INF] Request finished in 2.2269ms 304 application/javascript +2018-08-03 13:55:35.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 13:55:35.028 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 13:55:35.028 +03:00 [INF] Request finished in 0.5505ms 304 application/javascript +2018-08-03 13:55:35.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 13:55:35.036 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 13:55:35.036 +03:00 [INF] Request finished in 0.6495ms 304 application/javascript +2018-08-03 13:55:35.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 13:55:35.041 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 13:55:35.041 +03:00 [INF] Request finished in 0.6312ms 304 application/javascript +2018-08-03 13:55:35.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 13:55:35.051 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 13:55:35.052 +03:00 [INF] Request finished in 4.2803ms 304 application/javascript +2018-08-03 13:55:35.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 13:55:35.055 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 13:55:35.056 +03:00 [INF] Request finished in 0.9395ms 304 application/javascript +2018-08-03 13:55:35.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 13:55:35.058 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 13:55:35.058 +03:00 [INF] Request finished in 1.0877ms 304 application/javascript +2018-08-03 13:55:35.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 13:55:35.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 13:55:35.065 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 13:55:35.065 +03:00 [INF] Request finished in 0.5905ms 304 application/javascript +2018-08-03 13:55:35.066 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 13:55:35.066 +03:00 [INF] Request finished in 1.6693ms 304 application/javascript +2018-08-03 13:55:35.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 13:55:35.070 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 13:55:35.071 +03:00 [INF] Request finished in 1.6132ms 304 application/javascript +2018-08-03 13:55:35.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 13:55:35.076 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 13:55:35.076 +03:00 [INF] Request finished in 1.1014ms 304 application/javascript +2018-08-03 13:55:35.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 13:55:35.082 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 13:55:35.082 +03:00 [INF] Request finished in 1.9107ms 304 application/javascript +2018-08-03 13:55:35.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 13:55:35.089 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 13:55:35.089 +03:00 [INF] Request finished in 0.911ms 304 application/javascript +2018-08-03 13:55:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 13:55:35.096 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 13:55:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 13:55:35.096 +03:00 [INF] Request finished in 1.1328ms 304 application/javascript +2018-08-03 13:55:35.097 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 13:55:35.097 +03:00 [INF] Request finished in 0.718ms 304 application/javascript +2018-08-03 13:55:35.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 13:55:35.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 13:55:35.108 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 13:55:35.108 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 13:55:35.108 +03:00 [INF] Request finished in 0.7696ms 304 application/javascript +2018-08-03 13:55:35.108 +03:00 [INF] Request finished in 0.6886ms 304 application/javascript +2018-08-03 13:55:35.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 13:55:35.114 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 13:55:35.114 +03:00 [INF] Request finished in 0.6949ms 304 image/svg+xml +2018-08-03 13:55:35.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 13:55:35.117 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 13:55:35.117 +03:00 [INF] Request finished in 1.8639ms 304 image/png +2018-08-03 13:55:35.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 13:55:35.128 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 13:55:35.128 +03:00 [INF] Request finished in 0.7822ms 304 image/svg+xml +2018-08-03 13:55:35.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 13:55:35.131 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 13:55:35.131 +03:00 [INF] Request finished in 1.5044ms 304 application/javascript +2018-08-03 13:55:35.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 13:55:35.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:55:35.138 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 13:55:35.138 +03:00 [INF] Request finished in 1.4341ms 304 application/javascript +2018-08-03 13:55:35.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:55:35.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 13:55:35.145 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 13:55:35.145 +03:00 [INF] Request finished in 0.8549ms 304 application/javascript +2018-08-03 13:55:35.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 13:55:35.146 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 13:55:35.146 +03:00 [INF] Request finished in 0.5497ms 304 application/javascript +2018-08-03 13:55:35.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-08-03 13:55:35.153 +03:00 [INF] The file /Pages/templates.js was not modified +2018-08-03 13:55:35.153 +03:00 [INF] Request finished in 6.3211ms 304 application/javascript +2018-08-03 13:55:35.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 13:55:35.156 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 13:55:35.156 +03:00 [INF] Request finished in 0.5947ms 304 image/jpeg +2018-08-03 13:55:35.163 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:55:35.163 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:55:35.243 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:55:35.243 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:55:35.358 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.359 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.359 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.359 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.359 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.360 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.361 +03:00 [INF] Authorization failed. +2018-08-03 13:55:35.385 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 131.6285ms. +2018-08-03 13:55:35.397 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:55:35.398 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 234.88430000000002ms +2018-08-03 13:55:35.398 +03:00 [INF] Request finished in 255.1813ms 200 text/plain; charset=utf-8 +2018-08-03 13:55:35.427 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 183.836ms. +2018-08-03 13:55:35.427 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:55:35.428 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 264.7459ms +2018-08-03 13:55:35.428 +03:00 [INF] Request finished in 291.2192ms 200 text/plain; charset=utf-8 +2018-08-03 13:56:11.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 13:56:11.322 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:56:11.323 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:56:11.330 +03:00 [INF] Executed action /Templates in 8.1777ms +2018-08-03 13:56:11.330 +03:00 [INF] Request finished in 11.5968ms 200 text/html; charset=utf-8 +2018-08-03 13:56:11.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:56:11.427 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:56:11.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:56:11.428 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:56:11.429 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.429 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.429 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.429 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.430 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.431 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.431 +03:00 [INF] Authorization failed. +2018-08-03 13:56:11.432 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:56:11.434 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:56:11.434 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1777ms. +2018-08-03 13:56:11.434 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.3151ms. +2018-08-03 13:56:11.434 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:56:11.434 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:56:11.434 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9388ms +2018-08-03 13:56:11.434 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.3049ms +2018-08-03 13:56:11.434 +03:00 [INF] Request finished in 9.0768ms 200 text/plain; charset=utf-8 +2018-08-03 13:56:11.434 +03:00 [INF] Request finished in 5.9606ms 200 text/plain; charset=utf-8 +2018-08-03 13:56:12.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 13:56:12.848 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 13:56:12.849 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:56:13.303 +03:00 [INF] Executed action /Index in 455.076ms +2018-08-03 13:56:13.315 +03:00 [INF] Request finished in 776.3815ms 200 text/html; charset=utf-8 +2018-08-03 13:56:13.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:56:13.481 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:56:13.483 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:56:13.483 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.483 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.483 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.484 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.485 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.485 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.485 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.486 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.486 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.487 +03:00 [INF] Authorization failed. +2018-08-03 13:56:13.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:56:13.493 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:56:13.493 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 10.4369ms. +2018-08-03 13:56:13.494 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:56:13.494 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:56:13.494 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.3458ms +2018-08-03 13:56:13.494 +03:00 [INF] Request finished in 14.3753ms 200 text/plain; charset=utf-8 +2018-08-03 13:56:13.494 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5565ms. +2018-08-03 13:56:13.495 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:56:13.496 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2725ms +2018-08-03 13:56:13.496 +03:00 [INF] Request finished in 6.1977ms 200 text/plain; charset=utf-8 +2018-08-03 13:57:56.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 13:57:56.027 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:57:56.028 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:57:56.033 +03:00 [INF] Executed action /Templates in 6.2144ms +2018-08-03 13:57:56.034 +03:00 [INF] Request finished in 8.0761ms 200 text/html; charset=utf-8 +2018-08-03 13:57:56.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:57:56.135 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:57:56.136 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:57:56.136 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.136 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.137 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.138 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.138 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.138 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.138 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:57:56.140 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:57:56.141 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0976ms. +2018-08-03 13:57:56.141 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:57:56.141 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7113000000000005ms +2018-08-03 13:57:56.142 +03:00 [INF] Request finished in 8.3127ms 200 text/plain; charset=utf-8 +2018-08-03 13:57:56.142 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:57:56.142 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1373ms. +2018-08-03 13:57:56.142 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:57:56.142 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0228ms +2018-08-03 13:57:56.142 +03:00 [INF] Request finished in 3.4922ms 200 text/plain; charset=utf-8 +2018-08-03 13:57:56.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 13:57:56.841 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 13:57:56.841 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:57:56.849 +03:00 [INF] Executed action /Index in 8.8044000000000011ms +2018-08-03 13:57:56.850 +03:00 [INF] Request finished in 10.4403ms 200 text/html; charset=utf-8 +2018-08-03 13:57:56.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:57:56.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:57:56.956 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:57:56.956 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:57:56.957 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:57:56.957 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:57:56.958 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.114ms. +2018-08-03 13:57:56.958 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:57:56.958 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6247ms +2018-08-03 13:57:56.958 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.958 +03:00 [INF] Request finished in 2.8089ms 200 text/plain; charset=utf-8 +2018-08-03 13:57:56.958 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.959 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.960 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.960 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.960 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.960 +03:00 [INF] Authorization failed. +2018-08-03 13:57:56.963 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.1325ms. +2018-08-03 13:57:56.963 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:57:56.963 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.8613ms +2018-08-03 13:57:56.963 +03:00 [INF] Request finished in 7.8063ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:07.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 13:58:07.386 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 13:58:07.386 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:58:07.393 +03:00 [INF] Executed action /Index in 6.8355000000000006ms +2018-08-03 13:58:07.393 +03:00 [INF] Request finished in 8.1613ms 200 text/html; charset=utf-8 +2018-08-03 13:58:07.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-03 13:58:07.431 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-03 13:58:07.431 +03:00 [INF] Request finished in 1.2644ms 304 text/css +2018-08-03 13:58:07.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-03 13:58:07.432 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-03 13:58:07.432 +03:00 [INF] Request finished in 0.8807ms 304 text/css +2018-08-03 13:58:07.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-03 13:58:07.442 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-03 13:58:07.443 +03:00 [INF] Request finished in 3.2188ms 304 text/css +2018-08-03 13:58:07.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-03 13:58:07.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-03 13:58:07.448 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-03 13:58:07.448 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-03 13:58:07.449 +03:00 [INF] Request finished in 1.8183ms 304 text/css +2018-08-03 13:58:07.451 +03:00 [INF] Request finished in 3.8923ms 304 text/css +2018-08-03 13:58:07.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-03 13:58:07.452 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-03 13:58:07.453 +03:00 [INF] Request finished in 1.198ms 304 text/css +2018-08-03 13:58:07.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-03 13:58:07.458 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-03 13:58:07.459 +03:00 [INF] Request finished in 1.0774ms 304 text/css +2018-08-03 13:58:07.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-03 13:58:07.462 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-03 13:58:07.462 +03:00 [INF] Request finished in 0.658ms 304 text/css +2018-08-03 13:58:07.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-03 13:58:07.464 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-03 13:58:07.465 +03:00 [INF] Request finished in 1.4384ms 304 application/javascript +2018-08-03 13:58:07.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-03 13:58:07.465 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-03 13:58:07.466 +03:00 [INF] Request finished in 1.6854ms 304 application/javascript +2018-08-03 13:58:07.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-03 13:58:07.466 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-03 13:58:07.466 +03:00 [INF] Request finished in 0.6083ms 304 application/javascript +2018-08-03 13:58:07.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-03 13:58:07.469 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-03 13:58:07.469 +03:00 [INF] Request finished in 0.7508ms 304 application/javascript +2018-08-03 13:58:07.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-03 13:58:07.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-03 13:58:07.485 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-03 13:58:07.486 +03:00 [INF] Request finished in 1.8306ms 304 application/javascript +2018-08-03 13:58:07.486 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-03 13:58:07.486 +03:00 [INF] Request finished in 2.7736ms 304 application/javascript +2018-08-03 13:58:07.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-03 13:58:07.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-03 13:58:07.493 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-03 13:58:07.493 +03:00 [INF] Request finished in 1.3854ms 304 application/javascript +2018-08-03 13:58:07.494 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-03 13:58:07.494 +03:00 [INF] Request finished in 2.3695ms 304 application/javascript +2018-08-03 13:58:07.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-03 13:58:07.498 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-03 13:58:07.498 +03:00 [INF] Request finished in 0.7259ms 304 image/svg+xml +2018-08-03 13:58:07.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-03 13:58:07.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-03 13:58:07.506 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-03 13:58:07.506 +03:00 [INF] The file /img/modular.png was not modified +2018-08-03 13:58:07.506 +03:00 [INF] Request finished in 0.569ms 304 image/png +2018-08-03 13:58:07.506 +03:00 [INF] Request finished in 0.6612ms 304 image/png +2018-08-03 13:58:07.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-03 13:58:07.507 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-03 13:58:07.507 +03:00 [INF] Request finished in 0.8684ms 304 image/png +2018-08-03 13:58:07.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-03 13:58:07.509 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-03 13:58:07.510 +03:00 [INF] Request finished in 0.6746ms 304 image/png +2018-08-03 13:58:07.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-03 13:58:07.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-03 13:58:07.520 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-03 13:58:07.520 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-03 13:58:07.520 +03:00 [INF] Request finished in 0.7155ms 304 image/png +2018-08-03 13:58:07.520 +03:00 [INF] Request finished in 0.7465ms 304 image/png +2018-08-03 13:58:07.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-03 13:58:07.523 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-03 13:58:07.523 +03:00 [INF] Request finished in 1.1249ms 304 image/png +2018-08-03 13:58:07.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-03 13:58:07.529 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-03 13:58:07.529 +03:00 [INF] Request finished in 1.0025ms 304 image/png +2018-08-03 13:58:07.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-03 13:58:07.533 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-03 13:58:07.533 +03:00 [INF] Request finished in 0.6101ms 304 image/png +2018-08-03 13:58:07.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-03 13:58:07.534 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-03 13:58:07.535 +03:00 [INF] Request finished in 0.8068ms 304 image/png +2018-08-03 13:58:07.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-03 13:58:07.542 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-03 13:58:07.542 +03:00 [INF] Request finished in 1.1143ms 304 image/png +2018-08-03 13:58:07.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-03 13:58:07.546 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-03 13:58:07.546 +03:00 [INF] Request finished in 2.4484ms 304 image/png +2018-08-03 13:58:07.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-03 13:58:07.547 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-03 13:58:07.547 +03:00 [INF] Request finished in 0.7434ms 304 image/png +2018-08-03 13:58:07.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-03 13:58:07.554 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-03 13:58:07.554 +03:00 [INF] Request finished in 2.5752ms 304 image/png +2018-08-03 13:58:07.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-03 13:58:07.559 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-03 13:58:07.560 +03:00 [INF] Request finished in 0.6053ms 304 image/png +2018-08-03 13:58:07.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-03 13:58:07.560 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-03 13:58:07.561 +03:00 [INF] Request finished in 0.9094ms 304 image/png +2018-08-03 13:58:07.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-03 13:58:07.564 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-03 13:58:07.564 +03:00 [INF] Request finished in 0.7438ms 304 image/png +2018-08-03 13:58:07.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-03 13:58:07.572 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-03 13:58:07.572 +03:00 [INF] Request finished in 1.3186ms 304 image/png +2018-08-03 13:58:07.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-03 13:58:07.574 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-03 13:58:07.574 +03:00 [INF] Request finished in 0.9466ms 304 image/png +2018-08-03 13:58:07.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-03 13:58:07.578 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-03 13:58:07.578 +03:00 [INF] Request finished in 0.8083ms 304 image/png +2018-08-03 13:58:07.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-03 13:58:07.580 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-03 13:58:07.581 +03:00 [INF] Request finished in 1.1885ms 304 image/png +2018-08-03 13:58:07.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-03 13:58:07.585 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-03 13:58:07.586 +03:00 [INF] Request finished in 3.2686ms 304 image/png +2018-08-03 13:58:07.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-03 13:58:07.588 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-03 13:58:07.588 +03:00 [INF] Request finished in 0.6631ms 304 image/png +2018-08-03 13:58:07.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-03 13:58:07.589 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-03 13:58:07.589 +03:00 [INF] Request finished in 0.5846ms 304 image/png +2018-08-03 13:58:07.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-03 13:58:07.595 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-03 13:58:07.595 +03:00 [INF] Request finished in 0.6981ms 304 image/png +2018-08-03 13:58:07.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-03 13:58:07.596 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-03 13:58:07.597 +03:00 [INF] Request finished in 0.6044ms 304 image/png +2018-08-03 13:58:07.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-03 13:58:07.601 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-03 13:58:07.601 +03:00 [INF] Request finished in 1.308ms 304 image/png +2018-08-03 13:58:07.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-03 13:58:07.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-03 13:58:07.604 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-03 13:58:07.604 +03:00 [INF] Request finished in 0.8338ms 304 image/png +2018-08-03 13:58:07.604 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-03 13:58:07.604 +03:00 [INF] Request finished in 1.0401ms 304 image/png +2018-08-03 13:58:07.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-03 13:58:07.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-03 13:58:07.611 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-03 13:58:07.611 +03:00 [INF] Request finished in 0.5619ms 304 image/png +2018-08-03 13:58:07.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-03 13:58:07.613 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-03 13:58:07.613 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-03 13:58:07.613 +03:00 [INF] Request finished in 2.5509ms 304 image/png +2018-08-03 13:58:07.613 +03:00 [INF] Request finished in 0.551ms 304 image/png +2018-08-03 13:58:07.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-03 13:58:07.616 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-03 13:58:07.616 +03:00 [INF] Request finished in 2.5516ms 304 image/png +2018-08-03 13:58:07.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-03 13:58:07.621 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-03 13:58:07.621 +03:00 [INF] Request finished in 1.2123ms 304 image/png +2018-08-03 13:58:07.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-03 13:58:07.622 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-03 13:58:07.624 +03:00 [INF] Request finished in 1.4335ms 304 image/png +2018-08-03 13:58:07.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-03 13:58:07.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-03 13:58:07.629 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-03 13:58:07.629 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-03 13:58:07.629 +03:00 [INF] Request finished in 1.476ms 304 image/svg+xml +2018-08-03 13:58:07.629 +03:00 [INF] Request finished in 1.0601ms 304 application/javascript +2018-08-03 13:58:07.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-03 13:58:07.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-03 13:58:07.637 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-03 13:58:07.637 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-03 13:58:07.637 +03:00 [INF] Request finished in 0.5021ms 304 application/javascript +2018-08-03 13:58:07.638 +03:00 [INF] Request finished in 1.3562ms 304 application/javascript +2018-08-03 13:58:07.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-03 13:58:07.639 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-03 13:58:07.639 +03:00 [INF] Request finished in 1.4397ms 304 application/javascript +2018-08-03 13:58:07.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-03 13:58:07.645 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-03 13:58:07.646 +03:00 [INF] Request finished in 0.7647ms 304 application/javascript +2018-08-03 13:58:07.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-03 13:58:07.653 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-03 13:58:07.653 +03:00 [INF] Request finished in 2.8339ms 304 application/javascript +2018-08-03 13:58:07.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-03 13:58:07.655 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-03 13:58:07.655 +03:00 [INF] Request finished in 1.1944ms 304 application/javascript +2018-08-03 13:58:07.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-03 13:58:07.661 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-03 13:58:07.662 +03:00 [INF] Request finished in 1.7209ms 304 application/javascript +2018-08-03 13:58:07.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-03 13:58:07.665 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-03 13:58:07.666 +03:00 [INF] Request finished in 1.6099ms 304 application/javascript +2018-08-03 13:58:07.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-03 13:58:07.675 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-03 13:58:07.676 +03:00 [INF] Request finished in 4.6247ms 304 application/javascript +2018-08-03 13:58:07.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-03 13:58:07.678 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-03 13:58:07.678 +03:00 [INF] Request finished in 2.2634ms 304 application/javascript +2018-08-03 13:58:07.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:58:07.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-03 13:58:07.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-03 13:58:07.685 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-03 13:58:07.686 +03:00 [INF] Request finished in 1.6349ms 304 application/javascript +2018-08-03 13:58:07.686 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-03 13:58:07.686 +03:00 [INF] Request finished in 0.8341ms 304 application/javascript +2018-08-03 13:58:07.686 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:07.688 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.688 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.689 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.690 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.690 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.690 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.690 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.690 +03:00 [INF] Authorization failed. +2018-08-03 13:58:07.696 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.6454ms. +2018-08-03 13:58:07.696 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:07.696 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.004000000000001ms +2018-08-03 13:58:07.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:58:07.697 +03:00 [INF] Request finished in 12.5452ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:07.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-03 13:58:07.698 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:07.698 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-03 13:58:07.699 +03:00 [INF] Request finished in 0.9676ms 304 application/javascript +2018-08-03 13:58:07.699 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:58:07.699 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1177ms. +2018-08-03 13:58:07.699 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:07.699 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3262ms +2018-08-03 13:58:07.699 +03:00 [INF] Request finished in 2.8049ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:07.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-03 13:58:07.707 +03:00 [INF] The file /js/vs.js was not modified +2018-08-03 13:58:07.707 +03:00 [INF] Request finished in 0.6362ms 304 application/javascript +2018-08-03 13:58:07.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-03 13:58:07.719 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-03 13:58:07.719 +03:00 [INF] Request finished in 0.9659ms 304 image/jpeg +2018-08-03 13:58:35.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 13:58:35.394 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 13:58:35.396 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:58:35.401 +03:00 [INF] Executed action /Templates in 6.0928ms +2018-08-03 13:58:35.401 +03:00 [INF] Request finished in 7.7053ms 200 text/html; charset=utf-8 +2018-08-03 13:58:35.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:58:35.494 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:35.496 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:58:35.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:58:35.497 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.497 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.498 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.499 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.500 +03:00 [INF] Authorization failed. +2018-08-03 13:58:35.500 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1414ms. +2018-08-03 13:58:35.500 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:35.500 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6166ms +2018-08-03 13:58:35.500 +03:00 [INF] Request finished in 3.4423ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:35.502 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4253ms. +2018-08-03 13:58:35.502 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:35.502 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.7898000000000005ms +2018-08-03 13:58:35.502 +03:00 [INF] Request finished in 9.2007ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:39.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 13:58:39.935 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 13:58:39.936 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 13:58:39.943 +03:00 [INF] Executed action /Index in 7.2502ms +2018-08-03 13:58:39.943 +03:00 [INF] Request finished in 8.9087ms 200 text/html; charset=utf-8 +2018-08-03 13:58:40.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 13:58:40.049 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:40.050 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 13:58:40.051 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.051 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.051 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.051 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.052 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 13:58:40.052 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.052 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.052 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.053 +03:00 [INF] Authorization failed. +2018-08-03 13:58:40.054 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 13:58:40.054 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0976ms. +2018-08-03 13:58:40.054 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:40.054 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.9593ms +2018-08-03 13:58:40.054 +03:00 [INF] Request finished in 3.1442ms 200 text/plain; charset=utf-8 +2018-08-03 13:58:40.056 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4027ms. +2018-08-03 13:58:40.056 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 13:58:40.056 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.9119ms +2018-08-03 13:58:40.056 +03:00 [INF] Request finished in 9.0432ms 200 text/plain; charset=utf-8 +2018-08-03 15:32:17.007 +03:00 [INF] Loaded modules: +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:32:17.025 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:32:17.026 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:32:17.509 +03:00 [INF] Initialized all modules. +2018-08-03 15:32:17.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:32:19.574 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Microsoft.AspNetCore.Mvc.Razor.Compilation.CompilationFailedException: One or more compilation failures occurred: +D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\Index.cshtml(330,161): error CS1061: 'IndexModel' does not contain a definition for 'PersonInput' and no extension method 'PersonInput' accepting a first argument of type 'IndexModel' could be found (are you missing a using directive or an assembly reference?) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.CompileAndEmit(RazorCodeDocument codeDocument, String generatedCode) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.CompileAndEmit(String relativePath) + at Microsoft.AspNetCore.Mvc.Razor.Internal.RazorViewCompiler.OnCacheMiss(String normalizedPath) +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.DefaultPageLoader.Load(PageActionDescriptor actionDescriptor) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvokerProvider.OnProvidersExecuting(ActionInvokerProviderContext context) + at Microsoft.AspNetCore.Mvc.Internal.ActionInvokerFactory.CreateInvoker(ActionContext actionContext) + at Microsoft.AspNetCore.Mvc.Internal.MvcAttributeRouteHandler.<>c__DisplayClass12_0.b__0(HttpContext c) + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-08-03 15:32:19.589 +03:00 [INF] Request finished in 1894.114ms 500 text/html; charset=utf-8 +2018-08-03 15:32:19.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-08-03 15:32:19.672 +03:00 [INF] Request finished in 8.6472ms 404 +2018-08-03 15:33:42.437 +03:00 [INF] Loaded modules: +2018-08-03 15:33:42.452 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 15:33:42.453 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 15:33:42.454 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:33:43.552 +03:00 [FTL] Application startup exception +Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityDataSeeder (ReflectionActivator), Services = [Volo.Abp.Identity.IIdentityDataSeeder], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) ---> System.Data.SqlClient.SqlException: Login failed for user 'sa'. + at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, Boolean applyTransientFaultHandling) + at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) + at System.Data.SqlClient.SqlConnection.Open() + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction(IsolationLevel isolationLevel) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction() + at Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade.BeginTransaction() + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransaction(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 83 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 69 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 54 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.<>c__DisplayClass3_0.b__0() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 42 + at System.Collections.Generic.AbpDictionaryExtensions.<>c__DisplayClass6_0`2.b__0(TKey k) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 101 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at Volo.Abp.Uow.UnitOfWork.GetOrAddDatabaseApi(String key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWork.cs:line 184 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 40 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 24 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbSet() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 20 + at Volo.Abp.SettingManagement.EntityFrameworkCore.EfCoreSettingRepository.FindAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.EntityFrameworkCore\Volo\Abp\SettingManagement\EntityFrameworkCore\EfCoreSettingRepository.cs:line 20 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.SettingManagement.SettingStore.GetOrNullAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.Domain\Volo\Abp\SettingManagement\SettingStore.cs:line 23 + at Volo.Abp.Settings.SettingManager.GetOrNullInternalAsync(String name, String providerName, String providerKey, Boolean fallback) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManager.cs:line 69 + at Volo.Abp.Settings.SettingManagerExtensions.GetAsync[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerExtensions.cs:line 27 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at Nito.AsyncEx.AsyncContext.Run[TResult](Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync[TResult](Func`1 func) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 60 + at Volo.Abp.Settings.SettingManagerSyncExtensions.Get[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerSyncExtensions.cs:line 26 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.OverrideOptions(IdentityOptions options) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 34 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.Create(String name) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 27 + at Microsoft.Extensions.Options.OptionsManager`1.<>c__DisplayClass5_0.b__0() + at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode) + at System.Lazy`1.ExecutionAndPublication(LazyHelper executionAndPublication, Boolean useDefaultConstructor) + at System.Lazy`1.CreateValue() + at Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(String name, Func`1 createOptions) + at Microsoft.Extensions.Options.OptionsManager`1.Get(String name) + at Microsoft.Extensions.Options.OptionsManager`1.get_Value() + at Microsoft.AspNetCore.Identity.UserManager`1..ctor(IUserStore`1 store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger) + at Volo.Abp.Identity.IdentityUserManager..ctor(IdentityUserStore store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger, ICancellationTokenProvider cancellationTokenProvider) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\IdentityUserManager.cs:line 32 + at lambda_method(Closure , Object[] ) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + --- End of inner exception stack trace --- + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Resolving.ResolveOperation.Execute(IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) in D:\Github\abp\framework\src\Volo.Abp.Autofac\Autofac\Extensions\DependencyInjection\AutofacServiceProvider.cs:line 69 + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.AbpWebSite.AbpWebSiteWebModule.<>c__DisplayClass6_0.<b__2>d.MoveNext() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 180 +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.AbpWebSite.AbpWebSiteWebModule.OnApplicationInitialization(ApplicationInitializationContext context) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 178 + at Volo.Abp.Modularity.OnApplicationInitializationModuleLifecycleContributer.Initialize(ApplicationInitializationContext context, IAbpModule module) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\DefaultModuleLifecycleContributer.cs:line 7 + at Volo.Abp.Modularity.ModuleManager.InitializeModules(ApplicationInitializationContext context) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\ModuleManager.cs:line 41 + at Volo.Abp.AbpApplicationBase.InitializeModules() in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationBase.cs:line 72 + at Volo.Abp.AbpApplicationWithExternalServiceProvider.Initialize(IServiceProvider serviceProvider) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationWithExternalServiceProvider.cs:line 27 + at Microsoft.AspNetCore.Builder.AbpApplicationBuilderExtensions.InitializeApplication(IApplicationBuilder app) in D:\Github\abp\framework\src\Volo.Abp.AspNetCore\Microsoft\AspNetCore\Builder\AbpApplicationBuilderExtensions.cs:line 27 + at Volo.AbpWebSite.Startup.Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Startup.cs:line 36 +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app) + at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass4_0.b__0(IApplicationBuilder app) + at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder) + at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication() +2018-08-03 15:33:43.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:33:43.793 +03:00 [INF] Request finished in 65.6373ms 500 text/html; charset=utf-8 +2018-08-03 15:34:19.996 +03:00 [INF] Loaded modules: +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:34:20.013 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 15:34:20.014 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:34:20.015 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:34:20.016 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:34:20.016 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 15:34:20.017 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 15:34:20.018 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:34:21.123 +03:00 [FTL] Application startup exception +Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityDataSeeder (ReflectionActivator), Services = [Volo.Abp.Identity.IIdentityDataSeeder], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Login failed for user 'sa'. (See inner exception for details.) ---> System.Data.SqlClient.SqlException: Login failed for user 'sa'. + at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, Boolean applyTransientFaultHandling) + at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) + at System.Data.SqlClient.SqlConnection.Open() + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction(IsolationLevel isolationLevel) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction() + at Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade.BeginTransaction() + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransaction(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 83 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 69 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 54 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.<>c__DisplayClass3_0.b__0() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 42 + at System.Collections.Generic.AbpDictionaryExtensions.<>c__DisplayClass6_0`2.b__0(TKey k) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 101 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at Volo.Abp.Uow.UnitOfWork.GetOrAddDatabaseApi(String key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWork.cs:line 184 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 40 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 24 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbSet() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 20 + at Volo.Abp.SettingManagement.EntityFrameworkCore.EfCoreSettingRepository.FindAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.EntityFrameworkCore\Volo\Abp\SettingManagement\EntityFrameworkCore\EfCoreSettingRepository.cs:line 20 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.SettingManagement.SettingStore.GetOrNullAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.Domain\Volo\Abp\SettingManagement\SettingStore.cs:line 23 + at Volo.Abp.Settings.SettingManager.GetOrNullInternalAsync(String name, String providerName, String providerKey, Boolean fallback) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManager.cs:line 69 + at Volo.Abp.Settings.SettingManagerExtensions.GetAsync[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerExtensions.cs:line 27 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at Nito.AsyncEx.AsyncContext.Run[TResult](Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync[TResult](Func`1 func) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 60 + at Volo.Abp.Settings.SettingManagerSyncExtensions.Get[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerSyncExtensions.cs:line 26 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.OverrideOptions(IdentityOptions options) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 34 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.Create(String name) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 27 + at Microsoft.Extensions.Options.OptionsManager`1.<>c__DisplayClass5_0.b__0() + at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode) + at System.Lazy`1.ExecutionAndPublication(LazyHelper executionAndPublication, Boolean useDefaultConstructor) + at System.Lazy`1.CreateValue() + at Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(String name, Func`1 createOptions) + at Microsoft.Extensions.Options.OptionsManager`1.Get(String name) + at Microsoft.Extensions.Options.OptionsManager`1.get_Value() + at Microsoft.AspNetCore.Identity.UserManager`1..ctor(IUserStore`1 store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger) + at Volo.Abp.Identity.IdentityUserManager..ctor(IdentityUserStore store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger, ICancellationTokenProvider cancellationTokenProvider) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\IdentityUserManager.cs:line 32 + at lambda_method(Closure , Object[] ) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + --- End of inner exception stack trace --- + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Resolving.ResolveOperation.Execute(IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) in D:\Github\abp\framework\src\Volo.Abp.Autofac\Autofac\Extensions\DependencyInjection\AutofacServiceProvider.cs:line 69 + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.AbpWebSite.AbpWebSiteWebModule.<>c__DisplayClass6_0.<b__2>d.MoveNext() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 180 +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.AbpWebSite.AbpWebSiteWebModule.OnApplicationInitialization(ApplicationInitializationContext context) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 178 + at Volo.Abp.Modularity.OnApplicationInitializationModuleLifecycleContributer.Initialize(ApplicationInitializationContext context, IAbpModule module) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\DefaultModuleLifecycleContributer.cs:line 7 + at Volo.Abp.Modularity.ModuleManager.InitializeModules(ApplicationInitializationContext context) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\ModuleManager.cs:line 41 + at Volo.Abp.AbpApplicationBase.InitializeModules() in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationBase.cs:line 72 + at Volo.Abp.AbpApplicationWithExternalServiceProvider.Initialize(IServiceProvider serviceProvider) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationWithExternalServiceProvider.cs:line 27 + at Microsoft.AspNetCore.Builder.AbpApplicationBuilderExtensions.InitializeApplication(IApplicationBuilder app) in D:\Github\abp\framework\src\Volo.Abp.AspNetCore\Microsoft\AspNetCore\Builder\AbpApplicationBuilderExtensions.cs:line 27 + at Volo.AbpWebSite.Startup.Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Startup.cs:line 36 +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app) + at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass4_0.b__0(IApplicationBuilder app) + at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder) + at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication() +2018-08-03 15:34:21.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:34:21.377 +03:00 [INF] Request finished in 62.4847ms 500 text/html; charset=utf-8 +2018-08-03 15:34:54.751 +03:00 [INF] Loaded modules: +2018-08-03 15:34:54.765 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:34:54.766 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 15:34:54.767 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:34:54.768 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 15:34:54.769 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:35:05.941 +03:00 [FTL] Application startup exception +Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityDataSeeder (ReflectionActivator), Services = [Volo.Abp.Identity.IIdentityDataSeeder], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Cannot open database "AbpIo" requested by the login. The login failed. +Login failed for user 'MicrosoftAccount\halilibrahimkalkan@outlook.com'. (See inner exception for details.) (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An error occurred during the activation of a particular registration. See the inner exception for details. Registration: Activator = IdentityUserManager (ReflectionActivator), Services = [Volo.Abp.Identity.IdentityUserManager], Lifetime = Autofac.Core.Lifetime.CurrentScopeLifetime, Sharing = None, Ownership = OwnedByLifetimeScope ---> An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Cannot open database "AbpIo" requested by the login. The login failed. +Login failed for user 'MicrosoftAccount\halilibrahimkalkan@outlook.com'. (See inner exception for details.) (See inner exception for details.) ---> Autofac.Core.DependencyResolutionException: An exception was thrown while invoking the constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserStore, Microsoft.Extensions.Options.IOptions`1[Microsoft.AspNetCore.Identity.IdentityOptions], Microsoft.AspNetCore.Identity.IPasswordHasher`1[Volo.Abp.Identity.IdentityUser], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IUserValidator`1[Volo.Abp.Identity.IdentityUser]], System.Collections.Generic.IEnumerable`1[Microsoft.AspNetCore.Identity.IPasswordValidator`1[Volo.Abp.Identity.IdentityUser]], Microsoft.AspNetCore.Identity.ILookupNormalizer, Microsoft.AspNetCore.Identity.IdentityErrorDescriber, System.IServiceProvider, Microsoft.Extensions.Logging.ILogger`1[Volo.Abp.Identity.IdentityUserManager], Volo.Abp.Threading.ICancellationTokenProvider)' on type 'IdentityUserManager'. ---> Cannot open database "AbpIo" requested by the login. The login failed. +Login failed for user 'MicrosoftAccount\halilibrahimkalkan@outlook.com'. (See inner exception for details.) ---> System.Data.SqlClient.SqlException: Cannot open database "AbpIo" requested by the login. The login failed. +Login failed for user 'MicrosoftAccount\halilibrahimkalkan@outlook.com'. + at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, Boolean applyTransientFaultHandling) + at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) + at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) + at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) + at System.Data.SqlClient.SqlConnection.Open() + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenDbConnection(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(Boolean errorsExpected) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction(IsolationLevel isolationLevel) + at Microsoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction() + at Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade.BeginTransaction() + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContextWithTransaction(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 83 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 69 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.CreateDbContext(IUnitOfWork unitOfWork, String connectionStringName, String connectionString) in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 54 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.<>c__DisplayClass3_0.b__0() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 42 + at System.Collections.Generic.AbpDictionaryExtensions.<>c__DisplayClass6_0`2.b__0(TKey k) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 101 + at System.Collections.Generic.AbpDictionaryExtensions.GetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Core\System\Collections\Generic\AbpDictionaryExtensions.cs:line 115 + at Volo.Abp.Uow.UnitOfWork.GetOrAddDatabaseApi(String key, Func`1 factory) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWork.cs:line 184 + at Volo.Abp.Uow.EntityFrameworkCore.UnitOfWorkDbContextProvider`1.GetDbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Uow\EntityFrameworkCore\UnitOfWorkDbContextProvider.cs:line 40 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbContext() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 24 + at Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository`2.get_DbSet() in D:\Github\abp\framework\src\Volo.Abp.EntityFrameworkCore\Volo\Abp\Domain\Repositories\EntityFrameworkCore\EfCoreRepository.cs:line 20 + at Volo.Abp.SettingManagement.EntityFrameworkCore.EfCoreSettingRepository.FindAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.EntityFrameworkCore\Volo\Abp\SettingManagement\EntityFrameworkCore\EfCoreSettingRepository.cs:line 20 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.SettingManagement.SettingStore.GetOrNullAsync(String name, String providerName, String providerKey) in D:\Github\abp\modules\setting-management\src\Volo.Abp.SettingManagement.Domain\Volo\Abp\SettingManagement\SettingStore.cs:line 23 + at Volo.Abp.Settings.SettingManager.GetOrNullInternalAsync(String name, String providerName, String providerKey, Boolean fallback) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManager.cs:line 69 + at Volo.Abp.Settings.SettingManagerExtensions.GetAsync[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerExtensions.cs:line 27 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException[TResult](Task`1 task) + at Nito.AsyncEx.AsyncContext.Run[TResult](Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync[TResult](Func`1 func) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 60 + at Volo.Abp.Settings.SettingManagerSyncExtensions.Get[T](ISettingManager settingManager, String name, T defaultValue) in D:\Github\abp\framework\src\Volo.Abp.Settings\Volo\Abp\Settings\SettingManagerSyncExtensions.cs:line 26 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.OverrideOptions(IdentityOptions options) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 34 + at Volo.Abp.Identity.AbpIdentityOptionsFactory.Create(String name) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\AbpIdentityOptionsFactory.cs:line 27 + at Microsoft.Extensions.Options.OptionsManager`1.<>c__DisplayClass5_0.b__0() + at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode) + at System.Lazy`1.ExecutionAndPublication(LazyHelper executionAndPublication, Boolean useDefaultConstructor) + at System.Lazy`1.CreateValue() + at Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(String name, Func`1 createOptions) + at Microsoft.Extensions.Options.OptionsManager`1.Get(String name) + at Microsoft.Extensions.Options.OptionsManager`1.get_Value() + at Microsoft.AspNetCore.Identity.UserManager`1..ctor(IUserStore`1 store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger) + at Volo.Abp.Identity.IdentityUserManager..ctor(IdentityUserStore store, IOptions`1 optionsAccessor, IPasswordHasher`1 passwordHasher, IEnumerable`1 userValidators, IEnumerable`1 passwordValidators, ILookupNormalizer keyNormalizer, IdentityErrorDescriber errors, IServiceProvider services, ILogger`1 logger, ICancellationTokenProvider cancellationTokenProvider) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Volo\Abp\Identity\IdentityUserManager.cs:line 32 + at lambda_method(Closure , Object[] ) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + --- End of inner exception stack trace --- + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Activators.Reflection.ConstructorParameterBinding.Instantiate() + at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + --- End of inner exception stack trace --- + at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters) + at Autofac.Core.Resolving.InstanceLookup.Execute() + at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.Core.Resolving.ResolveOperation.Execute(IComponentRegistration registration, IEnumerable`1 parameters) + at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance) + at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters) + at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType) in D:\Github\abp\framework\src\Volo.Abp.Autofac\Autofac\Extensions\DependencyInjection\AutofacServiceProvider.cs:line 69 + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider) + at Volo.AbpWebSite.AbpWebSiteWebModule.<>c__DisplayClass6_0.<b__2>d.MoveNext() in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 180 +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.AbpWebSite.AbpWebSiteWebModule.OnApplicationInitialization(ApplicationInitializationContext context) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\AbpWebSiteWebModule.cs:line 178 + at Volo.Abp.Modularity.OnApplicationInitializationModuleLifecycleContributer.Initialize(ApplicationInitializationContext context, IAbpModule module) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\DefaultModuleLifecycleContributer.cs:line 7 + at Volo.Abp.Modularity.ModuleManager.InitializeModules(ApplicationInitializationContext context) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\ModuleManager.cs:line 41 + at Volo.Abp.AbpApplicationBase.InitializeModules() in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationBase.cs:line 72 + at Volo.Abp.AbpApplicationWithExternalServiceProvider.Initialize(IServiceProvider serviceProvider) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationWithExternalServiceProvider.cs:line 27 + at Microsoft.AspNetCore.Builder.AbpApplicationBuilderExtensions.InitializeApplication(IApplicationBuilder app) in D:\Github\abp\framework\src\Volo.Abp.AspNetCore\Microsoft\AspNetCore\Builder\AbpApplicationBuilderExtensions.cs:line 27 + at Volo.AbpWebSite.Startup.Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Startup.cs:line 36 +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app) + at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass4_0.b__0(IApplicationBuilder app) + at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder) + at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication() +2018-08-03 15:35:06.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:35:06.209 +03:00 [INF] Request finished in 57.8295ms 500 text/html; charset=utf-8 +2018-08-03 15:35:23.380 +03:00 [INF] Loaded modules: +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 15:35:23.395 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:35:23.396 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 15:35:23.397 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 15:35:23.398 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 15:35:23.398 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 15:35:23.398 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:35:25.069 +03:00 [INF] Initialized all modules. +2018-08-03 15:35:25.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:35:27.688 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 15:35:27.709 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:35:28.381 +03:00 [INF] Executed action /Index in 687.6341ms +2018-08-03 15:35:28.412 +03:00 [INF] Request finished in 3154.0245ms 200 text/html; charset=utf-8 +2018-08-03 15:35:28.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 15:35:28.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 15:35:28.577 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:28.582 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:28.632 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 15:35:28.642 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 15:35:28.692 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.693 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.694 +03:00 [INF] Authorization failed. +2018-08-03 15:35:28.729 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 91.9381ms. +2018-08-03 15:35:28.729 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 86.32950000000001ms. +2018-08-03 15:35:28.737 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:28.737 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:28.738 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 155.8743ms +2018-08-03 15:35:28.738 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 160.2055ms +2018-08-03 15:35:28.738 +03:00 [INF] Request finished in 180.2545ms 200 text/plain; charset=utf-8 +2018-08-03 15:35:28.738 +03:00 [INF] Request finished in 175.4653ms 200 text/plain; charset=utf-8 +2018-08-03 15:35:30.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 15:35:30.680 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 15:35:30.708 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:35:31.190 +03:00 [INF] Executed action /Templates in 509.6465ms +2018-08-03 15:35:31.190 +03:00 [INF] Request finished in 886.3068ms 200 text/html; charset=utf-8 +2018-08-03 15:35:31.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 15:35:31.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 15:35:31.288 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:31.289 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.290 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.291 +03:00 [INF] Authorization failed. +2018-08-03 15:35:31.292 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:31.293 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.4842ms. +2018-08-03 15:35:31.293 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 15:35:31.293 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1628ms. +2018-08-03 15:35:31.294 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:31.294 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:31.294 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8148000000000002ms +2018-08-03 15:35:31.294 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.2318000000000007ms +2018-08-03 15:35:31.294 +03:00 [INF] Request finished in 5.5781ms 200 text/plain; charset=utf-8 +2018-08-03 15:35:31.294 +03:00 [INF] Request finished in 8.2496ms 200 text/plain; charset=utf-8 +2018-08-03 15:35:32.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:35:32.301 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 15:35:32.302 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:35:32.309 +03:00 [INF] Executed action /Index in 7.3123000000000005ms +2018-08-03 15:35:32.309 +03:00 [INF] Request finished in 8.5398ms 200 text/html; charset=utf-8 +2018-08-03 15:35:38.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 15:35:38.887 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 15:35:38.888 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:35:38.893 +03:00 [INF] Executed action /Templates in 5.9469ms +2018-08-03 15:35:38.894 +03:00 [INF] Request finished in 6.9975ms 200 text/html; charset=utf-8 +2018-08-03 15:35:39.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 15:35:39.036 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:39.037 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 15:35:39.038 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.038 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.038 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.038 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.039 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.040 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.040 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.040 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 15:35:39.040 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Authorization failed. +2018-08-03 15:35:39.041 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:35:39.042 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 15:35:39.043 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16770000000000002ms. +2018-08-03 15:35:39.043 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:39.043 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4842ms +2018-08-03 15:35:39.043 +03:00 [INF] Request finished in 2.8475ms 200 text/plain; charset=utf-8 +2018-08-03 15:35:39.044 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.596ms. +2018-08-03 15:35:39.044 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:35:39.045 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.2528ms +2018-08-03 15:35:39.045 +03:00 [INF] Request finished in 10.0614ms 200 text/plain; charset=utf-8 +2018-08-03 15:36:18.407 +03:00 [INF] Loaded modules: +2018-08-03 15:36:18.422 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-03 15:36:18.423 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-03 15:36:18.424 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-03 15:36:20.381 +03:00 [INF] Initialized all modules. +2018-08-03 15:36:20.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-03 15:36:22.808 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-03 15:36:22.832 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:36:23.584 +03:00 [INF] Executed action /Index in 768.78010000000006ms +2018-08-03 15:36:23.611 +03:00 [INF] Request finished in 3019.789ms 200 text/html; charset=utf-8 +2018-08-03 15:36:23.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 15:36:23.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 15:36:23.800 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:36:23.803 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:36:23.859 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 15:36:23.861 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 15:36:23.920 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.921 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.922 +03:00 [INF] Authorization failed. +2018-08-03 15:36:23.955 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 90.89970000000001ms. +2018-08-03 15:36:23.960 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 98.555ms. +2018-08-03 15:36:23.962 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:36:23.962 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:36:23.963 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 159.9156ms +2018-08-03 15:36:23.963 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 162.98080000000002ms +2018-08-03 15:36:23.963 +03:00 [INF] Request finished in 186.7153ms 200 text/plain; charset=utf-8 +2018-08-03 15:36:23.963 +03:00 [INF] Request finished in 196.1562ms 200 text/plain; charset=utf-8 +2018-08-03 15:36:24.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-03 15:36:24.972 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-03 15:36:24.998 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-03 15:36:25.389 +03:00 [INF] Executed action /Templates in 416.5547ms +2018-08-03 15:36:25.389 +03:00 [INF] Request finished in 740.0292ms 200 text/html; charset=utf-8 +2018-08-03 15:36:25.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-03 15:36:25.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-03 15:36:25.501 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:36:25.504 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-03 15:36:25.504 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21450000000000002ms. +2018-08-03 15:36:25.504 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-03 15:36:25.504 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:36:25.505 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.8771ms +2018-08-03 15:36:25.505 +03:00 [INF] Request finished in 5.3965ms 200 text/plain; charset=utf-8 +2018-08-03 15:36:25.505 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.506 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.507 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.507 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.508 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.508 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.508 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.509 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.509 +03:00 [INF] Authorization failed. +2018-08-03 15:36:25.511 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.1785000000000005ms. +2018-08-03 15:36:25.512 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-03 15:36:25.512 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.7326000000000006ms +2018-08-03 15:36:25.512 +03:00 [INF] Request finished in 15.1314ms 200 text/plain; charset=utf-8 +2018-08-04 19:55:30.397 +03:00 [INF] Loaded modules: +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-04 19:55:30.420 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-04 19:55:30.421 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-04 19:55:30.422 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-04 19:55:30.422 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-04 19:55:30.422 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-04 19:55:30.422 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-04 19:55:33.045 +03:00 [INF] Initialized all modules. +2018-08-04 19:55:33.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 19:55:36.297 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 19:55:36.319 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 19:55:37.386 +03:00 [INF] Executed action /Index in 1084.0227ms +2018-08-04 19:55:37.402 +03:00 [INF] Request finished in 3955.7592ms 200 text/html; charset=utf-8 +2018-08-04 19:55:37.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-04 19:55:37.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-04 19:55:37.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-04 19:55:37.688 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-04 19:55:37.691 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-04 19:55:37.691 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-08-04 19:55:37.691 +03:00 [INF] Request finished in 7.2608ms 200 text/css +2018-08-04 19:55:37.692 +03:00 [INF] Request finished in 35.6361ms 200 text/css +2018-08-04 19:55:37.693 +03:00 [INF] Request finished in 7.0821ms 304 text/css +2018-08-04 19:55:37.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-04 19:55:37.706 +03:00 [INF] The file /img/modular.png was not modified +2018-08-04 19:55:37.706 +03:00 [INF] Request finished in 0.8393ms 304 image/png +2018-08-04 19:55:37.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-04 19:55:37.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-04 19:55:37.710 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-04 19:55:37.711 +03:00 [INF] Request finished in 1.1515ms 304 image/png +2018-08-04 19:55:37.712 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-08-04 19:55:37.712 +03:00 [INF] Request finished in 1.9662ms 200 image/png +2018-08-04 19:55:37.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-04 19:55:37.712 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-04 19:55:37.713 +03:00 [INF] Request finished in 0.4919ms 304 image/png +2018-08-04 19:55:37.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-04 19:55:37.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-04 19:55:37.720 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-04 19:55:37.720 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-04 19:55:37.720 +03:00 [INF] Request finished in 0.9282ms 304 image/svg+xml +2018-08-04 19:55:37.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-04 19:55:37.720 +03:00 [INF] Request finished in 0.6922ms 304 image/png +2018-08-04 19:55:37.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-04 19:55:37.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-04 19:55:37.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-04 19:55:37.722 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-08-04 19:55:37.722 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-08-04 19:55:37.722 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-08-04 19:55:37.722 +03:00 [INF] Request finished in 1.7449ms 200 image/png +2018-08-04 19:55:37.723 +03:00 [INF] Request finished in 1.2255ms 200 image/png +2018-08-04 19:55:37.722 +03:00 [INF] Request finished in 1.9008ms 200 image/png +2018-08-04 19:55:37.723 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-08-04 19:55:37.723 +03:00 [INF] Request finished in 1.6338ms 200 image/png +2018-08-04 19:55:37.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-04 19:55:37.734 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-04 19:55:37.734 +03:00 [INF] Request finished in 1.8874ms 304 image/png +2018-08-04 19:55:37.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-04 19:55:37.737 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-04 19:55:37.737 +03:00 [INF] Request finished in 1.4627ms 304 image/png +2018-08-04 19:55:37.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-04 19:55:37.738 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-08-04 19:55:37.738 +03:00 [INF] Request finished in 2.6762ms 200 image/png +2018-08-04 19:55:37.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-04 19:55:37.739 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-04 19:55:37.739 +03:00 [INF] Request finished in 0.8584ms 304 image/png +2018-08-04 19:55:37.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-04 19:55:37.742 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-04 19:55:37.742 +03:00 [INF] Request finished in 1.4123ms 304 image/png +2018-08-04 19:55:37.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-04 19:55:37.748 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-04 19:55:37.748 +03:00 [INF] Request finished in 0.711ms 304 image/png +2018-08-04 19:55:37.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-04 19:55:37.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-04 19:55:37.748 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-04 19:55:37.749 +03:00 [INF] Request finished in 0.5764ms 304 image/png +2018-08-04 19:55:37.750 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-08-04 19:55:37.751 +03:00 [INF] Request finished in 2.5429ms 200 image/png +2018-08-04 19:55:37.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-04 19:55:37.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-04 19:55:37.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-04 19:55:37.754 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-08-04 19:55:37.754 +03:00 [INF] Request finished in 1.6791ms 200 image/png +2018-08-04 19:55:37.755 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-08-04 19:55:37.756 +03:00 [INF] Request finished in 2.9201ms 200 image/png +2018-08-04 19:55:37.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-04 19:55:37.756 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-08-04 19:55:37.761 +03:00 [INF] Request finished in 7.3915ms 200 image/png +2018-08-04 19:55:37.761 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-04 19:55:37.761 +03:00 [INF] Request finished in 0.8443ms 304 image/png +2018-08-04 19:55:37.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-04 19:55:37.763 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-04 19:55:37.763 +03:00 [INF] Request finished in 0.5998ms 304 image/png +2018-08-04 19:55:37.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-04 19:55:37.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-04 19:55:37.771 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-08-04 19:55:37.772 +03:00 [INF] Request finished in 2.4152ms 200 image/png +2018-08-04 19:55:37.772 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-08-04 19:55:37.772 +03:00 [INF] Request finished in 1.4544ms 200 image/png +2018-08-04 19:55:37.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-04 19:55:37.779 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-08-04 19:55:37.779 +03:00 [INF] Request finished in 4.7383ms 200 image/png +2018-08-04 19:55:37.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-04 19:55:37.784 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-08-04 19:55:37.784 +03:00 [INF] Request finished in 2.101ms 200 image/png +2018-08-04 19:55:37.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-04 19:55:37.788 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-08-04 19:55:37.788 +03:00 [INF] Request finished in 2.1176ms 200 image/png +2018-08-04 19:55:37.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-04 19:55:37.795 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-08-04 19:55:37.795 +03:00 [INF] Request finished in 2.5483ms 200 image/png +2018-08-04 19:55:37.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-04 19:55:37.798 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-08-04 19:55:37.798 +03:00 [INF] Request finished in 2.0029ms 200 image/png +2018-08-04 19:55:37.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-04 19:55:37.800 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-08-04 19:55:37.800 +03:00 [INF] Request finished in 1.7518ms 200 image/png +2018-08-04 19:55:37.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-04 19:55:37.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-04 19:55:37.803 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-08-04 19:55:37.803 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-08-04 19:55:37.803 +03:00 [INF] Request finished in 1.124ms 200 image/png +2018-08-04 19:55:37.803 +03:00 [INF] Request finished in 1.4322ms 200 image/png +2018-08-04 19:55:37.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-04 19:55:37.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-04 19:55:37.811 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-08-04 19:55:37.811 +03:00 [INF] Request finished in 2.4282ms 200 image/png +2018-08-04 19:55:37.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-04 19:55:37.814 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-08-04 19:55:37.814 +03:00 [INF] Request finished in 2.2887ms 200 image/png +2018-08-04 19:55:37.816 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-08-04 19:55:37.816 +03:00 [INF] Request finished in 5.2618ms 200 image/png +2018-08-04 19:55:37.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-04 19:55:37.819 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-08-04 19:55:37.819 +03:00 [INF] Request finished in 1.5469ms 200 image/svg+xml +2018-08-04 19:55:37.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 19:55:37.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-04 19:55:37.878 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-08-04 19:55:37.878 +03:00 [INF] Request finished in 1.0117ms 200 application/javascript +2018-08-04 19:55:37.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 19:55:37.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-04 19:55:37.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-04 19:55:37.894 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-04 19:55:37.894 +03:00 [INF] Request finished in 1.0962ms 304 application/javascript +2018-08-04 19:55:37.895 +03:00 [INF] The file /js/vs.js was not modified +2018-08-04 19:55:37.895 +03:00 [INF] Request finished in 1.3722ms 304 application/javascript +2018-08-04 19:55:37.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-04 19:55:37.897 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-04 19:55:37.897 +03:00 [INF] Request finished in 1.4297ms 304 image/jpeg +2018-08-04 19:55:37.904 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 19:55:37.913 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 19:55:37.972 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 19:55:37.974 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 19:55:38.087 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.088 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.089 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.089 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.089 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.089 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.089 +03:00 [INF] Authorization failed. +2018-08-04 19:55:38.108 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 126.4659ms. +2018-08-04 19:55:38.120 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 19:55:38.122 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 208.82850000000002ms +2018-08-04 19:55:38.123 +03:00 [INF] Request finished in 243.6262ms 200 text/plain; charset=utf-8 +2018-08-04 19:55:38.138 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 165.6031ms. +2018-08-04 19:55:38.138 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 19:55:38.139 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 234.6987ms +2018-08-04 19:55:38.139 +03:00 [INF] Request finished in 261.4525ms 200 text/plain; charset=utf-8 +2018-08-04 19:57:52.266 +03:00 [INF] Loaded modules: +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-04 19:57:52.282 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-04 19:57:52.283 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-04 19:57:52.284 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-04 19:57:52.286 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-04 19:57:52.286 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-04 19:57:54.396 +03:00 [INF] Initialized all modules. +2018-08-04 19:57:54.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 19:57:57.325 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 19:57:57.352 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 19:57:58.681 +03:00 [INF] Executed action /Index in 1350.8951ms +2018-08-04 19:57:58.703 +03:00 [INF] Request finished in 4009.0512ms 200 text/html; charset=utf-8 +2018-08-04 19:57:58.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-04 19:57:58.725 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-04 19:57:58.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-04 19:57:58.726 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-04 19:57:58.728 +03:00 [INF] Request finished in 10.4059ms 304 text/css +2018-08-04 19:57:58.728 +03:00 [INF] Request finished in 3.439ms 304 text/css +2018-08-04 19:57:58.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-04 19:57:58.731 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-04 19:57:58.731 +03:00 [INF] Request finished in 0.7804ms 304 text/css +2018-08-04 19:57:58.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-04 19:57:58.735 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-04 19:57:58.735 +03:00 [INF] Request finished in 0.7863ms 304 text/css +2018-08-04 19:57:58.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-04 19:57:58.742 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-04 19:57:58.743 +03:00 [INF] Request finished in 0.902ms 304 text/css +2018-08-04 19:57:58.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css +2018-08-04 19:57:58.744 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-04 19:57:58.744 +03:00 [INF] Request finished in 0.8286ms 304 text/css +2018-08-04 19:57:58.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css +2018-08-04 19:57:58.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-04 19:57:58.751 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-04 19:57:58.752 +03:00 [INF] Request finished in 2.6277ms 304 text/css +2018-08-04 19:57:58.752 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-04 19:57:58.752 +03:00 [INF] Request finished in 1.5041ms 304 text/css +2018-08-04 19:57:58.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-04 19:57:58.753 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-04 19:57:58.753 +03:00 [INF] Request finished in 0.7592ms 304 application/javascript +2018-08-04 19:57:58.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-04 19:57:58.755 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-04 19:57:58.755 +03:00 [INF] Request finished in 0.7763ms 304 application/javascript +2018-08-04 19:57:58.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-04 19:57:58.759 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-04 19:57:58.759 +03:00 [INF] Request finished in 3.4953ms 304 application/javascript +2018-08-04 19:57:58.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-04 19:57:58.762 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-04 19:57:58.762 +03:00 [INF] Request finished in 0.5987ms 304 application/javascript +2018-08-04 19:57:58.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-04 19:57:58.763 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-04 19:57:58.763 +03:00 [INF] Request finished in 0.5277ms 304 application/javascript +2018-08-04 19:57:58.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-04 19:57:58.766 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-04 19:57:58.766 +03:00 [INF] Request finished in 1.1846ms 304 application/javascript +2018-08-04 19:57:58.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-04 19:57:58.771 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-04 19:57:58.771 +03:00 [INF] Request finished in 2.2022ms 304 application/javascript +2018-08-04 19:57:58.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-04 19:57:58.772 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-04 19:57:58.772 +03:00 [INF] Request finished in 0.7539ms 304 application/javascript +2018-08-04 19:57:58.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-04 19:57:58.774 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-04 19:57:58.774 +03:00 [INF] Request finished in 0.5415ms 304 application/javascript +2018-08-04 19:57:58.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-04 19:57:58.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-04 19:57:58.779 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-04 19:57:58.779 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-04 19:57:58.779 +03:00 [INF] Request finished in 0.563ms 304 application/javascript +2018-08-04 19:57:58.779 +03:00 [INF] Request finished in 0.5756ms 304 application/javascript +2018-08-04 19:57:58.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-04 19:57:58.789 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-04 19:57:58.790 +03:00 [INF] Request finished in 0.6567ms 304 application/javascript +2018-08-04 19:57:58.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-04 19:57:58.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-04 19:57:58.798 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-04 19:57:58.798 +03:00 [INF] Request finished in 0.563ms 304 application/javascript +2018-08-04 19:57:58.798 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-04 19:57:58.803 +03:00 [INF] Request finished in 1.808ms 304 application/javascript +2018-08-04 19:57:58.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-04 19:57:58.809 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-04 19:57:58.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-04 19:57:58.810 +03:00 [INF] Request finished in 0.7861ms 304 application/javascript +2018-08-04 19:57:58.810 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-04 19:57:58.810 +03:00 [INF] Request finished in 0.6606ms 304 application/javascript +2018-08-04 19:57:58.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-04 19:57:58.813 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-04 19:57:58.813 +03:00 [INF] Request finished in 1.1961ms 304 application/javascript +2018-08-04 19:57:58.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-04 19:57:58.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-04 19:57:58.824 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-04 19:57:58.824 +03:00 [INF] Request finished in 0.9349ms 304 application/javascript +2018-08-04 19:57:58.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-04 19:57:58.825 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-04 19:57:58.825 +03:00 [INF] Request finished in 0.772ms 304 application/javascript +2018-08-04 19:57:58.830 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-04 19:57:58.831 +03:00 [INF] Request finished in 7.4376ms 304 application/javascript +2018-08-04 19:57:58.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 19:57:58.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 19:57:58.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-04 19:57:58.843 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-04 19:57:58.843 +03:00 [INF] Request finished in 4.5892ms 304 application/javascript +2018-08-04 19:57:58.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js +2018-08-04 19:57:58.852 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-04 19:57:58.856 +03:00 [INF] Request finished in 1.1409ms 304 application/javascript +2018-08-04 19:57:58.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-04 19:57:58.862 +03:00 [INF] The file /img/modular.png was not modified +2018-08-04 19:57:58.862 +03:00 [INF] Request finished in 1.8858ms 304 image/png +2018-08-04 19:57:58.867 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 19:57:58.868 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 19:57:58.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js +2018-08-04 19:57:58.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-04 19:57:58.868 +03:00 [INF] The file /js/vs.js was not modified +2018-08-04 19:57:58.868 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-04 19:57:58.868 +03:00 [INF] Request finished in 0.6387ms 304 application/javascript +2018-08-04 19:57:58.868 +03:00 [INF] Request finished in 0.5872ms 304 image/svg+xml +2018-08-04 19:57:58.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-04 19:57:58.871 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-04 19:57:58.871 +03:00 [INF] Request finished in 0.7339ms 304 image/png +2018-08-04 19:57:58.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-04 19:57:58.873 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-04 19:57:58.873 +03:00 [INF] Request finished in 0.9745ms 304 image/png +2018-08-04 19:57:58.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-04 19:57:58.878 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-04 19:57:58.878 +03:00 [INF] Request finished in 0.6762ms 304 image/png +2018-08-04 19:57:58.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-04 19:57:58.879 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-04 19:57:58.879 +03:00 [INF] Request finished in 0.6134ms 304 image/png +2018-08-04 19:57:58.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-04 19:57:58.885 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-04 19:57:58.885 +03:00 [INF] Request finished in 0.8675ms 304 image/png +2018-08-04 19:57:58.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-04 19:57:58.888 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-04 19:57:58.889 +03:00 [INF] Request finished in 2.3947ms 304 image/png +2018-08-04 19:57:58.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-04 19:57:58.890 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-04 19:57:58.891 +03:00 [INF] Request finished in 1.4869ms 304 image/png +2018-08-04 19:57:58.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-04 19:57:58.897 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-04 19:57:58.897 +03:00 [INF] Request finished in 1.2244ms 304 image/png +2018-08-04 19:57:58.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-04 19:57:58.905 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-04 19:57:58.905 +03:00 [INF] Request finished in 1.8555ms 304 image/png +2018-08-04 19:57:58.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-04 19:57:58.911 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-04 19:57:58.911 +03:00 [INF] Request finished in 0.8606ms 304 image/png +2018-08-04 19:57:58.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-04 19:57:58.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-04 19:57:58.912 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-04 19:57:58.912 +03:00 [INF] Request finished in 0.5483ms 304 image/png +2018-08-04 19:57:58.913 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-04 19:57:58.913 +03:00 [INF] Request finished in 2.3435ms 304 image/png +2018-08-04 19:57:58.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-04 19:57:58.920 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-04 19:57:58.920 +03:00 [INF] Request finished in 3.8793ms 304 image/png +2018-08-04 19:57:58.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-04 19:57:58.928 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-04 19:57:58.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-04 19:57:58.929 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-04 19:57:58.929 +03:00 [INF] Request finished in 0.8637ms 304 image/png +2018-08-04 19:57:58.929 +03:00 [INF] Request finished in 1.5535ms 304 image/png +2018-08-04 19:57:58.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-04 19:57:58.936 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-04 19:57:58.936 +03:00 [INF] Request finished in 1.1276ms 304 image/png +2018-08-04 19:57:58.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-04 19:57:58.939 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-04 19:57:58.940 +03:00 [INF] Request finished in 1.5737ms 304 image/png +2018-08-04 19:57:58.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-04 19:57:58.940 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-04 19:57:58.941 +03:00 [INF] Request finished in 0.5149ms 304 image/png +2018-08-04 19:57:58.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-04 19:57:58.943 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-04 19:57:58.944 +03:00 [INF] Request finished in 1.2909ms 304 image/png +2018-08-04 19:57:58.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-04 19:57:58.949 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-04 19:57:58.950 +03:00 [INF] Request finished in 1.5422ms 304 image/png +2018-08-04 19:57:58.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-04 19:57:58.956 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-04 19:57:58.956 +03:00 [INF] Request finished in 1.0322ms 304 image/png +2018-08-04 19:57:58.959 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 19:57:58.960 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 19:57:58.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-04 19:57:58.963 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-04 19:57:58.964 +03:00 [INF] Request finished in 0.6831ms 304 image/png +2018-08-04 19:57:58.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-04 19:57:58.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-04 19:57:58.968 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-04 19:57:58.968 +03:00 [INF] Request finished in 0.7864ms 304 image/png +2018-08-04 19:57:58.969 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-04 19:57:58.969 +03:00 [INF] Request finished in 1.0839ms 304 image/png +2018-08-04 19:57:58.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-04 19:57:58.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-04 19:57:58.976 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-04 19:57:58.977 +03:00 [INF] Request finished in 0.6483ms 304 image/png +2018-08-04 19:57:58.976 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-04 19:57:58.977 +03:00 [INF] Request finished in 1.0491ms 304 image/png +2018-08-04 19:57:58.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-04 19:57:58.986 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-04 19:57:58.987 +03:00 [INF] Request finished in 2.906ms 304 image/png +2018-08-04 19:57:58.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-04 19:57:58.991 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-04 19:57:58.991 +03:00 [INF] Request finished in 0.8515ms 304 image/png +2018-08-04 19:57:59.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-04 19:57:59.005 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-04 19:57:59.005 +03:00 [INF] Request finished in 0.6611ms 304 image/png +2018-08-04 19:57:59.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-04 19:57:59.019 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-04 19:57:59.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-04 19:57:59.019 +03:00 [INF] Request finished in 1.738ms 304 image/png +2018-08-04 19:57:59.020 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-04 19:57:59.020 +03:00 [INF] Request finished in 0.6638ms 304 image/png +2018-08-04 19:57:59.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-04 19:57:59.024 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-04 19:57:59.026 +03:00 [INF] Request finished in 1.7936ms 304 image/png +2018-08-04 19:57:59.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-04 19:57:59.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-04 19:57:59.039 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-04 19:57:59.039 +03:00 [INF] Request finished in 0.6246ms 304 image/png +2018-08-04 19:57:59.039 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-04 19:57:59.040 +03:00 [INF] Request finished in 1.4164ms 304 image/png +2018-08-04 19:57:59.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-04 19:57:59.046 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-04 19:57:59.047 +03:00 [INF] Request finished in 0.5931ms 304 image/svg+xml +2018-08-04 19:57:59.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-04 19:57:59.052 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-04 19:57:59.052 +03:00 [INF] Request finished in 3.928ms 304 image/jpeg +2018-08-04 19:57:59.095 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.096 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.096 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.097 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.098 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.098 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.098 +03:00 [INF] Authorization failed. +2018-08-04 19:57:59.139 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 169.0044ms. +2018-08-04 19:57:59.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 185.4255ms. +2018-08-04 19:57:59.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 19:57:59.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 19:57:59.151 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 283.4331ms +2018-08-04 19:57:59.151 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 282.8675ms +2018-08-04 19:57:59.151 +03:00 [INF] Request finished in 314.7664ms 200 text/plain; charset=utf-8 +2018-08-04 19:57:59.151 +03:00 [INF] Request finished in 314.7676ms 200 text/plain; charset=utf-8 +2018-08-04 20:06:21.345 +03:00 [INF] Loaded modules: +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-04 20:06:21.366 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-04 20:06:21.367 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-04 20:06:21.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-04 20:06:23.146 +03:00 [INF] Initialized all modules. +2018-08-04 20:06:23.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 20:06:25.900 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 20:06:25.921 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:06:27.376 +03:00 [INF] Executed action /Index in 1470.0747000000001ms +2018-08-04 20:06:27.406 +03:00 [INF] Request finished in 4038.5868ms 200 text/html; charset=utf-8 +2018-08-04 20:06:27.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-08-04 20:06:27.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-08-04 20:06:27.445 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-08-04 20:06:27.445 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-08-04 20:06:27.445 +03:00 [INF] Request finished in 24.0377ms 200 text/css +2018-08-04 20:06:27.445 +03:00 [INF] Request finished in 20.7987ms 200 text/css +2018-08-04 20:06:27.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:06:27.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:06:27.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-08-04 20:06:27.587 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-08-04 20:06:27.587 +03:00 [INF] Request finished in 2.634ms 200 application/javascript +2018-08-04 20:06:27.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636688175858571253 +2018-08-04 20:06:27.590 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-04 20:06:27.591 +03:00 [INF] Request finished in 1.8933ms 200 application/javascript +2018-08-04 20:06:27.602 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:06:27.610 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:06:27.657 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:06:27.659 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:06:27.716 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.717 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.717 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.718 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.719 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.719 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.719 +03:00 [INF] Authorization failed. +2018-08-04 20:06:27.748 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.4434ms. +2018-08-04 20:06:27.754 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.319ms. +2018-08-04 20:06:27.755 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:06:27.755 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:06:27.756 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 145.1567ms +2018-08-04 20:06:27.756 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 153.7115ms +2018-08-04 20:06:27.756 +03:00 [INF] Request finished in 176.2718ms 200 text/plain; charset=utf-8 +2018-08-04 20:06:27.756 +03:00 [INF] Request finished in 180.5899ms 200 text/plain; charset=utf-8 +2018-08-04 20:06:34.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-04 20:06:35.275 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-04 20:06:35.305 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:06:35.701 +03:00 [INF] Executed action /Templates in 425.39180000000005ms +2018-08-04 20:06:35.701 +03:00 [INF] Request finished in 795.9951ms 200 text/html; charset=utf-8 +2018-08-04 20:06:35.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:06:35.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:06:35.811 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:06:35.813 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:06:35.814 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5786ms. +2018-08-04 20:06:35.814 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:06:35.814 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.8752ms +2018-08-04 20:06:35.815 +03:00 [INF] Request finished in 4.6433ms 200 text/plain; charset=utf-8 +2018-08-04 20:06:35.819 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:06:35.820 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.821 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.822 +03:00 [INF] Authorization failed. +2018-08-04 20:06:35.825 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.8675000000000006ms. +2018-08-04 20:06:35.826 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:06:35.826 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.1453000000000007ms +2018-08-04 20:06:35.826 +03:00 [INF] Request finished in 18.4839ms 200 text/plain; charset=utf-8 +2018-08-04 20:06:38.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 20:06:38.373 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 20:06:38.373 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:06:38.380 +03:00 [INF] Executed action /Index in 7.6211ms +2018-08-04 20:06:38.381 +03:00 [INF] Request finished in 8.7497ms 200 text/html; charset=utf-8 +2018-08-04 20:09:32.000 +03:00 [INF] Loaded modules: +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-04 20:09:32.018 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-04 20:09:32.019 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-04 20:09:32.020 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-04 20:09:32.021 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-04 20:09:32.021 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-04 20:09:33.849 +03:00 [INF] Initialized all modules. +2018-08-04 20:09:34.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 20:09:36.409 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 20:09:36.436 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:09:38.261 +03:00 [INF] Executed action /Index in 1844.9989ms +2018-08-04 20:09:38.300 +03:00 [INF] Request finished in 4185.3389ms 200 text/html; charset=utf-8 +2018-08-04 20:09:38.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-08-04 20:09:38.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-08-04 20:09:38.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-08-04 20:09:38.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-08-04 20:09:38.312 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-08-04 20:09:38.312 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-08-04 20:09:38.312 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-08-04 20:09:38.312 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-08-04 20:09:38.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-08-04 20:09:38.314 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-08-04 20:09:38.318 +03:00 [INF] Request finished in 6.6972ms 304 text/css +2018-08-04 20:09:38.318 +03:00 [INF] Request finished in 7.3389ms 304 text/css +2018-08-04 20:09:38.318 +03:00 [INF] Request finished in 11.7616ms 304 text/css +2018-08-04 20:09:38.318 +03:00 [INF] Request finished in 14.7884ms 304 text/css +2018-08-04 20:09:38.318 +03:00 [INF] Request finished in 5.1973ms 304 text/css +2018-08-04 20:09:38.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-08-04 20:09:38.324 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-08-04 20:09:38.325 +03:00 [INF] Request finished in 1.7222ms 304 text/css +2018-08-04 20:09:38.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-08-04 20:09:38.334 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-08-04 20:09:38.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-08-04 20:09:38.334 +03:00 [INF] Request finished in 2.6772ms 304 application/javascript +2018-08-04 20:09:38.334 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-08-04 20:09:38.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-08-04 20:09:38.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-08-04 20:09:38.334 +03:00 [INF] Request finished in 0.6788ms 304 application/javascript +2018-08-04 20:09:38.335 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-08-04 20:09:38.335 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-08-04 20:09:38.335 +03:00 [INF] Request finished in 0.5885ms 304 application/javascript +2018-08-04 20:09:38.335 +03:00 [INF] Request finished in 0.6474ms 304 text/css +2018-08-04 20:09:38.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-08-04 20:09:38.335 +03:00 [INF] The file /scss/vs.css was not modified +2018-08-04 20:09:38.336 +03:00 [INF] Request finished in 0.8051ms 304 text/css +2018-08-04 20:09:38.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-08-04 20:09:38.343 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-08-04 20:09:38.343 +03:00 [INF] Request finished in 2.4829ms 304 application/javascript +2018-08-04 20:09:38.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-08-04 20:09:38.347 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-08-04 20:09:38.349 +03:00 [INF] Request finished in 2.8103ms 304 application/javascript +2018-08-04 20:09:38.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-08-04 20:09:38.349 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-08-04 20:09:38.349 +03:00 [INF] Request finished in 0.6732ms 304 application/javascript +2018-08-04 20:09:38.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-08-04 20:09:38.352 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-08-04 20:09:38.353 +03:00 [INF] Request finished in 0.5986ms 304 application/javascript +2018-08-04 20:09:38.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-08-04 20:09:38.355 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-08-04 20:09:38.355 +03:00 [INF] Request finished in 0.9596ms 304 application/javascript +2018-08-04 20:09:38.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-08-04 20:09:38.360 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-08-04 20:09:38.360 +03:00 [INF] Request finished in 0.9438ms 304 application/javascript +2018-08-04 20:09:38.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-08-04 20:09:38.367 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-08-04 20:09:38.367 +03:00 [INF] Request finished in 2.4623ms 304 application/javascript +2018-08-04 20:09:38.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-08-04 20:09:38.370 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-08-04 20:09:38.372 +03:00 [INF] Request finished in 2.7615ms 304 application/javascript +2018-08-04 20:09:38.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-08-04 20:09:38.374 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-08-04 20:09:38.374 +03:00 [INF] Request finished in 1.7932ms 304 application/javascript +2018-08-04 20:09:38.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-08-04 20:09:38.385 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-08-04 20:09:38.385 +03:00 [INF] Request finished in 1.4106ms 304 application/javascript +2018-08-04 20:09:38.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-08-04 20:09:38.390 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-08-04 20:09:38.390 +03:00 [INF] Request finished in 0.6678ms 304 application/javascript +2018-08-04 20:09:38.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-08-04 20:09:38.398 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-08-04 20:09:38.398 +03:00 [INF] Request finished in 1.7242ms 304 application/javascript +2018-08-04 20:09:38.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-08-04 20:09:38.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-08-04 20:09:38.400 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-08-04 20:09:38.401 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-08-04 20:09:38.401 +03:00 [INF] Request finished in 2.1409ms 304 application/javascript +2018-08-04 20:09:38.401 +03:00 [INF] Request finished in 1.0164ms 304 application/javascript +2018-08-04 20:09:38.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-08-04 20:09:38.407 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-08-04 20:09:38.407 +03:00 [INF] Request finished in 1.4353ms 304 application/javascript +2018-08-04 20:09:38.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-08-04 20:09:38.409 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-08-04 20:09:38.409 +03:00 [INF] Request finished in 0.7957ms 304 application/javascript +2018-08-04 20:09:38.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-08-04 20:09:38.415 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-08-04 20:09:38.415 +03:00 [INF] Request finished in 0.99ms 304 application/javascript +2018-08-04 20:09:38.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-08-04 20:09:38.417 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-08-04 20:09:38.417 +03:00 [INF] Request finished in 0.7883ms 304 application/javascript +2018-08-04 20:09:38.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:09:38.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:09:38.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-08-04 20:09:38.424 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-08-04 20:09:38.424 +03:00 [INF] Request finished in 0.5528ms 304 application/javascript +2018-08-04 20:09:38.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-08-04 20:09:38.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-08-04 20:09:38.442 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-08-04 20:09:38.443 +03:00 [INF] Request finished in 2.2327ms 304 image/svg+xml +2018-08-04 20:09:38.445 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:38.445 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:38.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-08-04 20:09:38.451 +03:00 [INF] The file /img/modular.png was not modified +2018-08-04 20:09:38.451 +03:00 [INF] Request finished in 1.2635ms 304 image/png +2018-08-04 20:09:38.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-08-04 20:09:38.452 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-08-04 20:09:38.452 +03:00 [INF] Request finished in 0.6576ms 304 image/png +2018-08-04 20:09:38.454 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-08-04 20:09:38.455 +03:00 [INF] Request finished in 24.3691ms 200 application/javascript +2018-08-04 20:09:38.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-08-04 20:09:38.456 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-08-04 20:09:38.457 +03:00 [INF] Request finished in 0.8966ms 304 image/png +2018-08-04 20:09:38.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-08-04 20:09:38.468 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-08-04 20:09:38.468 +03:00 [INF] Request finished in 0.5514ms 304 image/png +2018-08-04 20:09:38.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-08-04 20:09:38.469 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-08-04 20:09:38.470 +03:00 [INF] Request finished in 1.615ms 304 image/png +2018-08-04 20:09:38.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-08-04 20:09:38.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-08-04 20:09:38.473 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-08-04 20:09:38.473 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-08-04 20:09:38.473 +03:00 [INF] Request finished in 0.9226ms 304 image/png +2018-08-04 20:09:38.473 +03:00 [INF] Request finished in 0.6658ms 304 image/png +2018-08-04 20:09:38.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-08-04 20:09:38.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-08-04 20:09:38.486 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-08-04 20:09:38.486 +03:00 [INF] Request finished in 0.6557ms 304 image/png +2018-08-04 20:09:38.486 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-08-04 20:09:38.487 +03:00 [INF] Request finished in 0.4383ms 304 image/png +2018-08-04 20:09:38.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-08-04 20:09:38.500 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-08-04 20:09:38.500 +03:00 [INF] Request finished in 0.7139ms 304 image/png +2018-08-04 20:09:38.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-08-04 20:09:38.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-08-04 20:09:38.501 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-08-04 20:09:38.501 +03:00 [INF] Request finished in 0.5276ms 304 image/png +2018-08-04 20:09:38.502 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-08-04 20:09:38.502 +03:00 [INF] Request finished in 1.508ms 304 image/png +2018-08-04 20:09:38.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-08-04 20:09:38.515 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-08-04 20:09:38.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-08-04 20:09:38.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-08-04 20:09:38.516 +03:00 [INF] Request finished in 1.4426ms 304 image/png +2018-08-04 20:09:38.517 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-08-04 20:09:38.517 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-08-04 20:09:38.517 +03:00 [INF] Request finished in 0.596ms 304 image/png +2018-08-04 20:09:38.517 +03:00 [INF] Request finished in 0.6806ms 304 image/png +2018-08-04 20:09:38.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-08-04 20:09:38.517 +03:00 [INF] The file /img/mt-left.png was not modified +2018-08-04 20:09:38.518 +03:00 [INF] Request finished in 2.7086ms 304 image/png +2018-08-04 20:09:38.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-08-04 20:09:38.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-08-04 20:09:38.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-08-04 20:09:38.528 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-08-04 20:09:38.528 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-08-04 20:09:38.528 +03:00 [INF] Request finished in 0.8989ms 304 image/png +2018-08-04 20:09:38.528 +03:00 [INF] The file /assets/my-image.png was not modified +2018-08-04 20:09:38.528 +03:00 [INF] Request finished in 0.4839ms 304 image/png +2018-08-04 20:09:38.528 +03:00 [INF] Request finished in 0.5275ms 304 image/png +2018-08-04 20:09:38.532 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:09:38.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-08-04 20:09:38.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-08-04 20:09:38.534 +03:00 [INF] The file /assets/familiar.png was not modified +2018-08-04 20:09:38.535 +03:00 [INF] Request finished in 0.5634ms 304 image/png +2018-08-04 20:09:38.535 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-08-04 20:09:38.535 +03:00 [INF] Request finished in 0.4637ms 304 image/png +2018-08-04 20:09:38.535 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:09:38.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-08-04 20:09:38.537 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-08-04 20:09:38.538 +03:00 [INF] Request finished in 2.449ms 304 image/png +2018-08-04 20:09:38.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-08-04 20:09:38.545 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-08-04 20:09:38.545 +03:00 [INF] Request finished in 0.796ms 304 image/png +2018-08-04 20:09:38.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-08-04 20:09:38.547 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-08-04 20:09:38.547 +03:00 [INF] Request finished in 0.587ms 304 image/png +2018-08-04 20:09:38.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-08-04 20:09:38.547 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-08-04 20:09:38.548 +03:00 [INF] Request finished in 0.5047ms 304 image/png +2018-08-04 20:09:38.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-08-04 20:09:38.563 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-08-04 20:09:38.563 +03:00 [INF] Request finished in 1.017ms 304 image/png +2018-08-04 20:09:38.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-08-04 20:09:38.563 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-08-04 20:09:38.564 +03:00 [INF] Request finished in 0.4102ms 304 image/png +2018-08-04 20:09:38.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-08-04 20:09:38.566 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-08-04 20:09:38.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-08-04 20:09:38.566 +03:00 [INF] Request finished in 1.2264ms 304 image/png +2018-08-04 20:09:38.567 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-08-04 20:09:38.567 +03:00 [INF] Request finished in 1.2999ms 304 image/png +2018-08-04 20:09:38.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-08-04 20:09:38.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-08-04 20:09:38.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-08-04 20:09:38.576 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-08-04 20:09:38.577 +03:00 [INF] Request finished in 0.7227ms 304 image/png +2018-08-04 20:09:38.577 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-08-04 20:09:38.577 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-08-04 20:09:38.577 +03:00 [INF] Request finished in 0.7918ms 304 image/png +2018-08-04 20:09:38.577 +03:00 [INF] Request finished in 0.6767ms 304 image/png +2018-08-04 20:09:38.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-08-04 20:09:38.583 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-08-04 20:09:38.583 +03:00 [INF] Request finished in 0.5963ms 304 image/png +2018-08-04 20:09:38.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-08-04 20:09:38.584 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-08-04 20:09:38.585 +03:00 [INF] Request finished in 0.7387ms 304 image/png +2018-08-04 20:09:38.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-08-04 20:09:38.591 +03:00 [INF] The file /assets/fork.png was not modified +2018-08-04 20:09:38.591 +03:00 [INF] Request finished in 0.6213ms 304 image/png +2018-08-04 20:09:38.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-08-04 20:09:38.592 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-08-04 20:09:38.592 +03:00 [INF] Request finished in 0.6552ms 304 image/svg+xml +2018-08-04 20:09:38.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-08-04 20:09:38.594 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-08-04 20:09:38.594 +03:00 [INF] Request finished in 0.5787ms 304 image/jpeg +2018-08-04 20:09:38.644 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.645 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.645 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.645 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.646 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.647 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.647 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.647 +03:00 [INF] Authorization failed. +2018-08-04 20:09:38.696 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 153.6466ms. +2018-08-04 20:09:38.705 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 172.2328ms. +2018-08-04 20:09:38.708 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:38.708 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:38.709 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 263.759ms +2018-08-04 20:09:38.709 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 263.9028ms +2018-08-04 20:09:38.710 +03:00 [INF] Request finished in 287.7727ms 200 text/plain; charset=utf-8 +2018-08-04 20:09:38.710 +03:00 [INF] Request finished in 291.2217ms 200 text/plain; charset=utf-8 +2018-08-04 20:09:45.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-08-04 20:09:45.908 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-08-04 20:09:45.938 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:09:46.271 +03:00 [INF] Executed action /Templates in 362.95500000000004ms +2018-08-04 20:09:46.271 +03:00 [INF] Request finished in 762.0482ms 200 text/html; charset=utf-8 +2018-08-04 20:09:46.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:09:46.387 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:46.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:09:46.390 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:09:46.391 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.391 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.391 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.392 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.393 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:46.393 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.394 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.394 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.395 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.395 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.395 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.395 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.395 +03:00 [INF] Authorization failed. +2018-08-04 20:09:46.396 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:09:46.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-08-04 20:09:46.397 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2255ms. +2018-08-04 20:09:46.397 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:46.397 +03:00 [INF] The file /js/vs.js was not modified +2018-08-04 20:09:46.397 +03:00 [INF] Request finished in 0.5276ms 304 application/javascript +2018-08-04 20:09:46.397 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.1408000000000005ms +2018-08-04 20:09:46.397 +03:00 [INF] Request finished in 9.7616ms 200 text/plain; charset=utf-8 +2018-08-04 20:09:46.399 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.6215000000000011ms. +2018-08-04 20:09:46.400 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:46.400 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.7485ms +2018-08-04 20:09:46.400 +03:00 [INF] Request finished in 14.4474ms 200 text/plain; charset=utf-8 +2018-08-04 20:09:53.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 20:09:53.520 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 20:09:53.520 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:09:53.528 +03:00 [INF] Executed action /Index in 8.3737000000000013ms +2018-08-04 20:09:53.528 +03:00 [INF] Request finished in 9.8391ms 200 text/html; charset=utf-8 +2018-08-04 20:09:53.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:09:53.633 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:53.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:09:53.634 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:09:53.634 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.634 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:09:53.634 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.634 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.634 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.635 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.161ms. +2018-08-04 20:09:53.636 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8587ms +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Request finished in 3.0361ms 200 text/plain; charset=utf-8 +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.636 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.637 +03:00 [INF] Authorization failed. +2018-08-04 20:09:53.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-08-04 20:09:53.640 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.3555ms. +2018-08-04 20:09:53.641 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:09:53.641 +03:00 [INF] The file /js/vs.js was not modified +2018-08-04 20:09:53.641 +03:00 [INF] Request finished in 0.6428ms 304 application/javascript +2018-08-04 20:09:53.641 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.9577ms +2018-08-04 20:09:53.641 +03:00 [INF] Request finished in 9.8096ms 200 text/plain; charset=utf-8 +2018-08-04 20:51:41.129 +03:00 [INF] Request starting HTTP/1.1 POST http://127.0.0.1:26536/iisintegration 0 +2018-08-04 20:51:41.130 +03:00 [INF] Request finished in 1.1554ms 202 +2018-08-04 20:52:35.234 +03:00 [INF] Loaded modules: +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-08-04 20:52:35.258 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-08-04 20:52:35.259 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-08-04 20:52:35.260 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-08-04 20:52:37.486 +03:00 [INF] Initialized all modules. +2018-08-04 20:52:37.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-08-04 20:52:39.998 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-08-04 20:52:40.025 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-08-04 20:52:41.563 +03:00 [INF] Executed action /Index in 1557.1136000000001ms +2018-08-04 20:52:41.589 +03:00 [INF] Request finished in 3949.8877ms 200 text/html; charset=utf-8 +2018-08-04 20:52:41.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-08-04 20:52:41.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-08-04 20:52:41.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-08-04 20:52:41.782 +03:00 [INF] The file /js/vs.js was not modified +2018-08-04 20:52:41.786 +03:00 [INF] Request finished in 5.9597ms 304 application/javascript +2018-08-04 20:52:41.790 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:52:41.790 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-08-04 20:52:41.849 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-08-04 20:52:41.851 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-08-04 20:52:41.925 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.926 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.927 +03:00 [INF] Authorization failed. +2018-08-04 20:52:41.955 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.5779ms. +2018-08-04 20:52:41.958 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 109.2808ms. +2018-08-04 20:52:41.963 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:52:41.963 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-08-04 20:52:41.964 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 173.2647ms +2018-08-04 20:52:41.964 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 173.29860000000002ms +2018-08-04 20:52:41.964 +03:00 [INF] Request finished in 202.1373ms 200 text/plain; charset=utf-8 +2018-08-04 20:52:41.964 +03:00 [INF] Request finished in 192.5308ms 200 text/plain; charset=utf-8 +2018-09-06 15:11:09.233 +03:00 [INF] Loaded modules: +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:11:09.251 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:11:09.252 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:11:09.254 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:11:09.254 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:11:09.254 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:11:09.254 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:11:10.950 +03:00 [INF] Initialized all modules. +2018-09-06 15:11:11.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:11:13.644 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:11:13.663 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:11:15.255 +03:00 [INF] Executed action /Index in 1605.9729ms +2018-09-06 15:11:15.271 +03:00 [INF] Request finished in 3988.3449ms 200 text/html; charset=utf-8 +2018-09-06 15:11:15.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:11:15.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:11:15.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:11:15.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:11:15.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:11:15.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:11:15.413 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:11:15.413 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:11:15.413 +03:00 [INF] Request finished in 19.8471ms 200 text/css +2018-09-06 15:11:15.413 +03:00 [INF] Request finished in 21.1226ms 200 text/css +2018-09-06 15:11:15.413 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:11:15.413 +03:00 [INF] Request finished in 21.3324ms 200 text/css +2018-09-06 15:11:15.414 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:11:15.414 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:11:15.414 +03:00 [INF] Request finished in 4.8163ms 200 text/css +2018-09-06 15:11:15.414 +03:00 [INF] Request finished in 6.0925ms 200 text/css +2018-09-06 15:11:15.414 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:11:15.414 +03:00 [INF] Request finished in 22.4701ms 200 text/css +2018-09-06 15:11:15.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:11:15.427 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:11:15.428 +03:00 [INF] Request finished in 1.2975ms 200 text/css +2018-09-06 15:11:15.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:11:15.436 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:11:15.436 +03:00 [INF] Request finished in 1.8047ms 200 text/css +2018-09-06 15:11:15.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:11:15.482 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:11:15.482 +03:00 [INF] Request finished in 2.6044ms 200 image/svg+xml +2018-09-06 15:11:15.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:11:15.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:11:15.573 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 15:11:15.574 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 15:11:15.574 +03:00 [INF] Request finished in 5.1153ms 200 image/png +2018-09-06 15:11:15.575 +03:00 [INF] Request finished in 3.6842ms 200 image/png +2018-09-06 15:11:15.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 15:11:15.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 15:11:15.586 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-09-06 15:11:15.586 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-06 15:11:15.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 15:11:15.587 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-09-06 15:11:15.589 +03:00 [INF] Request finished in 4.2539ms 304 image/png +2018-09-06 15:11:15.590 +03:00 [INF] Request finished in 2.9665ms 304 image/png +2018-09-06 15:11:15.591 +03:00 [INF] Request finished in 7.096ms 304 image/png +2018-09-06 15:11:15.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 15:11:15.619 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-09-06 15:11:15.620 +03:00 [INF] Request finished in 0.9451ms 304 image/png +2018-09-06 15:11:15.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 15:11:15.622 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-09-06 15:11:15.623 +03:00 [INF] Request finished in 1.322ms 304 image/png +2018-09-06 15:11:15.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 15:11:15.634 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-09-06 15:11:15.635 +03:00 [INF] Request finished in 0.7253ms 304 image/png +2018-09-06 15:11:15.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 15:11:15.642 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-06 15:11:15.642 +03:00 [INF] Request finished in 0.7314ms 304 image/png +2018-09-06 15:11:15.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 15:11:15.647 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-06 15:11:15.647 +03:00 [INF] Request finished in 0.6068ms 304 image/png +2018-09-06 15:11:15.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 15:11:15.649 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-06 15:11:15.649 +03:00 [INF] Request finished in 2.2725ms 304 image/png +2018-09-06 15:11:15.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 15:11:15.651 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-06 15:11:15.651 +03:00 [INF] Request finished in 0.6695ms 304 image/png +2018-09-06 15:11:15.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 15:11:15.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 15:11:15.656 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-09-06 15:11:15.657 +03:00 [INF] Request finished in 1.1742ms 304 image/png +2018-09-06 15:11:15.657 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-06 15:11:15.657 +03:00 [INF] Request finished in 2.1132ms 304 image/png +2018-09-06 15:11:15.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:11:15.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:11:15.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:11:15.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:11:15.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:11:15.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:11:15.666 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:11:15.667 +03:00 [INF] Request finished in 2.1697ms 200 application/javascript +2018-09-06 15:11:15.667 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:11:15.667 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:11:15.667 +03:00 [INF] Request finished in 0.895ms 200 application/javascript +2018-09-06 15:11:15.667 +03:00 [INF] Request finished in 2.2996ms 200 application/javascript +2018-09-06 15:11:15.672 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:11:15.672 +03:00 [INF] Request finished in 5.5672ms 200 application/javascript +2018-09-06 15:11:15.674 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:11:15.674 +03:00 [INF] Request finished in 7.9741ms 200 application/javascript +2018-09-06 15:11:15.676 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:11:15.676 +03:00 [INF] Request finished in 11.4761ms 200 application/javascript +2018-09-06 15:11:15.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:11:15.682 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:11:15.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:11:15.682 +03:00 [INF] Request finished in 2.0735ms 200 application/javascript +2018-09-06 15:11:15.683 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:11:15.684 +03:00 [INF] Request finished in 2.2769ms 200 application/javascript +2018-09-06 15:11:15.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:11:15.693 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:11:15.693 +03:00 [INF] Request finished in 6.2336ms 200 application/javascript +2018-09-06 15:11:15.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:11:15.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:11:15.698 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:11:15.698 +03:00 [INF] Request finished in 1.5922ms 200 application/javascript +2018-09-06 15:11:15.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:11:15.706 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:11:15.706 +03:00 [INF] Request finished in 3.7134ms 200 application/javascript +2018-09-06 15:11:15.707 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:11:15.707 +03:00 [INF] Request finished in 10.6467ms 200 application/javascript +2018-09-06 15:11:15.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:11:15.710 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:11:15.710 +03:00 [INF] Request finished in 1.8316ms 200 application/javascript +2018-09-06 15:11:15.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:11:15.724 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:11:15.724 +03:00 [INF] Request finished in 1.2197ms 200 application/javascript +2018-09-06 15:11:15.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:11:15.726 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:11:15.726 +03:00 [INF] Request finished in 3.2812ms 200 application/javascript +2018-09-06 15:11:15.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:11:15.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:11:15.733 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:11:15.733 +03:00 [INF] Request finished in 2.0336ms 200 application/javascript +2018-09-06 15:11:15.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:11:15.734 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:11:15.734 +03:00 [INF] Request finished in 2.017ms 200 application/javascript +2018-09-06 15:11:15.735 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:11:15.735 +03:00 [INF] Request finished in 0.9696ms 200 application/javascript +2018-09-06 15:11:15.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:11:15.741 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:11:15.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:11:15.741 +03:00 [INF] Request finished in 1.1231ms 200 application/javascript +2018-09-06 15:11:15.742 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:11:15.743 +03:00 [INF] Request finished in 1.3097ms 200 application/javascript +2018-09-06 15:11:15.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:11:15.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:11:15.744 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:11:15.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:11:15.745 +03:00 [INF] Request finished in 1.7635ms 200 application/javascript +2018-09-06 15:11:15.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:11:15.751 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:11:15.751 +03:00 [INF] Request finished in 0.7977ms 200 application/javascript +2018-09-06 15:11:15.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 15:11:15.757 +03:00 [INF] The file /img/mt-left.png was not modified +2018-09-06 15:11:15.757 +03:00 [INF] Request finished in 0.5967ms 304 image/png +2018-09-06 15:11:15.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:11:15.761 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:11:15.761 +03:00 [INF] Request finished in 1.4889ms 200 application/javascript +2018-09-06 15:11:15.761 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:11:15.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 15:11:15.764 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-09-06 15:11:15.764 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:11:15.764 +03:00 [INF] Request finished in 0.7985ms 304 image/png +2018-09-06 15:11:15.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 15:11:15.770 +03:00 [INF] The file /assets/my-image.png was not modified +2018-09-06 15:11:15.771 +03:00 [INF] Request finished in 1.1403ms 304 image/png +2018-09-06 15:11:15.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 15:11:15.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 15:11:15.771 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-09-06 15:11:15.771 +03:00 [INF] Request finished in 0.4678ms 304 image/png +2018-09-06 15:11:15.772 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-09-06 15:11:15.772 +03:00 [INF] Request finished in 1.1205ms 304 image/png +2018-09-06 15:11:15.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 15:11:15.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:11:15.778 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-09-06 15:11:15.778 +03:00 [INF] Request finished in 0.6856ms 304 image/png +2018-09-06 15:11:15.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 15:11:15.779 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 15:11:15.779 +03:00 [INF] Request finished in 1.6686ms 200 image/png +2018-09-06 15:11:15.780 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-09-06 15:11:15.780 +03:00 [INF] Request finished in 0.8265ms 304 image/png +2018-09-06 15:11:15.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 15:11:15.784 +03:00 [INF] The file /assets/familiar.png was not modified +2018-09-06 15:11:15.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 15:11:15.785 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-09-06 15:11:15.785 +03:00 [INF] Request finished in 0.8767ms 304 image/png +2018-09-06 15:11:15.786 +03:00 [INF] Request finished in 2.3761ms 304 image/png +2018-09-06 15:11:15.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 15:11:15.789 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-09-06 15:11:15.789 +03:00 [INF] Request finished in 1.0629ms 304 image/png +2018-09-06 15:11:15.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:11:15.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 15:11:15.793 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:11:15.793 +03:00 [INF] Request finished in 4.1636ms 200 font/woff2 +2018-09-06 15:11:15.793 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-09-06 15:11:15.794 +03:00 [INF] Request finished in 0.7167ms 304 image/png +2018-09-06 15:11:15.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 15:11:15.794 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-09-06 15:11:15.794 +03:00 [INF] Request finished in 0.5898ms 304 image/png +2018-09-06 15:11:15.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 15:11:15.800 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-06 15:11:15.800 +03:00 [INF] Request finished in 0.9793ms 304 image/png +2018-09-06 15:11:15.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 15:11:15.804 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-09-06 15:11:15.804 +03:00 [INF] Request finished in 1.3129ms 304 image/png +2018-09-06 15:11:15.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 15:11:15.805 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-09-06 15:11:15.806 +03:00 [INF] Request finished in 0.6365ms 304 image/png +2018-09-06 15:11:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 15:11:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 15:11:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 15:11:15.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 15:11:15.813 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-09-06 15:11:15.814 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-09-06 15:11:15.813 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-09-06 15:11:15.814 +03:00 [INF] Request finished in 0.4496ms 304 image/png +2018-09-06 15:11:15.814 +03:00 [INF] Request finished in 0.6417ms 304 image/png +2018-09-06 15:11:15.814 +03:00 [INF] Request finished in 0.5328ms 304 image/png +2018-09-06 15:11:15.815 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-09-06 15:11:15.815 +03:00 [INF] Request finished in 2.1863ms 304 image/png +2018-09-06 15:11:15.819 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:11:15.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:11:15.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 15:11:15.820 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-06 15:11:15.820 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-06 15:11:15.820 +03:00 [INF] Request finished in 0.6805ms 304 image/png +2018-09-06 15:11:15.821 +03:00 [INF] Request finished in 0.7524ms 304 image/svg+xml +2018-09-06 15:11:15.824 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:11:15.896 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.898 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.899 +03:00 [INF] Authorization failed. +2018-09-06 15:11:15.930 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 100.7949ms. +2018-09-06 15:11:15.933 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 114.141ms. +2018-09-06 15:11:15.938 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:11:15.940 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:11:15.941 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 179.25390000000002ms +2018-09-06 15:11:15.941 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 176.05710000000002ms +2018-09-06 15:11:15.941 +03:00 [INF] Request finished in 197.9745ms 200 text/plain; charset=utf-8 +2018-09-06 15:11:15.941 +03:00 [INF] Request finished in 196.5521ms 200 text/plain; charset=utf-8 +2018-09-06 15:11:15.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:11:15.997 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-06 15:11:15.997 +03:00 [INF] Request finished in 0.6975ms 304 image/jpeg +2018-09-06 15:11:16.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:11:16.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:11:16.569 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:11:16.569 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:11:16.569 +03:00 [INF] Request finished in 3.8019ms 200 image/png +2018-09-06 15:11:16.569 +03:00 [INF] Request finished in 2.1812ms 200 image/png +2018-09-06 15:11:16.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:11:16.911 +03:00 [INF] Sending file. Request path: '/scss/vs.css.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css.map' +2018-09-06 15:11:16.911 +03:00 [INF] Request finished in 3.4919ms 200 text/plain +2018-09-06 15:11:16.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:11:16.919 +03:00 [INF] Request finished in 2.2193ms 404 +2018-09-06 15:11:23.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:11:23.867 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:11:23.868 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:11:23.875 +03:00 [INF] Executed action /Index in 8.1325ms +2018-09-06 15:11:23.875 +03:00 [INF] Request finished in 9.7114ms 200 text/html; charset=utf-8 +2018-09-06 15:11:24.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:11:24.165 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:11:24.166 +03:00 [INF] Request finished in 4.3615ms 200 text/css +2018-09-06 15:11:24.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:11:24.173 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:11:24.173 +03:00 [INF] Request finished in 1.1175ms 200 text/css +2018-09-06 15:11:24.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:11:24.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:11:24.232 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:11:24.232 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:11:24.232 +03:00 [INF] Request finished in 1.6565ms 200 text/css +2018-09-06 15:11:24.232 +03:00 [INF] Request finished in 1.6585ms 200 text/css +2018-09-06 15:11:24.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:11:24.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:11:24.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:11:24.243 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:11:24.243 +03:00 [INF] Request finished in 0.9681ms 200 text/css +2018-09-06 15:11:24.243 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:11:24.243 +03:00 [INF] Request finished in 1.0496ms 200 text/css +2018-09-06 15:11:24.244 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:11:24.244 +03:00 [INF] Request finished in 1.2793ms 200 text/css +2018-09-06 15:11:24.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:11:24.246 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:11:24.246 +03:00 [INF] Request finished in 1.0943ms 200 text/css +2018-09-06 15:11:24.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:11:24.254 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:11:24.254 +03:00 [INF] Request finished in 4.3163ms 200 application/javascript +2018-09-06 15:11:24.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:11:24.256 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:11:24.256 +03:00 [INF] Request finished in 1.5391ms 200 application/javascript +2018-09-06 15:11:24.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:11:24.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:11:24.262 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:11:24.262 +03:00 [INF] Request finished in 2.9086ms 200 application/javascript +2018-09-06 15:11:24.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:11:24.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:11:24.266 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:11:24.266 +03:00 [INF] Request finished in 9.1735ms 200 application/javascript +2018-09-06 15:11:24.267 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:11:24.267 +03:00 [INF] Request finished in 2.0267ms 200 application/javascript +2018-09-06 15:11:24.269 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:11:24.269 +03:00 [INF] Request finished in 6.6763ms 200 application/javascript +2018-09-06 15:11:24.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:11:24.271 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:11:24.271 +03:00 [INF] Request finished in 0.9183ms 200 application/javascript +2018-09-06 15:11:24.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:11:24.273 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:11:24.273 +03:00 [INF] Request finished in 1.0771ms 200 application/javascript +2018-09-06 15:11:24.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:11:24.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:11:24.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:11:24.294 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:11:24.294 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:11:24.294 +03:00 [INF] Request finished in 1.2311ms 200 application/javascript +2018-09-06 15:11:24.294 +03:00 [INF] Request finished in 2.6986ms 200 application/javascript +2018-09-06 15:11:24.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:11:24.302 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:11:24.303 +03:00 [INF] Request finished in 1.7409ms 200 application/javascript +2018-09-06 15:11:24.305 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:11:24.306 +03:00 [INF] Request finished in 13.6136ms 200 application/javascript +2018-09-06 15:11:24.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:11:24.313 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:11:24.313 +03:00 [INF] Request finished in 1.2082ms 200 application/javascript +2018-09-06 15:11:24.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:11:24.324 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:11:24.324 +03:00 [INF] Request finished in 0.959ms 200 application/javascript +2018-09-06 15:11:24.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:11:24.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:11:24.329 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:11:24.329 +03:00 [INF] Request finished in 1.2988ms 200 application/javascript +2018-09-06 15:11:24.329 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:11:24.329 +03:00 [INF] Request finished in 1.6822ms 200 application/javascript +2018-09-06 15:11:24.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:11:24.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:11:24.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:11:24.343 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:11:24.343 +03:00 [INF] Request finished in 0.9857ms 200 application/javascript +2018-09-06 15:11:24.343 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:11:24.343 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:11:24.343 +03:00 [INF] Request finished in 0.9071ms 200 application/javascript +2018-09-06 15:11:24.343 +03:00 [INF] Request finished in 1.3201ms 200 application/javascript +2018-09-06 15:11:24.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:11:24.353 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:11:24.353 +03:00 [INF] Request finished in 3.7142ms 200 application/javascript +2018-09-06 15:11:24.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:11:24.356 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:11:24.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:11:24.357 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:11:24.357 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.358 +03:00 [INF] Authorization failed. +2018-09-06 15:11:24.359 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:11:24.360 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:11:24.361 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2467ms. +2018-09-06 15:11:24.361 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.6348000000000003ms. +2018-09-06 15:11:24.361 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:11:24.361 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:11:24.361 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7926ms +2018-09-06 15:11:24.361 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.2715000000000005ms +2018-09-06 15:11:24.362 +03:00 [INF] Request finished in 6.9379ms 200 text/plain; charset=utf-8 +2018-09-06 15:11:24.362 +03:00 [INF] Request finished in 5.4673ms 200 text/plain; charset=utf-8 +2018-09-06 15:11:24.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:11:24.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:11:24.373 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:11:24.373 +03:00 [INF] Request finished in 2.1444ms 200 application/javascript +2018-09-06 15:11:24.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:11:24.374 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:11:24.374 +03:00 [INF] Request finished in 1.4256ms 200 application/javascript +2018-09-06 15:11:24.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:11:24.374 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:11:24.374 +03:00 [INF] Request finished in 1.2812ms 200 application/javascript +2018-09-06 15:11:24.376 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:11:24.376 +03:00 [INF] Request finished in 2.1294ms 200 image/svg+xml +2018-09-06 15:11:24.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 15:11:24.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:11:24.396 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-06 15:11:24.396 +03:00 [INF] Request finished in 2.7357ms 200 image/png +2018-09-06 15:11:24.396 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 15:11:24.396 +03:00 [INF] Request finished in 1.5186ms 200 image/png +2018-09-06 15:11:24.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:11:24.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 15:11:24.400 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 15:11:24.400 +03:00 [INF] Request finished in 2.415ms 200 image/png +2018-09-06 15:11:24.401 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-06 15:11:24.401 +03:00 [INF] Request finished in 1.8579ms 200 image/png +2018-09-06 15:11:24.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 15:11:24.411 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-06 15:11:24.411 +03:00 [INF] Request finished in 1.7015ms 200 image/png +2018-09-06 15:11:24.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 15:11:24.419 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-06 15:11:24.419 +03:00 [INF] Request finished in 3.1371ms 200 image/png +2018-09-06 15:11:24.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 15:11:24.427 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-06 15:11:24.427 +03:00 [INF] Request finished in 1.6965ms 200 image/png +2018-09-06 15:11:24.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 15:11:24.445 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-06 15:11:24.445 +03:00 [INF] Request finished in 1.459ms 200 image/png +2018-09-06 15:11:24.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 15:11:24.472 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-06 15:11:24.472 +03:00 [INF] Request finished in 1.511ms 200 image/png +2018-09-06 15:11:24.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 15:11:24.501 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-06 15:11:24.501 +03:00 [INF] Request finished in 1.5023ms 200 image/png +2018-09-06 15:11:24.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 15:11:24.517 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-06 15:11:24.517 +03:00 [INF] Request finished in 3.6884ms 200 image/png +2018-09-06 15:11:24.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 15:11:24.539 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-06 15:11:24.540 +03:00 [INF] Request finished in 2.2509ms 200 image/png +2018-09-06 15:11:24.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 15:11:24.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 15:11:24.542 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-06 15:11:24.542 +03:00 [INF] Request finished in 1.8361ms 200 image/png +2018-09-06 15:11:24.543 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-06 15:11:24.544 +03:00 [INF] Request finished in 2.1122ms 200 image/png +2018-09-06 15:11:24.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 15:11:24.547 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-06 15:11:24.547 +03:00 [INF] Request finished in 1.6652ms 200 image/png +2018-09-06 15:11:24.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 15:11:24.554 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-06 15:11:24.554 +03:00 [INF] Request finished in 1.3507ms 200 image/png +2018-09-06 15:11:24.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 15:11:24.564 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-06 15:11:24.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 15:11:24.564 +03:00 [INF] Request finished in 6.3132ms 200 image/png +2018-09-06 15:11:24.566 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-06 15:11:24.566 +03:00 [INF] Request finished in 2.6677ms 200 image/png +2018-09-06 15:11:24.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 15:11:24.583 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-06 15:11:24.583 +03:00 [INF] Request finished in 4.0381ms 200 image/png +2018-09-06 15:11:24.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 15:11:24.585 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-06 15:11:24.588 +03:00 [INF] Request finished in 4.0813ms 200 image/png +2018-09-06 15:11:24.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 15:11:24.602 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-06 15:11:24.602 +03:00 [INF] Request finished in 1.9552ms 200 image/png +2018-09-06 15:11:24.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:11:24.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 15:11:24.611 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 15:11:24.611 +03:00 [INF] Request finished in 1.0127ms 200 image/png +2018-09-06 15:11:24.611 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-06 15:11:24.612 +03:00 [INF] Request finished in 1.7808ms 200 image/png +2018-09-06 15:11:24.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 15:11:24.614 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-06 15:11:24.615 +03:00 [INF] Request finished in 2.3426ms 200 image/png +2018-09-06 15:11:24.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 15:11:24.619 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-06 15:11:24.619 +03:00 [INF] Request finished in 1.7079ms 200 image/png +2018-09-06 15:11:24.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 15:11:24.625 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-06 15:11:24.625 +03:00 [INF] Request finished in 3.6876ms 200 image/png +2018-09-06 15:11:24.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 15:11:24.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 15:11:24.628 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-06 15:11:24.628 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-06 15:11:24.628 +03:00 [INF] Request finished in 1.0377ms 200 image/png +2018-09-06 15:11:24.629 +03:00 [INF] Request finished in 1.533ms 200 image/png +2018-09-06 15:11:24.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 15:11:24.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 15:11:24.637 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-06 15:11:24.637 +03:00 [INF] Request finished in 1.2558ms 200 image/png +2018-09-06 15:11:24.638 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-06 15:11:24.638 +03:00 [INF] Request finished in 1.6416ms 200 image/png +2018-09-06 15:11:24.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 15:11:24.650 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-06 15:11:24.650 +03:00 [INF] Request finished in 2.001ms 200 image/png +2018-09-06 15:11:24.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 15:11:24.660 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-06 15:11:24.660 +03:00 [INF] Request finished in 1.7453ms 200 image/png +2018-09-06 15:11:24.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 15:11:24.671 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-06 15:11:24.671 +03:00 [INF] Request finished in 1.4536ms 200 image/png +2018-09-06 15:11:24.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 15:11:24.680 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-06 15:11:24.680 +03:00 [INF] Request finished in 1.3354ms 200 image/png +2018-09-06 15:11:24.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 15:11:24.684 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-06 15:11:24.684 +03:00 [INF] Request finished in 1.1876ms 200 image/png +2018-09-06 15:11:24.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:11:24.803 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:11:24.803 +03:00 [INF] Request finished in 2.3772ms 200 image/svg+xml +2018-09-06 15:11:24.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:11:24.905 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:11:24.906 +03:00 [INF] Request finished in 2.321ms 200 font/woff2 +2018-09-06 15:11:25.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:11:25.063 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:11:25.063 +03:00 [INF] Request finished in 12.1236ms 200 image/jpeg +2018-09-06 15:11:25.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:11:25.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:11:25.448 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:11:25.448 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:11:25.448 +03:00 [INF] Request finished in 0.6913ms 200 image/png +2018-09-06 15:11:25.448 +03:00 [INF] Request finished in 0.903ms 200 image/png +2018-09-06 15:11:25.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:11:25.483 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:11:25.484 +03:00 [INF] Request finished in 0.5576ms 304 text/plain +2018-09-06 15:11:25.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:11:25.491 +03:00 [INF] Request finished in 1.4235ms 404 +2018-09-06 15:18:55.940 +03:00 [INF] Loaded modules: +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:18:55.960 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:18:55.961 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:18:55.962 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:18:55.962 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:18:55.962 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:18:55.962 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:18:55.962 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:18:57.835 +03:00 [INF] Initialized all modules. +2018-09-06 15:18:58.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-06 15:19:00.688 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 15:19:00.746 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:19:00.940 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 15:19:00.952 +03:00 [INF] Executed action /Blog/Index in 252.12730000000002ms +2018-09-06 15:19:00.966 +03:00 [INF] Request finished in 2836.6228ms 302 +2018-09-06 15:19:00.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:19:01.473 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:19:01.657 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:19:01.882 +03:00 [INF] Authorization failed. +2018-09-06 15:19:01.913 +03:00 [INF] Executed action /Blog/Posts/Index in 439.6866ms +2018-09-06 15:19:01.985 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Authorization.AbpAuthorizationException: Authorization failed! Given policy has not granted: Blogging.Post + at Microsoft.AspNetCore.Authorization.AbpAuthorizationServiceExtensions.CheckAsync(IAuthorizationService authorizationService, String policyName) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Microsoft\AspNetCore\Authorization\AbpAuthorizationServiceExtensions.cs:line 132 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(IAuthorizeData authorizationAttribute) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 63 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(MethodInvocationAuthorizationContext context) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 30 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 38 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 35 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:19:02.051 +03:00 [INF] Request finished in 1069.9241ms 500 text/html; charset=utf-8 +2018-09-06 15:19:02.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 15:19:02.142 +03:00 [INF] Request finished in 6.9331ms 404 +2018-09-06 15:25:44.019 +03:00 [INF] Loaded modules: +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:25:44.036 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:25:44.037 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:25:44.039 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:25:45.757 +03:00 [INF] Initialized all modules. +2018-09-06 15:25:46.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:25:48.355 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:25:48.374 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:25:49.837 +03:00 [INF] Executed action /Index in 1477.9029ms +2018-09-06 15:25:49.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:25:49.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:25:49.864 +03:00 [INF] Request finished in 3842.6953ms 200 text/html; charset=utf-8 +2018-09-06 15:25:49.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:25:49.868 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-06 15:25:49.868 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-06 15:25:49.869 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-06 15:25:49.872 +03:00 [INF] Request finished in 10.5549ms 304 text/css +2018-09-06 15:25:49.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:25:49.872 +03:00 [INF] Request finished in 6.3697ms 304 text/css +2018-09-06 15:25:49.873 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-06 15:25:49.873 +03:00 [INF] Request finished in 0.5853ms 304 text/css +2018-09-06 15:25:49.872 +03:00 [INF] Request finished in 9.7004ms 304 text/css +2018-09-06 15:25:49.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:25:49.884 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-06 15:25:49.884 +03:00 [INF] Request finished in 0.6138ms 304 text/css +2018-09-06 15:25:49.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:25:49.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:25:49.885 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-06 15:25:49.886 +03:00 [INF] Request finished in 1.0587ms 304 text/css +2018-09-06 15:25:49.887 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-06 15:25:49.887 +03:00 [INF] Request finished in 2.9083ms 304 text/css +2018-09-06 15:25:49.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:25:49.892 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-06 15:25:49.893 +03:00 [INF] Request finished in 2.4525ms 304 text/css +2018-09-06 15:25:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:25:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:25:49.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:25:49.902 +03:00 [INF] The file /img/modular.png was not modified +2018-09-06 15:25:49.903 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-09-06 15:25:49.903 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-06 15:25:49.903 +03:00 [INF] Request finished in 0.849ms 304 image/png +2018-09-06 15:25:49.903 +03:00 [INF] Request finished in 0.9982ms 304 image/png +2018-09-06 15:25:49.903 +03:00 [INF] Request finished in 0.7366ms 304 image/svg+xml +2018-09-06 15:25:49.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:25:49.942 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-09-06 15:25:49.942 +03:00 [INF] Request finished in 1.0072ms 304 image/png +2018-09-06 15:25:49.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:25:49.973 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-06 15:25:49.973 +03:00 [INF] Request finished in 0.7691ms 304 application/javascript +2018-09-06 15:25:49.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:25:49.976 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-06 15:25:49.976 +03:00 [INF] Request finished in 1.2155ms 304 application/javascript +2018-09-06 15:25:49.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:25:49.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:25:49.983 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-06 15:25:49.983 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-06 15:25:49.983 +03:00 [INF] Request finished in 0.5576ms 304 application/javascript +2018-09-06 15:25:49.984 +03:00 [INF] Request finished in 0.8262ms 304 application/javascript +2018-09-06 15:25:49.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:25:49.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:25:49.991 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-06 15:25:49.992 +03:00 [INF] Request finished in 1.3014ms 304 application/javascript +2018-09-06 15:25:49.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:25:49.992 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-06 15:25:49.992 +03:00 [INF] Request finished in 0.9344ms 304 application/javascript +2018-09-06 15:25:49.992 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-06 15:25:49.993 +03:00 [INF] Request finished in 0.5981ms 304 application/javascript +2018-09-06 15:25:49.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:25:49.995 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-06 15:25:49.995 +03:00 [INF] Request finished in 1.2821ms 304 application/javascript +2018-09-06 15:25:50.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:25:50.004 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-06 15:25:50.005 +03:00 [INF] Request finished in 4.117ms 304 application/javascript +2018-09-06 15:25:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:25:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:25:50.008 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-06 15:25:50.008 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-06 15:25:50.008 +03:00 [INF] Request finished in 0.7427ms 304 application/javascript +2018-09-06 15:25:50.008 +03:00 [INF] Request finished in 0.9097ms 304 application/javascript +2018-09-06 15:25:50.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:25:50.011 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-06 15:25:50.011 +03:00 [INF] Request finished in 0.8388ms 304 application/javascript +2018-09-06 15:25:50.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:25:50.020 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-06 15:25:50.020 +03:00 [INF] Request finished in 1.1227ms 304 application/javascript +2018-09-06 15:25:50.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:25:50.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:25:50.022 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-06 15:25:50.022 +03:00 [INF] Request finished in 1.5289ms 304 application/javascript +2018-09-06 15:25:50.022 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-06 15:25:50.022 +03:00 [INF] Request finished in 0.6717ms 304 application/javascript +2018-09-06 15:25:50.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:25:50.027 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-06 15:25:50.028 +03:00 [INF] Request finished in 0.9471ms 304 application/javascript +2018-09-06 15:25:50.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:25:50.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:25:50.033 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-06 15:25:50.033 +03:00 [INF] Request finished in 1.079ms 304 application/javascript +2018-09-06 15:25:50.033 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-06 15:25:50.033 +03:00 [INF] Request finished in 0.7697ms 304 application/javascript +2018-09-06 15:25:50.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:25:50.039 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-06 15:25:50.040 +03:00 [INF] Request finished in 5.6788ms 304 application/javascript +2018-09-06 15:25:50.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:25:50.047 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-06 15:25:50.048 +03:00 [INF] Request finished in 3.5216ms 304 application/javascript +2018-09-06 15:25:50.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:25:50.049 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-06 15:25:50.049 +03:00 [INF] Request finished in 1.3951ms 304 application/javascript +2018-09-06 15:25:50.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:25:50.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:25:50.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:25:50.056 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-06 15:25:50.056 +03:00 [INF] Request finished in 0.7405ms 304 application/javascript +2018-09-06 15:25:50.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:25:50.059 +03:00 [INF] The file /js/vs.js was not modified +2018-09-06 15:25:50.059 +03:00 [INF] Request finished in 0.5708ms 304 application/javascript +2018-09-06 15:25:50.073 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:25:50.073 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:25:50.107 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:25:50.108 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:25:50.159 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.160 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.161 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.162 +03:00 [INF] Authorization failed. +2018-09-06 15:25:50.189 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 77.474600000000009ms. +2018-09-06 15:25:50.195 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:25:50.195 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 88.2859ms. +2018-09-06 15:25:50.196 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:25:50.196 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 122.5809ms +2018-09-06 15:25:50.196 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 123.1049ms +2018-09-06 15:25:50.197 +03:00 [INF] Request finished in 146.7404ms 200 text/plain; charset=utf-8 +2018-09-06 15:25:50.197 +03:00 [INF] Request finished in 143.2005ms 200 text/plain; charset=utf-8 +2018-09-06 15:25:50.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:25:50.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:25:50.347 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:25:50.348 +03:00 [INF] Request finished in 8.5522ms 200 image/png +2018-09-06 15:25:50.347 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:25:50.348 +03:00 [INF] Request finished in 8.8595ms 200 image/png +2018-09-06 15:25:50.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:25:50.699 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:25:50.699 +03:00 [INF] Request finished in 10.5032ms 200 font/woff2 +2018-09-06 15:27:49.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-06 15:27:49.328 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 15:27:49.373 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:27:49.536 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 15:27:49.537 +03:00 [INF] Executed action /Blog/Index in 208.24120000000002ms +2018-09-06 15:27:49.537 +03:00 [INF] Request finished in 509.4806ms 302 +2018-09-06 15:27:49.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:27:49.920 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:27:50.040 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:27:50.087 +03:00 [INF] Authorization failed. +2018-09-06 15:27:50.091 +03:00 [INF] Executed action /Blog/Posts/Index in 171.3288ms +2018-09-06 15:27:50.126 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Authorization.AbpAuthorizationException: Authorization failed! Given policy has not granted: Blogging.Post + at Microsoft.AspNetCore.Authorization.AbpAuthorizationServiceExtensions.CheckAsync(IAuthorizationService authorizationService, String policyName) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Microsoft\AspNetCore\Authorization\AbpAuthorizationServiceExtensions.cs:line 132 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(IAuthorizeData authorizationAttribute) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 63 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(MethodInvocationAuthorizationContext context) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 30 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 38 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 35 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:27:50.175 +03:00 [INF] Request finished in 627.6821ms 500 text/html; charset=utf-8 +2018-09-06 15:27:50.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 15:27:50.211 +03:00 [INF] Request finished in 2.7333ms 404 +2018-09-06 15:30:24.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:30:24.018 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:30:24.022 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:30:24.029 +03:00 [INF] Authorization failed. +2018-09-06 15:30:24.031 +03:00 [INF] Executed action /Blog/Posts/Index in 12.8129ms +2018-09-06 15:30:24.033 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Authorization.AbpAuthorizationException: Authorization failed! Given policy has not granted: Blogging.Post + at Microsoft.AspNetCore.Authorization.AbpAuthorizationServiceExtensions.CheckAsync(IAuthorizationService authorizationService, String policyName) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Microsoft\AspNetCore\Authorization\AbpAuthorizationServiceExtensions.cs:line 132 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(IAuthorizeData authorizationAttribute) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 63 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(MethodInvocationAuthorizationContext context) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 30 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 38 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 35 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:30:24.062 +03:00 [INF] Request finished in 45.3273ms 500 text/html; charset=utf-8 +2018-09-06 15:30:24.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 15:30:24.122 +03:00 [INF] Request finished in 1.1533ms 404 +2018-09-06 15:30:54.338 +03:00 [INF] Loaded modules: +2018-09-06 15:30:54.356 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:30:54.356 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:30:54.356 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:30:54.357 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:30:54.358 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:30:55.999 +03:00 [INF] Initialized all modules. +2018-09-06 15:30:56.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:30:58.513 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:30:58.683 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:30:58.891 +03:00 [INF] Authorization failed. +2018-09-06 15:30:58.898 +03:00 [INF] Executed action /Blog/Posts/Index in 381.6023ms +2018-09-06 15:30:58.930 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Authorization.AbpAuthorizationException: Authorization failed! Given policy has not granted: Blogging.Tag + at Microsoft.AspNetCore.Authorization.AbpAuthorizationServiceExtensions.CheckAsync(IAuthorizationService authorizationService, String policyName) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Microsoft\AspNetCore\Authorization\AbpAuthorizationServiceExtensions.cs:line 132 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(IAuthorizeData authorizationAttribute) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 63 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(MethodInvocationAuthorizationContext context) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 30 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 38 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 36 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:30:58.986 +03:00 [INF] Request finished in 2648.3629ms 500 text/html; charset=utf-8 +2018-09-06 15:30:59.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 15:30:59.030 +03:00 [INF] Request finished in 6.381ms 404 +2018-09-06 15:32:46.931 +03:00 [INF] Loaded modules: +2018-09-06 15:32:46.945 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:32:46.945 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:32:46.946 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:32:46.947 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:32:46.948 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:32:48.568 +03:00 [INF] Initialized all modules. +2018-09-06 15:32:48.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:32:51.139 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:32:51.310 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:32:51.620 +03:00 [INF] Authorization failed. +2018-09-06 15:32:52.870 +03:00 [INF] Executed action /Blog/Posts/Index in 1726.3456ms +2018-09-06 15:32:52.878 +03:00 [INF] Request finished in 4009.7642ms 200 text/html; charset=utf-8 +2018-09-06 15:32:52.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:32:52.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:32:52.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:32:52.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:32:52.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:32:52.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:32:52.958 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:32:52.958 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:32:52.958 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:32:52.959 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:32:52.960 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:32:52.963 +03:00 [INF] Request finished in 23.0717ms 200 text/css +2018-09-06 15:32:52.963 +03:00 [INF] Request finished in 28.7384ms 200 text/css +2018-09-06 15:32:52.963 +03:00 [INF] Request finished in 31.1441ms 200 text/css +2018-09-06 15:32:52.963 +03:00 [INF] Request finished in 23.4687ms 200 text/css +2018-09-06 15:32:52.963 +03:00 [INF] Request finished in 19.1078ms 200 text/css +2018-09-06 15:32:52.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:32:52.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:32:52.973 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:32:52.974 +03:00 [INF] Request finished in 1.0351ms 200 text/css +2018-09-06 15:32:52.974 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:32:52.974 +03:00 [INF] Request finished in 1.2893ms 200 text/css +2018-09-06 15:32:52.976 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:32:52.976 +03:00 [INF] Request finished in 45.3789ms 200 text/css +2018-09-06 15:32:52.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:32:52.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:32:52.982 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:32:52.982 +03:00 [INF] Request finished in 3.4787ms 200 text/css +2018-09-06 15:32:52.982 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:32:52.984 +03:00 [INF] Request finished in 6.4949ms 200 text/css +2018-09-06 15:32:52.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:32:52.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:32:52.990 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:32:52.990 +03:00 [INF] Request finished in 1.3007ms 200 text/css +2018-09-06 15:32:52.990 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:32:52.991 +03:00 [INF] Request finished in 1.4311ms 200 text/css +2018-09-06 15:32:52.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:32:52.995 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:32:52.995 +03:00 [INF] Request finished in 3.2097ms 200 application/javascript +2018-09-06 15:32:52.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:32:53.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:32:53.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:32:53.000 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:32:53.001 +03:00 [INF] Request finished in 0.9587ms 200 application/javascript +2018-09-06 15:32:53.007 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:32:53.007 +03:00 [INF] Request finished in 7.0751ms 200 application/javascript +2018-09-06 15:32:53.008 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:32:53.008 +03:00 [INF] Request finished in 11.5463ms 200 application/javascript +2018-09-06 15:32:53.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:32:53.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:32:53.011 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:32:53.011 +03:00 [INF] Request finished in 1.8198ms 200 application/javascript +2018-09-06 15:32:53.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:32:53.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:32:53.014 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:32:53.015 +03:00 [INF] Request finished in 1.8092ms 200 application/javascript +2018-09-06 15:32:53.015 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:32:53.015 +03:00 [INF] Request finished in 1.7641ms 200 application/javascript +2018-09-06 15:32:53.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:32:53.031 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:32:53.031 +03:00 [INF] Request finished in 1.0428ms 200 application/javascript +2018-09-06 15:32:53.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:32:53.064 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:32:53.064 +03:00 [INF] Request finished in 2.7742ms 200 application/javascript +2018-09-06 15:32:53.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:32:53.108 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:32:53.108 +03:00 [INF] Request finished in 9.4944ms 200 application/javascript +2018-09-06 15:32:53.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:32:53.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:32:53.118 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:32:53.118 +03:00 [INF] Request finished in 1.4382ms 200 application/javascript +2018-09-06 15:32:53.118 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:32:53.119 +03:00 [INF] Request finished in 1.9846ms 200 application/javascript +2018-09-06 15:32:53.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:32:53.138 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:32:53.138 +03:00 [INF] Request finished in 6.2549ms 200 application/javascript +2018-09-06 15:32:53.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:32:53.153 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:32:53.153 +03:00 [INF] Request finished in 3.8811ms 200 application/javascript +2018-09-06 15:32:53.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:32:53.157 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:32:53.157 +03:00 [INF] Request finished in 1.6941ms 200 application/javascript +2018-09-06 15:32:53.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:32:53.165 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:32:53.166 +03:00 [INF] Request finished in 1.733ms 200 application/javascript +2018-09-06 15:32:53.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:32:53.170 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:32:53.170 +03:00 [INF] Request finished in 1.7807ms 200 application/javascript +2018-09-06 15:32:53.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:32:53.180 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:32:53.180 +03:00 [INF] Request finished in 1.3426ms 200 application/javascript +2018-09-06 15:32:53.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:32:53.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:32:53.191 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:32:53.191 +03:00 [INF] Request finished in 2.3353ms 200 application/javascript +2018-09-06 15:32:53.191 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:32:53.191 +03:00 [INF] Request finished in 1.2028ms 200 application/javascript +2018-09-06 15:32:53.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:32:53.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:32:53.200 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:32:53.201 +03:00 [INF] Request finished in 1.7876ms 200 application/javascript +2018-09-06 15:32:53.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:32:53.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:32:53.211 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:32:53.211 +03:00 [INF] Request finished in 1.9554ms 200 application/javascript +2018-09-06 15:32:53.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:32:53.214 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:32:53.214 +03:00 [INF] Request finished in 1.9446ms 200 application/javascript +2018-09-06 15:32:53.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:32:53.216 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:32:53.216 +03:00 [INF] Request finished in 1.8849ms 200 application/javascript +2018-09-06 15:32:53.226 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:32:53.226 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:32:53.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:32:53.232 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:32:53.233 +03:00 [INF] Request finished in 0.8338ms 200 application/javascript +2018-09-06 15:32:53.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:32:53.234 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:32:53.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:32:53.234 +03:00 [INF] Request finished in 1.0881ms 200 application/javascript +2018-09-06 15:32:53.236 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:32:53.237 +03:00 [INF] Request finished in 3.6735ms 200 image/svg+xml +2018-09-06 15:32:53.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:32:53.250 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:32:53.250 +03:00 [INF] Request finished in 1.1488ms 200 image/svg+xml +2018-09-06 15:32:53.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:32:53.297 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:32:53.299 +03:00 [INF] Request finished in 6.2278ms 200 font/woff2 +2018-09-06 15:32:53.301 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:32:53.304 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:32:53.314 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.314 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.314 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.314 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.314 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.315 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.316 +03:00 [INF] Authorization failed. +2018-09-06 15:32:53.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:32:53.361 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:32:53.362 +03:00 [INF] Request finished in 18.1728ms 200 image/jpeg +2018-09-06 15:32:53.363 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 54.106700000000004ms. +2018-09-06 15:32:53.377 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:32:53.379 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 152.9198ms +2018-09-06 15:32:53.379 +03:00 [INF] Request finished in 180.1216ms 200 text/plain; charset=utf-8 +2018-09-06 15:32:53.442 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 137.29410000000001ms. +2018-09-06 15:32:53.443 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:32:53.443 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 217.0337ms +2018-09-06 15:32:53.444 +03:00 [INF] Request finished in 234.8257ms 200 text/plain; charset=utf-8 +2018-09-06 15:32:53.727 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:32:53.742 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:32:53.784 +03:00 [INF] Executed action /Blog/Posts/Detail in 56.7653ms +2018-09-06 15:32:53.798 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:32:53.853 +03:00 [INF] Request finished in 842.3043ms 500 text/html; charset=utf-8 +2018-09-06 15:32:53.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:32:53.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:32:53.980 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:32:53.980 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:32:53.981 +03:00 [INF] Request finished in 1.3132ms 200 image/png +2018-09-06 15:32:53.981 +03:00 [INF] Request finished in 1.2901ms 200 image/png +2018-09-06 15:32:54.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:32:54.025 +03:00 [INF] Request finished in 2.5281ms 404 +2018-09-06 15:32:54.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:32:54.046 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:32:54.047 +03:00 [INF] Request finished in 3.9237ms 304 text/plain +2018-09-06 15:32:54.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:32:54.050 +03:00 [INF] Request finished in 1.9048ms 404 +2018-09-06 15:33:45.933 +03:00 [INF] Loaded modules: +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:33:45.947 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:33:45.948 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:33:45.949 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:33:45.950 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:33:45.950 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:33:47.538 +03:00 [INF] Initialized all modules. +2018-09-06 15:33:47.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:33:50.138 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:33:50.158 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:33:51.569 +03:00 [INF] Executed action /Index in 1426.5106ms +2018-09-06 15:33:51.587 +03:00 [INF] Request finished in 3736.0271ms 200 text/html; charset=utf-8 +2018-09-06 15:33:51.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:33:51.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:33:51.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:33:51.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:33:51.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:33:51.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:33:51.657 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:33:51.657 +03:00 [INF] Request finished in 7.5365ms 200 text/css +2018-09-06 15:33:51.658 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:33:51.658 +03:00 [INF] Request finished in 14.2163ms 200 text/css +2018-09-06 15:33:51.657 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:33:51.657 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:33:51.658 +03:00 [INF] Request finished in 20.391ms 200 text/css +2018-09-06 15:33:51.658 +03:00 [INF] Request finished in 14.1752ms 200 text/css +2018-09-06 15:33:51.658 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:33:51.659 +03:00 [INF] Request finished in 2.1783ms 200 text/css +2018-09-06 15:33:51.664 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:33:51.664 +03:00 [INF] Request finished in 26.0818ms 200 text/css +2018-09-06 15:33:51.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:33:51.669 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:33:51.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:33:51.669 +03:00 [INF] Request finished in 2.986ms 200 text/css +2018-09-06 15:33:51.670 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:33:51.670 +03:00 [INF] Request finished in 0.8361ms 200 text/css +2018-09-06 15:33:51.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:33:51.676 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:33:51.676 +03:00 [INF] Request finished in 0.9443ms 200 application/javascript +2018-09-06 15:33:51.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:33:51.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:33:51.683 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:33:51.683 +03:00 [INF] Request finished in 2.3712ms 200 application/javascript +2018-09-06 15:33:51.688 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:33:51.688 +03:00 [INF] Request finished in 10.9485ms 200 application/javascript +2018-09-06 15:33:51.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:33:51.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:33:51.698 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:33:51.698 +03:00 [INF] Request finished in 6.6586ms 200 application/javascript +2018-09-06 15:33:51.699 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:33:51.700 +03:00 [INF] Request finished in 5.9655ms 200 application/javascript +2018-09-06 15:33:51.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:33:51.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:33:51.709 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:33:51.709 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:33:51.709 +03:00 [INF] Request finished in 1.2234ms 200 application/javascript +2018-09-06 15:33:51.709 +03:00 [INF] Request finished in 3.6517ms 200 application/javascript +2018-09-06 15:33:51.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:33:51.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:33:51.732 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:33:51.732 +03:00 [INF] Request finished in 2.6027ms 200 application/javascript +2018-09-06 15:33:51.734 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:33:51.734 +03:00 [INF] Request finished in 4.0346ms 200 application/javascript +2018-09-06 15:33:51.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:33:51.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:33:51.758 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:33:51.758 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:33:51.758 +03:00 [INF] Request finished in 10.7093ms 200 application/javascript +2018-09-06 15:33:51.758 +03:00 [INF] Request finished in 1.465ms 200 application/javascript +2018-09-06 15:33:51.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:33:51.766 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:33:51.767 +03:00 [INF] Request finished in 1.4689ms 200 application/javascript +2018-09-06 15:33:51.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:33:51.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:33:51.771 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:33:51.771 +03:00 [INF] Request finished in 1.0817ms 200 application/javascript +2018-09-06 15:33:51.771 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:33:51.772 +03:00 [INF] Request finished in 2.081ms 200 application/javascript +2018-09-06 15:33:51.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:33:51.787 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:33:51.787 +03:00 [INF] Request finished in 1.8774ms 200 application/javascript +2018-09-06 15:33:51.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:33:51.792 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:33:51.792 +03:00 [INF] Request finished in 1.2674ms 200 application/javascript +2018-09-06 15:33:51.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:33:51.799 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:33:51.799 +03:00 [INF] Request finished in 1.6413ms 200 application/javascript +2018-09-06 15:33:51.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:33:51.808 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:33:51.808 +03:00 [INF] Request finished in 1.266ms 200 application/javascript +2018-09-06 15:33:51.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:33:51.827 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:33:51.827 +03:00 [INF] Request finished in 1.34ms 200 application/javascript +2018-09-06 15:33:51.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:33:51.836 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:33:51.836 +03:00 [INF] Request finished in 1.0387ms 200 application/javascript +2018-09-06 15:33:51.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:33:51.845 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:33:51.846 +03:00 [INF] Request finished in 1.9708ms 200 application/javascript +2018-09-06 15:33:51.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:33:51.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:33:51.873 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:33:51.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:33:51.876 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:33:51.876 +03:00 [INF] Request finished in 1.0322ms 200 application/javascript +2018-09-06 15:33:51.879 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:33:51.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:33:51.881 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:33:51.881 +03:00 [INF] Request finished in 1.8077ms 200 application/javascript +2018-09-06 15:33:51.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:33:51.898 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:33:51.898 +03:00 [INF] Request finished in 1.1428ms 200 image/svg+xml +2018-09-06 15:33:51.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:33:51.905 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 15:33:51.905 +03:00 [INF] Request finished in 1.1697ms 200 image/png +2018-09-06 15:33:51.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:33:51.921 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 15:33:51.921 +03:00 [INF] Request finished in 0.9321ms 200 image/png +2018-09-06 15:33:51.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 15:33:51.925 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-06 15:33:51.926 +03:00 [INF] Request finished in 0.9847ms 200 image/png +2018-09-06 15:33:51.934 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:33:51.936 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:33:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 15:33:51.939 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-06 15:33:51.940 +03:00 [INF] Request finished in 1.9177ms 200 image/png +2018-09-06 15:33:51.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 15:33:51.940 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-06 15:33:51.940 +03:00 [INF] Request finished in 1.2412ms 200 image/png +2018-09-06 15:33:51.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 15:33:51.947 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-06 15:33:51.947 +03:00 [INF] Request finished in 1.2806ms 200 image/png +2018-09-06 15:33:51.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 15:33:51.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 15:33:51.952 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-06 15:33:51.952 +03:00 [INF] Request finished in 1.3116ms 200 image/png +2018-09-06 15:33:51.952 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-06 15:33:51.952 +03:00 [INF] Request finished in 1.0382ms 200 image/png +2018-09-06 15:33:51.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 15:33:51.960 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-06 15:33:51.960 +03:00 [INF] Request finished in 1.4841ms 200 image/png +2018-09-06 15:33:51.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 15:33:51.963 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-06 15:33:51.963 +03:00 [INF] Request finished in 0.921ms 200 image/png +2018-09-06 15:33:51.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:33:51.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 15:33:51.971 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-06 15:33:51.971 +03:00 [INF] Request finished in 1.0003ms 200 image/png +2018-09-06 15:33:51.972 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:33:51.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 15:33:51.973 +03:00 [INF] Request finished in 2.4196ms 200 font/woff2 +2018-09-06 15:33:51.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 15:33:51.974 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-06 15:33:51.974 +03:00 [INF] Request finished in 1.5292ms 200 image/png +2018-09-06 15:33:51.975 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-06 15:33:51.975 +03:00 [INF] Request finished in 2.888ms 200 image/png +2018-09-06 15:33:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 15:33:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 15:33:51.985 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-06 15:33:51.985 +03:00 [INF] Request finished in 1.2105ms 200 image/png +2018-09-06 15:33:51.985 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-06 15:33:51.986 +03:00 [INF] Request finished in 1.5901ms 200 image/png +2018-09-06 15:33:51.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 15:33:51.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 15:33:51.999 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-06 15:33:51.999 +03:00 [INF] Request finished in 1.4643ms 200 image/png +2018-09-06 15:33:52.002 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-06 15:33:52.003 +03:00 [INF] Request finished in 7.194ms 200 image/png +2018-09-06 15:33:52.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 15:33:52.006 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-06 15:33:52.006 +03:00 [INF] Request finished in 2.0579ms 200 image/png +2018-09-06 15:33:52.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 15:33:52.007 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-06 15:33:52.007 +03:00 [INF] Request finished in 1.6451ms 200 image/png +2018-09-06 15:33:52.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 15:33:52.012 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-06 15:33:52.013 +03:00 [INF] Request finished in 5.072ms 200 image/png +2018-09-06 15:33:52.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:33:52.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 15:33:52.021 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 15:33:52.022 +03:00 [INF] Request finished in 2.0834ms 200 image/png +2018-09-06 15:33:52.025 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-06 15:33:52.025 +03:00 [INF] Request finished in 4.7836ms 200 image/png +2018-09-06 15:33:52.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 15:33:52.029 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.029 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-06 15:33:52.030 +03:00 [INF] Request finished in 4.3308ms 200 image/png +2018-09-06 15:33:52.031 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.031 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.031 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.032 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.032 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.032 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.033 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.034 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.034 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.034 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.034 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.035 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.035 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.035 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.035 +03:00 [INF] Authorization failed. +2018-09-06 15:33:52.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 15:33:52.040 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-06 15:33:52.040 +03:00 [INF] Request finished in 0.8875ms 200 image/png +2018-09-06 15:33:52.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 15:33:52.041 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-06 15:33:52.042 +03:00 [INF] Request finished in 1.0825ms 200 image/png +2018-09-06 15:33:52.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 15:33:52.043 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-06 15:33:52.043 +03:00 [INF] Request finished in 1.1757ms 200 image/png +2018-09-06 15:33:52.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 15:33:52.051 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-06 15:33:52.051 +03:00 [INF] Request finished in 1.0991ms 200 image/png +2018-09-06 15:33:52.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 15:33:52.053 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-06 15:33:52.054 +03:00 [INF] Request finished in 1.4496ms 200 image/png +2018-09-06 15:33:52.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 15:33:52.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 15:33:52.059 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-06 15:33:52.059 +03:00 [INF] Request finished in 0.8282ms 200 image/png +2018-09-06 15:33:52.059 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-06 15:33:52.059 +03:00 [INF] Request finished in 0.9504ms 200 image/png +2018-09-06 15:33:52.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 15:33:52.064 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-06 15:33:52.064 +03:00 [INF] Request finished in 2.0202ms 200 image/png +2018-09-06 15:33:52.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 15:33:52.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 15:33:52.068 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-06 15:33:52.068 +03:00 [INF] Request finished in 0.8266ms 200 image/png +2018-09-06 15:33:52.069 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-06 15:33:52.069 +03:00 [INF] Request finished in 1.7197ms 200 image/png +2018-09-06 15:33:52.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:33:52.076 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:33:52.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 15:33:52.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:33:52.078 +03:00 [INF] Request finished in 1.6416ms 200 image/svg+xml +2018-09-06 15:33:52.083 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-06 15:33:52.083 +03:00 [INF] Request finished in 6.6524ms 200 image/png +2018-09-06 15:33:52.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 15:33:52.084 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-06 15:33:52.085 +03:00 [INF] Request finished in 8.4721ms 200 image/png +2018-09-06 15:33:52.090 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:33:52.090 +03:00 [INF] Request finished in 11.4302ms 200 image/jpeg +2018-09-06 15:33:52.092 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 154.4879ms. +2018-09-06 15:33:52.092 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 150.33700000000002ms. +2018-09-06 15:33:52.102 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:33:52.102 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:33:52.103 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 230.1825ms +2018-09-06 15:33:52.103 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 224.2529ms +2018-09-06 15:33:52.103 +03:00 [INF] Request finished in 253.1549ms 200 text/plain; charset=utf-8 +2018-09-06 15:33:52.103 +03:00 [INF] Request finished in 237.9811ms 200 text/plain; charset=utf-8 +2018-09-06 15:33:52.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:33:52.352 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:33:52.352 +03:00 [INF] Request finished in 1.3463ms 200 image/png +2018-09-06 15:33:52.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:33:52.354 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:33:52.354 +03:00 [INF] Request finished in 1.286ms 200 image/png +2018-09-06 15:33:52.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:33:52.664 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:33:52.667 +03:00 [INF] Request finished in 3.8345ms 304 text/plain +2018-09-06 15:33:52.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:33:52.673 +03:00 [INF] Request finished in 2.2759ms 404 +2018-09-06 15:33:53.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 15:33:53.695 +03:00 [INF] Request finished in 1.1318ms 404 +2018-09-06 15:33:53.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:33:53.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:33:53.862 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:33:53.862 +03:00 [INF] Request finished in 1.0419ms 200 image/png +2018-09-06 15:33:53.863 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:33:53.863 +03:00 [INF] Request finished in 0.9874ms 200 image/png +2018-09-06 15:41:38.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:41:38.407 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:41:38.407 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:41:38.418 +03:00 [INF] Executed action /Index in 11.1036ms +2018-09-06 15:41:38.418 +03:00 [INF] Request finished in 13.3524ms 200 text/html; charset=utf-8 +2018-09-06 15:41:38.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:41:38.490 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:41:38.490 +03:00 [INF] Request finished in 2.6621ms 200 text/css +2018-09-06 15:41:38.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:41:38.499 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:41:38.499 +03:00 [INF] Request finished in 2.2656ms 200 text/css +2018-09-06 15:41:38.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:41:38.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:41:38.502 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:41:38.502 +03:00 [INF] Request finished in 2.0561ms 200 text/css +2018-09-06 15:41:38.503 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:41:38.503 +03:00 [INF] Request finished in 0.9268ms 200 text/css +2018-09-06 15:41:38.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:41:38.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:41:38.508 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:41:38.508 +03:00 [INF] Request finished in 1.2549ms 200 text/css +2018-09-06 15:41:38.509 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:41:38.509 +03:00 [INF] Request finished in 1.2901ms 200 text/css +2018-09-06 15:41:38.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:41:38.519 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:41:38.520 +03:00 [INF] Request finished in 1.2261ms 200 text/css +2018-09-06 15:41:38.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:41:38.528 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:41:38.528 +03:00 [INF] Request finished in 2.2391ms 200 text/css +2018-09-06 15:41:38.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:41:38.539 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:41:38.539 +03:00 [INF] Request finished in 1.2922ms 200 application/javascript +2018-09-06 15:41:38.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:41:38.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:41:38.550 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:41:38.550 +03:00 [INF] Request finished in 1.2838ms 200 application/javascript +2018-09-06 15:41:38.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:41:38.553 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:41:38.554 +03:00 [INF] Request finished in 2.8074ms 200 application/javascript +2018-09-06 15:41:38.554 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:41:38.555 +03:00 [INF] Request finished in 6.9674ms 200 application/javascript +2018-09-06 15:41:38.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:41:38.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:41:38.567 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:41:38.567 +03:00 [INF] Request finished in 1.7753ms 200 application/javascript +2018-09-06 15:41:38.569 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:41:38.569 +03:00 [INF] Request finished in 2.7675ms 200 application/javascript +2018-09-06 15:41:38.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:41:38.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:41:38.582 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:41:38.582 +03:00 [INF] Request finished in 2.2151ms 200 application/javascript +2018-09-06 15:41:38.582 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:41:38.583 +03:00 [INF] Request finished in 1.071ms 200 application/javascript +2018-09-06 15:41:38.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:41:38.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:41:38.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:41:38.601 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:41:38.602 +03:00 [INF] Request finished in 11.1334ms 200 application/javascript +2018-09-06 15:41:38.603 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:41:38.604 +03:00 [INF] Request finished in 2.6099ms 200 application/javascript +2018-09-06 15:41:38.610 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:41:38.610 +03:00 [INF] Request finished in 11.1655ms 200 application/javascript +2018-09-06 15:41:38.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:41:38.615 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:41:38.616 +03:00 [INF] Request finished in 1.8564ms 200 application/javascript +2018-09-06 15:41:38.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:41:38.621 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:41:38.621 +03:00 [INF] Request finished in 2.2262ms 200 application/javascript +2018-09-06 15:41:38.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:41:38.623 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:41:38.624 +03:00 [INF] Request finished in 2.1654ms 200 application/javascript +2018-09-06 15:41:38.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:41:38.625 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:41:38.625 +03:00 [INF] Request finished in 1.1263ms 200 application/javascript +2018-09-06 15:41:38.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:41:38.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:41:38.637 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:41:38.637 +03:00 [INF] Request finished in 1.519ms 200 application/javascript +2018-09-06 15:41:38.637 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:41:38.638 +03:00 [INF] Request finished in 1.363ms 200 application/javascript +2018-09-06 15:41:38.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:41:38.640 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:41:38.640 +03:00 [INF] Request finished in 1.9896ms 200 application/javascript +2018-09-06 15:41:38.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:41:38.652 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:41:38.653 +03:00 [INF] Request finished in 2.6456ms 200 application/javascript +2018-09-06 15:41:38.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:41:38.656 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:41:38.656 +03:00 [INF] Request finished in 1.656ms 200 application/javascript +2018-09-06 15:41:38.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:41:38.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:41:38.663 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:41:38.663 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:41:38.663 +03:00 [INF] Request finished in 0.9477ms 200 application/javascript +2018-09-06 15:41:38.665 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.666 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.667 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.668 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.668 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.668 +03:00 [INF] Authorization failed. +2018-09-06 15:41:38.670 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.8073000000000006ms. +2018-09-06 15:41:38.671 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:41:38.671 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.7936000000000005ms +2018-09-06 15:41:38.671 +03:00 [INF] Request finished in 9.0409ms 200 text/plain; charset=utf-8 +2018-09-06 15:41:38.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:41:38.676 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:41:38.678 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:41:38.679 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.39880000000000004ms. +2018-09-06 15:41:38.680 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:41:38.680 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5992ms +2018-09-06 15:41:38.680 +03:00 [INF] Request finished in 5.0775ms 200 text/plain; charset=utf-8 +2018-09-06 15:41:38.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:41:38.703 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:41:38.703 +03:00 [INF] Request finished in 1.1567ms 200 application/javascript +2018-09-06 15:41:38.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:41:38.706 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:41:38.706 +03:00 [INF] Request finished in 1.2094ms 200 application/javascript +2018-09-06 15:41:38.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:41:38.720 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:41:38.721 +03:00 [INF] Request finished in 1.4506ms 200 image/svg+xml +2018-09-06 15:41:38.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:41:38.732 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 15:41:38.732 +03:00 [INF] Request finished in 0.9475ms 200 image/png +2018-09-06 15:41:38.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:41:38.738 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 15:41:38.738 +03:00 [INF] Request finished in 0.9816ms 200 image/png +2018-09-06 15:41:38.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 15:41:38.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 15:41:38.741 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-06 15:41:38.741 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-06 15:41:38.741 +03:00 [INF] Request finished in 0.8762ms 200 image/png +2018-09-06 15:41:38.741 +03:00 [INF] Request finished in 0.8613ms 200 image/png +2018-09-06 15:41:38.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 15:41:38.753 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-06 15:41:38.754 +03:00 [INF] Request finished in 0.9856ms 200 image/png +2018-09-06 15:41:38.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 15:41:38.767 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-06 15:41:38.767 +03:00 [INF] Request finished in 0.9921ms 200 image/png +2018-09-06 15:41:38.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 15:41:38.777 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-06 15:41:38.777 +03:00 [INF] Request finished in 1.1323ms 200 image/png +2018-09-06 15:41:38.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 15:41:38.784 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-06 15:41:38.784 +03:00 [INF] Request finished in 1.19ms 200 image/png +2018-09-06 15:41:38.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 15:41:38.797 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-06 15:41:38.797 +03:00 [INF] Request finished in 1.0638ms 200 image/png +2018-09-06 15:41:38.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 15:41:38.801 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-06 15:41:38.801 +03:00 [INF] Request finished in 1.0441ms 200 image/png +2018-09-06 15:41:38.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 15:41:38.805 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-06 15:41:38.806 +03:00 [INF] Request finished in 1.095ms 200 image/png +2018-09-06 15:41:38.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:41:38.812 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:41:38.813 +03:00 [INF] Request finished in 3.1189ms 200 font/woff2 +2018-09-06 15:41:38.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 15:41:38.814 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-06 15:41:38.814 +03:00 [INF] Request finished in 1.0552ms 200 image/png +2018-09-06 15:41:38.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 15:41:38.819 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-06 15:41:38.819 +03:00 [INF] Request finished in 1.3279ms 200 image/png +2018-09-06 15:41:38.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 15:41:38.823 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-06 15:41:38.823 +03:00 [INF] Request finished in 0.8251ms 200 image/png +2018-09-06 15:41:38.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 15:41:38.824 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-06 15:41:38.825 +03:00 [INF] Request finished in 1.074ms 200 image/png +2018-09-06 15:41:38.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 15:41:38.831 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-06 15:41:38.831 +03:00 [INF] Request finished in 0.983ms 200 image/png +2018-09-06 15:41:38.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 15:41:38.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 15:41:38.837 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-06 15:41:38.837 +03:00 [INF] Request finished in 1.1772ms 200 image/png +2018-09-06 15:41:38.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 15:41:38.840 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-06 15:41:38.840 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-06 15:41:38.840 +03:00 [INF] Request finished in 0.8668ms 200 image/png +2018-09-06 15:41:38.840 +03:00 [INF] Request finished in 3.9478ms 200 image/png +2018-09-06 15:41:38.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 15:41:38.847 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-06 15:41:38.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 15:41:38.847 +03:00 [INF] Request finished in 3.9511ms 200 image/png +2018-09-06 15:41:38.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 15:41:38.848 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-06 15:41:38.848 +03:00 [INF] Request finished in 0.9746ms 200 image/png +2018-09-06 15:41:38.848 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-06 15:41:38.849 +03:00 [INF] Request finished in 1.1718ms 200 image/png +2018-09-06 15:41:38.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:41:38.853 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 15:41:38.854 +03:00 [INF] Request finished in 3.7008ms 200 image/png +2018-09-06 15:41:38.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 15:41:38.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 15:41:38.860 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-06 15:41:38.860 +03:00 [INF] Request finished in 1.1592ms 200 image/png +2018-09-06 15:41:38.860 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-06 15:41:38.861 +03:00 [INF] Request finished in 0.9608ms 200 image/png +2018-09-06 15:41:38.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 15:41:38.863 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-06 15:41:38.864 +03:00 [INF] Request finished in 1.5297ms 200 image/png +2018-09-06 15:41:38.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 15:41:38.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 15:41:38.867 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-06 15:41:38.867 +03:00 [INF] Request finished in 2.7563ms 200 image/png +2018-09-06 15:41:38.868 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-06 15:41:38.868 +03:00 [INF] Request finished in 1.113ms 200 image/png +2018-09-06 15:41:38.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 15:41:38.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 15:41:38.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 15:41:38.873 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-06 15:41:38.873 +03:00 [INF] Request finished in 1.034ms 200 image/png +2018-09-06 15:41:38.874 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-06 15:41:38.874 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-06 15:41:38.874 +03:00 [INF] Request finished in 2.0466ms 200 image/png +2018-09-06 15:41:38.874 +03:00 [INF] Request finished in 1.9425ms 200 image/png +2018-09-06 15:41:38.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 15:41:38.882 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-06 15:41:38.882 +03:00 [INF] Request finished in 6.0841ms 200 image/png +2018-09-06 15:41:38.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 15:41:38.888 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-06 15:41:38.888 +03:00 [INF] Request finished in 4.5383ms 200 image/png +2018-09-06 15:41:38.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 15:41:38.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:41:38.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:41:38.889 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:41:38.889 +03:00 [INF] Request finished in 0.6617ms 200 image/svg+xml +2018-09-06 15:41:38.889 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-06 15:41:38.889 +03:00 [INF] Request finished in 1.4312ms 200 image/png +2018-09-06 15:41:38.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 15:41:38.901 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:41:38.901 +03:00 [INF] Request finished in 13.5118ms 200 image/jpeg +2018-09-06 15:41:38.901 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-06 15:41:38.901 +03:00 [INF] Request finished in 1.8446ms 200 image/png +2018-09-06 15:41:39.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:41:39.141 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:41:39.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:41:39.141 +03:00 [INF] Request finished in 3.0348ms 200 image/png +2018-09-06 15:41:39.146 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:41:39.146 +03:00 [INF] Request finished in 4.8245ms 200 image/png +2018-09-06 15:41:39.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:41:39.362 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:41:39.362 +03:00 [INF] Request finished in 1.5418ms 304 text/plain +2018-09-06 15:41:39.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:41:39.365 +03:00 [INF] Request finished in 0.7188ms 404 +2018-09-06 15:41:45.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-06 15:41:45.481 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 15:41:45.520 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:41:45.685 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 15:41:45.685 +03:00 [INF] Executed action /Blog/Index in 204.76780000000002ms +2018-09-06 15:41:45.686 +03:00 [INF] Request finished in 505.8779ms 302 +2018-09-06 15:41:45.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:41:46.097 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:41:46.240 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:41:46.380 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.796 +03:00 [INF] Executed action /Blog/Posts/Index in 699.0742ms +2018-09-06 15:41:46.796 +03:00 [INF] Request finished in 1102.2968ms 200 text/html; charset=utf-8 +2018-09-06 15:41:46.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:41:46.855 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:41:46.855 +03:00 [INF] Request finished in 2.6371ms 200 text/css +2018-09-06 15:41:46.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:41:46.857 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:41:46.857 +03:00 [INF] Request finished in 0.8248ms 200 text/css +2018-09-06 15:41:46.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:41:46.859 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:41:46.860 +03:00 [INF] Request finished in 1.1475ms 200 text/css +2018-09-06 15:41:46.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:41:46.871 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:41:46.872 +03:00 [INF] Request finished in 1.4233ms 200 text/css +2018-09-06 15:41:46.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:41:46.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:41:46.927 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:41:46.928 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:41:46.928 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.929 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.930 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.931 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.932 +03:00 [INF] Authorization failed. +2018-09-06 15:41:46.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:41:46.935 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:41:46.936 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.9966000000000008ms. +2018-09-06 15:41:46.937 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:41:46.937 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:41:46.937 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1686ms. +2018-09-06 15:41:46.937 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.6651ms +2018-09-06 15:41:46.937 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:41:46.937 +03:00 [INF] Request finished in 12.267ms 200 text/plain; charset=utf-8 +2018-09-06 15:41:46.937 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0821ms +2018-09-06 15:41:46.937 +03:00 [INF] Request finished in 3.6983ms 200 text/plain; charset=utf-8 +2018-09-06 15:41:46.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:41:46.943 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:41:46.944 +03:00 [INF] Request finished in 1.5841ms 200 application/javascript +2018-09-06 15:41:46.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:41:46.947 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:41:46.948 +03:00 [INF] Request finished in 1.4513ms 200 application/javascript +2018-09-06 15:41:46.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:41:46.950 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:41:46.951 +03:00 [INF] Request finished in 1.4407ms 200 application/javascript +2018-09-06 15:41:47.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:41:47.251 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:41:47.251 +03:00 [INF] Request finished in 1.0457ms 200 image/png +2018-09-06 15:41:47.382 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:41:47.397 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:41:47.440 +03:00 [INF] Executed action /Blog/Posts/Detail in 57.8838ms +2018-09-06 15:41:47.459 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:41:47.500 +03:00 [INF] Request finished in 622.2979ms 500 text/html; charset=utf-8 +2018-09-06 15:43:46.383 +03:00 [INF] Loaded modules: +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:43:46.402 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:43:46.403 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:43:48.046 +03:00 [INF] Initialized all modules. +2018-09-06 15:43:48.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:43:48.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:43:48.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:43:48.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:43:48.453 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:43:48.453 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:43:48.453 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:43:48.453 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:43:48.453 +03:00 [INF] Request finished in 54.1431ms 200 text/css +2018-09-06 15:43:48.453 +03:00 [INF] Request finished in 54.188ms 200 text/css +2018-09-06 15:43:48.453 +03:00 [INF] Request finished in 54.2242ms 200 text/css +2018-09-06 15:43:48.453 +03:00 [INF] Request finished in 54.1501ms 200 text/css +2018-09-06 15:43:48.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:43:48.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:43:48.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:43:48.491 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:43:48.491 +03:00 [INF] Request finished in 1.8468ms 200 text/css +2018-09-06 15:43:48.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:43:48.494 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:43:48.494 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:43:48.495 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:43:48.502 +03:00 [INF] Request finished in 7.7824ms 200 text/css +2018-09-06 15:43:48.502 +03:00 [INF] Request finished in 14.4429ms 200 text/css +2018-09-06 15:43:48.502 +03:00 [INF] Request finished in 17.0297ms 200 text/css +2018-09-06 15:43:48.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:43:48.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:43:48.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:43:48.525 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:43:48.525 +03:00 [INF] Request finished in 6.8149ms 200 text/css +2018-09-06 15:43:48.526 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:43:48.526 +03:00 [INF] Request finished in 11.389ms 200 text/css +2018-09-06 15:43:48.528 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:43:48.528 +03:00 [INF] Request finished in 3.634ms 200 text/css +2018-09-06 15:43:48.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:43:48.540 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:43:48.540 +03:00 [INF] Request finished in 2.9433ms 200 text/css +2018-09-06 15:43:48.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:43:48.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:43:48.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:43:48.851 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:43:48.853 +03:00 [INF] Request finished in 3.8383ms 304 text/plain +2018-09-06 15:43:49.103 +03:00 [INF] Request finished in 260.8537ms 404 +2018-09-06 15:43:49.103 +03:00 [INF] Request finished in 253.2414ms 404 +2018-09-06 15:45:45.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:45:47.314 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:45:47.511 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:45:47.871 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.314 +03:00 [INF] Executed action /Blog/Posts/Index in 1993.9244ms +2018-09-06 15:45:49.319 +03:00 [INF] Request finished in 4135.9671ms 200 text/html; charset=utf-8 +2018-09-06 15:45:49.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:45:49.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:45:49.359 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:45:49.360 +03:00 [INF] Request finished in 1.0516ms 200 text/css +2018-09-06 15:45:49.362 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:45:49.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:45:49.362 +03:00 [INF] Request finished in 5.1696ms 200 text/css +2018-09-06 15:45:49.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:45:49.363 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:45:49.363 +03:00 [INF] Request finished in 1.6858ms 200 text/css +2018-09-06 15:45:49.364 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:45:49.364 +03:00 [INF] Request finished in 1.3621ms 200 text/css +2018-09-06 15:45:49.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:45:49.376 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:45:49.377 +03:00 [INF] Request finished in 1.284ms 200 text/css +2018-09-06 15:45:49.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:45:49.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:45:49.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:45:49.402 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:45:49.402 +03:00 [INF] Request finished in 2.4828ms 200 text/css +2018-09-06 15:45:49.403 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:45:49.403 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:45:49.404 +03:00 [INF] Request finished in 2.1998ms 200 text/css +2018-09-06 15:45:49.404 +03:00 [INF] Request finished in 2.3571ms 200 text/css +2018-09-06 15:45:49.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:45:49.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:45:49.420 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:45:49.420 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:45:49.420 +03:00 [INF] Request finished in 0.8371ms 200 text/css +2018-09-06 15:45:49.420 +03:00 [INF] Request finished in 0.6559ms 200 text/css +2018-09-06 15:45:49.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:45:49.424 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:45:49.424 +03:00 [INF] Request finished in 2.3254ms 200 text/css +2018-09-06 15:45:49.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:45:49.427 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:45:49.427 +03:00 [INF] Request finished in 1.1144ms 200 text/css +2018-09-06 15:45:49.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:45:49.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:45:49.442 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:45:49.442 +03:00 [INF] Request finished in 1.5214ms 200 application/javascript +2018-09-06 15:45:49.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:45:49.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:45:49.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:45:49.451 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:45:49.452 +03:00 [INF] Request finished in 1.1441ms 200 application/javascript +2018-09-06 15:45:49.454 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:45:49.454 +03:00 [INF] Request finished in 8.6175ms 200 application/javascript +2018-09-06 15:45:49.455 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:45:49.455 +03:00 [INF] Request finished in 5.0491ms 200 application/javascript +2018-09-06 15:45:49.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:45:49.464 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:45:49.464 +03:00 [INF] Request finished in 1.8757ms 200 application/javascript +2018-09-06 15:45:49.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:45:49.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:45:49.466 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:45:49.466 +03:00 [INF] Request finished in 1.3663ms 200 application/javascript +2018-09-06 15:45:49.468 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:45:49.468 +03:00 [INF] Request finished in 3.4184ms 200 application/javascript +2018-09-06 15:45:49.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:45:49.485 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:45:49.485 +03:00 [INF] Request finished in 2.1782ms 200 application/javascript +2018-09-06 15:45:49.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:45:49.506 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:45:49.506 +03:00 [INF] Request finished in 1.0366ms 200 application/javascript +2018-09-06 15:45:49.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:45:49.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:45:49.517 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:45:49.518 +03:00 [INF] Request finished in 1.8423ms 200 application/javascript +2018-09-06 15:45:49.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:45:49.533 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:45:49.533 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:45:49.533 +03:00 [INF] Request finished in 26.1529ms 200 application/javascript +2018-09-06 15:45:49.533 +03:00 [INF] Request finished in 1.1632ms 200 application/javascript +2018-09-06 15:45:49.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:45:49.538 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:45:49.538 +03:00 [INF] Request finished in 1.2446ms 200 application/javascript +2018-09-06 15:45:49.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:45:49.541 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:45:49.541 +03:00 [INF] Request finished in 1.1587ms 200 application/javascript +2018-09-06 15:45:49.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:45:49.562 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:45:49.564 +03:00 [INF] Request finished in 4.4671ms 200 application/javascript +2018-09-06 15:45:49.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:45:49.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:45:49.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:45:49.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:45:49.576 +03:00 [INF] Request finished in 2.1369ms 200 application/javascript +2018-09-06 15:45:49.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:45:49.576 +03:00 [INF] Request finished in 1.3758ms 200 application/javascript +2018-09-06 15:45:49.576 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:45:49.577 +03:00 [INF] Request finished in 0.857ms 200 application/javascript +2018-09-06 15:45:49.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:45:49.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:45:49.597 +03:00 [INF] Request finished in 2.7583ms 200 application/javascript +2018-09-06 15:45:49.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:45:49.600 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:45:49.600 +03:00 [INF] Request finished in 1.1742ms 200 application/javascript +2018-09-06 15:45:49.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:45:49.618 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:45:49.618 +03:00 [INF] Request finished in 1.1408ms 200 application/javascript +2018-09-06 15:45:49.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:45:49.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:45:49.631 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:45:49.631 +03:00 [INF] Request finished in 1.6895ms 200 application/javascript +2018-09-06 15:45:49.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:45:49.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:45:49.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:45:49.663 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:45:49.664 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:45:49.664 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:45:49.664 +03:00 [INF] Request finished in 1.2633ms 200 application/javascript +2018-09-06 15:45:49.665 +03:00 [INF] Request finished in 2.0297ms 200 application/javascript +2018-09-06 15:45:49.674 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:45:49.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:45:49.706 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:45:49.706 +03:00 [INF] Request finished in 0.8826ms 200 application/javascript +2018-09-06 15:45:49.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:45:49.721 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:45:49.721 +03:00 [INF] Request finished in 1.0251ms 200 application/javascript +2018-09-06 15:45:49.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:45:49.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:45:49.722 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:45:49.722 +03:00 [INF] Request finished in 0.8197ms 200 image/svg+xml +2018-09-06 15:45:49.723 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:45:49.724 +03:00 [INF] Request finished in 1.2841ms 200 image/svg+xml +2018-09-06 15:45:49.727 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:45:49.738 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.753 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.754 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.755 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.755 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.755 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.756 +03:00 [INF] Authorization failed. +2018-09-06 15:45:49.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:45:49.766 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:45:49.766 +03:00 [INF] Request finished in 3.3731ms 200 font/woff2 +2018-09-06 15:45:49.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:45:49.794 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:45:49.794 +03:00 [INF] Request finished in 10.4112ms 200 image/jpeg +2018-09-06 15:45:49.821 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.662ms. +2018-09-06 15:45:49.835 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:45:49.836 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 172.32940000000002ms +2018-09-06 15:45:49.836 +03:00 [INF] Request finished in 197.657ms 200 text/plain; charset=utf-8 +2018-09-06 15:45:49.864 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.78ms. +2018-09-06 15:45:49.864 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:45:49.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 190.181ms +2018-09-06 15:45:49.865 +03:00 [INF] Request finished in 237.9331ms 200 text/plain; charset=utf-8 +2018-09-06 15:45:50.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:45:50.114 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:45:50.114 +03:00 [INF] Request finished in 3.5987ms 200 text/css +2018-09-06 15:45:50.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:45:50.131 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:45:50.132 +03:00 [INF] Request finished in 1.0241ms 200 text/css +2018-09-06 15:45:50.187 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:45:50.198 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:45:50.236 +03:00 [INF] Executed action /Blog/Posts/Detail in 49.1132ms +2018-09-06 15:45:50.251 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:45:50.287 +03:00 [INF] Request finished in 850.8224ms 500 text/html; charset=utf-8 +2018-09-06 15:45:50.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:45:50.351 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:45:50.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:45:50.351 +03:00 [INF] Request finished in 1.6649ms 200 image/png +2018-09-06 15:45:50.352 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:45:50.352 +03:00 [INF] Request finished in 0.9335ms 200 image/png +2018-09-06 15:45:50.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:45:50.432 +03:00 [INF] Request finished in 0.8739ms 404 +2018-09-06 15:45:50.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:45:50.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:45:50.465 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:45:50.465 +03:00 [INF] Request finished in 1.2182ms 404 +2018-09-06 15:45:50.465 +03:00 [INF] Request finished in 0.9353ms 304 text/plain +2018-09-06 15:46:46.892 +03:00 [INF] Loaded modules: +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:46:46.907 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:46:46.908 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:46:46.909 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:46:46.910 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:46:46.910 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:46:48.508 +03:00 [INF] Initialized all modules. +2018-09-06 15:46:48.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:46:50.884 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:46:51.082 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:46:51.406 +03:00 [INF] Authorization failed. +2018-09-06 15:46:52.725 +03:00 [INF] Executed action /Blog/Posts/Index in 1836.1723000000002ms +2018-09-06 15:46:52.732 +03:00 [INF] Request finished in 4087.5254ms 200 text/html; charset=utf-8 +2018-09-06 15:46:52.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:46:52.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:46:52.781 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:46:52.781 +03:00 [INF] Request finished in 9.9815ms 200 text/css +2018-09-06 15:46:52.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:46:52.785 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:46:52.785 +03:00 [INF] Request finished in 2.038ms 200 text/css +2018-09-06 15:46:52.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:46:52.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:46:52.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:46:52.800 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:46:52.800 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:46:52.800 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:46:52.800 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:46:52.805 +03:00 [INF] Request finished in 19.9239ms 200 text/css +2018-09-06 15:46:52.805 +03:00 [INF] Request finished in 34.1474ms 200 text/css +2018-09-06 15:46:52.805 +03:00 [INF] Request finished in 16.8385ms 200 text/css +2018-09-06 15:46:52.806 +03:00 [INF] Request finished in 10.1031ms 200 text/css +2018-09-06 15:46:52.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:46:52.808 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:46:52.808 +03:00 [INF] Request finished in 1.6644ms 200 text/css +2018-09-06 15:46:52.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:46:52.814 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:46:52.814 +03:00 [INF] Request finished in 1.1502ms 200 text/css +2018-09-06 15:46:52.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:46:52.821 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:46:52.821 +03:00 [INF] Request finished in 2.6373ms 200 text/css +2018-09-06 15:46:52.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:46:52.837 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:46:52.837 +03:00 [INF] Request finished in 0.8376ms 200 text/css +2018-09-06 15:46:52.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:46:52.855 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:46:52.856 +03:00 [INF] Request finished in 1.4293ms 200 text/css +2018-09-06 15:46:52.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:46:52.864 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:46:52.865 +03:00 [INF] Request finished in 1.0144ms 200 text/css +2018-09-06 15:46:52.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:46:52.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:46:52.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:46:52.878 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:46:52.878 +03:00 [INF] Request finished in 4.169ms 200 application/javascript +2018-09-06 15:46:52.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:46:52.880 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:46:52.880 +03:00 [INF] Request finished in 0.8902ms 200 application/javascript +2018-09-06 15:46:52.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:46:52.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:46:52.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:46:52.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:46:52.957 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:46:52.957 +03:00 [INF] Request finished in 31.7815ms 200 application/javascript +2018-09-06 15:46:52.963 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:46:52.965 +03:00 [INF] Request finished in 40.0123ms 200 application/javascript +2018-09-06 15:46:52.966 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:46:52.966 +03:00 [INF] Request finished in 38.0806ms 200 application/javascript +2018-09-06 15:46:52.971 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:46:52.971 +03:00 [INF] Request finished in 97.3972ms 200 application/javascript +2018-09-06 15:46:52.981 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:46:52.981 +03:00 [INF] Request finished in 101.104ms 200 application/javascript +2018-09-06 15:46:52.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:46:52.989 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:46:52.989 +03:00 [INF] Request finished in 2.8515ms 200 application/javascript +2018-09-06 15:46:52.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:46:52.994 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:46:52.994 +03:00 [INF] Request finished in 4.847ms 200 application/javascript +2018-09-06 15:46:52.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:46:52.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:46:53.001 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:46:53.002 +03:00 [INF] Request finished in 2.2975ms 200 application/javascript +2018-09-06 15:46:53.004 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:46:53.004 +03:00 [INF] Request finished in 9.1187ms 200 application/javascript +2018-09-06 15:46:53.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:46:53.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:46:53.014 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:46:53.015 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:46:53.015 +03:00 [INF] Request finished in 0.9997ms 200 application/javascript +2018-09-06 15:46:53.015 +03:00 [INF] Request finished in 1.1872ms 200 application/javascript +2018-09-06 15:46:53.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:46:53.019 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:46:53.019 +03:00 [INF] Request finished in 2.0803ms 200 application/javascript +2018-09-06 15:46:53.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:46:53.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:46:53.029 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:46:53.029 +03:00 [INF] Request finished in 6.54ms 200 application/javascript +2018-09-06 15:46:53.029 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:46:53.029 +03:00 [INF] Request finished in 1.2305ms 200 application/javascript +2018-09-06 15:46:53.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:46:53.043 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:46:53.043 +03:00 [INF] Request finished in 3.0459ms 200 application/javascript +2018-09-06 15:46:53.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:46:53.051 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:46:53.051 +03:00 [INF] Request finished in 1.8855ms 200 application/javascript +2018-09-06 15:46:53.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:46:53.052 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:46:53.052 +03:00 [INF] Request finished in 1.0862ms 200 application/javascript +2018-09-06 15:46:53.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:46:53.055 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:46:53.055 +03:00 [INF] Request finished in 1.2095ms 200 application/javascript +2018-09-06 15:46:53.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:46:53.059 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:46:53.059 +03:00 [INF] Request finished in 1.2967ms 200 application/javascript +2018-09-06 15:46:53.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:46:53.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:46:53.091 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:46:53.091 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:46:53.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:46:53.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:46:53.096 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:46:53.096 +03:00 [INF] Request finished in 0.9126ms 200 application/javascript +2018-09-06 15:46:53.096 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:46:53.096 +03:00 [INF] Request finished in 1.1605ms 200 application/javascript +2018-09-06 15:46:53.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:46:53.111 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:46:53.111 +03:00 [INF] Request finished in 2.1207ms 200 application/javascript +2018-09-06 15:46:53.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:46:53.125 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:46:53.125 +03:00 [INF] Request finished in 1.5994ms 200 application/javascript +2018-09-06 15:46:53.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:46:53.129 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:46:53.130 +03:00 [INF] Request finished in 0.9382ms 200 application/javascript +2018-09-06 15:46:53.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:46:53.152 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:46:53.152 +03:00 [INF] Request finished in 6.4373ms 200 font/woff2 +2018-09-06 15:46:53.157 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:46:53.158 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:46:53.170 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.171 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.172 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.173 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.173 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.173 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.173 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.173 +03:00 [INF] Authorization failed. +2018-09-06 15:46:53.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:46:53.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:46:53.212 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:46:53.212 +03:00 [INF] Request finished in 1.5082ms 200 image/svg+xml +2018-09-06 15:46:53.213 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:46:53.213 +03:00 [INF] Request finished in 0.9437ms 200 image/svg+xml +2018-09-06 15:46:53.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:46:53.228 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 61.645900000000005ms. +2018-09-06 15:46:53.232 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:46:53.232 +03:00 [INF] Request finished in 14.0995ms 200 image/jpeg +2018-09-06 15:46:53.240 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:46:53.244 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 152.0163ms +2018-09-06 15:46:53.244 +03:00 [INF] Request finished in 171.8374ms 200 text/plain; charset=utf-8 +2018-09-06 15:46:53.289 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 130.6062ms. +2018-09-06 15:46:53.290 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:46:53.290 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 199.11960000000002ms +2018-09-06 15:46:53.291 +03:00 [INF] Request finished in 218.5654ms 200 text/plain; charset=utf-8 +2018-09-06 15:46:53.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:46:53.570 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:46:53.570 +03:00 [INF] Request finished in 0.8547ms 200 text/css +2018-09-06 15:46:53.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:46:53.702 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:46:53.703 +03:00 [INF] Request finished in 1.1975ms 200 image/png +2018-09-06 15:46:53.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:46:53.704 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:46:53.704 +03:00 [INF] Request finished in 0.9141ms 200 image/png +2018-09-06 15:46:53.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:46:53.705 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:46:53.708 +03:00 [INF] Request finished in 3.7102ms 304 text/plain +2018-09-06 15:46:53.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:46:53.714 +03:00 [INF] Request finished in 2.0982ms 404 +2018-09-06 15:46:53.746 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:46:53.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:46:53.754 +03:00 [INF] Request finished in 0.8896ms 404 +2018-09-06 15:46:53.760 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:46:53.799 +03:00 [INF] Executed action /Blog/Posts/Detail in 53.5615ms +2018-09-06 15:46:53.815 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:46:53.856 +03:00 [INF] Request finished in 987.8353ms 500 text/html; charset=utf-8 +2018-09-06 15:47:07.220 +03:00 [INF] Loaded modules: +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:47:07.235 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:47:07.236 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:47:07.237 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:47:08.823 +03:00 [INF] Initialized all modules. +2018-09-06 15:47:09.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:47:11.292 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:47:11.456 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:47:11.619 +03:00 [INF] Executed action /Blog/Posts/Detail in 322.02320000000003ms +2018-09-06 15:47:11.646 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:47:11.698 +03:00 [INF] Request finished in 2604.2248ms 500 text/html; charset=utf-8 +2018-09-06 15:48:19.270 +03:00 [INF] Loaded modules: +2018-09-06 15:48:19.288 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:48:19.289 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:48:19.290 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:48:19.291 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:48:19.291 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:48:21.090 +03:00 [INF] Initialized all modules. +2018-09-06 15:48:21.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:48:21.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:48:21.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:48:21.501 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:48:21.501 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:48:21.508 +03:00 [INF] Request finished in 83.734ms 200 text/css +2018-09-06 15:48:21.508 +03:00 [INF] Request finished in 83.7443ms 200 text/css +2018-09-06 15:48:21.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:48:21.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:48:21.572 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:48:21.571 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:48:21.572 +03:00 [INF] Request finished in 12.4678ms 200 text/css +2018-09-06 15:48:21.573 +03:00 [INF] Request finished in 15.0955ms 200 text/css +2018-09-06 15:48:22.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:48:22.180 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:48:22.184 +03:00 [INF] Request finished in 5.3528ms 304 text/plain +2018-09-06 15:48:22.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:48:22.203 +03:00 [INF] Request finished in 11.969ms 404 +2018-09-06 15:48:24.257 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:48:24.509 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:48:24.831 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.243 +03:00 [INF] Executed action /Blog/Posts/Index in 1982.3548ms +2018-09-06 15:48:26.249 +03:00 [INF] Request finished in 4825.26ms 200 text/html; charset=utf-8 +2018-09-06 15:48:26.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:48:26.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:48:26.289 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:48:26.290 +03:00 [INF] Request finished in 1.0836ms 200 text/css +2018-09-06 15:48:26.292 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:48:26.292 +03:00 [INF] Request finished in 4.7696ms 200 text/css +2018-09-06 15:48:26.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:48:26.321 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:48:26.321 +03:00 [INF] Request finished in 2.9119ms 200 text/css +2018-09-06 15:48:26.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:48:26.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:48:26.327 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:48:26.327 +03:00 [INF] Request finished in 2.5448ms 200 text/css +2018-09-06 15:48:26.327 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:48:26.327 +03:00 [INF] Request finished in 1.1221ms 200 text/css +2018-09-06 15:48:26.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:48:26.330 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:48:26.330 +03:00 [INF] Request finished in 1.2311ms 200 text/css +2018-09-06 15:48:26.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:48:26.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:48:26.333 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:48:26.333 +03:00 [INF] Request finished in 1.4064ms 200 text/css +2018-09-06 15:48:26.337 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:48:26.338 +03:00 [INF] Request finished in 6.9231ms 200 text/css +2018-09-06 15:48:26.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:48:26.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:48:26.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:48:26.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:48:26.343 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:48:26.343 +03:00 [INF] Request finished in 1.7453ms 200 text/css +2018-09-06 15:48:26.343 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:48:26.343 +03:00 [INF] Request finished in 0.7395ms 200 text/css +2018-09-06 15:48:26.343 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:48:26.343 +03:00 [INF] Request finished in 1.0886ms 200 text/css +2018-09-06 15:48:26.343 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:48:26.343 +03:00 [INF] Request finished in 3.1013ms 200 text/css +2018-09-06 15:48:26.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:48:26.349 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:48:26.349 +03:00 [INF] Request finished in 1.0027ms 200 application/javascript +2018-09-06 15:48:26.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:48:26.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:48:26.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:48:26.361 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:48:26.361 +03:00 [INF] Request finished in 2.3235ms 200 application/javascript +2018-09-06 15:48:26.363 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:48:26.363 +03:00 [INF] Request finished in 7.0765ms 200 application/javascript +2018-09-06 15:48:26.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:48:26.374 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:48:26.374 +03:00 [INF] Request finished in 8.0343ms 200 application/javascript +2018-09-06 15:48:26.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:48:26.384 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:48:26.384 +03:00 [INF] Request finished in 2.3595ms 200 application/javascript +2018-09-06 15:48:26.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:48:26.398 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:48:26.398 +03:00 [INF] Request finished in 2.7982ms 200 application/javascript +2018-09-06 15:48:26.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:48:26.418 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:48:26.418 +03:00 [INF] Request finished in 1.9309ms 200 application/javascript +2018-09-06 15:48:26.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:48:26.431 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:48:26.431 +03:00 [INF] Request finished in 0.9668ms 200 application/javascript +2018-09-06 15:48:26.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:48:26.447 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:48:26.448 +03:00 [INF] Request finished in 3.0462ms 200 application/javascript +2018-09-06 15:48:26.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:48:26.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:48:26.466 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:48:26.467 +03:00 [INF] Request finished in 10.9599ms 200 application/javascript +2018-09-06 15:48:26.467 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:48:26.467 +03:00 [INF] Request finished in 0.9214ms 200 application/javascript +2018-09-06 15:48:26.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:48:26.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:48:26.484 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:48:26.484 +03:00 [INF] Request finished in 2.286ms 200 application/javascript +2018-09-06 15:48:26.486 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:48:26.486 +03:00 [INF] Request finished in 2.7004ms 200 application/javascript +2018-09-06 15:48:26.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:48:26.504 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:48:26.504 +03:00 [INF] Request finished in 1.3281ms 200 application/javascript +2018-09-06 15:48:26.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:48:26.513 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:48:26.514 +03:00 [INF] Request finished in 1.5194ms 200 application/javascript +2018-09-06 15:48:26.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:48:26.516 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:48:26.516 +03:00 [INF] Request finished in 1.6901ms 200 application/javascript +2018-09-06 15:48:26.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:48:26.522 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:48:26.522 +03:00 [INF] Request finished in 2.3043ms 200 application/javascript +2018-09-06 15:48:26.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:48:26.526 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:48:26.526 +03:00 [INF] Request finished in 2.4967ms 200 application/javascript +2018-09-06 15:48:26.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:48:26.534 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:48:26.535 +03:00 [INF] Request finished in 1.1877ms 200 application/javascript +2018-09-06 15:48:26.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:48:26.542 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:48:26.542 +03:00 [INF] Request finished in 1.5129ms 200 application/javascript +2018-09-06 15:48:26.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:48:26.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:48:26.553 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:48:26.553 +03:00 [INF] Request finished in 2.1413ms 200 application/javascript +2018-09-06 15:48:26.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:48:26.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:48:26.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:48:26.557 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:48:26.557 +03:00 [INF] Request finished in 1.1809ms 200 application/javascript +2018-09-06 15:48:26.558 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:48:26.558 +03:00 [INF] Request finished in 1.1079ms 200 application/javascript +2018-09-06 15:48:26.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:48:26.570 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:48:26.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:48:26.571 +03:00 [INF] Request finished in 1.0529ms 200 application/javascript +2018-09-06 15:48:26.572 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:48:26.572 +03:00 [INF] Request finished in 1.7711ms 200 application/javascript +2018-09-06 15:48:26.574 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:48:26.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:48:26.577 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:48:26.577 +03:00 [INF] Request finished in 1.1289ms 200 application/javascript +2018-09-06 15:48:26.579 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:48:26.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:48:26.581 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:48:26.582 +03:00 [INF] Request finished in 1.0891ms 200 image/svg+xml +2018-09-06 15:48:26.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:48:26.584 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:48:26.584 +03:00 [INF] Request finished in 1.364ms 200 image/svg+xml +2018-09-06 15:48:26.624 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:48:26.626 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:48:26.642 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.643 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.644 +03:00 [INF] Authorization failed. +2018-09-06 15:48:26.684 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 55.4012ms. +2018-09-06 15:48:26.693 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:48:26.694 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 115.1401ms +2018-09-06 15:48:26.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:48:26.695 +03:00 [INF] Request finished in 143.3516ms 200 text/plain; charset=utf-8 +2018-09-06 15:48:26.696 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:48:26.696 +03:00 [INF] Request finished in 2.1387ms 200 font/woff2 +2018-09-06 15:48:26.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:48:26.730 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 103.52120000000001ms. +2018-09-06 15:48:26.731 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:48:26.731 +03:00 [INF] Request finished in 9.458ms 200 image/jpeg +2018-09-06 15:48:26.731 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:48:26.731 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 156.8778ms +2018-09-06 15:48:26.731 +03:00 [INF] Request finished in 178.2117ms 200 text/plain; charset=utf-8 +2018-09-06 15:48:26.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:48:26.974 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:48:26.974 +03:00 [INF] Request finished in 2.7073ms 200 text/css +2018-09-06 15:48:26.989 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:48:27.001 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:48:27.042 +03:00 [INF] Executed action /Blog/Posts/Detail in 52.5765ms +2018-09-06 15:48:27.056 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:48:27.094 +03:00 [INF] Request finished in 740.6274ms 500 text/html; charset=utf-8 +2018-09-06 15:48:27.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:48:27.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:48:27.305 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:48:27.305 +03:00 [INF] Request finished in 1.5405ms 200 image/png +2018-09-06 15:48:27.305 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:48:27.305 +03:00 [INF] Request finished in 1.8424ms 200 image/png +2018-09-06 15:48:27.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:48:27.339 +03:00 [INF] Request finished in 1.0159ms 404 +2018-09-06 15:48:33.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:48:33.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:48:33.851 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:48:33.851 +03:00 [INF] Request finished in 0.7286ms 304 text/plain +2018-09-06 15:48:33.852 +03:00 [INF] Request finished in 1.1232ms 404 +2018-09-06 15:49:38.380 +03:00 [INF] Loaded modules: +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:49:38.396 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:49:38.397 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:49:38.398 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:49:40.269 +03:00 [INF] Initialized all modules. +2018-09-06 15:49:40.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:49:42.923 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:49:43.135 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:49:43.523 +03:00 [INF] Authorization failed. +2018-09-06 15:49:44.943 +03:00 [INF] Executed action /Blog/Posts/Index in 2016.063ms +2018-09-06 15:49:44.954 +03:00 [INF] Request finished in 4418.7854ms 200 text/html; charset=utf-8 +2018-09-06 15:49:45.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:49:45.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:49:45.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:49:45.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:49:45.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:49:45.023 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:49:45.023 +03:00 [INF] Request finished in 4.0093ms 200 text/css +2018-09-06 15:49:45.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:49:45.032 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:49:45.032 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:49:45.035 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:49:45.037 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:49:45.041 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:49:45.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:49:45.045 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:49:45.048 +03:00 [INF] Request finished in 23.1945ms 200 text/css +2018-09-06 15:49:45.048 +03:00 [INF] Request finished in 27.2116ms 200 text/css +2018-09-06 15:49:45.048 +03:00 [INF] Request finished in 27.3034ms 200 text/css +2018-09-06 15:49:45.048 +03:00 [INF] Request finished in 37.4372ms 200 text/css +2018-09-06 15:49:45.050 +03:00 [INF] Request finished in 38.5119ms 200 text/css +2018-09-06 15:49:45.050 +03:00 [INF] Request finished in 7.4487ms 200 text/css +2018-09-06 15:49:45.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:49:45.053 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:49:45.053 +03:00 [INF] Request finished in 1.2946ms 200 text/css +2018-09-06 15:49:45.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:49:45.057 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:49:45.058 +03:00 [INF] Request finished in 3.0936ms 200 text/css +2018-09-06 15:49:45.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:49:45.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:49:45.065 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:49:45.065 +03:00 [INF] Request finished in 1.2578ms 200 text/css +2018-09-06 15:49:45.066 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:49:45.066 +03:00 [INF] Request finished in 1.6251ms 200 application/javascript +2018-09-06 15:49:45.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:49:45.072 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:49:45.072 +03:00 [INF] Request finished in 0.9379ms 200 text/css +2018-09-06 15:49:45.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:49:45.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:49:45.084 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:49:45.084 +03:00 [INF] Request finished in 1.9096ms 200 text/css +2018-09-06 15:49:45.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:49:45.087 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:49:45.087 +03:00 [INF] Request finished in 1.4302ms 200 application/javascript +2018-09-06 15:49:45.088 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:49:45.088 +03:00 [INF] Request finished in 8.3572ms 200 application/javascript +2018-09-06 15:49:45.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:49:45.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:49:45.120 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:49:45.120 +03:00 [INF] Request finished in 10.9445ms 200 application/javascript +2018-09-06 15:49:45.122 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:49:45.122 +03:00 [INF] Request finished in 5.7755ms 200 application/javascript +2018-09-06 15:49:45.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:49:45.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:49:45.127 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:49:45.127 +03:00 [INF] Request finished in 1.0384ms 200 application/javascript +2018-09-06 15:49:45.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:49:45.133 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:49:45.134 +03:00 [INF] Request finished in 3.1509ms 200 application/javascript +2018-09-06 15:49:45.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:49:45.171 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:49:45.171 +03:00 [INF] Request finished in 1.9472ms 200 application/javascript +2018-09-06 15:49:45.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:49:45.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:49:45.182 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:49:45.182 +03:00 [INF] Request finished in 4.5543ms 200 application/javascript +2018-09-06 15:49:45.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:49:45.197 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:49:45.198 +03:00 [INF] Request finished in 1.9022ms 200 application/javascript +2018-09-06 15:49:45.207 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:49:45.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:49:45.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:49:45.209 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:49:45.209 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:49:45.209 +03:00 [INF] Request finished in 1.0954ms 200 application/javascript +2018-09-06 15:49:45.209 +03:00 [INF] Request finished in 1.1734ms 200 application/javascript +2018-09-06 15:49:45.210 +03:00 [INF] Request finished in 29.6791ms 200 application/javascript +2018-09-06 15:49:45.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:49:45.216 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:49:45.217 +03:00 [INF] Request finished in 5.7294ms 200 application/javascript +2018-09-06 15:49:45.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:49:45.222 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:49:45.222 +03:00 [INF] Request finished in 1.2677ms 200 application/javascript +2018-09-06 15:49:45.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:49:45.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:49:45.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:49:45.243 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:49:45.243 +03:00 [INF] Request finished in 1.0523ms 200 application/javascript +2018-09-06 15:49:45.243 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:49:45.243 +03:00 [INF] Request finished in 1.2799ms 200 application/javascript +2018-09-06 15:49:45.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:49:45.243 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:49:45.243 +03:00 [INF] Request finished in 0.8518ms 200 application/javascript +2018-09-06 15:49:45.244 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:49:45.244 +03:00 [INF] Request finished in 1.1302ms 200 application/javascript +2018-09-06 15:49:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:49:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:49:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:49:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:49:45.263 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:49:45.263 +03:00 [INF] Request finished in 2.0987ms 200 application/javascript +2018-09-06 15:49:45.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:49:45.265 +03:00 [INF] Request finished in 4.7837ms 200 application/javascript +2018-09-06 15:49:45.281 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:49:45.281 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:49:45.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:49:45.291 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:49:45.291 +03:00 [INF] Request finished in 0.993ms 200 application/javascript +2018-09-06 15:49:45.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:49:45.294 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:49:45.294 +03:00 [INF] Request finished in 0.9254ms 200 application/javascript +2018-09-06 15:49:45.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:49:45.306 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:49:45.306 +03:00 [INF] Request finished in 1.2551ms 200 application/javascript +2018-09-06 15:49:45.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:49:45.319 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:49:45.320 +03:00 [INF] Request finished in 2.2111ms 200 application/javascript +2018-09-06 15:49:45.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:49:45.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:49:45.323 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:49:45.323 +03:00 [INF] Request finished in 1.6327ms 200 application/javascript +2018-09-06 15:49:45.323 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:49:45.323 +03:00 [INF] Request finished in 1.1703ms 200 image/svg+xml +2018-09-06 15:49:45.346 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:49:45.357 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:49:45.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:49:45.359 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:49:45.359 +03:00 [INF] Request finished in 1.7418ms 200 image/svg+xml +2018-09-06 15:49:45.365 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.365 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.365 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.365 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.366 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.367 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.367 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.367 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.367 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.368 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.369 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.369 +03:00 [INF] Authorization failed. +2018-09-06 15:49:45.418 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.6911ms. +2018-09-06 15:49:45.428 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:49:45.429 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 147.3039ms +2018-09-06 15:49:45.429 +03:00 [INF] Request finished in 168.0234ms 200 text/plain; charset=utf-8 +2018-09-06 15:49:45.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:49:45.451 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:49:45.451 +03:00 [INF] Request finished in 4.2729ms 200 font/woff2 +2018-09-06 15:49:45.471 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 112.67460000000001ms. +2018-09-06 15:49:45.472 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:49:45.472 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 190.429ms +2018-09-06 15:49:45.472 +03:00 [INF] Request finished in 210.7061ms 200 text/plain; charset=utf-8 +2018-09-06 15:49:45.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:49:45.488 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:49:45.488 +03:00 [INF] Request finished in 10.7838ms 200 image/jpeg +2018-09-06 15:49:45.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:49:45.846 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:49:45.846 +03:00 [INF] Request finished in 1.5604ms 200 text/css +2018-09-06 15:49:45.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:49:45.859 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:49:45.860 +03:00 [INF] Request finished in 4.8696ms 200 text/css +2018-09-06 15:49:45.978 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:49:45.997 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:49:46.057 +03:00 [INF] Executed action /Blog/Posts/Detail in 78.3193ms +2018-09-06 15:49:46.075 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:49:46.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:49:46.090 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:49:46.090 +03:00 [INF] Request finished in 0.8403ms 200 image/png +2018-09-06 15:49:46.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:49:46.096 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:49:46.096 +03:00 [INF] Request finished in 0.9699ms 200 image/png +2018-09-06 15:49:46.159 +03:00 [INF] Request finished in 1032.9052ms 500 text/html; charset=utf-8 +2018-09-06 15:49:46.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:49:46.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:49:46.270 +03:00 [INF] Request finished in 4.1286ms 404 +2018-09-06 15:49:46.274 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:49:46.276 +03:00 [INF] Request finished in 7.4825ms 304 text/plain +2018-09-06 15:49:46.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:49:46.286 +03:00 [INF] Request finished in 2.5886ms 404 +2018-09-06 15:50:08.784 +03:00 [INF] Loaded modules: +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:50:08.802 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:50:08.803 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:50:08.804 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:50:10.639 +03:00 [INF] Initialized all modules. +2018-09-06 15:50:10.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:50:13.517 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:50:13.748 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:50:14.188 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.210 +03:00 [INF] Executed action /Blog/Posts/Index in 2688.1271ms +2018-09-06 15:50:16.220 +03:00 [INF] Request finished in 5373.0887ms 200 text/html; charset=utf-8 +2018-09-06 15:50:16.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:50:16.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:50:16.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:50:16.292 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:50:16.292 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:50:16.292 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:50:16.299 +03:00 [INF] Request finished in 13.116ms 200 text/css +2018-09-06 15:50:16.299 +03:00 [INF] Request finished in 33.3065ms 200 text/css +2018-09-06 15:50:16.299 +03:00 [INF] Request finished in 33.5775ms 200 text/css +2018-09-06 15:50:16.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:50:16.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:50:16.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:50:16.300 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:50:16.300 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:50:16.300 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:50:16.300 +03:00 [INF] Request finished in 0.8644ms 200 text/css +2018-09-06 15:50:16.300 +03:00 [INF] Request finished in 0.852ms 200 text/css +2018-09-06 15:50:16.300 +03:00 [INF] Request finished in 0.8996ms 200 text/css +2018-09-06 15:50:16.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:50:16.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:50:16.303 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:50:16.303 +03:00 [INF] Request finished in 1.5898ms 200 text/css +2018-09-06 15:50:16.304 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:50:16.304 +03:00 [INF] Request finished in 0.9942ms 200 text/css +2018-09-06 15:50:16.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718338173157736 +2018-09-06 15:50:16.311 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:50:16.311 +03:00 [INF] Request finished in 2.1606ms 200 text/css +2018-09-06 15:50:16.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718338173157736 +2018-09-06 15:50:16.326 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:50:16.326 +03:00 [INF] Request finished in 0.821ms 200 text/css +2018-09-06 15:50:16.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718338173157736 +2018-09-06 15:50:16.337 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:50:16.338 +03:00 [INF] Request finished in 1.1642ms 200 text/css +2018-09-06 15:50:16.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718338173157736 +2018-09-06 15:50:16.354 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:50:16.354 +03:00 [INF] Request finished in 0.844ms 200 text/css +2018-09-06 15:50:16.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:50:16.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:50:16.373 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:50:16.373 +03:00 [INF] Request finished in 0.9195ms 200 application/javascript +2018-09-06 15:50:16.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:50:16.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:50:16.381 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:50:16.381 +03:00 [INF] Request finished in 1.0322ms 200 application/javascript +2018-09-06 15:50:16.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:50:16.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:50:16.389 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:50:16.389 +03:00 [INF] Request finished in 12.8737ms 200 application/javascript +2018-09-06 15:50:16.393 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:50:16.393 +03:00 [INF] Request finished in 8.9259ms 200 application/javascript +2018-09-06 15:50:16.393 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:50:16.394 +03:00 [INF] Request finished in 4.8638ms 200 application/javascript +2018-09-06 15:50:16.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:50:16.415 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:50:16.415 +03:00 [INF] Request finished in 1.745ms 200 application/javascript +2018-09-06 15:50:16.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:50:16.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:50:16.419 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:50:16.419 +03:00 [INF] Request finished in 1.0356ms 200 application/javascript +2018-09-06 15:50:16.419 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:50:16.419 +03:00 [INF] Request finished in 1.558ms 200 application/javascript +2018-09-06 15:50:16.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:50:16.433 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:50:16.434 +03:00 [INF] Request finished in 2.7048ms 200 application/javascript +2018-09-06 15:50:16.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:50:16.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:50:16.453 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:50:16.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:50:16.453 +03:00 [INF] Request finished in 6.4166ms 200 application/javascript +2018-09-06 15:50:16.454 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:50:16.454 +03:00 [INF] Request finished in 1.3971ms 200 application/javascript +2018-09-06 15:50:16.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:50:16.457 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:50:16.457 +03:00 [INF] Request finished in 0.9445ms 200 application/javascript +2018-09-06 15:50:16.469 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:50:16.469 +03:00 [INF] Request finished in 29.0485ms 200 application/javascript +2018-09-06 15:50:16.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:50:16.476 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:50:16.476 +03:00 [INF] Request finished in 5.3317ms 200 application/javascript +2018-09-06 15:50:16.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:50:16.480 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:50:16.480 +03:00 [INF] Request finished in 1.0067ms 200 application/javascript +2018-09-06 15:50:16.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:50:16.486 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:50:16.487 +03:00 [INF] Request finished in 2.445ms 200 application/javascript +2018-09-06 15:50:16.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:50:16.500 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:50:16.500 +03:00 [INF] Request finished in 2.4271ms 200 application/javascript +2018-09-06 15:50:16.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:50:16.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:50:16.518 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:50:16.519 +03:00 [INF] Request finished in 1.4134ms 200 application/javascript +2018-09-06 15:50:16.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:50:16.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:50:16.521 +03:00 [INF] Request finished in 3.7256ms 200 application/javascript +2018-09-06 15:50:16.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:50:16.525 +03:00 [INF] Request finished in 1.3806ms 200 application/javascript +2018-09-06 15:50:16.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:50:16.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:50:16.530 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:50:16.531 +03:00 [INF] Request finished in 1.9338ms 200 application/javascript +2018-09-06 15:50:16.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:50:16.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:50:16.542 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:50:16.543 +03:00 [INF] Request finished in 1.9036ms 200 application/javascript +2018-09-06 15:50:16.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:50:16.545 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:50:16.545 +03:00 [INF] Request finished in 1.4977ms 200 application/javascript +2018-09-06 15:50:16.556 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:50:16.556 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:50:16.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718338173157736 +2018-09-06 15:50:16.563 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:50:16.564 +03:00 [INF] Request finished in 1.5917ms 200 application/javascript +2018-09-06 15:50:16.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718338173157736 +2018-09-06 15:50:16.567 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:50:16.567 +03:00 [INF] Request finished in 1.0655ms 200 application/javascript +2018-09-06 15:50:16.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718338173157736 +2018-09-06 15:50:16.579 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:50:16.579 +03:00 [INF] Request finished in 1.8413ms 200 application/javascript +2018-09-06 15:50:16.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:50:16.597 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:50:16.597 +03:00 [INF] Request finished in 1.2444ms 200 image/svg+xml +2018-09-06 15:50:16.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:50:16.604 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:50:16.605 +03:00 [INF] Request finished in 2.748ms 200 image/svg+xml +2018-09-06 15:50:16.622 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:50:16.624 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:50:16.634 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.634 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.635 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.636 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.637 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.637 +03:00 [INF] Authorization failed. +2018-09-06 15:50:16.680 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 52.947100000000006ms. +2018-09-06 15:50:16.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:50:16.690 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:50:16.690 +03:00 [INF] Request finished in 2.3252ms 200 font/woff2 +2018-09-06 15:50:16.690 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:50:16.691 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 134.94400000000002ms +2018-09-06 15:50:16.691 +03:00 [INF] Request finished in 162.9238ms 200 text/plain; charset=utf-8 +2018-09-06 15:50:16.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:50:16.731 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:50:16.731 +03:00 [INF] Request finished in 9.6698ms 200 image/jpeg +2018-09-06 15:50:16.737 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 112.7ms. +2018-09-06 15:50:16.738 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:50:16.738 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 182.46460000000002ms +2018-09-06 15:50:16.739 +03:00 [INF] Request finished in 196.8606ms 200 text/plain; charset=utf-8 +2018-09-06 15:50:17.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:50:17.058 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:50:17.058 +03:00 [INF] Request finished in 4.0564ms 200 text/css +2018-09-06 15:50:17.093 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:50:17.116 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:50:17.176 +03:00 [INF] Executed action /Blog/Posts/Detail in 82.7493ms +2018-09-06 15:50:17.186 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:50:17.230 +03:00 [INF] Request finished in 857.9273ms 500 text/html; charset=utf-8 +2018-09-06 15:50:17.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:50:17.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:50:17.358 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:50:17.358 +03:00 [INF] Request finished in 1.1546ms 200 image/png +2018-09-06 15:50:17.359 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:50:17.359 +03:00 [INF] Request finished in 1.755ms 200 image/png +2018-09-06 15:50:17.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css.map +2018-09-06 15:50:17.449 +03:00 [INF] Request finished in 4.6316ms 404 +2018-09-06 15:50:17.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:50:17.475 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:50:17.477 +03:00 [INF] Request finished in 3.2637ms 304 text/plain +2018-09-06 15:50:17.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:50:17.492 +03:00 [INF] Request finished in 3.1494ms 404 +2018-09-06 15:50:35.738 +03:00 [INF] Loaded modules: +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:50:35.754 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:50:35.755 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:50:35.756 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:50:37.356 +03:00 [INF] Initialized all modules. +2018-09-06 15:50:37.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:50:39.833 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:50:39.999 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:50:40.320 +03:00 [INF] Authorization failed. +2018-09-06 15:50:41.636 +03:00 [INF] Executed action /Blog/Posts/Index in 1798.7277000000001ms +2018-09-06 15:50:41.644 +03:00 [INF] Request finished in 4109.0771ms 200 text/html; charset=utf-8 +2018-09-06 15:50:41.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:50:41.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:50:41.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:50:41.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:50:41.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:50:41.706 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:50:41.706 +03:00 [INF] Request finished in 6.5695ms 200 text/css +2018-09-06 15:50:41.707 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:50:41.707 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:50:41.708 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:50:41.708 +03:00 [INF] Request finished in 4.3236ms 200 text/css +2018-09-06 15:50:41.714 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:50:41.715 +03:00 [INF] Request finished in 29.6939ms 200 text/css +2018-09-06 15:50:41.715 +03:00 [INF] Request finished in 29.3513ms 200 text/css +2018-09-06 15:50:41.715 +03:00 [INF] Request finished in 29.7172ms 200 text/css +2018-09-06 15:50:41.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:50:41.717 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:50:41.717 +03:00 [INF] Request finished in 1.6983ms 200 text/css +2018-09-06 15:50:41.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.css?_v=636718350182081684 +2018-09-06 15:50:41.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:50:41.726 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:50:41.726 +03:00 [INF] Request finished in 1.4356ms 200 text/css +2018-09-06 15:50:41.726 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.css'. Physical path: '/Pages/Blog/Posts/blogcss/blog.css' +2018-09-06 15:50:41.726 +03:00 [INF] Request finished in 2.2348ms 200 text/css +2018-09-06 15:50:41.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:50:41.727 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:50:41.728 +03:00 [INF] Request finished in 3.6144ms 200 text/css +2018-09-06 15:50:41.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718350182081684 +2018-09-06 15:50:41.730 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:50:41.738 +03:00 [INF] Request finished in 9.4915ms 200 text/css +2018-09-06 15:50:41.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718350182081684 +2018-09-06 15:50:41.742 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:50:41.743 +03:00 [INF] Request finished in 0.8652ms 200 text/css +2018-09-06 15:50:41.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718350182081684 +2018-09-06 15:50:41.749 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:50:41.750 +03:00 [INF] Request finished in 1.5192ms 200 text/css +2018-09-06 15:50:41.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:50:41.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:50:41.780 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:50:41.780 +03:00 [INF] Request finished in 1.0047ms 200 application/javascript +2018-09-06 15:50:41.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:50:41.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:50:41.791 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:50:41.791 +03:00 [INF] Request finished in 1.7868ms 200 application/javascript +2018-09-06 15:50:41.798 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:50:41.798 +03:00 [INF] Request finished in 8.9732ms 200 application/javascript +2018-09-06 15:50:41.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:50:41.806 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:50:41.806 +03:00 [INF] Request finished in 6.1011ms 200 application/javascript +2018-09-06 15:50:41.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:50:41.811 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:50:41.811 +03:00 [INF] Request finished in 4.0461ms 200 application/javascript +2018-09-06 15:50:41.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:50:41.820 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:50:41.821 +03:00 [INF] Request finished in 1.5677ms 200 application/javascript +2018-09-06 15:50:41.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:50:41.833 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:50:41.833 +03:00 [INF] Request finished in 1.6764ms 200 application/javascript +2018-09-06 15:50:41.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:50:41.836 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:50:41.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:50:41.837 +03:00 [INF] Request finished in 2.2227ms 200 application/javascript +2018-09-06 15:50:41.839 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:50:41.839 +03:00 [INF] Request finished in 2.4625ms 200 application/javascript +2018-09-06 15:50:41.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:50:41.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:50:41.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:50:41.858 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:50:41.858 +03:00 [INF] Request finished in 1.175ms 200 application/javascript +2018-09-06 15:50:41.861 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:50:41.861 +03:00 [INF] Request finished in 7.3367ms 200 application/javascript +2018-09-06 15:50:41.861 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:50:41.862 +03:00 [INF] Request finished in 6.8019ms 200 application/javascript +2018-09-06 15:50:41.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:50:41.875 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:50:41.875 +03:00 [INF] Request finished in 6.531ms 200 application/javascript +2018-09-06 15:50:41.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:50:41.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:50:41.882 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:50:41.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:50:41.883 +03:00 [INF] Request finished in 1.9368ms 200 application/javascript +2018-09-06 15:50:41.884 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:50:41.884 +03:00 [INF] Request finished in 2.3535ms 200 application/javascript +2018-09-06 15:50:41.885 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:50:41.885 +03:00 [INF] Request finished in 2.4015ms 200 application/javascript +2018-09-06 15:50:41.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:50:41.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:50:41.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:50:41.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:50:41.894 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:50:41.894 +03:00 [INF] Request finished in 1.0823ms 200 application/javascript +2018-09-06 15:50:41.894 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:50:41.894 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:50:41.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:50:41.895 +03:00 [INF] Request finished in 0.9583ms 200 application/javascript +2018-09-06 15:50:41.895 +03:00 [INF] Request finished in 0.8373ms 200 application/javascript +2018-09-06 15:50:41.895 +03:00 [INF] Request finished in 1.6465ms 200 application/javascript +2018-09-06 15:50:41.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:50:41.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:50:41.908 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:50:41.908 +03:00 [INF] Request finished in 2.1753ms 200 application/javascript +2018-09-06 15:50:41.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:50:41.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:50:41.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:50:41.925 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:50:41.925 +03:00 [INF] Request finished in 0.7437ms 200 application/javascript +2018-09-06 15:50:41.925 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:50:41.925 +03:00 [INF] Request finished in 1.1945ms 200 application/javascript +2018-09-06 15:50:41.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718350182081684 +2018-09-06 15:50:41.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/blog.js?_v=636718350182081684 +2018-09-06 15:50:41.936 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/blog.js'. Physical path: '/Pages/Blog/Posts/blogcss/blog.js' +2018-09-06 15:50:41.936 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:50:41.936 +03:00 [INF] Request finished in 0.734ms 200 application/javascript +2018-09-06 15:50:41.936 +03:00 [INF] Request finished in 0.7718ms 200 application/javascript +2018-09-06 15:50:41.937 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:50:41.937 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:50:41.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=636718350182081684 +2018-09-06 15:50:41.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:50:41.945 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js'. Physical path: '/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl/carousel/min.js' +2018-09-06 15:50:41.946 +03:00 [INF] Request finished in 2.1464ms 200 application/javascript +2018-09-06 15:50:41.946 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:50:41.946 +03:00 [INF] Request finished in 1.3005ms 200 image/svg+xml +2018-09-06 15:50:41.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:50:41.959 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:50:41.959 +03:00 [INF] Request finished in 1.548ms 200 image/svg+xml +2018-09-06 15:50:41.995 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:50:41.997 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:50:42.009 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.009 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.010 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.011 +03:00 [INF] Authorization failed. +2018-09-06 15:50:42.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:50:42.052 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:50:42.054 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 52.784400000000005ms. +2018-09-06 15:50:42.053 +03:00 [INF] Request finished in 3.0738ms 200 font/woff2 +2018-09-06 15:50:42.069 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:50:42.072 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 134.16920000000002ms +2018-09-06 15:50:42.072 +03:00 [INF] Request finished in 169.3982ms 200 text/plain; charset=utf-8 +2018-09-06 15:50:42.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:50:42.094 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:50:42.094 +03:00 [INF] Request finished in 12.7996ms 200 image/jpeg +2018-09-06 15:50:42.108 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 110.2942ms. +2018-09-06 15:50:42.108 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:50:42.109 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 171.7604ms +2018-09-06 15:50:42.109 +03:00 [INF] Request finished in 194.8753ms 200 text/plain; charset=utf-8 +2018-09-06 15:50:42.506 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:50:42.518 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:50:42.560 +03:00 [INF] Executed action /Blog/Posts/Detail in 53.469300000000004ms +2018-09-06 15:50:42.570 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:50:42.606 +03:00 [INF] Request finished in 848.8991ms 500 text/html; charset=utf-8 +2018-09-06 15:50:42.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:50:42.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:50:42.640 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:50:42.640 +03:00 [INF] Request finished in 1.0698ms 200 image/png +2018-09-06 15:50:42.640 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:50:42.640 +03:00 [INF] Request finished in 1.2751ms 200 image/png +2018-09-06 15:50:42.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:50:42.692 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:50:42.694 +03:00 [INF] Request finished in 3.5684ms 304 text/plain +2018-09-06 15:50:42.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:50:42.730 +03:00 [INF] Request finished in 2.1897ms 404 +2018-09-06 15:51:48.062 +03:00 [INF] Loaded modules: +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:51:48.077 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:51:48.078 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:51:48.079 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:51:49.964 +03:00 [INF] Initialized all modules. +2018-09-06 15:51:50.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-06 15:51:52.651 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:51:52.758 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:51:54.285 +03:00 [INF] Executed action /Account/Login in 1628.0949ms +2018-09-06 15:51:54.300 +03:00 [INF] Request finished in 4213.5352ms 200 text/html; charset=utf-8 +2018-09-06 15:51:54.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:51:54.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:51:54.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:51:54.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:51:54.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:51:54.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:51:54.367 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:51:54.367 +03:00 [INF] Request finished in 1.2292ms 200 text/css +2018-09-06 15:51:54.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:51:54.412 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:51:54.412 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:51:54.412 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:51:54.412 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:51:54.413 +03:00 [INF] Request finished in 75.7499ms 200 text/css +2018-09-06 15:51:54.413 +03:00 [INF] Request finished in 66.9783ms 200 text/css +2018-09-06 15:51:54.413 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:51:54.413 +03:00 [INF] Request finished in 75.7524ms 200 text/css +2018-09-06 15:51:54.413 +03:00 [INF] Request finished in 2.8903ms 200 text/css +2018-09-06 15:51:54.413 +03:00 [INF] Request finished in 76.3066ms 200 text/css +2018-09-06 15:51:54.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:51:54.413 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:51:54.414 +03:00 [INF] Request finished in 77.8276ms 200 text/css +2018-09-06 15:51:54.414 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:51:54.414 +03:00 [INF] Request finished in 0.7882ms 200 text/css +2018-09-06 15:51:54.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:51:54.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:51:54.429 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:51:54.429 +03:00 [INF] Request finished in 1.3358ms 200 application/javascript +2018-09-06 15:51:54.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:51:54.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:51:54.434 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:51:54.434 +03:00 [INF] Request finished in 1.3753ms 200 application/javascript +2018-09-06 15:51:54.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:51:54.437 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:51:54.437 +03:00 [INF] Request finished in 11.2545ms 200 application/javascript +2018-09-06 15:51:54.438 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:51:54.438 +03:00 [INF] Request finished in 7.2279ms 200 application/javascript +2018-09-06 15:51:54.440 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:51:54.440 +03:00 [INF] Request finished in 4.8019ms 200 application/javascript +2018-09-06 15:51:54.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:51:54.450 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:51:54.450 +03:00 [INF] Request finished in 1.1163ms 200 application/javascript +2018-09-06 15:51:54.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:51:54.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:51:54.464 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:51:54.464 +03:00 [INF] Request finished in 0.9866ms 200 application/javascript +2018-09-06 15:51:54.464 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:51:54.464 +03:00 [INF] Request finished in 1.32ms 200 application/javascript +2018-09-06 15:51:54.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:51:54.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:51:54.471 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:51:54.471 +03:00 [INF] Request finished in 3.0815ms 200 application/javascript +2018-09-06 15:51:54.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:51:54.482 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:51:54.482 +03:00 [INF] Request finished in 1.7724ms 200 application/javascript +2018-09-06 15:51:54.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:51:54.485 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:51:54.485 +03:00 [INF] Request finished in 15.5346ms 200 application/javascript +2018-09-06 15:51:54.485 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:51:54.486 +03:00 [INF] Request finished in 2.7866ms 200 application/javascript +2018-09-06 15:51:54.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:51:54.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:51:54.496 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:51:54.497 +03:00 [INF] Request finished in 1.8009ms 200 application/javascript +2018-09-06 15:51:54.497 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:51:54.498 +03:00 [INF] Request finished in 2.4864ms 200 application/javascript +2018-09-06 15:51:54.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:51:54.506 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:51:54.507 +03:00 [INF] Request finished in 1.6671ms 200 application/javascript +2018-09-06 15:51:54.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:51:54.512 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:51:54.512 +03:00 [INF] Request finished in 3.9955ms 200 application/javascript +2018-09-06 15:51:54.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:51:54.514 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:51:54.514 +03:00 [INF] Request finished in 1.0652ms 200 application/javascript +2018-09-06 15:51:54.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:51:54.516 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:51:54.517 +03:00 [INF] Request finished in 1.8321ms 200 application/javascript +2018-09-06 15:51:54.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:51:54.522 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:51:54.522 +03:00 [INF] Request finished in 1.9261ms 200 application/javascript +2018-09-06 15:51:54.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:51:54.530 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:51:54.530 +03:00 [INF] Request finished in 1.9839ms 200 application/javascript +2018-09-06 15:51:54.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:51:54.539 +03:00 [INF] Request finished in 6.4456ms 404 +2018-09-06 15:51:54.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:51:54.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:51:54.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:51:54.549 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:51:54.549 +03:00 [INF] Request finished in 2.4058ms 200 application/javascript +2018-09-06 15:51:54.569 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:51:54.569 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:51:54.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:51:54.588 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:51:54.588 +03:00 [INF] Request finished in 1.3182ms 200 application/javascript +2018-09-06 15:51:54.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:51:54.628 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:51:54.628 +03:00 [INF] Request finished in 1.4929ms 200 application/javascript +2018-09-06 15:51:54.629 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:51:54.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:51:54.635 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:51:54.635 +03:00 [INF] Request finished in 2.2687ms 200 image/svg+xml +2018-09-06 15:51:54.638 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:51:54.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:51:54.642 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:51:54.642 +03:00 [INF] Request finished in 1.1025ms 200 image/svg+xml +2018-09-06 15:51:54.697 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.698 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.699 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.700 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.700 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.700 +03:00 [INF] Authorization failed. +2018-09-06 15:51:54.702 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:51:54.702 +03:00 [INF] Request finished in 3.7051ms 200 font/woff2 +2018-09-06 15:51:54.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:51:54.741 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:51:54.741 +03:00 [INF] Request finished in 16.9956ms 200 image/jpeg +2018-09-06 15:51:54.762 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 125.8952ms. +2018-09-06 15:51:54.765 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 125.4711ms. +2018-09-06 15:51:54.770 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:51:54.770 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:51:54.771 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 202.14000000000001ms +2018-09-06 15:51:54.771 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 202.1656ms +2018-09-06 15:51:54.772 +03:00 [INF] Request finished in 224.5572ms 200 text/plain; charset=utf-8 +2018-09-06 15:51:54.772 +03:00 [INF] Request finished in 226.9304ms 200 text/plain; charset=utf-8 +2018-09-06 15:51:54.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:51:54.968 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:51:54.968 +03:00 [INF] Request finished in 0.9242ms 200 image/png +2018-09-06 15:51:54.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:51:54.975 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:51:54.975 +03:00 [INF] Request finished in 1.4042ms 200 image/png +2018-09-06 15:51:55.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:51:55.040 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:51:55.040 +03:00 [INF] Request finished in 1.0273ms 200 text/css +2018-09-06 15:51:55.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:51:55.230 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:51:55.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:51:55.232 +03:00 [INF] Request finished in 4.013ms 304 text/plain +2018-09-06 15:51:55.233 +03:00 [INF] Request finished in 1.2423ms 404 +2018-09-06 15:53:58.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-06 15:53:59.238 +03:00 [INF] Route matched with {page = "/Account/Register", area = "", action = "", controller = ""}. Executing action /Account/Register +2018-09-06 15:53:59.270 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:53:59.366 +03:00 [INF] Executed action /Account/Register in 127.8215ms +2018-09-06 15:53:59.366 +03:00 [INF] Request finished in 503.2003ms 200 text/html; charset=utf-8 +2018-09-06 15:53:59.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:53:59.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:53:59.415 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:53:59.415 +03:00 [INF] Request finished in 4.3229ms 200 text/css +2018-09-06 15:53:59.416 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:53:59.416 +03:00 [INF] Request finished in 1.3847ms 200 text/css +2018-09-06 15:53:59.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:53:59.420 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:53:59.420 +03:00 [INF] Request finished in 1.417ms 200 text/css +2018-09-06 15:53:59.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:53:59.433 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:53:59.433 +03:00 [INF] Request finished in 1.3521ms 200 text/css +2018-09-06 15:53:59.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:53:59.438 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:53:59.438 +03:00 [INF] Request finished in 1.5039ms 200 text/css +2018-09-06 15:53:59.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:53:59.449 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:53:59.449 +03:00 [INF] Request finished in 1.3662ms 200 text/css +2018-09-06 15:53:59.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:53:59.457 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:53:59.457 +03:00 [INF] Request finished in 1.1293ms 200 text/css +2018-09-06 15:53:59.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:53:59.459 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:53:59.459 +03:00 [INF] Request finished in 0.9843ms 200 text/css +2018-09-06 15:53:59.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:53:59.465 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:53:59.465 +03:00 [INF] Request finished in 1.012ms 200 application/javascript +2018-09-06 15:53:59.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:53:59.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:53:59.471 +03:00 [INF] Request finished in 4.1776ms 404 +2018-09-06 15:53:59.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:53:59.474 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:53:59.474 +03:00 [INF] Request finished in 1.0303ms 200 application/javascript +2018-09-06 15:53:59.477 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:53:59.477 +03:00 [INF] Request finished in 10.1371ms 200 application/javascript +2018-09-06 15:53:59.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:53:59.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:53:59.482 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:53:59.482 +03:00 [INF] Request finished in 1.962ms 200 application/javascript +2018-09-06 15:53:59.486 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:53:59.487 +03:00 [INF] Request finished in 7.494ms 200 application/javascript +2018-09-06 15:53:59.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:53:59.490 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:53:59.490 +03:00 [INF] Request finished in 1.6868ms 200 application/javascript +2018-09-06 15:53:59.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:53:59.516 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:53:59.516 +03:00 [INF] Request finished in 2.1235ms 200 application/javascript +2018-09-06 15:53:59.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:53:59.528 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:53:59.528 +03:00 [INF] Request finished in 1.8683ms 200 application/javascript +2018-09-06 15:53:59.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:53:59.538 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:53:59.538 +03:00 [INF] Request finished in 3.5896ms 200 application/javascript +2018-09-06 15:53:59.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:53:59.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:53:59.554 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:53:59.554 +03:00 [INF] Request finished in 1.1555ms 200 application/javascript +2018-09-06 15:53:59.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:53:59.561 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:53:59.561 +03:00 [INF] Request finished in 13.9139ms 200 application/javascript +2018-09-06 15:53:59.561 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:53:59.561 +03:00 [INF] Request finished in 1.541ms 200 application/javascript +2018-09-06 15:53:59.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:53:59.577 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:53:59.577 +03:00 [INF] Request finished in 2.2716ms 200 application/javascript +2018-09-06 15:53:59.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:53:59.579 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:53:59.579 +03:00 [INF] Request finished in 1.2837ms 200 application/javascript +2018-09-06 15:53:59.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:53:59.588 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:53:59.589 +03:00 [INF] Request finished in 1.3262ms 200 application/javascript +2018-09-06 15:53:59.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:53:59.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:53:59.597 +03:00 [INF] Request finished in 2.6083ms 200 application/javascript +2018-09-06 15:53:59.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:53:59.614 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:53:59.614 +03:00 [INF] Request finished in 1.1818ms 200 application/javascript +2018-09-06 15:53:59.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:53:59.616 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:53:59.616 +03:00 [INF] Request finished in 1.2622ms 200 application/javascript +2018-09-06 15:53:59.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:53:59.625 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:53:59.625 +03:00 [INF] Request finished in 1.3433ms 200 application/javascript +2018-09-06 15:53:59.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:53:59.627 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:53:59.627 +03:00 [INF] Request finished in 1.5426ms 200 application/javascript +2018-09-06 15:53:59.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:53:59.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:53:59.642 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:53:59.642 +03:00 [INF] Request finished in 1.5102ms 200 application/javascript +2018-09-06 15:53:59.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:53:59.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:53:59.643 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:53:59.644 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:53:59.644 +03:00 [INF] Request finished in 4.2022ms 200 application/javascript +2018-09-06 15:53:59.645 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:53:59.645 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.645 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.645 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.645 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.645 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.646 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Authorization failed. +2018-09-06 15:53:59.647 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3855ms. +2018-09-06 15:53:59.648 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:53:59.648 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.68ms +2018-09-06 15:53:59.649 +03:00 [INF] Request finished in 8.2688ms 200 text/plain; charset=utf-8 +2018-09-06 15:53:59.649 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.9898000000000002ms. +2018-09-06 15:53:59.649 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:53:59.649 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.4163000000000006ms +2018-09-06 15:53:59.649 +03:00 [INF] Request finished in 6.4966ms 200 text/plain; charset=utf-8 +2018-09-06 15:53:59.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:53:59.654 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:53:59.654 +03:00 [INF] Request finished in 3.8466ms 200 application/javascript +2018-09-06 15:53:59.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:53:59.657 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:53:59.657 +03:00 [INF] Request finished in 2.328ms 200 image/svg+xml +2018-09-06 15:53:59.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:53:59.675 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:53:59.676 +03:00 [INF] Request finished in 1.15ms 200 image/svg+xml +2018-09-06 15:53:59.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:53:59.724 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:53:59.724 +03:00 [INF] Request finished in 2.6916ms 200 font/woff2 +2018-09-06 15:53:59.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:53:59.767 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:53:59.767 +03:00 [INF] Request finished in 7.9614ms 200 image/jpeg +2018-09-06 15:53:59.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:53:59.948 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:53:59.948 +03:00 [INF] Request finished in 1.3664ms 200 image/png +2018-09-06 15:53:59.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:53:59.950 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:53:59.950 +03:00 [INF] Request finished in 1.4198ms 200 image/png +2018-09-06 15:54:00.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:54:00.035 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:54:00.035 +03:00 [INF] Request finished in 3.6667ms 200 text/css +2018-09-06 15:54:00.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:54:00.266 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:54:00.267 +03:00 [INF] Request finished in 0.998ms 304 text/plain +2018-09-06 15:54:00.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:54:00.272 +03:00 [INF] Request finished in 0.9465ms 404 +2018-09-06 15:54:01.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-06 15:54:01.353 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:54:01.378 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:54:01.426 +03:00 [INF] Executed action /Account/Login in 73.28840000000001ms +2018-09-06 15:54:01.426 +03:00 [INF] Request finished in 74.6891ms 200 text/html; charset=utf-8 +2018-09-06 15:54:01.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:54:01.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:54:01.463 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:54:01.463 +03:00 [INF] Request finished in 1.3403ms 200 text/css +2018-09-06 15:54:01.463 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:54:01.463 +03:00 [INF] Request finished in 5.1881ms 200 text/css +2018-09-06 15:54:01.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:54:01.466 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:54:01.467 +03:00 [INF] Request finished in 1.296ms 200 text/css +2018-09-06 15:54:01.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:54:01.471 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:54:01.471 +03:00 [INF] Request finished in 2.0536ms 200 text/css +2018-09-06 15:54:01.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:54:01.473 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:54:01.473 +03:00 [INF] Request finished in 1.58ms 200 text/css +2018-09-06 15:54:01.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:54:01.487 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:54:01.488 +03:00 [INF] Request finished in 3.9298ms 200 text/css +2018-09-06 15:54:01.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:54:01.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:54:01.495 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:54:01.495 +03:00 [INF] Request finished in 1.6621ms 200 text/css +2018-09-06 15:54:01.496 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:54:01.496 +03:00 [INF] Request finished in 1.165ms 200 text/css +2018-09-06 15:54:01.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:54:01.502 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:54:01.502 +03:00 [INF] Request finished in 1.2844ms 200 application/javascript +2018-09-06 15:54:01.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:54:01.506 +03:00 [INF] Request finished in 0.7086ms 404 +2018-09-06 15:54:01.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:54:01.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:54:01.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:54:01.512 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:54:01.512 +03:00 [INF] Request finished in 1.0348ms 200 application/javascript +2018-09-06 15:54:01.515 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:54:01.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:54:01.516 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:54:01.516 +03:00 [INF] Request finished in 4.8678ms 200 application/javascript +2018-09-06 15:54:01.516 +03:00 [INF] Request finished in 4.5399ms 200 application/javascript +2018-09-06 15:54:01.516 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:54:01.517 +03:00 [INF] Request finished in 1.3412ms 200 application/javascript +2018-09-06 15:54:01.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:54:01.519 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:54:01.520 +03:00 [INF] Request finished in 1.2486ms 200 application/javascript +2018-09-06 15:54:01.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:54:01.529 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:54:01.530 +03:00 [INF] Request finished in 1.3454ms 200 application/javascript +2018-09-06 15:54:01.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:54:01.540 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:54:01.540 +03:00 [INF] Request finished in 1.7105ms 200 application/javascript +2018-09-06 15:54:01.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:54:01.547 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:54:01.548 +03:00 [INF] Request finished in 4.8658ms 200 application/javascript +2018-09-06 15:54:01.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:54:01.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:54:01.589 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:54:01.589 +03:00 [INF] Request finished in 1.0231ms 200 application/javascript +2018-09-06 15:54:01.590 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:54:01.591 +03:00 [INF] Request finished in 8.2936ms 200 application/javascript +2018-09-06 15:54:01.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:54:01.597 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:54:01.597 +03:00 [INF] Request finished in 1.0795ms 200 application/javascript +2018-09-06 15:54:01.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:54:01.607 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:54:01.607 +03:00 [INF] Request finished in 1.067ms 200 application/javascript +2018-09-06 15:54:01.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:54:01.613 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:54:01.613 +03:00 [INF] Request finished in 1.3412ms 200 application/javascript +2018-09-06 15:54:01.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:54:01.622 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:54:01.622 +03:00 [INF] Request finished in 1.6551ms 200 application/javascript +2018-09-06 15:54:01.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:54:01.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:54:01.630 +03:00 [INF] Request finished in 1.9248ms 200 application/javascript +2018-09-06 15:54:01.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:54:01.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:54:01.635 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:54:01.635 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:54:01.635 +03:00 [INF] Request finished in 1.1457ms 200 application/javascript +2018-09-06 15:54:01.635 +03:00 [INF] Request finished in 0.928ms 200 application/javascript +2018-09-06 15:54:01.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:54:01.647 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:54:01.647 +03:00 [INF] Request finished in 1.4238ms 200 application/javascript +2018-09-06 15:54:01.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:54:01.651 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:54:01.651 +03:00 [INF] Request finished in 1.2132ms 200 application/javascript +2018-09-06 15:54:01.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:54:01.657 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:54:01.657 +03:00 [INF] Request finished in 1.4643ms 200 application/javascript +2018-09-06 15:54:01.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:54:01.662 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:54:01.663 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.663 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.664 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.665 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.665 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.665 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.665 +03:00 [INF] Authorization failed. +2018-09-06 15:54:01.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:54:01.667 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.7823ms. +2018-09-06 15:54:01.667 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:54:01.667 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.034ms +2018-09-06 15:54:01.667 +03:00 [INF] Request finished in 6.1606ms 200 text/plain; charset=utf-8 +2018-09-06 15:54:01.668 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:54:01.669 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:54:01.669 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11270000000000001ms. +2018-09-06 15:54:01.669 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:54:01.670 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8416000000000001ms +2018-09-06 15:54:01.670 +03:00 [INF] Request finished in 3.0068ms 200 text/plain; charset=utf-8 +2018-09-06 15:54:01.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:54:01.676 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:54:01.676 +03:00 [INF] Request finished in 2.008ms 200 application/javascript +2018-09-06 15:54:01.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:54:01.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:54:01.678 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:54:01.678 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:54:01.678 +03:00 [INF] Request finished in 0.9112ms 200 application/javascript +2018-09-06 15:54:01.678 +03:00 [INF] Request finished in 0.88ms 200 image/svg+xml +2018-09-06 15:54:01.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:54:01.681 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:54:01.681 +03:00 [INF] Request finished in 0.9312ms 200 image/svg+xml +2018-09-06 15:54:01.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:54:01.710 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:54:01.710 +03:00 [INF] Request finished in 1.8639ms 200 font/woff2 +2018-09-06 15:54:01.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:54:01.741 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:54:01.741 +03:00 [INF] Request finished in 7.2256ms 200 image/jpeg +2018-09-06 15:54:01.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:54:01.952 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:54:01.952 +03:00 [INF] Request finished in 0.9742ms 200 text/css +2018-09-06 15:54:02.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:54:02.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:54:02.019 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:54:02.019 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:54:02.019 +03:00 [INF] Request finished in 0.9081ms 200 image/png +2018-09-06 15:54:02.019 +03:00 [INF] Request finished in 0.9252ms 200 image/png +2018-09-06 15:54:02.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:54:02.224 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:54:02.225 +03:00 [INF] Request finished in 1.0607ms 304 text/plain +2018-09-06 15:54:02.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:54:02.237 +03:00 [INF] Request finished in 0.9132ms 404 +2018-09-06 15:58:32.926 +03:00 [INF] Loaded modules: +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:58:32.940 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:58:32.941 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:58:32.942 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:58:32.943 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:58:32.944 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:58:34.592 +03:00 [INF] Initialized all modules. +2018-09-06 15:58:34.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-06 15:58:37.464 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:58:37.527 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:58:38.976 +03:00 [INF] Executed action /Account/Login in 1507.3039ms +2018-09-06 15:58:38.993 +03:00 [INF] Request finished in 4138.2516ms 200 text/html; charset=utf-8 +2018-09-06 15:58:39.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:58:39.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:58:39.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:58:39.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:58:39.036 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:58:39.036 +03:00 [INF] Request finished in 5.3897ms 200 text/css +2018-09-06 15:58:39.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:58:39.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:58:39.044 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:58:39.044 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:58:39.044 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:58:39.044 +03:00 [INF] Request finished in 5.9141ms 200 text/css +2018-09-06 15:58:39.044 +03:00 [INF] Request finished in 15.9042ms 200 text/css +2018-09-06 15:58:39.044 +03:00 [INF] Request finished in 16.4261ms 200 text/css +2018-09-06 15:58:39.044 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:58:39.044 +03:00 [INF] Request finished in 1.8164ms 200 text/css +2018-09-06 15:58:39.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:39.056 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:39.057 +03:00 [INF] Request finished in 1.1109ms 200 text/css +2018-09-06 15:58:39.057 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:58:39.057 +03:00 [INF] Request finished in 30.4602ms 200 text/css +2018-09-06 15:58:39.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:58:39.061 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:58:39.062 +03:00 [INF] Request finished in 1.3914ms 200 text/css +2018-09-06 15:58:39.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:58:39.065 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:58:39.066 +03:00 [INF] Request finished in 2.2335ms 200 application/javascript +2018-09-06 15:58:39.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:58:39.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:58:39.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:58:39.085 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:58:39.085 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:58:39.085 +03:00 [INF] Request finished in 2.8599ms 200 application/javascript +2018-09-06 15:58:39.086 +03:00 [INF] Request finished in 10.0648ms 200 application/javascript +2018-09-06 15:58:39.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:58:39.091 +03:00 [INF] Request finished in 5.5956ms 404 +2018-09-06 15:58:39.092 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:58:39.092 +03:00 [INF] Request finished in 5.8897ms 200 application/javascript +2018-09-06 15:58:39.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:58:39.115 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:58:39.117 +03:00 [INF] Request finished in 5.1036ms 200 application/javascript +2018-09-06 15:58:39.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:58:39.118 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:58:39.119 +03:00 [INF] Request finished in 1.2465ms 200 application/javascript +2018-09-06 15:58:39.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:58:39.135 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:58:39.136 +03:00 [INF] Request finished in 1.7612ms 200 application/javascript +2018-09-06 15:58:39.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:58:39.145 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:58:39.145 +03:00 [INF] Request finished in 1.0369ms 200 application/javascript +2018-09-06 15:58:39.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:58:39.155 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:58:39.155 +03:00 [INF] Request finished in 2.0466ms 200 application/javascript +2018-09-06 15:58:39.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:58:39.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:58:39.162 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:58:39.162 +03:00 [INF] Request finished in 1.0144ms 200 application/javascript +2018-09-06 15:58:39.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:58:39.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:58:39.167 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:58:39.167 +03:00 [INF] Request finished in 1.2131ms 200 application/javascript +2018-09-06 15:58:39.169 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:58:39.169 +03:00 [INF] Request finished in 3.9567ms 200 application/javascript +2018-09-06 15:58:39.170 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:58:39.170 +03:00 [INF] Request finished in 14.1834ms 200 application/javascript +2018-09-06 15:58:39.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:58:39.174 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:58:39.174 +03:00 [INF] Request finished in 1.3001ms 200 application/javascript +2018-09-06 15:58:39.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:58:39.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:58:39.275 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:58:39.275 +03:00 [INF] Request finished in 1.0052ms 200 application/javascript +2018-09-06 15:58:39.276 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:58:39.276 +03:00 [INF] Request finished in 1.1624ms 200 application/javascript +2018-09-06 15:58:39.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:58:39.283 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:58:39.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:58:39.284 +03:00 [INF] Request finished in 3.7378ms 200 application/javascript +2018-09-06 15:58:39.285 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:58:39.285 +03:00 [INF] Request finished in 1.9166ms 200 application/javascript +2018-09-06 15:58:39.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:58:39.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:58:39.291 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:58:39.291 +03:00 [INF] Request finished in 1.47ms 200 application/javascript +2018-09-06 15:58:39.291 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:58:39.291 +03:00 [INF] Request finished in 0.9974ms 200 application/javascript +2018-09-06 15:58:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:58:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:58:39.302 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:58:39.303 +03:00 [INF] Request finished in 1.0889ms 200 application/javascript +2018-09-06 15:58:39.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:58:39.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:58:39.309 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:58:39.309 +03:00 [INF] Request finished in 1.4173ms 200 application/javascript +2018-09-06 15:58:39.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:58:39.317 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:58:39.318 +03:00 [INF] Request finished in 3.8151ms 200 application/javascript +2018-09-06 15:58:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:58:39.324 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:58:39.324 +03:00 [INF] Request finished in 1.4401ms 200 image/svg+xml +2018-09-06 15:58:39.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:58:39.326 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:58:39.326 +03:00 [INF] Request finished in 0.9988ms 200 image/svg+xml +2018-09-06 15:58:39.326 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:39.326 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:39.377 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:58:39.379 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:58:39.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:58:39.419 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:58:39.420 +03:00 [INF] Request finished in 2.3655ms 200 font/woff2 +2018-09-06 15:58:39.437 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.439 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.440 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.441 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.441 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.441 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.441 +03:00 [INF] Authorization failed. +2018-09-06 15:58:39.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:58:39.456 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:58:39.456 +03:00 [INF] Request finished in 12.1301ms 200 image/jpeg +2018-09-06 15:58:39.485 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 99.0612ms. +2018-09-06 15:58:39.485 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 101.9871ms. +2018-09-06 15:58:39.501 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:39.501 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:39.502 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 175.2597ms +2018-09-06 15:58:39.502 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 175.2244ms +2018-09-06 15:58:39.502 +03:00 [INF] Request finished in 198.6231ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:39.502 +03:00 [INF] Request finished in 200.7307ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:39.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:58:39.700 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:58:39.700 +03:00 [INF] Request finished in 2.5939ms 200 image/png +2018-09-06 15:58:39.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:58:39.707 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:58:39.707 +03:00 [INF] Request finished in 1.9141ms 200 image/png +2018-09-06 15:58:39.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:39.773 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:39.773 +03:00 [INF] Request finished in 0.9064ms 200 text/css +2018-09-06 15:58:39.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:58:39.927 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:58:39.928 +03:00 [INF] Request finished in 2.5459ms 304 text/plain +2018-09-06 15:58:39.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:58:39.963 +03:00 [INF] Request finished in 0.9691ms 404 +2018-09-06 15:58:45.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-06 15:58:45.793 +03:00 [INF] Route matched with {page = "/Account/Register", area = "", action = "", controller = ""}. Executing action /Account/Register +2018-09-06 15:58:45.823 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:58:45.912 +03:00 [INF] Executed action /Account/Register in 119.17540000000001ms +2018-09-06 15:58:45.913 +03:00 [INF] Request finished in 417.7481ms 200 text/html; charset=utf-8 +2018-09-06 15:58:45.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:58:45.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:58:45.987 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:58:45.987 +03:00 [INF] Request finished in 1.0392ms 200 text/css +2018-09-06 15:58:45.989 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:58:45.989 +03:00 [INF] Request finished in 3.6329ms 200 text/css +2018-09-06 15:58:46.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:58:46.014 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:58:46.014 +03:00 [INF] Request finished in 1.7241ms 200 text/css +2018-09-06 15:58:46.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:58:46.015 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:58:46.015 +03:00 [INF] Request finished in 0.94ms 200 text/css +2018-09-06 15:58:46.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:58:46.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:58:46.025 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:58:46.025 +03:00 [INF] Request finished in 1.728ms 200 text/css +2018-09-06 15:58:46.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:46.026 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:58:46.026 +03:00 [INF] Request finished in 2.8261ms 200 text/css +2018-09-06 15:58:46.027 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:46.027 +03:00 [INF] Request finished in 1.7879ms 200 text/css +2018-09-06 15:58:46.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:58:46.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:58:46.036 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:58:46.036 +03:00 [INF] Request finished in 1.4077ms 200 text/css +2018-09-06 15:58:46.036 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:58:46.036 +03:00 [INF] Request finished in 0.7323ms 200 application/javascript +2018-09-06 15:58:46.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:58:46.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:58:46.046 +03:00 [INF] Request finished in 1.4663ms 404 +2018-09-06 15:58:46.051 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:58:46.052 +03:00 [INF] Request finished in 7.4846ms 200 application/javascript +2018-09-06 15:58:46.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:58:46.057 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:58:46.058 +03:00 [INF] Request finished in 2.1937ms 200 application/javascript +2018-09-06 15:58:46.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:58:46.073 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:58:46.074 +03:00 [INF] Request finished in 6.8518ms 200 application/javascript +2018-09-06 15:58:46.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:58:46.082 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:58:46.082 +03:00 [INF] Request finished in 2.0309ms 200 application/javascript +2018-09-06 15:58:46.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:58:46.087 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:58:46.087 +03:00 [INF] Request finished in 0.9858ms 200 application/javascript +2018-09-06 15:58:46.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:58:46.116 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:58:46.116 +03:00 [INF] Request finished in 0.9822ms 200 application/javascript +2018-09-06 15:58:46.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:58:46.125 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:58:46.125 +03:00 [INF] Request finished in 1.8951ms 200 application/javascript +2018-09-06 15:58:46.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:58:46.128 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:58:46.129 +03:00 [INF] Request finished in 2.675ms 200 application/javascript +2018-09-06 15:58:46.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:58:46.149 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:58:46.149 +03:00 [INF] Request finished in 10.845ms 200 application/javascript +2018-09-06 15:58:46.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:58:46.151 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:58:46.152 +03:00 [INF] Request finished in 0.9682ms 200 application/javascript +2018-09-06 15:58:46.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:58:46.157 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:58:46.158 +03:00 [INF] Request finished in 3.3139ms 200 application/javascript +2018-09-06 15:58:46.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:58:46.167 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:58:46.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:58:46.167 +03:00 [INF] Request finished in 1.8435ms 200 application/javascript +2018-09-06 15:58:46.169 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:58:46.169 +03:00 [INF] Request finished in 1.9827ms 200 application/javascript +2018-09-06 15:58:46.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:58:46.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:58:46.179 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:58:46.179 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:58:46.179 +03:00 [INF] Request finished in 1.2054ms 200 application/javascript +2018-09-06 15:58:46.179 +03:00 [INF] Request finished in 1.1064ms 200 application/javascript +2018-09-06 15:58:46.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:58:46.186 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:58:46.186 +03:00 [INF] Request finished in 1.4913ms 200 application/javascript +2018-09-06 15:58:46.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:58:46.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:58:46.190 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:58:46.190 +03:00 [INF] Request finished in 1.5379ms 200 application/javascript +2018-09-06 15:58:46.192 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:58:46.192 +03:00 [INF] Request finished in 2.3251ms 200 application/javascript +2018-09-06 15:58:46.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:58:46.199 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:58:46.201 +03:00 [INF] Request finished in 7.8785ms 200 application/javascript +2018-09-06 15:58:46.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:58:46.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:58:46.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:58:46.206 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:58:46.206 +03:00 [INF] Request finished in 1.5513ms 200 application/javascript +2018-09-06 15:58:46.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:58:46.209 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:58:46.209 +03:00 [INF] Request finished in 1.166ms 200 application/javascript +2018-09-06 15:58:46.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:58:46.211 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:46.211 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:58:46.211 +03:00 [INF] Request finished in 0.9218ms 200 application/javascript +2018-09-06 15:58:46.212 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:58:46.213 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.28140000000000004ms. +2018-09-06 15:58:46.213 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:46.213 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.338ms +2018-09-06 15:58:46.213 +03:00 [INF] Request finished in 7.3735ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:46.219 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:46.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:58:46.220 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:58:46.221 +03:00 [INF] Request finished in 1.0623ms 200 image/svg+xml +2018-09-06 15:58:46.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:58:46.223 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:58:46.223 +03:00 [INF] Request finished in 1.595ms 200 image/svg+xml +2018-09-06 15:58:46.225 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:58:46.226 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.226 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.226 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.226 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.226 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:46.231 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.3912ms. +2018-09-06 15:58:46.231 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:46.231 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.114ms +2018-09-06 15:58:46.231 +03:00 [INF] Request finished in 26.5786ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:46.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:58:46.320 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:58:46.321 +03:00 [INF] Request finished in 2.3367ms 200 font/woff2 +2018-09-06 15:58:46.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:58:46.351 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:58:46.351 +03:00 [INF] Request finished in 7.227ms 200 image/jpeg +2018-09-06 15:58:46.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:58:46.518 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:58:46.518 +03:00 [INF] Request finished in 6.4355ms 200 image/png +2018-09-06 15:58:46.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:58:46.522 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:58:46.522 +03:00 [INF] Request finished in 2.123ms 200 image/png +2018-09-06 15:58:46.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:46.537 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:46.537 +03:00 [INF] Request finished in 0.9231ms 200 text/css +2018-09-06 15:58:46.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:58:46.798 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:58:46.798 +03:00 [INF] Request finished in 1.0645ms 304 text/plain +2018-09-06 15:58:46.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:58:46.835 +03:00 [INF] Request finished in 0.8557ms 404 +2018-09-06 15:58:48.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-06 15:58:48.926 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:58:48.949 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:58:48.999 +03:00 [INF] Executed action /Account/Login in 73.150900000000007ms +2018-09-06 15:58:48.999 +03:00 [INF] Request finished in 75.1012ms 200 text/html; charset=utf-8 +2018-09-06 15:58:49.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:58:49.049 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:58:49.049 +03:00 [INF] Request finished in 4.6267ms 200 text/css +2018-09-06 15:58:49.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:58:49.053 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:58:49.053 +03:00 [INF] Request finished in 2.2104ms 200 text/css +2018-09-06 15:58:49.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:58:49.061 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:58:49.061 +03:00 [INF] Request finished in 1.1767ms 200 text/css +2018-09-06 15:58:49.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:58:49.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:58:49.064 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:58:49.064 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:58:49.064 +03:00 [INF] Request finished in 4.0505ms 200 text/css +2018-09-06 15:58:49.064 +03:00 [INF] Request finished in 2.2132ms 200 text/css +2018-09-06 15:58:49.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:58:49.068 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:58:49.068 +03:00 [INF] Request finished in 2.9783ms 200 text/css +2018-09-06 15:58:49.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:49.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:58:49.078 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:49.079 +03:00 [INF] Request finished in 6.0163ms 200 text/css +2018-09-06 15:58:49.079 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:58:49.080 +03:00 [INF] Request finished in 1.8615ms 200 text/css +2018-09-06 15:58:49.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:58:49.088 +03:00 [INF] Request finished in 1.1114ms 404 +2018-09-06 15:58:49.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:58:49.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:58:49.095 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:58:49.095 +03:00 [INF] Request finished in 1.6666ms 200 application/javascript +2018-09-06 15:58:49.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:58:49.097 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:58:49.097 +03:00 [INF] Request finished in 1.7578ms 200 application/javascript +2018-09-06 15:58:49.107 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:58:49.107 +03:00 [INF] Request finished in 12.9541ms 200 application/javascript +2018-09-06 15:58:49.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:58:49.114 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:58:49.114 +03:00 [INF] Request finished in 5.2177ms 200 application/javascript +2018-09-06 15:58:49.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:58:49.120 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:58:49.120 +03:00 [INF] Request finished in 3.4911ms 200 application/javascript +2018-09-06 15:58:49.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:58:49.136 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:58:49.136 +03:00 [INF] Request finished in 1.9028ms 200 application/javascript +2018-09-06 15:58:49.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:58:49.145 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:58:49.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:58:49.145 +03:00 [INF] Request finished in 6.5378ms 200 application/javascript +2018-09-06 15:58:49.147 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:58:49.147 +03:00 [INF] Request finished in 2.1316ms 200 application/javascript +2018-09-06 15:58:49.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:58:49.162 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:58:49.162 +03:00 [INF] Request finished in 9.5675ms 200 application/javascript +2018-09-06 15:58:49.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:58:49.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:58:49.172 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:58:49.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:58:49.172 +03:00 [INF] Request finished in 2.9171ms 200 application/javascript +2018-09-06 15:58:49.173 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:58:49.173 +03:00 [INF] Request finished in 1.3521ms 200 application/javascript +2018-09-06 15:58:49.175 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:58:49.175 +03:00 [INF] Request finished in 8.8733ms 200 application/javascript +2018-09-06 15:58:49.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:58:49.188 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:58:49.188 +03:00 [INF] Request finished in 1.3589ms 200 application/javascript +2018-09-06 15:58:49.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:58:49.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:58:49.197 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:58:49.197 +03:00 [INF] Request finished in 1.3211ms 200 application/javascript +2018-09-06 15:58:49.198 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:58:49.199 +03:00 [INF] Request finished in 2.8781ms 200 application/javascript +2018-09-06 15:58:49.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:58:49.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:58:49.209 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:58:49.209 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:58:49.209 +03:00 [INF] Request finished in 2.3939ms 200 application/javascript +2018-09-06 15:58:49.209 +03:00 [INF] Request finished in 4.2992ms 200 application/javascript +2018-09-06 15:58:49.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:58:49.219 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:58:49.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:58:49.219 +03:00 [INF] Request finished in 1.3522ms 200 application/javascript +2018-09-06 15:58:49.220 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:58:49.220 +03:00 [INF] Request finished in 1.0654ms 200 application/javascript +2018-09-06 15:58:49.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:58:49.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:58:49.224 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:49.227 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:58:49.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.227 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.228 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Request finished in 6.3438ms 200 application/javascript +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.229 +03:00 [INF] Authorization failed. +2018-09-06 15:58:49.234 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.5666ms. +2018-09-06 15:58:49.234 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:49.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:58:49.234 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.1727ms +2018-09-06 15:58:49.234 +03:00 [INF] Request finished in 11.6666ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:49.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:58:49.235 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:49.237 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:58:49.237 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11570000000000001ms. +2018-09-06 15:58:49.237 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:49.237 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:58:49.237 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0335ms +2018-09-06 15:58:49.237 +03:00 [INF] Request finished in 3.0674ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:49.238 +03:00 [INF] Request finished in 3.7452ms 200 application/javascript +2018-09-06 15:58:49.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:58:49.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:58:49.243 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:58:49.243 +03:00 [INF] Request finished in 1.0901ms 200 application/javascript +2018-09-06 15:58:49.247 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:58:49.248 +03:00 [INF] Request finished in 5.6903ms 200 application/javascript +2018-09-06 15:58:49.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:58:49.252 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:58:49.252 +03:00 [INF] Request finished in 1.5694ms 200 image/svg+xml +2018-09-06 15:58:49.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:58:49.256 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:58:49.256 +03:00 [INF] Request finished in 1.009ms 200 image/svg+xml +2018-09-06 15:58:49.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:58:49.318 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:58:49.318 +03:00 [INF] Request finished in 2.2761ms 200 font/woff2 +2018-09-06 15:58:49.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:58:49.349 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:58:49.349 +03:00 [INF] Request finished in 6.8529ms 200 image/jpeg +2018-09-06 15:58:49.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:58:49.518 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:58:49.518 +03:00 [INF] Request finished in 6.0856ms 200 image/png +2018-09-06 15:58:49.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:58:49.534 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:58:49.535 +03:00 [INF] Request finished in 17.3182ms 200 image/png +2018-09-06 15:58:49.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:58:49.606 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:58:49.606 +03:00 [INF] Request finished in 3.0271ms 200 text/css +2018-09-06 15:58:49.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:58:49.810 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:58:49.810 +03:00 [INF] Request finished in 1.2727ms 304 text/plain +2018-09-06 15:58:49.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:58:49.833 +03:00 [INF] Request finished in 1.0089ms 404 +2018-09-06 15:58:55.182 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 285 +2018-09-06 15:58:55.183 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:58:55.274 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:58:55.483 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-06 15:58:55.493 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-06 15:58:55.493 +03:00 [INF] Executed action /Account/Login in 309.18350000000004ms +2018-09-06 15:58:55.493 +03:00 [INF] Request finished in 310.4912ms 302 +2018-09-06 15:58:55.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 15:58:55.879 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 15:58:55.880 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 15:58:56.296 +03:00 [INF] Executed action /Index in 417.03360000000004ms +2018-09-06 15:58:56.296 +03:00 [INF] Request finished in 767.6229ms 200 text/html; charset=utf-8 +2018-09-06 15:58:56.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:58:56.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:58:56.366 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:58:56.366 +03:00 [INF] Request finished in 1.5219ms 200 text/css +2018-09-06 15:58:56.368 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:58:56.368 +03:00 [INF] Request finished in 4.4939ms 200 text/css +2018-09-06 15:58:56.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:58:56.387 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:58:56.388 +03:00 [INF] Request finished in 1.636ms 200 text/css +2018-09-06 15:58:56.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:58:56.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:58:56.389 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:58:56.389 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:58:56.389 +03:00 [INF] Request finished in 0.8512ms 200 text/css +2018-09-06 15:58:56.389 +03:00 [INF] Request finished in 1.0318ms 200 text/css +2018-09-06 15:58:56.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:58:56.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:56.397 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:58:56.398 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:56.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:58:56.400 +03:00 [INF] Request finished in 4.7242ms 200 text/css +2018-09-06 15:58:56.400 +03:00 [INF] Request finished in 3.6167ms 200 text/css +2018-09-06 15:58:56.403 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:58:56.403 +03:00 [INF] Request finished in 3.4295ms 200 text/css +2018-09-06 15:58:56.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 15:58:56.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 15:58:56.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 15:58:56.413 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-06 15:58:56.413 +03:00 [INF] Request finished in 1.1557ms 200 image/png +2018-09-06 15:58:56.413 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 15:58:56.413 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 15:58:56.413 +03:00 [INF] Request finished in 0.9206ms 200 image/png +2018-09-06 15:58:56.413 +03:00 [INF] Request finished in 1.4968ms 200 image/png +2018-09-06 15:58:56.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 15:58:56.424 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-06 15:58:56.424 +03:00 [INF] Request finished in 1.2927ms 200 image/png +2018-09-06 15:58:56.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 15:58:56.435 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-06 15:58:56.435 +03:00 [INF] Request finished in 1.3354ms 200 image/png +2018-09-06 15:58:56.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 15:58:56.451 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-06 15:58:56.452 +03:00 [INF] Request finished in 1.8803ms 200 image/png +2018-09-06 15:58:56.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 15:58:56.478 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-06 15:58:56.478 +03:00 [INF] Request finished in 1.0764ms 200 image/png +2018-09-06 15:58:56.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 15:58:56.485 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-06 15:58:56.486 +03:00 [INF] Request finished in 2.3758ms 200 image/png +2018-09-06 15:58:56.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 15:58:56.493 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-06 15:58:56.493 +03:00 [INF] Request finished in 2.1834ms 200 image/png +2018-09-06 15:58:56.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 15:58:56.509 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-06 15:58:56.510 +03:00 [INF] Request finished in 2.968ms 200 image/png +2018-09-06 15:58:56.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 15:58:56.512 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-06 15:58:56.513 +03:00 [INF] Request finished in 1.9476ms 200 image/png +2018-09-06 15:58:56.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 15:58:56.514 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-06 15:58:56.516 +03:00 [INF] Request finished in 3.6815ms 200 image/png +2018-09-06 15:58:56.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 15:58:56.529 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-06 15:58:56.530 +03:00 [INF] Request finished in 7.3032ms 200 image/png +2018-09-06 15:58:56.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 15:58:56.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 15:58:56.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 15:58:56.536 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-06 15:58:56.536 +03:00 [INF] Request finished in 3.0878ms 200 image/png +2018-09-06 15:58:56.538 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-06 15:58:56.538 +03:00 [INF] Request finished in 2.5303ms 200 image/png +2018-09-06 15:58:56.542 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-06 15:58:56.543 +03:00 [INF] Request finished in 8.9665ms 200 image/png +2018-09-06 15:58:56.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 15:58:56.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 15:58:56.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 15:58:56.550 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-06 15:58:56.550 +03:00 [INF] Request finished in 3.1225ms 200 image/png +2018-09-06 15:58:56.550 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-06 15:58:56.550 +03:00 [INF] Request finished in 4.5269ms 200 image/png +2018-09-06 15:58:56.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 15:58:56.552 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-06 15:58:56.552 +03:00 [INF] Request finished in 1.3735ms 200 image/png +2018-09-06 15:58:56.557 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-06 15:58:56.557 +03:00 [INF] Request finished in 12.7952ms 200 image/png +2018-09-06 15:58:56.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 15:58:56.565 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-06 15:58:56.565 +03:00 [INF] Request finished in 1.8773ms 200 image/png +2018-09-06 15:58:56.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 15:58:56.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 15:58:56.571 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 15:58:56.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 15:58:56.572 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-06 15:58:56.572 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-06 15:58:56.572 +03:00 [INF] Request finished in 0.8198ms 200 image/png +2018-09-06 15:58:56.572 +03:00 [INF] Request finished in 1.7109ms 200 image/png +2018-09-06 15:58:56.572 +03:00 [INF] Request finished in 2.088ms 200 image/png +2018-09-06 15:58:56.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 15:58:56.579 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-06 15:58:56.579 +03:00 [INF] Request finished in 1.7913ms 200 image/png +2018-09-06 15:58:56.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 15:58:56.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 15:58:56.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 15:58:56.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 15:58:56.587 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-06 15:58:56.587 +03:00 [INF] Request finished in 0.7505ms 200 image/png +2018-09-06 15:58:56.587 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-06 15:58:56.587 +03:00 [INF] Request finished in 1.9582ms 200 image/png +2018-09-06 15:58:56.587 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-06 15:58:56.587 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-06 15:58:56.588 +03:00 [INF] Request finished in 1.1544ms 200 image/png +2018-09-06 15:58:56.589 +03:00 [INF] Request finished in 0.7806ms 200 image/png +2018-09-06 15:58:56.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 15:58:56.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:58:56.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:58:56.594 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-06 15:58:56.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 15:58:56.594 +03:00 [INF] Request finished in 1.4382ms 200 image/png +2018-09-06 15:58:56.594 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:58:56.594 +03:00 [INF] Request finished in 0.9624ms 200 application/javascript +2018-09-06 15:58:56.595 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-06 15:58:56.595 +03:00 [INF] Request finished in 0.8151ms 200 image/png +2018-09-06 15:58:56.597 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:58:56.597 +03:00 [INF] Request finished in 3.2973ms 200 application/javascript +2018-09-06 15:58:56.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 15:58:56.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 15:58:56.601 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-06 15:58:56.602 +03:00 [INF] Request finished in 1.0417ms 200 image/png +2018-09-06 15:58:56.602 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-06 15:58:56.602 +03:00 [INF] Request finished in 1.9766ms 200 image/png +2018-09-06 15:58:56.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 15:58:56.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 15:58:56.604 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-06 15:58:56.604 +03:00 [INF] Request finished in 0.965ms 200 image/png +2018-09-06 15:58:56.604 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-06 15:58:56.605 +03:00 [INF] Request finished in 0.9855ms 200 image/png +2018-09-06 15:58:56.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:58:56.606 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:58:56.606 +03:00 [INF] Request finished in 0.8794ms 200 application/javascript +2018-09-06 15:58:56.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:58:56.628 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:58:56.628 +03:00 [INF] Request finished in 4.241ms 200 application/javascript +2018-09-06 15:58:56.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:58:56.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:58:56.635 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:58:56.635 +03:00 [INF] Request finished in 2.3119ms 200 application/javascript +2018-09-06 15:58:56.636 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:58:56.637 +03:00 [INF] Request finished in 2.2717ms 200 application/javascript +2018-09-06 15:58:56.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:58:56.656 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:58:56.656 +03:00 [INF] Request finished in 1.1914ms 200 application/javascript +2018-09-06 15:58:56.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:58:56.657 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:58:56.657 +03:00 [INF] Request finished in 0.8833ms 200 application/javascript +2018-09-06 15:58:56.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:58:56.667 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:58:56.667 +03:00 [INF] Request finished in 2.9648ms 200 application/javascript +2018-09-06 15:58:56.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:58:56.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:58:56.676 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:58:56.676 +03:00 [INF] Request finished in 1.1016ms 200 application/javascript +2018-09-06 15:58:56.680 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:58:56.680 +03:00 [INF] Request finished in 7.6555ms 200 application/javascript +2018-09-06 15:58:56.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:58:56.683 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:58:56.683 +03:00 [INF] Request finished in 1.5141ms 200 application/javascript +2018-09-06 15:58:56.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:58:56.690 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:58:56.690 +03:00 [INF] Request finished in 1.1592ms 200 application/javascript +2018-09-06 15:58:56.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:58:56.696 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:58:56.696 +03:00 [INF] Request finished in 3.5938ms 200 font/woff2 +2018-09-06 15:58:56.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:58:56.698 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:58:56.698 +03:00 [INF] Request finished in 1.1501ms 200 application/javascript +2018-09-06 15:58:56.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:58:56.705 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:58:56.705 +03:00 [INF] Request finished in 1.7823ms 200 application/javascript +2018-09-06 15:58:56.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:58:56.719 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:58:56.719 +03:00 [INF] Request finished in 1.5562ms 200 application/javascript +2018-09-06 15:58:56.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:58:56.727 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:58:56.727 +03:00 [INF] Request finished in 0.9932ms 200 application/javascript +2018-09-06 15:58:56.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:58:56.729 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:58:56.730 +03:00 [INF] Request finished in 1.5016ms 200 application/javascript +2018-09-06 15:58:56.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:58:56.749 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:58:56.749 +03:00 [INF] Request finished in 1.5504ms 200 application/javascript +2018-09-06 15:58:56.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:58:56.753 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:58:56.753 +03:00 [INF] Request finished in 0.9756ms 200 application/javascript +2018-09-06 15:58:56.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:58:56.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:58:56.758 +03:00 [INF] Request finished in 1.7795ms 200 application/javascript +2018-09-06 15:58:56.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:58:56.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:58:56.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:58:56.773 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:58:56.773 +03:00 [INF] Request finished in 1.2639ms 200 application/javascript +2018-09-06 15:58:56.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:58:56.778 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:58:56.778 +03:00 [INF] Request finished in 2.0653ms 200 application/javascript +2018-09-06 15:58:56.802 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:56.802 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:58:56.803 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:58:56.803 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:58:56.803 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10690000000000001ms. +2018-09-06 15:58:56.803 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:56.803 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3066ms +2018-09-06 15:58:56.803 +03:00 [INF] Request finished in 37.8156ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:56.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:58:56.809 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:58:56.809 +03:00 [INF] Request finished in 0.992ms 200 image/svg+xml +2018-09-06 15:58:56.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:58:56.815 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:58:56.815 +03:00 [INF] Request finished in 1.6402ms 200 image/svg+xml +2018-09-06 15:58:56.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:58:56.827 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:58:56.827 +03:00 [INF] Request finished in 4.8219ms 200 image/jpeg +2018-09-06 15:58:56.895 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.900 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.904 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.907 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.910 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.913 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.917 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.919 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.923 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.927 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.930 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.933 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.936 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.940 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.943 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.946 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.950 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.955 +03:00 [INF] Authorization was successful. +2018-09-06 15:58:56.959 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.962 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.965 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.968 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.970 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.973 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.976 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.978 +03:00 [INF] Authorization failed. +2018-09-06 15:58:56.982 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 179.0233ms. +2018-09-06 15:58:56.999 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:58:57.000 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 197.5891ms +2018-09-06 15:58:57.000 +03:00 [INF] Request finished in 239.6441ms 200 text/plain; charset=utf-8 +2018-09-06 15:58:57.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:58:57.168 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:58:57.168 +03:00 [INF] Request finished in 1.5258ms 200 image/png +2018-09-06 15:58:57.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:58:57.176 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:58:57.176 +03:00 [INF] Request finished in 1.5701ms 200 image/png +2018-09-06 15:58:57.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:58:57.347 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:58:57.347 +03:00 [INF] Request finished in 0.9613ms 200 text/css +2018-09-06 15:58:57.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:58:57.583 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:58:57.583 +03:00 [INF] Request finished in 0.8937ms 304 text/plain +2018-09-06 15:58:57.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:58:57.618 +03:00 [INF] Request finished in 2.1589ms 404 +2018-09-06 15:59:05.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-06 15:59:05.780 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-06 15:59:05.781 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:05.835 +03:00 [INF] Executed action /Account/Login in 55.063500000000005ms +2018-09-06 15:59:05.835 +03:00 [INF] Request finished in 80.4419ms 200 text/html; charset=utf-8 +2018-09-06 15:59:05.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:59:05.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:59:05.877 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:59:05.877 +03:00 [INF] Request finished in 0.9533ms 200 text/css +2018-09-06 15:59:05.878 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:59:05.878 +03:00 [INF] Request finished in 1.8678ms 200 text/css +2018-09-06 15:59:05.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:59:05.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:59:05.900 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:59:05.900 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:59:05.900 +03:00 [INF] Request finished in 1.0831ms 200 text/css +2018-09-06 15:59:05.900 +03:00 [INF] Request finished in 1.1114ms 200 text/css +2018-09-06 15:59:05.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:59:05.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:59:05.909 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:59:05.909 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:59:05.909 +03:00 [INF] Request finished in 2.3911ms 200 text/css +2018-09-06 15:59:05.909 +03:00 [INF] Request finished in 0.9ms 200 text/css +2018-09-06 15:59:05.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:59:05.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:59:05.913 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:59:05.913 +03:00 [INF] Request finished in 1.5891ms 200 text/css +2018-09-06 15:59:05.914 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:59:05.914 +03:00 [INF] Request finished in 1.0272ms 200 text/css +2018-09-06 15:59:05.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:59:05.924 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:59:05.924 +03:00 [INF] Request finished in 4.5999ms 200 application/javascript +2018-09-06 15:59:05.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-06 15:59:05.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:59:05.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:59:05.929 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:59:05.929 +03:00 [INF] Request finished in 0.8844ms 200 application/javascript +2018-09-06 15:59:05.934 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:59:05.934 +03:00 [INF] Request finished in 5.708ms 200 application/javascript +2018-09-06 15:59:05.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:59:05.940 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:59:05.940 +03:00 [INF] Request finished in 4.6315ms 200 application/javascript +2018-09-06 15:59:05.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:59:05.949 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:59:05.950 +03:00 [INF] Request finished in 3.2795ms 200 application/javascript +2018-09-06 15:59:05.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:59:05.970 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:59:05.970 +03:00 [INF] Request finished in 1.0561ms 200 application/javascript +2018-09-06 15:59:05.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:59:05.990 +03:00 [INF] Request finished in 63.2299ms 404 +2018-09-06 15:59:05.990 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:59:05.990 +03:00 [INF] Request finished in 1.8843ms 200 application/javascript +2018-09-06 15:59:06.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:59:06.003 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:59:06.003 +03:00 [INF] Request finished in 1.0051ms 200 application/javascript +2018-09-06 15:59:06.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:59:06.014 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:59:06.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:59:06.014 +03:00 [INF] Request finished in 2.6844ms 200 application/javascript +2018-09-06 15:59:06.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:59:06.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:59:06.017 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:59:06.017 +03:00 [INF] Request finished in 1.2656ms 200 application/javascript +2018-09-06 15:59:06.018 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:59:06.018 +03:00 [INF] Request finished in 1.5696ms 200 application/javascript +2018-09-06 15:59:06.024 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:59:06.024 +03:00 [INF] Request finished in 10.1741ms 200 application/javascript +2018-09-06 15:59:06.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:59:06.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:59:06.028 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:59:06.028 +03:00 [INF] Request finished in 1.4003ms 200 application/javascript +2018-09-06 15:59:06.028 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:59:06.029 +03:00 [INF] Request finished in 0.9539ms 200 application/javascript +2018-09-06 15:59:06.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:59:06.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:59:06.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:59:06.039 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:59:06.040 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:59:06.040 +03:00 [INF] Request finished in 2.0051ms 200 application/javascript +2018-09-06 15:59:06.041 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:59:06.042 +03:00 [INF] Request finished in 5.8133ms 200 application/javascript +2018-09-06 15:59:06.042 +03:00 [INF] Request finished in 1.2602ms 200 application/javascript +2018-09-06 15:59:06.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:59:06.046 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:59:06.046 +03:00 [INF] Request finished in 2.1626ms 200 application/javascript +2018-09-06 15:59:06.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:59:06.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:59:06.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:59:06.054 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:59:06.054 +03:00 [INF] Request finished in 1.1008ms 200 application/javascript +2018-09-06 15:59:06.053 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:59:06.056 +03:00 [INF] Request finished in 4.475ms 200 application/javascript +2018-09-06 15:59:06.058 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:59:06.059 +03:00 [INF] Request finished in 7.0771ms 200 application/javascript +2018-09-06 15:59:06.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:59:06.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:59:06.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:59:06.067 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:59:06.068 +03:00 [INF] Request finished in 4.2521ms 200 application/javascript +2018-09-06 15:59:06.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:59:06.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:59:06.078 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:59:06.078 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:59:06.078 +03:00 [INF] Request finished in 0.9571ms 200 application/javascript +2018-09-06 15:59:06.078 +03:00 [INF] Request finished in 1.4281ms 200 image/svg+xml +2018-09-06 15:59:06.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:59:06.085 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:59:06.086 +03:00 [INF] Request finished in 1.4521ms 200 image/svg+xml +2018-09-06 15:59:06.109 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:06.110 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:59:06.112 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:06.113 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:59:06.113 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1153ms. +2018-09-06 15:59:06.113 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:06.113 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2383ms +2018-09-06 15:59:06.114 +03:00 [INF] Request finished in 49.0175ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:06.126 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.127 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.128 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.129 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.131 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.131 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.132 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.133 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.133 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.134 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.134 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.135 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.135 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.136 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.137 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.137 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.138 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.138 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:06.139 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.139 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.140 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.141 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.141 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.142 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.143 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.143 +03:00 [INF] Authorization failed. +2018-09-06 15:59:06.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 35.1517ms. +2018-09-06 15:59:06.145 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:06.146 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 36.3844ms +2018-09-06 15:59:06.146 +03:00 [INF] Request finished in 83.9414ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:06.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:59:06.159 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:59:06.159 +03:00 [INF] Request finished in 2.7246ms 200 font/woff2 +2018-09-06 15:59:06.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:59:06.194 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:59:06.194 +03:00 [INF] Request finished in 6.1114ms 200 image/jpeg +2018-09-06 15:59:06.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:59:06.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:59:06.421 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:59:06.421 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:59:06.422 +03:00 [INF] Request finished in 1.2461ms 200 image/png +2018-09-06 15:59:06.422 +03:00 [INF] Request finished in 1.1473ms 200 image/png +2018-09-06 15:59:06.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:59:06.443 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:59:06.443 +03:00 [INF] Request finished in 2.0658ms 200 text/css +2018-09-06 15:59:06.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:59:06.645 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:59:06.646 +03:00 [INF] Request finished in 0.7239ms 304 text/plain +2018-09-06 15:59:06.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:59:06.673 +03:00 [INF] Request finished in 0.8886ms 404 +2018-09-06 15:59:12.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-06 15:59:12.705 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 15:59:12.738 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:12.859 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 15:59:12.859 +03:00 [INF] Executed action /Blog/Index in 153.6489ms +2018-09-06 15:59:12.859 +03:00 [INF] Request finished in 429.9186ms 302 +2018-09-06 15:59:12.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:59:13.274 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:59:13.396 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:13.537 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.574 +03:00 [INF] Executed action /Blog/Posts/Index in 299.2282ms +2018-09-06 15:59:13.574 +03:00 [INF] Request finished in 704.9085ms 200 text/html; charset=utf-8 +2018-09-06 15:59:13.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:59:13.636 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:59:13.637 +03:00 [INF] Request finished in 3.9255ms 200 text/css +2018-09-06 15:59:13.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:59:13.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:59:13.649 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:59:13.649 +03:00 [INF] Request finished in 1.9533ms 200 text/css +2018-09-06 15:59:13.650 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:59:13.651 +03:00 [INF] Request finished in 2.2412ms 200 text/css +2018-09-06 15:59:13.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:59:13.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:59:13.658 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:59:13.658 +03:00 [INF] Request finished in 1.5694ms 200 text/css +2018-09-06 15:59:13.659 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:59:13.659 +03:00 [INF] Request finished in 1.2166ms 200 text/css +2018-09-06 15:59:13.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:59:13.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:59:13.673 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:59:13.673 +03:00 [INF] Request finished in 2.7311ms 200 text/css +2018-09-06 15:59:13.673 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:59:13.673 +03:00 [INF] Request finished in 2.1216ms 200 text/css +2018-09-06 15:59:13.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:59:13.684 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:59:13.684 +03:00 [INF] Request finished in 2.0577ms 200 text/css +2018-09-06 15:59:13.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718354955456997 +2018-09-06 15:59:13.696 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 15:59:13.697 +03:00 [INF] Request finished in 2.3613ms 200 text/css +2018-09-06 15:59:13.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718354955456997 +2018-09-06 15:59:13.698 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:59:13.699 +03:00 [INF] Request finished in 1.4405ms 200 text/css +2018-09-06 15:59:13.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718354955456997 +2018-09-06 15:59:13.714 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:59:13.714 +03:00 [INF] Request finished in 0.9787ms 200 text/css +2018-09-06 15:59:13.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718354955456997 +2018-09-06 15:59:13.722 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:59:13.722 +03:00 [INF] Request finished in 1.8613ms 200 text/css +2018-09-06 15:59:13.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:59:13.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:59:13.733 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:59:13.733 +03:00 [INF] Request finished in 2.0335ms 200 application/javascript +2018-09-06 15:59:13.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:59:13.745 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:59:13.746 +03:00 [INF] Request finished in 3.4849ms 200 application/javascript +2018-09-06 15:59:13.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:59:13.760 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:59:13.761 +03:00 [INF] Request finished in 1.0559ms 200 application/javascript +2018-09-06 15:59:13.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:59:13.766 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:59:13.766 +03:00 [INF] Request finished in 4.5863ms 200 application/javascript +2018-09-06 15:59:13.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:59:13.771 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:59:13.771 +03:00 [INF] Request finished in 2.1857ms 200 application/javascript +2018-09-06 15:59:13.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:59:13.777 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:59:13.777 +03:00 [INF] Request finished in 0.9ms 200 application/javascript +2018-09-06 15:59:13.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:59:13.784 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:59:13.787 +03:00 [INF] Request finished in 6.2412ms 200 application/javascript +2018-09-06 15:59:13.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:59:13.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:59:13.794 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:59:13.794 +03:00 [INF] Request finished in 1.8988ms 200 application/javascript +2018-09-06 15:59:13.794 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:59:13.794 +03:00 [INF] Request finished in 1.7632ms 200 application/javascript +2018-09-06 15:59:13.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:59:13.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:59:13.815 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:59:13.815 +03:00 [INF] Request finished in 1.2495ms 200 application/javascript +2018-09-06 15:59:13.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:59:13.819 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:59:13.820 +03:00 [INF] Request finished in 1.0737ms 200 application/javascript +2018-09-06 15:59:13.830 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:59:13.830 +03:00 [INF] Request finished in 17.1101ms 200 application/javascript +2018-09-06 15:59:13.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:59:13.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:59:13.838 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:59:13.838 +03:00 [INF] Request finished in 0.8701ms 200 application/javascript +2018-09-06 15:59:13.839 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:59:13.839 +03:00 [INF] Request finished in 2.005ms 200 application/javascript +2018-09-06 15:59:13.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:59:13.855 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:59:13.855 +03:00 [INF] Request finished in 1.6647ms 200 application/javascript +2018-09-06 15:59:13.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:59:13.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:59:13.857 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:59:13.857 +03:00 [INF] Request finished in 1.2897ms 200 application/javascript +2018-09-06 15:59:13.858 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:59:13.859 +03:00 [INF] Request finished in 2.6117ms 200 application/javascript +2018-09-06 15:59:13.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:59:13.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:59:13.863 +03:00 [INF] Request finished in 1.5733ms 200 application/javascript +2018-09-06 15:59:13.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:59:13.864 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:59:13.864 +03:00 [INF] Request finished in 1.061ms 200 application/javascript +2018-09-06 15:59:13.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:59:13.869 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:59:13.869 +03:00 [INF] Request finished in 1.2596ms 200 application/javascript +2018-09-06 15:59:13.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:59:13.872 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:59:13.872 +03:00 [INF] Request finished in 0.9993ms 200 application/javascript +2018-09-06 15:59:13.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:59:13.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:59:13.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:59:13.888 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:59:13.888 +03:00 [INF] Request finished in 0.7582ms 200 application/javascript +2018-09-06 15:59:13.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:59:13.892 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:59:13.893 +03:00 [INF] Request finished in 1.1212ms 200 application/javascript +2018-09-06 15:59:13.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718354955456997 +2018-09-06 15:59:13.895 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:59:13.895 +03:00 [INF] Request finished in 0.9583ms 200 application/javascript +2018-09-06 15:59:13.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718354955456997 +2018-09-06 15:59:13.905 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 15:59:13.905 +03:00 [INF] Request finished in 1.2406ms 200 application/javascript +2018-09-06 15:59:13.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=0 +2018-09-06 15:59:13.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:59:13.919 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:59:13.919 +03:00 [INF] Request finished in 1.756ms 200 image/svg+xml +2018-09-06 15:59:13.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:59:13.934 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:59:13.935 +03:00 [INF] Request finished in 1.9085ms 200 image/svg+xml +2018-09-06 15:59:13.969 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:13.969 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:59:13.970 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12430000000000001ms. +2018-09-06 15:59:13.970 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:13.970 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1906ms +2018-09-06 15:59:13.970 +03:00 [INF] Request finished in 82.7744ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:13.972 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:13.973 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:59:13.974 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.975 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.975 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.976 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.977 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.977 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.978 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.979 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.979 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.980 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.980 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.981 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.982 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.983 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.985 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.986 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.986 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.987 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:13.988 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.988 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.989 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.989 +03:00 [INF] Request finished in 76.7717ms 404 +2018-09-06 15:59:13.989 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.990 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.991 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.991 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.992 +03:00 [INF] Authorization failed. +2018-09-06 15:59:13.994 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.6159ms. +2018-09-06 15:59:13.994 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:13.994 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.933500000000002ms +2018-09-06 15:59:13.994 +03:00 [INF] Request finished in 114.8902ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:14.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:59:14.060 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:59:14.060 +03:00 [INF] Request finished in 2.1256ms 200 font/woff2 +2018-09-06 15:59:14.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:59:14.081 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:59:14.081 +03:00 [INF] Request finished in 7.6927ms 200 image/jpeg +2018-09-06 15:59:14.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=0 +2018-09-06 15:59:14.203 +03:00 [INF] Request finished in 27.4185ms 404 +2018-09-06 15:59:14.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:59:14.337 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:59:14.337 +03:00 [INF] Request finished in 3.1742ms 200 text/css +2018-09-06 15:59:14.374 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:59:14.385 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:14.424 +03:00 [INF] Executed action /Blog/Posts/Detail in 50.0341ms +2018-09-06 15:59:14.435 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:59:14.477 +03:00 [INF] Request finished in 750.8557ms 500 text/html; charset=utf-8 +2018-09-06 15:59:14.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:59:14.631 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:59:14.631 +03:00 [INF] Request finished in 1.1939ms 200 image/png +2018-09-06 15:59:14.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 15:59:14.634 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 15:59:14.635 +03:00 [INF] Request finished in 2.1495ms 200 image/png +2018-09-06 15:59:14.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:59:14.678 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:59:14.678 +03:00 [INF] Request finished in 0.7027ms 304 text/plain +2018-09-06 15:59:14.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:59:14.768 +03:00 [INF] Request finished in 1.369ms 404 +2018-09-06 15:59:22.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 15:59:32.331 +03:00 [INF] Loaded modules: +2018-09-06 15:59:32.345 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 15:59:32.345 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 15:59:32.345 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 15:59:32.345 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 15:59:32.345 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 15:59:32.346 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 15:59:32.347 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 15:59:33.962 +03:00 [INF] Initialized all modules. +2018-09-06 15:59:34.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 15:59:36.476 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 15:59:36.646 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:37.018 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.304 +03:00 [INF] Executed action /Blog/Posts/Index in 1823.7289ms +2018-09-06 15:59:38.320 +03:00 [INF] Request finished in 4221.6932ms 200 text/html; charset=utf-8 +2018-09-06 15:59:38.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 15:59:38.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 15:59:38.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 15:59:38.391 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 15:59:38.391 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 15:59:38.391 +03:00 [INF] Request finished in 13.9857ms 200 text/css +2018-09-06 15:59:38.391 +03:00 [INF] Request finished in 12.8624ms 200 text/css +2018-09-06 15:59:38.402 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 15:59:38.402 +03:00 [INF] Request finished in 29.6774ms 200 text/css +2018-09-06 15:59:38.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 15:59:38.410 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 15:59:38.410 +03:00 [INF] Request finished in 3.7764ms 200 text/css +2018-09-06 15:59:38.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 15:59:38.414 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 15:59:38.415 +03:00 [INF] Request finished in 1.1473ms 200 text/css +2018-09-06 15:59:38.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:59:38.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 15:59:38.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 15:59:38.424 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 15:59:38.425 +03:00 [INF] Request finished in 2.7021ms 200 text/css +2018-09-06 15:59:38.425 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 15:59:38.425 +03:00 [INF] Request finished in 1.9802ms 200 text/css +2018-09-06 15:59:38.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.carousel.min.css?_v=636718354955456997 +2018-09-06 15:59:38.426 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:59:38.427 +03:00 [INF] Request finished in 4.5272ms 200 text/css +2018-09-06 15:59:38.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718354955456997 +2018-09-06 15:59:38.429 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 15:59:38.429 +03:00 [INF] Request finished in 1.8558ms 200 text/css +2018-09-06 15:59:38.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.default.min.css?_v=636718354955456997 +2018-09-06 15:59:38.429 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.carousel.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/carousel/min.css' +2018-09-06 15:59:38.429 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.default.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/theme/default/min.css' +2018-09-06 15:59:38.429 +03:00 [INF] Request finished in 4.5861ms 200 text/css +2018-09-06 15:59:38.429 +03:00 [INF] Request finished in 0.6565ms 200 text/css +2018-09-06 15:59:38.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.green.min.css?_v=636718354955456997 +2018-09-06 15:59:38.451 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl.theme.green.min.css'. Physical path: '/Pages/Blog/Shared/owlcarousel/dist/assets/owl/theme/green/min.css' +2018-09-06 15:59:38.451 +03:00 [INF] Request finished in 1.1517ms 200 text/css +2018-09-06 15:59:38.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 15:59:38.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 15:59:38.469 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 15:59:38.469 +03:00 [INF] Request finished in 1.1254ms 200 application/javascript +2018-09-06 15:59:38.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 15:59:38.476 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 15:59:38.476 +03:00 [INF] Request finished in 6.7259ms 200 application/javascript +2018-09-06 15:59:38.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 15:59:38.489 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 15:59:38.490 +03:00 [INF] Request finished in 1.1805ms 200 application/javascript +2018-09-06 15:59:38.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 15:59:38.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 15:59:38.501 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 15:59:38.501 +03:00 [INF] Request finished in 1.5457ms 200 application/javascript +2018-09-06 15:59:38.506 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 15:59:38.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 15:59:38.506 +03:00 [INF] Request finished in 6.8946ms 200 application/javascript +2018-09-06 15:59:38.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 15:59:38.510 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 15:59:38.510 +03:00 [INF] Request finished in 3.265ms 200 application/javascript +2018-09-06 15:59:38.511 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 15:59:38.511 +03:00 [INF] Request finished in 1.6738ms 200 application/javascript +2018-09-06 15:59:38.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 15:59:38.513 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 15:59:38.513 +03:00 [INF] Request finished in 0.956ms 200 application/javascript +2018-09-06 15:59:38.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 15:59:38.524 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 15:59:38.525 +03:00 [INF] Request finished in 3.0901ms 200 application/javascript +2018-09-06 15:59:38.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 15:59:38.538 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 15:59:38.538 +03:00 [INF] Request finished in 9.8929ms 200 application/javascript +2018-09-06 15:59:38.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 15:59:38.555 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 15:59:38.561 +03:00 [INF] Request finished in 9.0171ms 200 application/javascript +2018-09-06 15:59:38.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 15:59:38.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 15:59:38.578 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 15:59:38.578 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 15:59:38.578 +03:00 [INF] Request finished in 0.8971ms 200 application/javascript +2018-09-06 15:59:38.578 +03:00 [INF] Request finished in 0.9859ms 200 application/javascript +2018-09-06 15:59:38.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 15:59:38.584 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 15:59:38.584 +03:00 [INF] Request finished in 0.8999ms 200 application/javascript +2018-09-06 15:59:38.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 15:59:38.586 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 15:59:38.586 +03:00 [INF] Request finished in 1.1017ms 200 application/javascript +2018-09-06 15:59:38.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 15:59:38.595 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 15:59:38.595 +03:00 [INF] Request finished in 1.6355ms 200 application/javascript +2018-09-06 15:59:38.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 15:59:38.604 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 15:59:38.604 +03:00 [INF] Request finished in 1.6225ms 200 application/javascript +2018-09-06 15:59:38.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 15:59:38.607 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 15:59:38.607 +03:00 [INF] Request finished in 1.415ms 200 application/javascript +2018-09-06 15:59:38.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 15:59:38.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 15:59:38.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 15:59:38.613 +03:00 [INF] Request finished in 0.9404ms 200 application/javascript +2018-09-06 15:59:38.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 15:59:38.613 +03:00 [INF] Request finished in 1.3051ms 200 application/javascript +2018-09-06 15:59:38.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 15:59:38.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 15:59:38.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 15:59:38.626 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 15:59:38.627 +03:00 [INF] Request finished in 1.5403ms 200 application/javascript +2018-09-06 15:59:38.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 15:59:38.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 15:59:38.635 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 15:59:38.636 +03:00 [INF] Request finished in 1.0293ms 200 application/javascript +2018-09-06 15:59:38.636 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 15:59:38.636 +03:00 [INF] Request finished in 2.0679ms 200 application/javascript +2018-09-06 15:59:38.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718354955456997 +2018-09-06 15:59:38.645 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 15:59:38.646 +03:00 [INF] Request finished in 1.1901ms 200 application/javascript +2018-09-06 15:59:38.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718354955456997 +2018-09-06 15:59:38.648 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 15:59:38.648 +03:00 [INF] Request finished in 0.8995ms 200 application/javascript +2018-09-06 15:59:38.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 15:59:38.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=0 +2018-09-06 15:59:38.655 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 15:59:38.655 +03:00 [INF] Request finished in 1.464ms 200 image/svg+xml +2018-09-06 15:59:38.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 15:59:38.666 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 15:59:38.666 +03:00 [INF] Request finished in 1.6586ms 200 image/svg+xml +2018-09-06 15:59:38.717 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:38.729 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 15:59:38.749 +03:00 [INF] Request finished in 95.1488ms 404 +2018-09-06 15:59:38.770 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 15:59:38.772 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 15:59:38.787 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.792 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.798 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 15:59:38.802 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.804 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 15:59:38.804 +03:00 [INF] Request finished in 2.5287ms 200 font/woff2 +2018-09-06 15:59:38.807 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.817 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.821 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.828 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.835 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.838 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 15:59:38.845 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.849 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.850 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 15:59:38.850 +03:00 [INF] Request finished in 9.7376ms 200 image/jpeg +2018-09-06 15:59:38.854 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.861 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.864 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.868 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.870 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.886 +03:00 [INF] Authorization was successful. +2018-09-06 15:59:38.889 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.895 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.899 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.902 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.905 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.910 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.916 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.919 +03:00 [INF] Authorization failed. +2018-09-06 15:59:38.923 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 142.7635ms. +2018-09-06 15:59:38.934 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:38.937 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 220.1605ms +2018-09-06 15:59:38.938 +03:00 [INF] Request finished in 320.886ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:38.963 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 192.6243ms. +2018-09-06 15:59:38.969 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 15:59:38.970 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 241.20340000000002ms +2018-09-06 15:59:38.970 +03:00 [INF] Request finished in 344.4736ms 200 text/plain; charset=utf-8 +2018-09-06 15:59:39.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/blogcss/owlcarousel/dist/owl.carousel.min.js?_v=0 +2018-09-06 15:59:39.094 +03:00 [INF] Request finished in 31.5019ms 404 +2018-09-06 15:59:39.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 15:59:39.217 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 15:59:39.217 +03:00 [INF] Request finished in 0.9206ms 200 text/css +2018-09-06 15:59:39.250 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 15:59:39.262 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 15:59:39.295 +03:00 [INF] Executed action /Blog/Posts/Detail in 44.0706ms +2018-09-06 15:59:39.302 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 15:59:39.338 +03:00 [INF] Request finished in 871.8496ms 500 text/html; charset=utf-8 +2018-09-06 15:59:39.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 15:59:39.371 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 15:59:39.372 +03:00 [INF] Request finished in 1.0024ms 200 image/png +2018-09-06 15:59:39.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 15:59:39.373 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 15:59:39.373 +03:00 [INF] Request finished in 0.8512ms 200 image/png +2018-09-06 15:59:39.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 15:59:39.395 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 15:59:39.397 +03:00 [INF] Request finished in 2.6737ms 304 text/plain +2018-09-06 15:59:39.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 15:59:39.440 +03:00 [INF] Request finished in 1.6994ms 404 +2018-09-06 16:00:12.785 +03:00 [INF] Loaded modules: +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:00:12.801 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:00:12.802 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:00:12.803 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:00:14.419 +03:00 [INF] Initialized all modules. +2018-09-06 16:00:14.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:00:16.976 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:00:17.141 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:00:18.734 +03:00 [INF] Executed action /Blog/Posts/New in 1751.5803ms +2018-09-06 16:00:18.741 +03:00 [INF] Request finished in 3980.8939ms 200 text/html; charset=utf-8 +2018-09-06 16:00:18.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 16:00:18.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 16:00:18.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 16:00:18.801 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:00:18.802 +03:00 [INF] Request finished in 10.1037ms 200 text/css +2018-09-06 16:00:18.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 16:00:18.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 16:00:18.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:00:18.809 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:00:18.811 +03:00 [INF] Request finished in 3.3862ms 200 text/css +2018-09-06 16:00:18.811 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:00:18.811 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:00:18.817 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:00:18.818 +03:00 [INF] Request finished in 10.9527ms 200 text/css +2018-09-06 16:00:18.822 +03:00 [INF] Request finished in 30.5533ms 200 text/css +2018-09-06 16:00:18.822 +03:00 [INF] Request finished in 17.5219ms 200 text/css +2018-09-06 16:00:18.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:00:18.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:00:18.828 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:00:18.828 +03:00 [INF] Request finished in 36.6601ms 200 text/css +2018-09-06 16:00:18.828 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:00:18.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636648463774224425 +2018-09-06 16:00:18.828 +03:00 [INF] Request finished in 1.0285ms 200 text/css +2018-09-06 16:00:18.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636648463777474414 +2018-09-06 16:00:18.832 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-06 16:00:18.832 +03:00 [INF] Request finished in 3.961ms 200 text/css +2018-09-06 16:00:18.834 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:00:18.834 +03:00 [INF] Request finished in 1.7552ms 200 text/css +2018-09-06 16:00:18.834 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:00:18.835 +03:00 [INF] Request finished in 6.9632ms 200 text/css +2018-09-06 16:00:18.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636648463776504408 +2018-09-06 16:00:18.840 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:00:18.840 +03:00 [INF] Request finished in 1.2962ms 200 text/css +2018-09-06 16:00:18.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636648463774914417 +2018-09-06 16:00:18.851 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:00:18.852 +03:00 [INF] Request finished in 2.8914ms 200 text/css +2018-09-06 16:00:18.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718354955456997 +2018-09-06 16:00:18.858 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-06 16:00:18.858 +03:00 [INF] Request finished in 3.2241ms 200 text/css +2018-09-06 16:00:18.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 16:00:18.862 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:00:18.862 +03:00 [INF] Request finished in 2.3168ms 200 application/javascript +2018-09-06 16:00:18.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-06 16:00:18.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 16:00:18.891 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:00:18.891 +03:00 [INF] Request finished in 5.9607ms 200 application/javascript +2018-09-06 16:00:18.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 16:00:18.900 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:00:18.901 +03:00 [INF] Request finished in 1.6047ms 200 application/javascript +2018-09-06 16:00:18.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 16:00:18.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 16:00:18.919 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:00:18.919 +03:00 [INF] Request finished in 8.6095ms 200 application/javascript +2018-09-06 16:00:18.922 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 16:00:18.922 +03:00 [INF] Request finished in 4.7036ms 200 application/javascript +2018-09-06 16:00:18.924 +03:00 [INF] Request finished in 57.2121ms 404 +2018-09-06 16:00:18.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 16:00:18.929 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:00:18.929 +03:00 [INF] Request finished in 1.7936ms 200 application/javascript +2018-09-06 16:00:18.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 16:00:18.936 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:00:18.936 +03:00 [INF] Request finished in 1.8284ms 200 application/javascript +2018-09-06 16:00:18.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 16:00:18.942 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:00:18.943 +03:00 [INF] Request finished in 1.1715ms 200 application/javascript +2018-09-06 16:00:18.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 16:00:18.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 16:00:18.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 16:00:18.952 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:00:18.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 16:00:18.952 +03:00 [INF] Request finished in 1.3145ms 200 application/javascript +2018-09-06 16:00:18.952 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:00:18.955 +03:00 [INF] Request finished in 3.6475ms 200 application/javascript +2018-09-06 16:00:18.957 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:00:18.957 +03:00 [INF] Request finished in 2.4065ms 200 application/javascript +2018-09-06 16:00:18.962 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:00:18.962 +03:00 [INF] Request finished in 10.9235ms 200 application/javascript +2018-09-06 16:00:18.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 16:00:18.964 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:00:18.965 +03:00 [INF] Request finished in 1.6646ms 200 application/javascript +2018-09-06 16:00:18.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 16:00:18.973 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:00:18.973 +03:00 [INF] Request finished in 1.1351ms 200 application/javascript +2018-09-06 16:00:18.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:00:18.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:00:18.986 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:00:18.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:00:18.987 +03:00 [INF] Request finished in 1.577ms 200 application/javascript +2018-09-06 16:00:18.987 +03:00 [INF] Request finished in 3.2217ms 200 application/javascript +2018-09-06 16:00:18.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:00:19.000 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:00:19.000 +03:00 [INF] Request finished in 6.273ms 200 application/javascript +2018-09-06 16:00:19.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:00:19.002 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:00:19.002 +03:00 [INF] Request finished in 1.923ms 200 application/javascript +2018-09-06 16:00:19.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:00:19.004 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:00:19.004 +03:00 [INF] Request finished in 1.8056ms 200 application/javascript +2018-09-06 16:00:19.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:00:19.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:00:19.017 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:00:19.017 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:00:19.017 +03:00 [INF] Request finished in 2.2249ms 200 application/javascript +2018-09-06 16:00:19.017 +03:00 [INF] Request finished in 5.3561ms 200 application/javascript +2018-09-06 16:00:19.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:00:19.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:00:19.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:00:19.041 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:00:19.041 +03:00 [INF] Request finished in 1.0099ms 200 application/javascript +2018-09-06 16:00:19.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:00:19.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=0 +2018-09-06 16:00:19.059 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:00:19.059 +03:00 [INF] Request finished in 1.0054ms 200 application/javascript +2018-09-06 16:00:19.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636648463774484419 +2018-09-06 16:00:19.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636648463774234435 +2018-09-06 16:00:19.071 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-06 16:00:19.071 +03:00 [INF] Request finished in 11.8415ms 200 application/javascript +2018-09-06 16:00:19.078 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-06 16:00:19.078 +03:00 [INF] Request finished in 13.2189ms 200 application/javascript +2018-09-06 16:00:19.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636648463774234435 +2018-09-06 16:00:19.089 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-06 16:00:19.089 +03:00 [INF] Request finished in 2.2804ms 200 application/javascript +2018-09-06 16:00:19.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636648463774234435 +2018-09-06 16:00:19.101 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-06 16:00:19.101 +03:00 [INF] Request finished in 2.5867ms 200 application/javascript +2018-09-06 16:00:19.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636648463774234435 +2018-09-06 16:00:19.110 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-06 16:00:19.110 +03:00 [INF] Request finished in 1.7558ms 200 application/javascript +2018-09-06 16:00:19.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636648463775334413 +2018-09-06 16:00:19.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718354955456997 +2018-09-06 16:00:19.126 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-06 16:00:19.127 +03:00 [INF] Request finished in 1.1152ms 200 application/javascript +2018-09-06 16:00:19.132 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-06 16:00:19.133 +03:00 [INF] Request finished in 18.2659ms 200 application/javascript +2018-09-06 16:00:19.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:00:19.142 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:00:19.142 +03:00 [INF] Request finished in 3.804ms 200 image/svg+xml +2018-09-06 16:00:19.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:00:19.145 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:00:19.146 +03:00 [INF] Request finished in 1.1085ms 200 image/svg+xml +2018-09-06 16:00:19.147 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:00:19.163 +03:00 [INF] Request finished in 105.6106ms 404 +2018-09-06 16:00:19.169 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:00:19.191 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:00:19.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:00:19.201 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:00:19.203 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:00:19.203 +03:00 [INF] Request finished in 3.1903ms 200 font/woff2 +2018-09-06 16:00:19.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:00:19.255 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:00:19.256 +03:00 [INF] Request finished in 13.1275ms 200 image/jpeg +2018-09-06 16:00:19.307 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 100.842ms. +2018-09-06 16:00:19.316 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:00:19.317 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 147.9666ms +2018-09-06 16:00:19.317 +03:00 [INF] Request finished in 276.9208ms 200 text/plain; charset=utf-8 +2018-09-06 16:00:19.334 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.340 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.343 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.345 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.348 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.352 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.355 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.358 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.362 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.366 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.369 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.371 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.373 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.375 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.377 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.379 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.382 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.386 +03:00 [INF] Authorization was successful. +2018-09-06 16:00:19.388 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.390 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.393 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.396 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.398 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.401 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.403 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.405 +03:00 [INF] Authorization failed. +2018-09-06 16:00:19.422 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 231.0431ms. +2018-09-06 16:00:19.434 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:00:19.436 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 288.60310000000004ms +2018-09-06 16:00:19.439 +03:00 [INF] Request finished in 419.2573ms 200 text/plain; charset=utf-8 +2018-09-06 16:00:19.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=0 +2018-09-06 16:00:19.543 +03:00 [INF] Request finished in 32.0722ms 404 +2018-09-06 16:00:19.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:00:19.652 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:00:19.652 +03:00 [INF] Request finished in 1.0301ms 200 image/png +2018-09-06 16:00:19.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:00:19.772 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:00:19.772 +03:00 [INF] Request finished in 1.4858ms 200 image/png +2018-09-06 16:00:19.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:00:19.881 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:00:19.882 +03:00 [INF] Request finished in 1.2156ms 200 text/css +2018-09-06 16:00:19.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:00:19.996 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:00:19.998 +03:00 [INF] Request finished in 2.2683ms 304 text/plain +2018-09-06 16:00:20.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:00:20.020 +03:00 [INF] Request finished in 1.0627ms 404 +2018-09-06 16:01:17.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:01:17.750 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:01:17.753 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:01:17.814 +03:00 [INF] Executed action /Blog/Posts/New in 63.395ms +2018-09-06 16:01:17.814 +03:00 [INF] Request finished in 94.7ms 200 text/html; charset=utf-8 +2018-09-06 16:01:17.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636648463774314426 +2018-09-06 16:01:17.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636648463774364426 +2018-09-06 16:01:17.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636648463774894405 +2018-09-06 16:01:17.851 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:01:17.851 +03:00 [INF] Request finished in 1.0617ms 200 text/css +2018-09-06 16:01:17.851 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:01:17.851 +03:00 [INF] Request finished in 1.0982ms 200 text/css +2018-09-06 16:01:17.854 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:01:17.857 +03:00 [INF] Request finished in 8.6598ms 200 text/css +2018-09-06 16:01:17.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636648463774324420 +2018-09-06 16:01:17.863 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:01:17.865 +03:00 [INF] Request finished in 1.8743ms 200 text/css +2018-09-06 16:01:17.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636648463774304392 +2018-09-06 16:01:17.878 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:01:17.878 +03:00 [INF] Request finished in 1.25ms 200 text/css +2018-09-06 16:01:17.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:01:17.886 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:01:17.886 +03:00 [INF] Request finished in 1.4035ms 200 text/css +2018-09-06 16:01:17.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:01:17.899 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:01:17.899 +03:00 [INF] Request finished in 1.2519ms 200 text/css +2018-09-06 16:01:17.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:01:17.914 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:01:17.914 +03:00 [INF] Request finished in 1.3042ms 200 text/css +2018-09-06 16:01:17.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636648463774224425 +2018-09-06 16:01:17.920 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-06 16:01:17.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636648463776504408 +2018-09-06 16:01:17.920 +03:00 [INF] Request finished in 2.1615ms 200 text/css +2018-09-06 16:01:17.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636648463777474414 +2018-09-06 16:01:17.921 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:01:17.922 +03:00 [INF] Request finished in 1.4721ms 200 text/css +2018-09-06 16:01:17.923 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:01:17.923 +03:00 [INF] Request finished in 1.7944ms 200 text/css +2018-09-06 16:01:17.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718354955456997 +2018-09-06 16:01:17.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636648463774914417 +2018-09-06 16:01:17.931 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-06 16:01:17.931 +03:00 [INF] Request finished in 0.8275ms 200 text/css +2018-09-06 16:01:17.931 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:01:17.932 +03:00 [INF] Request finished in 1.0477ms 200 text/css +2018-09-06 16:01:17.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-06 16:01:17.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636648463774304392 +2018-09-06 16:01:17.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636648463774204412 +2018-09-06 16:01:17.944 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:01:17.944 +03:00 [INF] Request finished in 1.3854ms 200 application/javascript +2018-09-06 16:01:17.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636648463774364426 +2018-09-06 16:01:17.952 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:01:17.952 +03:00 [INF] Request finished in 10.0209ms 200 application/javascript +2018-09-06 16:01:17.953 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:01:17.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636648463774374422 +2018-09-06 16:01:17.954 +03:00 [INF] Request finished in 3.6943ms 200 application/javascript +2018-09-06 16:01:17.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636648463774214422 +2018-09-06 16:01:17.959 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-06 16:01:17.959 +03:00 [INF] Request finished in 3.5799ms 200 application/javascript +2018-09-06 16:01:17.961 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:01:17.961 +03:00 [INF] Request finished in 7.3863ms 200 application/javascript +2018-09-06 16:01:17.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636648463774194410 +2018-09-06 16:01:17.970 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:01:17.970 +03:00 [INF] Request finished in 1.9672ms 200 application/javascript +2018-09-06 16:01:17.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636648463774194410 +2018-09-06 16:01:17.977 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:01:17.977 +03:00 [INF] Request finished in 2.2156ms 200 application/javascript +2018-09-06 16:01:17.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636648463774184416 +2018-09-06 16:01:17.984 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:01:17.984 +03:00 [INF] Request finished in 0.9372ms 200 application/javascript +2018-09-06 16:01:17.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636648463774404458 +2018-09-06 16:01:17.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636648463774364426 +2018-09-06 16:01:17.995 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:01:17.995 +03:00 [INF] Request finished in 1.075ms 200 application/javascript +2018-09-06 16:01:17.998 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:01:17.998 +03:00 [INF] Request finished in 3.9329ms 200 application/javascript +2018-09-06 16:01:18.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636648463774334419 +2018-09-06 16:01:18.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636648463774214422 +2018-09-06 16:01:18.003 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:01:18.003 +03:00 [INF] Request finished in 1.4656ms 200 application/javascript +2018-09-06 16:01:18.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636648463775054410 +2018-09-06 16:01:18.015 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:01:18.015 +03:00 [INF] Request finished in 1.1228ms 200 application/javascript +2018-09-06 16:01:18.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636648463774204412 +2018-09-06 16:01:18.020 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:01:18.020 +03:00 [INF] Request finished in 1.217ms 200 application/javascript +2018-09-06 16:01:18.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:01:18.020 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:01:18.020 +03:00 [INF] Request finished in 19.934ms 200 application/javascript +2018-09-06 16:01:18.021 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:01:18.021 +03:00 [INF] Request finished in 0.823ms 200 application/javascript +2018-09-06 16:01:18.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:01:18.026 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:01:18.026 +03:00 [INF] Request finished in 5.3763ms 200 application/javascript +2018-09-06 16:01:18.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:01:18.033 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:01:18.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:01:18.033 +03:00 [INF] Request finished in 4.8195ms 200 application/javascript +2018-09-06 16:01:18.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:01:18.034 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:01:18.034 +03:00 [INF] Request finished in 0.9995ms 200 application/javascript +2018-09-06 16:01:18.037 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:01:18.037 +03:00 [INF] Request finished in 2.9048ms 200 application/javascript +2018-09-06 16:01:18.037 +03:00 [INF] Request finished in 97.4795ms 404 +2018-09-06 16:01:18.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:01:18.041 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:01:18.041 +03:00 [INF] Request finished in 3.791ms 200 application/javascript +2018-09-06 16:01:18.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:01:18.044 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:01:18.044 +03:00 [INF] Request finished in 2.0961ms 200 application/javascript +2018-09-06 16:01:18.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:01:18.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:01:18.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:01:18.075 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:01:18.076 +03:00 [INF] Request finished in 1.1829ms 200 application/javascript +2018-09-06 16:01:18.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:01:18.085 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:01:18.085 +03:00 [INF] Request finished in 3.4492ms 200 application/javascript +2018-09-06 16:01:18.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=0 +2018-09-06 16:01:18.097 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:01:18.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:01:18.099 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22740000000000002ms. +2018-09-06 16:01:18.099 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:01:18.099 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6367ms +2018-09-06 16:01:18.100 +03:00 [INF] Request finished in 51.3293ms 200 text/plain; charset=utf-8 +2018-09-06 16:01:18.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636648463774484419 +2018-09-06 16:01:18.111 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-06 16:01:18.111 +03:00 [INF] Request finished in 11.2954ms 200 application/javascript +2018-09-06 16:01:18.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636648463774234435 +2018-09-06 16:01:18.120 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-06 16:01:18.120 +03:00 [INF] Request finished in 2.8782ms 200 application/javascript +2018-09-06 16:01:18.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636648463774234435 +2018-09-06 16:01:18.129 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-06 16:01:18.131 +03:00 [INF] Request finished in 2.7804ms 200 application/javascript +2018-09-06 16:01:18.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636648463774234435 +2018-09-06 16:01:18.137 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-06 16:01:18.137 +03:00 [INF] Request finished in 1.2725ms 200 application/javascript +2018-09-06 16:01:18.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636648463774234435 +2018-09-06 16:01:18.148 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-06 16:01:18.148 +03:00 [INF] Request finished in 3.2358ms 200 application/javascript +2018-09-06 16:01:18.149 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:01:18.150 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:01:18.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636648463775334413 +2018-09-06 16:01:18.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718354955456997 +2018-09-06 16:01:18.163 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-06 16:01:18.164 +03:00 [INF] Request finished in 0.8502ms 200 application/javascript +2018-09-06 16:01:18.165 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-06 16:01:18.165 +03:00 [INF] Request finished in 11.9042ms 200 application/javascript +2018-09-06 16:01:18.166 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.167 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.168 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.168 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.169 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.170 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.171 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.171 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.172 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:01:18.173 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.174 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.174 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:01:18.174 +03:00 [INF] Request finished in 1.8883ms 200 image/svg+xml +2018-09-06 16:01:18.175 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.176 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.177 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.178 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.179 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.179 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.180 +03:00 [INF] Authorization was successful. +2018-09-06 16:01:18.181 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.182 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.183 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.184 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.185 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:01:18.186 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.186 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:01:18.186 +03:00 [INF] Request finished in 1.3028ms 200 image/svg+xml +2018-09-06 16:01:18.187 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.188 +03:00 [INF] Authorization failed. +2018-09-06 16:01:18.192 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 41.5733ms. +2018-09-06 16:01:18.192 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:01:18.193 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 43.517900000000004ms +2018-09-06 16:01:18.193 +03:00 [INF] Request finished in 144.4319ms 200 text/plain; charset=utf-8 +2018-09-06 16:01:18.218 +03:00 [INF] Request finished in 121.2669ms 404 +2018-09-06 16:01:18.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:01:18.344 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:01:18.345 +03:00 [INF] Request finished in 2.4258ms 200 font/woff2 +2018-09-06 16:01:18.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:01:18.408 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:01:18.408 +03:00 [INF] Request finished in 8.3744ms 200 image/jpeg +2018-09-06 16:01:18.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:01:18.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:01:18.566 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:01:18.566 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:01:18.566 +03:00 [INF] Request finished in 1.0301ms 200 image/png +2018-09-06 16:01:18.566 +03:00 [INF] Request finished in 1.0679ms 200 image/png +2018-09-06 16:01:18.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:01:18.729 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:01:18.729 +03:00 [INF] Request finished in 1.011ms 304 text/plain +2018-09-06 16:01:18.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:01:18.733 +03:00 [INF] Request finished in 0.7876ms 404 +2018-09-06 16:01:50.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:01:50.628 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:01:50.631 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:01:50.709 +03:00 [INF] Executed action /Blog/Posts/New in 81.0253ms +2018-09-06 16:01:50.709 +03:00 [INF] Request finished in 116.025ms 200 text/html; charset=utf-8 +2018-09-06 16:01:52.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:01:52.410 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:01:52.412 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:01:52.471 +03:00 [INF] Executed action /Blog/Posts/New in 61.208400000000005ms +2018-09-06 16:01:52.471 +03:00 [INF] Request finished in 86.7213ms 200 text/html; charset=utf-8 +2018-09-06 16:01:57.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636648463776504408 +2018-09-06 16:01:57.911 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:01:57.911 +03:00 [INF] Request finished in 1.1062ms 200 text/css +2018-09-06 16:02:02.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636648463774914417 +2018-09-06 16:02:02.934 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:02:02.934 +03:00 [INF] Request finished in 1.3522ms 200 text/css +2018-09-06 16:02:04.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636648463777474414 +2018-09-06 16:02:04.013 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:02:04.014 +03:00 [INF] Request finished in 1.311ms 200 text/css +2018-09-06 16:35:08.192 +03:00 [INF] Loaded modules: +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:35:08.214 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:35:08.215 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:35:08.216 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:35:08.216 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:35:10.069 +03:00 [INF] Initialized all modules. +2018-09-06 16:35:10.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-06 16:35:13.127 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 16:35:13.206 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:35:13.391 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 16:35:13.397 +03:00 [INF] Executed action /Blog/Index in 265.0972ms +2018-09-06 16:35:13.415 +03:00 [INF] Request finished in 3195.8396ms 302 +2018-09-06 16:35:13.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:35:13.924 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:35:14.069 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:35:14.363 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:15.840 +03:00 [INF] Executed action /Blog/Posts/Index in 1915.6183ms +2018-09-06 16:35:15.847 +03:00 [INF] Request finished in 2415.3145ms 200 text/html; charset=utf-8 +2018-09-06 16:35:15.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:35:15.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:35:15.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:35:15.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:35:15.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:35:15.992 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:35:15.993 +03:00 [INF] Request finished in 16.743ms 200 text/css +2018-09-06 16:35:15.993 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:35:15.993 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:35:15.993 +03:00 [INF] Request finished in 10.5804ms 200 text/css +2018-09-06 16:35:15.993 +03:00 [INF] Request finished in 9.9899ms 200 text/css +2018-09-06 16:35:15.995 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:35:15.995 +03:00 [INF] Request finished in 11.6125ms 200 text/css +2018-09-06 16:35:16.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:35:16.000 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:35:16.001 +03:00 [INF] Request finished in 1.1503ms 200 text/css +2018-09-06 16:35:16.001 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:35:16.001 +03:00 [INF] Request finished in 25.172ms 200 text/css +2018-09-06 16:35:16.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:35:16.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:35:16.014 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:35:16.014 +03:00 [INF] Request finished in 1.3829ms 200 text/css +2018-09-06 16:35:16.014 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:35:16.014 +03:00 [INF] Request finished in 0.8962ms 200 text/css +2018-09-06 16:35:16.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:35:16.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:35:16.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:35:16.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:35:16.039 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:35:16.040 +03:00 [INF] Request finished in 2.0045ms 200 text/css +2018-09-06 16:35:16.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:35:16.056 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:35:16.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:35:16.068 +03:00 [INF] Request finished in 13.3666ms 200 application/javascript +2018-09-06 16:35:16.082 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:35:16.082 +03:00 [INF] Request finished in 24.1004ms 200 application/javascript +2018-09-06 16:35:16.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:35:16.107 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:35:16.107 +03:00 [INF] Request finished in 1.0237ms 200 application/javascript +2018-09-06 16:35:16.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:35:16.117 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:35:16.117 +03:00 [INF] Request finished in 5.5886ms 200 application/javascript +2018-09-06 16:35:16.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:35:16.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:35:16.125 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:35:16.125 +03:00 [INF] Request finished in 1.2642ms 200 application/javascript +2018-09-06 16:35:16.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:35:16.164 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:35:16.164 +03:00 [INF] Request finished in 2.3892ms 200 application/javascript +2018-09-06 16:35:16.180 +03:00 [INF] Request finished in 151.6996ms 404 +2018-09-06 16:35:16.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:35:16.193 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:35:16.194 +03:00 [INF] Request finished in 2.8846ms 200 application/javascript +2018-09-06 16:35:16.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:35:16.203 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:35:16.203 +03:00 [INF] Request finished in 1.249ms 200 application/javascript +2018-09-06 16:35:16.208 +03:00 [INF] Request finished in 86.847ms 404 +2018-09-06 16:35:16.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:35:16.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:35:16.225 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:35:16.225 +03:00 [INF] Request finished in 2.2282ms 200 application/javascript +2018-09-06 16:35:16.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:35:16.231 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:35:16.231 +03:00 [INF] Request finished in 3.1429ms 200 application/javascript +2018-09-06 16:35:16.234 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:35:16.234 +03:00 [INF] Request finished in 12.3022ms 200 application/javascript +2018-09-06 16:35:16.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:35:16.240 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:35:16.240 +03:00 [INF] Request finished in 1.3668ms 200 application/javascript +2018-09-06 16:35:16.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:35:16.242 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:35:16.242 +03:00 [INF] Request finished in 0.8595ms 200 application/javascript +2018-09-06 16:35:16.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:35:16.247 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:35:16.247 +03:00 [INF] Request finished in 1.6724ms 200 application/javascript +2018-09-06 16:35:16.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:35:16.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:35:16.257 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:35:16.257 +03:00 [INF] Request finished in 1.4312ms 200 application/javascript +2018-09-06 16:35:16.258 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:35:16.258 +03:00 [INF] Request finished in 1.7087ms 200 application/javascript +2018-09-06 16:35:16.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:35:16.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:35:16.274 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:35:16.274 +03:00 [INF] Request finished in 1.2497ms 200 application/javascript +2018-09-06 16:35:16.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:35:16.276 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:35:16.279 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:35:16.280 +03:00 [INF] Request finished in 4.3017ms 200 application/javascript +2018-09-06 16:35:16.280 +03:00 [INF] Request finished in 6.6471ms 200 application/javascript +2018-09-06 16:35:16.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:35:16.290 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:35:16.290 +03:00 [INF] Request finished in 1.2896ms 200 application/javascript +2018-09-06 16:35:16.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:35:16.300 +03:00 [INF] Request finished in 283.9693ms 404 +2018-09-06 16:35:16.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:35:16.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:35:16.312 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:35:16.313 +03:00 [INF] Request finished in 2.0694ms 200 application/javascript +2018-09-06 16:35:16.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:35:16.320 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:35:16.321 +03:00 [INF] Request finished in 4.6131ms 200 application/javascript +2018-09-06 16:35:16.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:35:16.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:35:16.333 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:35:16.333 +03:00 [INF] Request finished in 4.3664ms 200 application/javascript +2018-09-06 16:35:16.334 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:35:16.334 +03:00 [INF] Request finished in 2.7146ms 200 application/javascript +2018-09-06 16:35:16.348 +03:00 [INF] Request finished in 322.6748ms 404 +2018-09-06 16:35:16.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:35:16.352 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:35:16.353 +03:00 [INF] Request finished in 2.828ms 200 application/javascript +2018-09-06 16:35:16.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:35:16.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:35:16.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:35:16.356 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:35:16.356 +03:00 [INF] Request finished in 2.0727ms 200 image/svg+xml +2018-09-06 16:35:16.356 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:35:16.356 +03:00 [INF] Request finished in 1.2498ms 200 image/svg+xml +2018-09-06 16:35:16.397 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:35:16.421 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:35:16.449 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:35:16.464 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:35:16.479 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.486 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.491 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.498 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.502 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.513 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:35:16.536 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:35:16.536 +03:00 [INF] Request finished in 8.8362ms 200 image/jpeg +2018-09-06 16:35:16.545 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:35:16.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:35:16.561 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:35:16.561 +03:00 [INF] Request finished in 3.8548ms 200 font/woff2 +2018-09-06 16:35:16.570 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.594 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.603 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.609 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.620 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.624 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.628 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 155.53400000000002ms. +2018-09-06 16:35:16.633 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.638 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.638 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:35:16.639 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 217.99120000000002ms +2018-09-06 16:35:16.640 +03:00 [INF] Request finished in 333.8492ms 200 text/plain; charset=utf-8 +2018-09-06 16:35:16.648 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.663 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.678 +03:00 [INF] Authorization was successful. +2018-09-06 16:35:16.689 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.692 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.697 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.703 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.709 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.715 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.724 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.734 +03:00 [INF] Authorization failed. +2018-09-06 16:35:16.750 +03:00 [INF] Request finished in 203.1726ms 404 +2018-09-06 16:35:16.782 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 332.63300000000004ms. +2018-09-06 16:35:16.793 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:35:16.794 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 396.8675ms +2018-09-06 16:35:16.794 +03:00 [INF] Request finished in 503.768ms 200 text/plain; charset=utf-8 +2018-09-06 16:35:17.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:35:17.198 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:35:17.198 +03:00 [INF] Request finished in 2.1763ms 200 image/png +2018-09-06 16:35:17.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:35:17.201 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:35:17.201 +03:00 [INF] Request finished in 0.9408ms 200 image/png +2018-09-06 16:35:17.218 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:35:17.239 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:35:17.293 +03:00 [INF] Executed action /Blog/Posts/Detail in 74.7656ms +2018-09-06 16:35:17.314 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:35:17.369 +03:00 [INF] Request finished in 1012.8057ms 500 text/html; charset=utf-8 +2018-09-06 16:35:17.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:35:17.527 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:35:17.529 +03:00 [INF] Request finished in 2.9816ms 304 text/plain +2018-09-06 16:35:17.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:35:17.535 +03:00 [INF] Request finished in 1.8673ms 404 +2018-09-06 16:36:00.645 +03:00 [INF] Loaded modules: +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:36:00.659 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:36:00.660 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:36:00.661 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:36:00.662 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:36:00.662 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:36:02.383 +03:00 [INF] Initialized all modules. +2018-09-06 16:36:02.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:36:04.802 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:36:04.975 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:06.575 +03:00 [INF] Executed action /Blog/Posts/New in 1769.1747ms +2018-09-06 16:36:06.584 +03:00 [INF] Request finished in 4021.8299ms 200 text/html; charset=utf-8 +2018-09-06 16:36:06.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:36:06.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:36:06.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:36:06.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:36:06.665 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:36:06.666 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:36:06.668 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:36:06.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:36:06.670 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:36:06.671 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:36:06.676 +03:00 [INF] Request finished in 21.8248ms 200 text/css +2018-09-06 16:36:06.676 +03:00 [INF] Request finished in 6.6196ms 200 text/css +2018-09-06 16:36:06.676 +03:00 [INF] Request finished in 17.7487ms 200 text/css +2018-09-06 16:36:06.676 +03:00 [INF] Request finished in 11.7877ms 200 text/css +2018-09-06 16:36:06.676 +03:00 [INF] Request finished in 27.7988ms 200 text/css +2018-09-06 16:36:06.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:36:06.683 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:36:06.683 +03:00 [INF] Request finished in 1.0418ms 200 text/css +2018-09-06 16:36:06.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:36:06.725 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:36:06.726 +03:00 [INF] Request finished in 2.5848ms 200 text/css +2018-09-06 16:36:06.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:36:06.728 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:36:06.728 +03:00 [INF] Request finished in 2.0363ms 200 text/css +2018-09-06 16:36:06.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718376879993195 +2018-09-06 16:36:06.730 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-06 16:36:06.731 +03:00 [INF] Request finished in 1.264ms 200 text/css +2018-09-06 16:36:06.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718376886213220 +2018-09-06 16:36:06.740 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:36:06.740 +03:00 [INF] Request finished in 1.2532ms 200 text/css +2018-09-06 16:36:06.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718376884063239 +2018-09-06 16:36:06.741 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:36:06.741 +03:00 [INF] Request finished in 1.1157ms 200 text/css +2018-09-06 16:36:06.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718376880833243 +2018-09-06 16:36:06.752 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:36:06.752 +03:00 [INF] Request finished in 1.067ms 200 text/css +2018-09-06 16:36:06.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:36:06.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718375696392517 +2018-09-06 16:36:06.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:36:06.754 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:36:06.754 +03:00 [INF] Request finished in 0.9588ms 200 application/javascript +2018-09-06 16:36:06.755 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-06 16:36:06.755 +03:00 [INF] Request finished in 1.3453ms 200 text/css +2018-09-06 16:36:06.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:36:06.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:36:06.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:36:06.821 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:36:06.821 +03:00 [INF] Request finished in 32.8208ms 200 application/javascript +2018-09-06 16:36:06.826 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:36:06.826 +03:00 [INF] Request finished in 73.1541ms 200 application/javascript +2018-09-06 16:36:06.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-06 16:36:06.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:36:06.838 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:36:06.838 +03:00 [INF] Request finished in 49.1181ms 200 application/javascript +2018-09-06 16:36:06.847 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:36:06.847 +03:00 [INF] Request finished in 87.4866ms 200 application/javascript +2018-09-06 16:36:06.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:36:06.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:36:06.853 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:36:06.853 +03:00 [INF] Request finished in 1.0782ms 200 application/javascript +2018-09-06 16:36:06.853 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:36:06.854 +03:00 [INF] Request finished in 1.0803ms 200 application/javascript +2018-09-06 16:36:06.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:36:06.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:36:06.873 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:36:06.873 +03:00 [INF] Request finished in 2.3292ms 200 application/javascript +2018-09-06 16:36:06.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:36:06.879 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:36:06.879 +03:00 [INF] Request finished in 2.7561ms 200 application/javascript +2018-09-06 16:36:06.883 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:36:06.883 +03:00 [INF] Request finished in 10.8965ms 200 application/javascript +2018-09-06 16:36:06.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:36:06.891 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:36:06.891 +03:00 [INF] Request finished in 0.8623ms 200 application/javascript +2018-09-06 16:36:06.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:36:06.893 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:36:06.893 +03:00 [INF] Request finished in 0.9912ms 200 application/javascript +2018-09-06 16:36:06.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:36:06.905 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:36:06.905 +03:00 [INF] Request finished in 1.0964ms 200 application/javascript +2018-09-06 16:36:06.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:36:06.916 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:36:06.916 +03:00 [INF] Request finished in 1.3912ms 200 application/javascript +2018-09-06 16:36:06.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:36:06.918 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:36:06.918 +03:00 [INF] Request finished in 1.3736ms 200 application/javascript +2018-09-06 16:36:06.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:36:06.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:36:06.926 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:36:06.926 +03:00 [INF] Request finished in 1.2707ms 200 application/javascript +2018-09-06 16:36:06.931 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:36:06.932 +03:00 [INF] Request finished in 6.2421ms 200 application/javascript +2018-09-06 16:36:06.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:36:06.935 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:36:06.935 +03:00 [INF] Request finished in 1.3955ms 200 application/javascript +2018-09-06 16:36:06.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:36:06.940 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:36:06.940 +03:00 [INF] Request finished in 0.9696ms 200 application/javascript +2018-09-06 16:36:06.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:36:06.946 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:36:06.946 +03:00 [INF] Request finished in 3.6062ms 200 application/javascript +2018-09-06 16:36:06.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:36:06.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:36:06.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:36:06.955 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:36:06.956 +03:00 [INF] Request finished in 0.9457ms 200 application/javascript +2018-09-06 16:36:06.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718376880173192 +2018-09-06 16:36:06.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:36:06.968 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-06 16:36:06.968 +03:00 [INF] Request finished in 1.393ms 200 application/javascript +2018-09-06 16:36:06.968 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:36:06.968 +03:00 [INF] Request finished in 1.5177ms 200 application/javascript +2018-09-06 16:36:06.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718376880253277 +2018-09-06 16:36:06.981 +03:00 [INF] Request finished in 191.854ms 404 +2018-09-06 16:36:06.981 +03:00 [INF] Request finished in 191.7253ms 404 +2018-09-06 16:36:06.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718376880013215 +2018-09-06 16:36:06.987 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-06 16:36:06.988 +03:00 [INF] Request finished in 12.5986ms 200 application/javascript +2018-09-06 16:36:06.989 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-06 16:36:06.989 +03:00 [INF] Request finished in 3.2396ms 200 application/javascript +2018-09-06 16:36:06.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718376879993195 +2018-09-06 16:36:06.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718376879993195 +2018-09-06 16:36:06.995 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-06 16:36:06.995 +03:00 [INF] Request finished in 1.6732ms 200 application/javascript +2018-09-06 16:36:06.999 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-06 16:36:07.000 +03:00 [INF] Request finished in 6.7102ms 200 application/javascript +2018-09-06 16:36:07.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718376880003191 +2018-09-06 16:36:07.006 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-06 16:36:07.006 +03:00 [INF] Request finished in 2.3344ms 200 application/javascript +2018-09-06 16:36:07.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718376881703228 +2018-09-06 16:36:07.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718375696392517 +2018-09-06 16:36:07.016 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-06 16:36:07.016 +03:00 [INF] Request finished in 2.044ms 200 application/javascript +2018-09-06 16:36:07.020 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-06 16:36:07.020 +03:00 [INF] Request finished in 7.0682ms 200 application/javascript +2018-09-06 16:36:07.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:36:07.033 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:36:07.033 +03:00 [INF] Request finished in 1.3401ms 200 image/svg+xml +2018-09-06 16:36:07.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:36:07.037 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:36:07.037 +03:00 [INF] Request finished in 0.9295ms 200 image/svg+xml +2018-09-06 16:36:07.071 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:07.071 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:07.110 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:36:07.113 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:36:07.201 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 82.794800000000009ms. +2018-09-06 16:36:07.207 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:07.208 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 136.7064ms +2018-09-06 16:36:07.209 +03:00 [INF] Request finished in 257.3695ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:07.248 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.254 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.260 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.266 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.269 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.273 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.276 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:36:07.280 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.282 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:36:07.283 +03:00 [INF] Request finished in 5.3753ms 200 font/woff2 +2018-09-06 16:36:07.285 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.289 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.292 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.295 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.299 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.302 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.304 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.307 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.309 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:36:07.314 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:07.317 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.320 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.321 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:36:07.322 +03:00 [INF] Request finished in 8.1403ms 200 image/jpeg +2018-09-06 16:36:07.324 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.327 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.331 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.334 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.336 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.339 +03:00 [INF] Authorization failed. +2018-09-06 16:36:07.371 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 260.6908ms. +2018-09-06 16:36:07.388 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:07.391 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 319.47860000000003ms +2018-09-06 16:36:07.393 +03:00 [INF] Request finished in 442.28ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:07.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-06 16:36:07.617 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-06 16:36:07.617 +03:00 [INF] Request finished in 0.7215ms 200 image/png +2018-09-06 16:36:07.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:36:07.780 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:36:07.780 +03:00 [INF] Request finished in 1.1384ms 200 image/png +2018-09-06 16:36:07.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:36:07.787 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:36:07.787 +03:00 [INF] Request finished in 1.0862ms 200 image/png +2018-09-06 16:36:08.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:36:08.142 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:36:08.144 +03:00 [INF] Request finished in 2.7197ms 304 text/plain +2018-09-06 16:36:08.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:36:08.147 +03:00 [INF] Request finished in 1.1176ms 404 +2018-09-06 16:36:08.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:36:09.427 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:36:09.439 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:09.566 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.592 +03:00 [INF] Executed action /Blog/Posts/Index in 164.08520000000001ms +2018-09-06 16:36:09.592 +03:00 [INF] Request finished in 688.1275ms 200 text/html; charset=utf-8 +2018-09-06 16:36:09.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:36:09.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:36:09.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:36:09.661 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:36:09.661 +03:00 [INF] Request finished in 1.0389ms 200 text/css +2018-09-06 16:36:09.662 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:36:09.662 +03:00 [INF] Request finished in 2.9349ms 200 text/css +2018-09-06 16:36:09.662 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:36:09.662 +03:00 [INF] Request finished in 1.3713ms 200 text/css +2018-09-06 16:36:09.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:36:09.684 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:36:09.684 +03:00 [INF] Request finished in 1.7789ms 200 text/css +2018-09-06 16:36:09.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:36:09.688 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:36:09.688 +03:00 [INF] Request finished in 1.1771ms 200 text/css +2018-09-06 16:36:09.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:36:09.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:36:09.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:36:09.699 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:36:09.699 +03:00 [INF] Request finished in 2.7759ms 200 text/css +2018-09-06 16:36:09.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:36:09.701 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:36:09.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:36:09.702 +03:00 [INF] Request finished in 3.2464ms 200 text/css +2018-09-06 16:36:09.703 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:36:09.704 +03:00 [INF] Request finished in 5.7463ms 200 text/css +2018-09-06 16:36:09.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:36:09.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:36:09.715 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:36:09.715 +03:00 [INF] Request finished in 2.3819ms 200 text/css +2018-09-06 16:36:09.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:36:09.735 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:36:09.735 +03:00 [INF] Request finished in 1.686ms 200 application/javascript +2018-09-06 16:36:09.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:36:09.760 +03:00 [INF] Request finished in 58.8651ms 404 +2018-09-06 16:36:09.760 +03:00 [INF] Request finished in 60.1305ms 404 +2018-09-06 16:36:09.765 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:36:09.765 +03:00 [INF] Request finished in 6.4577ms 200 application/javascript +2018-09-06 16:36:09.768 +03:00 [INF] Request finished in 60.84ms 404 +2018-09-06 16:36:09.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:36:09.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:36:09.778 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:36:09.778 +03:00 [INF] Request finished in 1.0818ms 200 application/javascript +2018-09-06 16:36:09.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:36:09.784 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:36:09.785 +03:00 [INF] Request finished in 5.8358ms 200 application/javascript +2018-09-06 16:36:09.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:36:09.786 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:36:09.786 +03:00 [INF] Request finished in 1.2012ms 200 application/javascript +2018-09-06 16:36:09.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:36:09.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:36:09.791 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:36:09.791 +03:00 [INF] Request finished in 1.0149ms 200 application/javascript +2018-09-06 16:36:09.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:36:09.801 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:36:09.801 +03:00 [INF] Request finished in 0.9995ms 200 application/javascript +2018-09-06 16:36:09.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:36:09.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:36:09.811 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:36:09.811 +03:00 [INF] Request finished in 2.5954ms 200 application/javascript +2018-09-06 16:36:09.817 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:36:09.817 +03:00 [INF] Request finished in 8.7074ms 200 application/javascript +2018-09-06 16:36:09.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:36:09.818 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:36:09.818 +03:00 [INF] Request finished in 0.8668ms 200 application/javascript +2018-09-06 16:36:09.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:36:09.826 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:36:09.827 +03:00 [INF] Request finished in 1.6143ms 200 application/javascript +2018-09-06 16:36:09.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:36:09.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:36:09.835 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:36:09.836 +03:00 [INF] Request finished in 1.2503ms 200 application/javascript +2018-09-06 16:36:09.836 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:36:09.836 +03:00 [INF] Request finished in 0.6863ms 200 application/javascript +2018-09-06 16:36:09.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:36:09.844 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:36:09.844 +03:00 [INF] Request finished in 1.0787ms 200 application/javascript +2018-09-06 16:36:09.855 +03:00 [INF] Request finished in 68.698ms 404 +2018-09-06 16:36:09.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:36:09.868 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:36:09.869 +03:00 [INF] Request finished in 1.439ms 200 application/javascript +2018-09-06 16:36:09.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:36:09.892 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:36:09.893 +03:00 [INF] Request finished in 1.126ms 200 application/javascript +2018-09-06 16:36:09.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:36:09.907 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:36:09.907 +03:00 [INF] Request finished in 1.2934ms 200 application/javascript +2018-09-06 16:36:09.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:36:09.909 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:36:09.909 +03:00 [INF] Request finished in 1.2893ms 200 application/javascript +2018-09-06 16:36:09.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:36:09.917 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:36:09.917 +03:00 [INF] Request finished in 1.3951ms 200 application/javascript +2018-09-06 16:36:09.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:36:09.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:36:09.927 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:36:09.927 +03:00 [INF] Request finished in 1.1233ms 200 application/javascript +2018-09-06 16:36:09.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:36:09.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:36:09.940 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:36:09.940 +03:00 [INF] Request finished in 0.9491ms 200 application/javascript +2018-09-06 16:36:09.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:36:09.948 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:36:09.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:36:09.948 +03:00 [INF] Request finished in 2.8618ms 200 application/javascript +2018-09-06 16:36:09.950 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:36:09.950 +03:00 [INF] Request finished in 1.9878ms 200 application/javascript +2018-09-06 16:36:09.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:36:09.955 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:36:09.956 +03:00 [INF] Request finished in 1.0181ms 200 application/javascript +2018-09-06 16:36:09.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:36:09.964 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:36:09.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:36:09.967 +03:00 [INF] Request finished in 5.1624ms 200 application/javascript +2018-09-06 16:36:09.968 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:36:09.968 +03:00 [INF] Request finished in 5.9255ms 200 image/svg+xml +2018-09-06 16:36:09.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:36:09.971 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:36:09.972 +03:00 [INF] Request finished in 1.0538ms 200 image/svg+xml +2018-09-06 16:36:09.985 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:09.986 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:36:09.987 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.988 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.989 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.989 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.990 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.990 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:09.990 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.991 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.991 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:36:09.991 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2093ms. +2018-09-06 16:36:09.992 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.992 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:09.992 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6241ms +2018-09-06 16:36:09.992 +03:00 [INF] Request finished in 60.9504ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:09.992 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.993 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.993 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.994 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.995 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.995 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.996 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.996 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.997 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.998 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:09.999 +03:00 [INF] Authorization failed. +2018-09-06 16:36:09.999 +03:00 [INF] Authorization failed. +2018-09-06 16:36:09.999 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.000 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.001 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.001 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.002 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.002 +03:00 [INF] Authorization failed. +2018-09-06 16:36:10.004 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.0475ms. +2018-09-06 16:36:10.004 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:10.004 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.596600000000002ms +2018-09-06 16:36:10.004 +03:00 [INF] Request finished in 77.7657ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:10.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:36:10.143 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:36:10.143 +03:00 [INF] Request finished in 2.093ms 200 font/woff2 +2018-09-06 16:36:10.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:36:10.173 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:36:10.173 +03:00 [INF] Request finished in 6.4382ms 200 image/jpeg +2018-09-06 16:36:10.300 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:36:10.312 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:10.347 +03:00 [INF] Executed action /Blog/Posts/Detail in 46.9255ms +2018-09-06 16:36:10.363 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:36:10.402 +03:00 [INF] Request finished in 629.9084ms 500 text/html; charset=utf-8 +2018-09-06 16:36:10.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:36:10.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:36:10.424 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:36:10.424 +03:00 [INF] Request finished in 1.7682ms 200 image/png +2018-09-06 16:36:10.424 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:36:10.424 +03:00 [INF] Request finished in 1.97ms 200 image/png +2018-09-06 16:36:10.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:36:10.557 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:36:10.557 +03:00 [INF] Request finished in 0.8784ms 304 text/plain +2018-09-06 16:36:10.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:36:10.559 +03:00 [INF] Request finished in 1.1121ms 404 +2018-09-06 16:36:20.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:36:27.540 +03:00 [INF] Loaded modules: +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:36:27.554 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:36:27.555 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:36:27.556 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:36:29.141 +03:00 [INF] Initialized all modules. +2018-09-06 16:36:29.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:36:31.524 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:36:31.691 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:32.037 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.295 +03:00 [INF] Executed action /Blog/Posts/Index in 1766.3868ms +2018-09-06 16:36:33.310 +03:00 [INF] Request finished in 3987.7137ms 200 text/html; charset=utf-8 +2018-09-06 16:36:33.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:36:33.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:36:33.347 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:36:33.347 +03:00 [INF] Request finished in 8.2002ms 200 text/css +2018-09-06 16:36:33.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:36:33.357 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:36:33.357 +03:00 [INF] Request finished in 5.8388ms 200 text/css +2018-09-06 16:36:33.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:36:33.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:36:33.365 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:36:33.365 +03:00 [INF] Request finished in 1.4919ms 200 text/css +2018-09-06 16:36:33.367 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:36:33.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:36:33.367 +03:00 [INF] Request finished in 2.1183ms 200 text/css +2018-09-06 16:36:33.367 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:36:33.367 +03:00 [INF] Request finished in 27.2087ms 200 text/css +2018-09-06 16:36:33.368 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:36:33.368 +03:00 [INF] Request finished in 1.4296ms 200 text/css +2018-09-06 16:36:33.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:36:33.372 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:36:33.373 +03:00 [INF] Request finished in 2.4451ms 200 text/css +2018-09-06 16:36:33.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:36:33.381 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:36:33.381 +03:00 [INF] Request finished in 1.261ms 200 text/css +2018-09-06 16:36:33.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:36:33.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:36:33.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:36:33.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:36:33.451 +03:00 [INF] Request finished in 68.0021ms 404 +2018-09-06 16:36:33.451 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:36:33.451 +03:00 [INF] Request finished in 2.7104ms 200 text/css +2018-09-06 16:36:33.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:36:33.479 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:36:33.479 +03:00 [INF] Request finished in 1.0758ms 200 application/javascript +2018-09-06 16:36:33.480 +03:00 [INF] Request finished in 66.9302ms 404 +2018-09-06 16:36:33.483 +03:00 [INF] Request finished in 67.0328ms 404 +2018-09-06 16:36:33.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:36:33.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:36:33.496 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:36:33.496 +03:00 [INF] Request finished in 4.8935ms 200 application/javascript +2018-09-06 16:36:33.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:36:33.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:36:33.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:36:33.504 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:36:33.505 +03:00 [INF] Request finished in 2.1083ms 200 application/javascript +2018-09-06 16:36:33.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:36:33.507 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:36:33.508 +03:00 [INF] Request finished in 6.4156ms 200 application/javascript +2018-09-06 16:36:33.509 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:36:33.509 +03:00 [INF] Request finished in 1.8312ms 200 application/javascript +2018-09-06 16:36:33.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:36:33.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:36:33.522 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:36:33.522 +03:00 [INF] Request finished in 2.3296ms 200 application/javascript +2018-09-06 16:36:33.522 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:36:33.522 +03:00 [INF] Request finished in 6.2174ms 200 application/javascript +2018-09-06 16:36:33.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:36:33.535 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:36:33.535 +03:00 [INF] Request finished in 3.9284ms 200 application/javascript +2018-09-06 16:36:33.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:36:33.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:36:33.547 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:36:33.547 +03:00 [INF] Request finished in 1.7975ms 200 application/javascript +2018-09-06 16:36:33.555 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:36:33.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:36:33.561 +03:00 [INF] Request finished in 20.8078ms 200 application/javascript +2018-09-06 16:36:33.562 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:36:33.562 +03:00 [INF] Request finished in 4.2819ms 200 application/javascript +2018-09-06 16:36:33.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:36:33.569 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:36:33.569 +03:00 [INF] Request finished in 1.6791ms 200 application/javascript +2018-09-06 16:36:33.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:36:33.573 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:36:33.573 +03:00 [INF] Request finished in 3.1873ms 200 application/javascript +2018-09-06 16:36:33.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:36:33.575 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:36:33.575 +03:00 [INF] Request finished in 1.7742ms 200 application/javascript +2018-09-06 16:36:33.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:36:33.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:36:33.587 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:36:33.587 +03:00 [INF] Request finished in 1.9531ms 200 application/javascript +2018-09-06 16:36:33.587 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:36:33.587 +03:00 [INF] Request finished in 1.3283ms 200 application/javascript +2018-09-06 16:36:33.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:36:33.594 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:36:33.594 +03:00 [INF] Request finished in 1.6919ms 200 application/javascript +2018-09-06 16:36:33.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:36:33.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:36:33.597 +03:00 [INF] Request finished in 1.8612ms 200 application/javascript +2018-09-06 16:36:33.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:36:33.599 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:36:33.599 +03:00 [INF] Request finished in 1.0479ms 200 application/javascript +2018-09-06 16:36:33.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:36:33.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:36:33.611 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:36:33.612 +03:00 [INF] Request finished in 1.1596ms 200 application/javascript +2018-09-06 16:36:33.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:36:33.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:36:33.626 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:36:33.626 +03:00 [INF] Request finished in 1.1207ms 200 application/javascript +2018-09-06 16:36:33.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:36:33.644 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:36:33.644 +03:00 [INF] Request finished in 1.7312ms 200 application/javascript +2018-09-06 16:36:33.656 +03:00 [INF] Request finished in 154.6759ms 404 +2018-09-06 16:36:33.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:36:33.657 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:36:33.657 +03:00 [INF] Request finished in 1.0019ms 200 application/javascript +2018-09-06 16:36:33.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:36:33.658 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:36:33.658 +03:00 [INF] Request finished in 0.6345ms 200 application/javascript +2018-09-06 16:36:33.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:36:33.666 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:36:33.666 +03:00 [INF] Request finished in 1.3289ms 200 application/javascript +2018-09-06 16:36:33.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:36:33.675 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:36:33.675 +03:00 [INF] Request finished in 1.7913ms 200 image/svg+xml +2018-09-06 16:36:33.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:36:33.678 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:36:33.678 +03:00 [INF] Request finished in 0.7884ms 200 image/svg+xml +2018-09-06 16:36:33.716 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:33.717 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:33.755 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:36:33.757 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:36:33.768 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.772 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.776 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.779 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.782 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.784 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.787 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.791 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.795 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.798 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.801 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.805 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.809 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.812 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.815 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.818 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.823 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.835 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:33.838 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.841 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.844 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.847 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.850 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.853 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.853 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 89.7517ms. +2018-09-06 16:36:33.858 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.861 +03:00 [INF] Authorization failed. +2018-09-06 16:36:33.863 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:33.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 147.7722ms +2018-09-06 16:36:33.865 +03:00 [INF] Request finished in 253.3157ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:33.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:36:33.879 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:36:33.879 +03:00 [INF] Request finished in 2.4189ms 200 font/woff2 +2018-09-06 16:36:33.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:36:33.898 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 143.0369ms. +2018-09-06 16:36:33.903 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:36:33.904 +03:00 [INF] Request finished in 8.1286ms 200 image/jpeg +2018-09-06 16:36:33.909 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:33.909 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 193.017ms +2018-09-06 16:36:33.909 +03:00 [INF] Request finished in 300.2568ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:34.209 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:36:34.227 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:34.259 +03:00 [INF] Executed action /Blog/Posts/Detail in 49.8688ms +2018-09-06 16:36:34.269 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:36:34.303 +03:00 [INF] Request finished in 814.7724ms 500 text/html; charset=utf-8 +2018-09-06 16:36:34.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:36:34.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:36:34.334 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:36:34.334 +03:00 [INF] Request finished in 1.2337ms 200 image/png +2018-09-06 16:36:34.334 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:36:34.334 +03:00 [INF] Request finished in 1.5226ms 200 image/png +2018-09-06 16:36:34.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:36:34.387 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:36:34.390 +03:00 [INF] Request finished in 3.897ms 304 text/plain +2018-09-06 16:36:34.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:36:34.402 +03:00 [INF] Request finished in 0.9147ms 404 +2018-09-06 16:36:43.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:36:49.402 +03:00 [INF] Loaded modules: +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:36:49.417 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:36:49.418 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:36:49.419 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:36:49.420 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:36:49.421 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:36:51.034 +03:00 [INF] Initialized all modules. +2018-09-06 16:36:51.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:36:53.512 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:36:53.690 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:54.098 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:55.607 +03:00 [INF] Executed action /Blog/Posts/Index in 2089.5407ms +2018-09-06 16:36:55.628 +03:00 [INF] Request finished in 4269.6438ms 200 text/html; charset=utf-8 +2018-09-06 16:36:55.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:36:55.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:36:55.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:36:55.711 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:36:55.711 +03:00 [INF] Request finished in 7.3367ms 200 text/css +2018-09-06 16:36:55.712 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:36:55.712 +03:00 [INF] Request finished in 22.6417ms 200 text/css +2018-09-06 16:36:55.718 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:36:55.719 +03:00 [INF] Request finished in 28.9687ms 200 text/css +2018-09-06 16:36:55.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:36:55.809 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:36:55.809 +03:00 [INF] Request finished in 1.5512ms 200 text/css +2018-09-06 16:36:55.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:36:55.822 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:36:55.822 +03:00 [INF] Request finished in 2.026ms 200 text/css +2018-09-06 16:36:55.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:36:55.862 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:36:55.867 +03:00 [INF] Request finished in 6.7426ms 200 text/css +2018-09-06 16:36:55.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:36:55.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:36:55.870 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:36:55.870 +03:00 [INF] Request finished in 3.0717ms 200 text/css +2018-09-06 16:36:55.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:36:55.883 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:36:55.884 +03:00 [INF] Request finished in 16.1886ms 200 text/css +2018-09-06 16:36:55.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:36:55.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:36:55.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:36:55.915 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:36:55.915 +03:00 [INF] Request finished in 5.6103ms 200 text/css +2018-09-06 16:36:55.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:36:55.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:36:55.933 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:36:55.933 +03:00 [INF] Request finished in 2.3664ms 200 application/javascript +2018-09-06 16:36:55.938 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:36:55.938 +03:00 [INF] Request finished in 7.3495ms 200 application/javascript +2018-09-06 16:36:55.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:36:55.946 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:36:55.946 +03:00 [INF] Request finished in 2.5661ms 200 application/javascript +2018-09-06 16:36:55.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:36:55.953 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:36:55.953 +03:00 [INF] Request finished in 6.5827ms 200 application/javascript +2018-09-06 16:36:55.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:36:55.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:36:55.982 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:36:55.982 +03:00 [INF] Request finished in 3.2756ms 200 application/javascript +2018-09-06 16:36:55.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:36:55.996 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:36:55.996 +03:00 [INF] Request finished in 1.7529ms 200 application/javascript +2018-09-06 16:36:56.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:36:56.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:36:56.004 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:36:56.004 +03:00 [INF] Request finished in 1.0062ms 200 application/javascript +2018-09-06 16:36:56.005 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:36:56.006 +03:00 [INF] Request finished in 2.0402ms 200 application/javascript +2018-09-06 16:36:56.010 +03:00 [INF] Request finished in 109.0336ms 404 +2018-09-06 16:36:56.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:36:56.021 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:36:56.021 +03:00 [INF] Request finished in 1.318ms 200 application/javascript +2018-09-06 16:36:56.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:36:56.022 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:36:56.023 +03:00 [INF] Request finished in 0.9441ms 200 application/javascript +2018-09-06 16:36:56.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:36:56.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:36:56.034 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:36:56.034 +03:00 [INF] Request finished in 0.9369ms 200 application/javascript +2018-09-06 16:36:56.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:36:56.038 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:36:56.038 +03:00 [INF] Request finished in 9.6829ms 200 application/javascript +2018-09-06 16:36:56.039 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:36:56.039 +03:00 [INF] Request finished in 1.1012ms 200 application/javascript +2018-09-06 16:36:56.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:36:56.041 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:36:56.042 +03:00 [INF] Request finished in 1.3985ms 200 application/javascript +2018-09-06 16:36:56.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:36:56.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:36:56.054 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:36:56.054 +03:00 [INF] Request finished in 2.6315ms 200 application/javascript +2018-09-06 16:36:56.054 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:36:56.054 +03:00 [INF] Request finished in 3.587ms 200 application/javascript +2018-09-06 16:36:56.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:36:56.071 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:36:56.072 +03:00 [INF] Request finished in 2.6887ms 200 application/javascript +2018-09-06 16:36:56.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:36:56.075 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:36:56.079 +03:00 [INF] Request finished in 5.7249ms 200 application/javascript +2018-09-06 16:36:56.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:36:56.083 +03:00 [INF] Request finished in 200.1115ms 404 +2018-09-06 16:36:56.083 +03:00 [INF] Request finished in 182.5012ms 404 +2018-09-06 16:36:56.084 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:36:56.085 +03:00 [INF] Request finished in 1.5457ms 200 application/javascript +2018-09-06 16:36:56.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:36:56.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:36:56.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:36:56.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:36:56.095 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:36:56.095 +03:00 [INF] Request finished in 4.027ms 200 application/javascript +2018-09-06 16:36:56.096 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:36:56.096 +03:00 [INF] Request finished in 1.6939ms 200 application/javascript +2018-09-06 16:36:56.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:36:56.100 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:36:56.100 +03:00 [INF] Request finished in 1.4357ms 200 application/javascript +2018-09-06 16:36:56.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:36:56.108 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:36:56.108 +03:00 [INF] Request finished in 0.94ms 200 application/javascript +2018-09-06 16:36:56.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:36:56.117 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:36:56.117 +03:00 [INF] Request finished in 1.7429ms 200 application/javascript +2018-09-06 16:36:56.119 +03:00 [INF] Request finished in 157.8049ms 404 +2018-09-06 16:36:56.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:36:56.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:36:56.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:36:56.130 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:36:56.130 +03:00 [INF] Request finished in 1.038ms 200 application/javascript +2018-09-06 16:36:56.130 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:36:56.130 +03:00 [INF] Request finished in 1.2596ms 200 image/svg+xml +2018-09-06 16:36:56.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:36:56.138 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:36:56.139 +03:00 [INF] Request finished in 1.2476ms 200 image/svg+xml +2018-09-06 16:36:56.187 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:56.187 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:36:56.229 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:36:56.231 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:36:56.244 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.248 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.251 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.254 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.257 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.261 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.264 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.267 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.270 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.273 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.276 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.279 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.282 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.285 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.289 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.293 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.297 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.310 +03:00 [INF] Authorization was successful. +2018-09-06 16:36:56.313 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.316 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.319 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.322 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.324 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.327 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.330 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.330 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 93.49860000000001ms. +2018-09-06 16:36:56.333 +03:00 [INF] Authorization failed. +2018-09-06 16:36:56.338 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:56.339 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 151.6611ms +2018-09-06 16:36:56.339 +03:00 [INF] Request finished in 245.5292ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:56.368 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 138.3339ms. +2018-09-06 16:36:56.377 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:36:56.378 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 190.5497ms +2018-09-06 16:36:56.378 +03:00 [INF] Request finished in 286.7904ms 200 text/plain; charset=utf-8 +2018-09-06 16:36:56.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:36:56.583 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:36:56.583 +03:00 [INF] Request finished in 3.5787ms 200 font/woff2 +2018-09-06 16:36:56.655 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:36:56.667 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:36:56.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:36:56.684 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:36:56.684 +03:00 [INF] Request finished in 8.4922ms 200 image/jpeg +2018-09-06 16:36:56.713 +03:00 [INF] Executed action /Blog/Posts/Detail in 57.3918ms +2018-09-06 16:36:56.728 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:36:56.797 +03:00 [INF] Request finished in 668.413ms 500 text/html; charset=utf-8 +2018-09-06 16:37:11.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:37:11.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:37:11.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:37:11.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:37:11.294 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:37:11.294 +03:00 [INF] Request finished in 1.3625ms 200 image/png +2018-09-06 16:37:11.294 +03:00 [INF] Request finished in 1.4217ms 404 +2018-09-06 16:37:11.295 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:37:11.295 +03:00 [INF] Request finished in 2.0927ms 200 image/png +2018-09-06 16:37:11.295 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:37:11.297 +03:00 [INF] Request finished in 4.1094ms 304 text/plain +2018-09-06 16:37:25.764 +03:00 [INF] Loaded modules: +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:37:25.787 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:37:25.788 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:37:25.789 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:37:27.523 +03:00 [INF] Initialized all modules. +2018-09-06 16:37:27.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:37:30.059 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:37:30.242 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:37:30.655 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.384 +03:00 [INF] Executed action /Blog/Posts/Index in 2317.9663ms +2018-09-06 16:37:32.402 +03:00 [INF] Request finished in 4640.5516ms 200 text/html; charset=utf-8 +2018-09-06 16:37:32.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:37:32.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:37:32.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:37:32.458 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:37:32.458 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:37:32.458 +03:00 [INF] Request finished in 14.3775ms 200 text/css +2018-09-06 16:37:32.458 +03:00 [INF] Request finished in 13.4788ms 200 text/css +2018-09-06 16:37:32.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:37:32.467 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:37:32.467 +03:00 [INF] Request finished in 2.2734ms 200 text/css +2018-09-06 16:37:32.467 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:37:32.467 +03:00 [INF] Request finished in 23.578ms 200 text/css +2018-09-06 16:37:32.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:37:32.479 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:37:32.479 +03:00 [INF] Request finished in 1.2099ms 200 text/css +2018-09-06 16:37:32.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:37:32.496 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:37:32.496 +03:00 [INF] Request finished in 1.8886ms 200 text/css +2018-09-06 16:37:32.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:37:32.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:37:32.562 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:37:32.562 +03:00 [INF] Request finished in 0.8648ms 200 text/css +2018-09-06 16:37:32.562 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:37:32.562 +03:00 [INF] Request finished in 1.1422ms 200 text/css +2018-09-06 16:37:32.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:37:32.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:37:32.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:37:32.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:37:32.582 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:37:32.582 +03:00 [INF] Request finished in 3.9608ms 200 text/css +2018-09-06 16:37:32.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:37:32.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:37:32.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:37:32.610 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:37:32.610 +03:00 [INF] Request finished in 1.5337ms 200 application/javascript +2018-09-06 16:37:32.611 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:37:32.612 +03:00 [INF] Request finished in 8.4874ms 200 application/javascript +2018-09-06 16:37:32.613 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:37:32.614 +03:00 [INF] Request finished in 7.6304ms 200 application/javascript +2018-09-06 16:37:32.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:37:32.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:37:32.624 +03:00 [INF] Request finished in 49.1735ms 404 +2018-09-06 16:37:32.625 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:37:32.625 +03:00 [INF] Request finished in 6.0262ms 200 application/javascript +2018-09-06 16:37:32.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:37:32.633 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:37:32.634 +03:00 [INF] Request finished in 3.7883ms 200 application/javascript +2018-09-06 16:37:32.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:37:32.643 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:37:32.643 +03:00 [INF] Request finished in 1.4161ms 200 application/javascript +2018-09-06 16:37:32.645 +03:00 [INF] Request finished in 82.4308ms 404 +2018-09-06 16:37:32.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:37:32.655 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:37:32.655 +03:00 [INF] Request finished in 2.0929ms 200 application/javascript +2018-09-06 16:37:32.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:37:32.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:37:32.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:37:32.661 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:37:32.661 +03:00 [INF] Request finished in 5.5509ms 200 application/javascript +2018-09-06 16:37:32.661 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:37:32.666 +03:00 [INF] Request finished in 7.5253ms 200 application/javascript +2018-09-06 16:37:32.673 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:37:32.673 +03:00 [INF] Request finished in 17.3597ms 200 application/javascript +2018-09-06 16:37:32.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:37:32.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:37:32.677 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:37:32.677 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:37:32.677 +03:00 [INF] Request finished in 1.1498ms 200 application/javascript +2018-09-06 16:37:32.677 +03:00 [INF] Request finished in 0.9748ms 200 application/javascript +2018-09-06 16:37:32.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:37:32.691 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:37:32.692 +03:00 [INF] Request finished in 5.0949ms 200 application/javascript +2018-09-06 16:37:32.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:37:32.697 +03:00 [INF] Request finished in 122.756ms 404 +2018-09-06 16:37:32.698 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:37:32.699 +03:00 [INF] Request finished in 1.8589ms 200 application/javascript +2018-09-06 16:37:32.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:37:32.706 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:37:32.706 +03:00 [INF] Request finished in 1.2345ms 200 application/javascript +2018-09-06 16:37:32.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:37:32.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:37:32.711 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:37:32.711 +03:00 [INF] Request finished in 3.1333ms 200 application/javascript +2018-09-06 16:37:32.711 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:37:32.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:37:32.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:37:32.715 +03:00 [INF] Request finished in 5.0205ms 200 application/javascript +2018-09-06 16:37:32.716 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:37:32.716 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:37:32.716 +03:00 [INF] Request finished in 4.0754ms 200 application/javascript +2018-09-06 16:37:32.716 +03:00 [INF] Request finished in 5.2182ms 200 application/javascript +2018-09-06 16:37:32.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:37:32.719 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:37:32.719 +03:00 [INF] Request finished in 1.0344ms 200 application/javascript +2018-09-06 16:37:32.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:37:32.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:37:32.724 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:37:32.725 +03:00 [INF] Request finished in 0.9208ms 200 application/javascript +2018-09-06 16:37:32.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:37:32.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:37:32.728 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:37:32.728 +03:00 [INF] Request finished in 0.9334ms 200 application/javascript +2018-09-06 16:37:32.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:37:32.741 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:37:32.741 +03:00 [INF] Request finished in 2.65ms 200 application/javascript +2018-09-06 16:37:32.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:37:32.744 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:37:32.744 +03:00 [INF] Request finished in 2.0458ms 200 application/javascript +2018-09-06 16:37:32.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:37:32.754 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:37:32.754 +03:00 [INF] Request finished in 0.8177ms 200 application/javascript +2018-09-06 16:37:32.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:37:32.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:37:32.759 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:37:32.759 +03:00 [INF] Request finished in 0.9579ms 200 image/svg+xml +2018-09-06 16:37:32.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:37:32.765 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:37:32.766 +03:00 [INF] Request finished in 1.5072ms 200 image/svg+xml +2018-09-06 16:37:32.771 +03:00 [INF] Request finished in 148.4776ms 404 +2018-09-06 16:37:32.800 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:37:32.800 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:37:32.844 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:37:32.846 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:37:32.863 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.869 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.874 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.878 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.883 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.886 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.889 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.894 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.899 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.902 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.905 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.908 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.913 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.917 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.920 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.931 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.935 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.952 +03:00 [INF] Authorization was successful. +2018-09-06 16:37:32.956 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.960 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.967 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.970 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.974 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.978 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.8862ms. +2018-09-06 16:37:32.980 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.986 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.990 +03:00 [INF] Authorization failed. +2018-09-06 16:37:32.990 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:37:32.992 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 191.281ms +2018-09-06 16:37:32.993 +03:00 [INF] Request finished in 266.8983ms 200 text/plain; charset=utf-8 +2018-09-06 16:37:33.039 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 195.54350000000002ms. +2018-09-06 16:37:33.055 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:37:33.055 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 254.7751ms +2018-09-06 16:37:33.055 +03:00 [INF] Request finished in 333.58ms 200 text/plain; charset=utf-8 +2018-09-06 16:37:33.465 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:37:33.487 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:37:33.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:37:33.521 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:37:33.521 +03:00 [INF] Request finished in 2.5415ms 200 font/woff2 +2018-09-06 16:37:33.537 +03:00 [INF] Executed action /Blog/Posts/Detail in 71.904800000000009ms +2018-09-06 16:37:33.555 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:37:33.596 +03:00 [INF] Request finished in 839.4906ms 500 text/html; charset=utf-8 +2018-09-06 16:37:33.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:37:33.687 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:37:33.687 +03:00 [INF] Request finished in 7.9581ms 200 image/jpeg +2018-09-06 16:37:51.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:37:51.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:37:51.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:37:51.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:37:51.999 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:37:51.999 +03:00 [INF] Request finished in 1.4666ms 200 image/png +2018-09-06 16:37:51.999 +03:00 [INF] Request finished in 1.5274ms 404 +2018-09-06 16:37:52.000 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:37:52.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:37:52.000 +03:00 [INF] Request finished in 2.4217ms 200 image/png +2018-09-06 16:37:52.001 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:37:52.003 +03:00 [INF] Request finished in 5.2823ms 304 text/plain +2018-09-06 16:37:53.824 +03:00 [INF] Loaded modules: +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:37:53.841 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:37:53.842 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:37:53.843 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:37:55.589 +03:00 [INF] Initialized all modules. +2018-09-06 16:37:55.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:37:55.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-06 16:37:56.076 +03:00 [INF] Request finished in 331.2882ms 404 +2018-09-06 16:37:58.196 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:37:58.377 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:37:58.746 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.088 +03:00 [INF] Executed action /Blog/Posts/Index in 1887.7811000000002ms +2018-09-06 16:38:00.101 +03:00 [INF] Request finished in 4356.5947ms 200 text/html; charset=utf-8 +2018-09-06 16:38:00.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:38:00.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:38:00.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:38:00.145 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:38:00.145 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:38:00.145 +03:00 [INF] Request finished in 6.383ms 200 text/css +2018-09-06 16:38:00.145 +03:00 [INF] Request finished in 4.0837ms 200 text/css +2018-09-06 16:38:00.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:38:00.155 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:38:00.156 +03:00 [INF] Request finished in 2.8273ms 200 text/css +2018-09-06 16:38:00.163 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:38:00.163 +03:00 [INF] Request finished in 26.5356ms 200 text/css +2018-09-06 16:38:00.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:38:00.173 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:38:00.173 +03:00 [INF] Request finished in 2.0484ms 200 text/css +2018-09-06 16:38:00.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:38:00.178 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:38:00.178 +03:00 [INF] Request finished in 1.0901ms 200 text/css +2018-09-06 16:38:00.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:38:00.258 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:38:00.259 +03:00 [INF] Request finished in 2.7457ms 200 text/css +2018-09-06 16:38:00.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=0 +2018-09-06 16:38:00.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:38:00.266 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:38:00.266 +03:00 [INF] Request finished in 1.0679ms 200 text/css +2018-09-06 16:38:00.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=0 +2018-09-06 16:38:00.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:38:00.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718375696392517 +2018-09-06 16:38:00.295 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:38:00.296 +03:00 [INF] Request finished in 1.5952ms 200 text/css +2018-09-06 16:38:00.299 +03:00 [INF] Request finished in 34.5407ms 404 +2018-09-06 16:38:00.299 +03:00 [INF] Request finished in 32.2797ms 404 +2018-09-06 16:38:00.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:38:00.305 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:38:00.305 +03:00 [INF] Request finished in 1.035ms 200 application/javascript +2018-09-06 16:38:00.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:38:00.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:38:00.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:38:00.318 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:38:00.318 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:38:00.318 +03:00 [INF] Request finished in 6.8614ms 200 application/javascript +2018-09-06 16:38:00.318 +03:00 [INF] Request finished in 1.6901ms 200 application/javascript +2018-09-06 16:38:00.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:38:00.333 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:38:00.333 +03:00 [INF] Request finished in 15.2328ms 200 application/javascript +2018-09-06 16:38:00.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:38:00.337 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:38:00.338 +03:00 [INF] Request finished in 1.759ms 200 application/javascript +2018-09-06 16:38:00.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:38:00.344 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:38:00.344 +03:00 [INF] Request finished in 5.0587ms 200 application/javascript +2018-09-06 16:38:00.345 +03:00 [INF] Request finished in 61.3431ms 404 +2018-09-06 16:38:00.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:38:00.351 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:38:00.351 +03:00 [INF] Request finished in 1.8166ms 200 application/javascript +2018-09-06 16:38:00.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:38:00.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:38:00.355 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:38:00.363 +03:00 [INF] Request finished in 5.8191ms 200 application/javascript +2018-09-06 16:38:00.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:38:00.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:38:00.368 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:38:00.368 +03:00 [INF] Request finished in 15.62ms 200 application/javascript +2018-09-06 16:38:00.369 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:38:00.369 +03:00 [INF] Request finished in 2.7958ms 200 application/javascript +2018-09-06 16:38:00.371 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:38:00.371 +03:00 [INF] Request finished in 5.4202ms 200 application/javascript +2018-09-06 16:38:00.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:38:00.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:38:00.378 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:38:00.378 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:38:00.378 +03:00 [INF] Request finished in 0.9481ms 200 application/javascript +2018-09-06 16:38:00.378 +03:00 [INF] Request finished in 1.5503ms 200 application/javascript +2018-09-06 16:38:00.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:38:00.385 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:38:00.385 +03:00 [INF] Request finished in 1.7501ms 200 application/javascript +2018-09-06 16:38:00.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:38:00.386 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:38:00.387 +03:00 [INF] Request finished in 1.0047ms 200 application/javascript +2018-09-06 16:38:00.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:38:00.388 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:38:00.388 +03:00 [INF] Request finished in 1.247ms 200 application/javascript +2018-09-06 16:38:00.390 +03:00 [INF] Request finished in 69.1793ms 404 +2018-09-06 16:38:00.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:38:00.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:38:00.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:38:00.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:38:00.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:38:00.399 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:38:00.399 +03:00 [INF] Request finished in 1.0027ms 200 application/javascript +2018-09-06 16:38:00.400 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:38:00.400 +03:00 [INF] Request finished in 1.3446ms 200 application/javascript +2018-09-06 16:38:00.400 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:38:00.400 +03:00 [INF] Request finished in 1.4392ms 200 application/javascript +2018-09-06 16:38:00.401 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:38:00.401 +03:00 [INF] Request finished in 2.2527ms 200 application/javascript +2018-09-06 16:38:00.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:38:00.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:38:00.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718376880373211 +2018-09-06 16:38:00.413 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:38:00.413 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:38:00.413 +03:00 [INF] Request finished in 0.7494ms 200 application/javascript +2018-09-06 16:38:00.413 +03:00 [INF] Request finished in 1.4713ms 200 application/javascript +2018-09-06 16:38:00.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:38:00.415 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:38:00.415 +03:00 [INF] Request finished in 0.9257ms 200 application/javascript +2018-09-06 16:38:00.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718375696392517 +2018-09-06 16:38:00.426 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:38:00.426 +03:00 [INF] Request finished in 5.2652ms 200 application/javascript +2018-09-06 16:38:00.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:38:00.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718375696392517 +2018-09-06 16:38:00.433 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:38:00.433 +03:00 [INF] Request finished in 1.2024ms 200 application/javascript +2018-09-06 16:38:00.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:38:00.434 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:38:00.435 +03:00 [INF] Request finished in 1.2493ms 200 image/svg+xml +2018-09-06 16:38:00.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:38:00.439 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:38:00.439 +03:00 [INF] Request finished in 0.9501ms 200 image/svg+xml +2018-09-06 16:38:00.472 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:38:00.472 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:38:00.504 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:38:00.506 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:38:00.519 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.523 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.527 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.531 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.534 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.538 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.542 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.546 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.550 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.553 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.556 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.561 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.563 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.567 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.570 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.573 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.577 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.589 +03:00 [INF] Authorization was successful. +2018-09-06 16:38:00.593 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.596 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.600 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.603 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.606 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.607 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 95.99560000000001ms. +2018-09-06 16:38:00.612 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.616 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.617 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:38:00.619 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 145.9933ms +2018-09-06 16:38:00.619 +03:00 [INF] Request finished in 209.1549ms 200 text/plain; charset=utf-8 +2018-09-06 16:38:00.619 +03:00 [INF] Authorization failed. +2018-09-06 16:38:00.656 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 151.6336ms. +2018-09-06 16:38:00.666 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:38:00.666 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 193.8766ms +2018-09-06 16:38:00.667 +03:00 [INF] Request finished in 267.2478ms 200 text/plain; charset=utf-8 +2018-09-06 16:38:00.972 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:38:00.984 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:38:00.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:38:00.991 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:38:00.991 +03:00 [INF] Request finished in 2.3371ms 200 font/woff2 +2018-09-06 16:38:00.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:38:01.006 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:38:01.007 +03:00 [INF] Request finished in 8.3511ms 200 image/jpeg +2018-09-06 16:38:01.032 +03:00 [INF] Executed action /Blog/Posts/Detail in 59.077600000000004ms +2018-09-06 16:38:01.050 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:38:01.087 +03:00 [INF] Request finished in 656.6217ms 500 text/html; charset=utf-8 +2018-09-06 16:38:11.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:38:11.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-06 16:38:11.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-06 16:38:11.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:38:11.015 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:38:11.015 +03:00 [INF] Request finished in 1.5911ms 200 image/png +2018-09-06 16:38:11.015 +03:00 [INF] Request finished in 1.5583ms 404 +2018-09-06 16:38:11.015 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:38:11.016 +03:00 [INF] Request finished in 2.4038ms 200 image/png +2018-09-06 16:38:11.016 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-06 16:38:11.018 +03:00 [INF] Request finished in 4.6263ms 304 text/plain +2018-09-06 16:38:15.003 +03:00 [INF] Loaded modules: +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:38:15.017 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:38:15.018 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:38:15.019 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:38:16.560 +03:00 [INF] Initialized all modules. +2018-09-06 16:38:16.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-06 16:38:16.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-06 16:38:16.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-06 16:38:16.971 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-06 16:38:16.976 +03:00 [INF] Request finished in 53.696ms 200 text/plain +2018-09-06 16:38:17.192 +03:00 [INF] Request finished in 270.0127ms 404 +2018-09-06 16:38:17.192 +03:00 [INF] Request finished in 270.0126ms 404 +2018-09-06 16:41:28.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:41:31.130 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:41:31.308 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:41:32.928 +03:00 [INF] Executed action /Blog/Posts/New in 1793.2842ms +2018-09-06 16:41:32.933 +03:00 [INF] Request finished in 4091.0025ms 200 text/html; charset=utf-8 +2018-09-06 16:41:32.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:41:32.998 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:41:32.998 +03:00 [INF] Request finished in 11.1778ms 200 text/css +2018-09-06 16:41:33.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:41:33.009 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:41:33.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:41:33.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:41:33.009 +03:00 [INF] Request finished in 2.4899ms 200 text/css +2018-09-06 16:41:33.010 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:41:33.010 +03:00 [INF] Request finished in 0.8758ms 200 text/css +2018-09-06 16:41:33.010 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:41:33.010 +03:00 [INF] Request finished in 1.0803ms 200 text/css +2018-09-06 16:41:33.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:41:33.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:41:33.014 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:41:33.015 +03:00 [INF] Request finished in 1.1778ms 200 text/css +2018-09-06 16:41:33.015 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:41:33.016 +03:00 [INF] Request finished in 1.2207ms 200 text/css +2018-09-06 16:41:33.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:41:33.026 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:41:33.028 +03:00 [INF] Request finished in 3.6648ms 200 text/css +2018-09-06 16:41:33.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:41:33.030 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:41:33.030 +03:00 [INF] Request finished in 1.3351ms 200 text/css +2018-09-06 16:41:33.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718376879993195 +2018-09-06 16:41:33.033 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-06 16:41:33.033 +03:00 [INF] Request finished in 1.1085ms 200 text/css +2018-09-06 16:41:33.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718376886213220 +2018-09-06 16:41:33.048 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:41:33.048 +03:00 [INF] Request finished in 1.1998ms 200 text/css +2018-09-06 16:41:33.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718376884063239 +2018-09-06 16:41:33.061 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:41:33.061 +03:00 [INF] Request finished in 0.973ms 200 text/css +2018-09-06 16:41:33.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718376880833243 +2018-09-06 16:41:33.066 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:41:33.067 +03:00 [INF] Request finished in 1.1108ms 200 text/css +2018-09-06 16:41:33.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718375696392517 +2018-09-06 16:41:33.076 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-06 16:41:33.076 +03:00 [INF] Request finished in 2.1541ms 200 text/css +2018-09-06 16:41:33.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:41:33.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:41:33.107 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:41:33.107 +03:00 [INF] Request finished in 0.9356ms 200 application/javascript +2018-09-06 16:41:33.112 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:41:33.113 +03:00 [INF] Request finished in 5.9624ms 200 application/javascript +2018-09-06 16:41:33.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:41:33.116 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:41:33.116 +03:00 [INF] Request finished in 1.3198ms 200 application/javascript +2018-09-06 16:41:33.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:41:33.131 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:41:33.131 +03:00 [INF] Request finished in 4.0091ms 200 application/javascript +2018-09-06 16:41:33.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:41:33.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:41:33.136 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:41:33.137 +03:00 [INF] Request finished in 1.5502ms 200 application/javascript +2018-09-06 16:41:33.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:41:33.140 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:41:33.141 +03:00 [INF] Request finished in 3.1176ms 200 application/javascript +2018-09-06 16:41:33.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:41:33.149 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:41:33.149 +03:00 [INF] Request finished in 1.8493ms 200 application/javascript +2018-09-06 16:41:33.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:41:33.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:41:33.157 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:41:33.157 +03:00 [INF] Request finished in 2.6222ms 200 application/javascript +2018-09-06 16:41:33.161 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:41:33.161 +03:00 [INF] Request finished in 11.986ms 200 application/javascript +2018-09-06 16:41:33.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:41:33.164 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:41:33.164 +03:00 [INF] Request finished in 1.1584ms 200 application/javascript +2018-09-06 16:41:33.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:41:33.169 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:41:33.169 +03:00 [INF] Request finished in 4.0365ms 200 application/javascript +2018-09-06 16:41:33.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:41:33.185 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:41:33.185 +03:00 [INF] Request finished in 1.7888ms 200 application/javascript +2018-09-06 16:41:33.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:41:33.188 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:41:33.188 +03:00 [INF] Request finished in 2.7355ms 200 application/javascript +2018-09-06 16:41:33.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:41:33.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:41:33.194 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:41:33.194 +03:00 [INF] Request finished in 1.2492ms 200 application/javascript +2018-09-06 16:41:33.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:41:33.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:41:33.196 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:41:33.196 +03:00 [INF] Request finished in 0.9418ms 200 application/javascript +2018-09-06 16:41:33.197 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:41:33.197 +03:00 [INF] Request finished in 2.3044ms 200 application/javascript +2018-09-06 16:41:33.197 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:41:33.197 +03:00 [INF] Request finished in 3.836ms 200 application/javascript +2018-09-06 16:41:33.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-06 16:41:33.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:41:33.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:41:33.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:41:33.218 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:41:33.218 +03:00 [INF] Request finished in 1.4177ms 200 application/javascript +2018-09-06 16:41:33.219 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:41:33.219 +03:00 [INF] Request finished in 1.8371ms 200 application/javascript +2018-09-06 16:41:33.221 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:41:33.222 +03:00 [INF] Request finished in 5.0621ms 200 application/javascript +2018-09-06 16:41:33.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:41:33.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:41:33.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:41:33.231 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:41:33.232 +03:00 [INF] Request finished in 0.9456ms 200 application/javascript +2018-09-06 16:41:33.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:41:33.248 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:41:33.248 +03:00 [INF] Request finished in 1.2416ms 200 application/javascript +2018-09-06 16:41:33.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718376880173192 +2018-09-06 16:41:33.255 +03:00 [INF] Request finished in 119.1519ms 404 +2018-09-06 16:41:33.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718376880253277 +2018-09-06 16:41:33.261 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-06 16:41:33.261 +03:00 [INF] Request finished in 8.5336ms 200 application/javascript +2018-09-06 16:41:33.264 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-06 16:41:33.264 +03:00 [INF] Request finished in 8.017ms 200 application/javascript +2018-09-06 16:41:33.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718376880013215 +2018-09-06 16:41:33.271 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-06 16:41:33.271 +03:00 [INF] Request finished in 2.6478ms 200 application/javascript +2018-09-06 16:41:33.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718376879993195 +2018-09-06 16:41:33.281 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-06 16:41:33.281 +03:00 [INF] Request finished in 1.1079ms 200 application/javascript +2018-09-06 16:41:33.283 +03:00 [INF] Request finished in 83.2188ms 404 +2018-09-06 16:41:33.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718376879993195 +2018-09-06 16:41:33.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718376880003191 +2018-09-06 16:41:33.292 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-06 16:41:33.292 +03:00 [INF] Request finished in 1.234ms 200 application/javascript +2018-09-06 16:41:33.293 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-06 16:41:33.293 +03:00 [INF] Request finished in 0.7889ms 200 application/javascript +2018-09-06 16:41:33.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718376881703228 +2018-09-06 16:41:33.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718375696392517 +2018-09-06 16:41:33.303 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-06 16:41:33.303 +03:00 [INF] Request finished in 1.992ms 200 application/javascript +2018-09-06 16:41:33.305 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-06 16:41:33.306 +03:00 [INF] Request finished in 9.8879ms 200 application/javascript +2018-09-06 16:41:33.321 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:41:33.341 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:41:33.366 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:41:33.387 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:41:33.503 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 109.35770000000001ms. +2018-09-06 16:41:33.512 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:41:33.513 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 171.7861ms +2018-09-06 16:41:33.513 +03:00 [INF] Request finished in 286.5317ms 200 text/plain; charset=utf-8 +2018-09-06 16:41:33.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:41:33.538 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:41:33.538 +03:00 [INF] Request finished in 3.4072ms 200 font/woff2 +2018-09-06 16:41:33.551 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.558 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.561 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.564 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.567 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.572 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.575 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.578 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.581 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.583 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.586 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.590 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.593 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.596 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.599 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.604 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.608 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.610 +03:00 [INF] Authorization was successful. +2018-09-06 16:41:33.614 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.618 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.621 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.624 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.627 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.629 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.632 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.635 +03:00 [INF] Authorization failed. +2018-09-06 16:41:33.664 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 296.93780000000004ms. +2018-09-06 16:41:33.682 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:41:33.687 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 365.0307ms +2018-09-06 16:41:33.690 +03:00 [INF] Request finished in 462.033ms 200 text/plain; charset=utf-8 +2018-09-06 16:41:33.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-06 16:41:33.903 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-06 16:41:33.904 +03:00 [INF] Request finished in 1.2648ms 200 image/png +2018-09-06 16:41:34.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:41:34.142 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:41:34.142 +03:00 [INF] Request finished in 1.1884ms 200 image/png +2018-09-06 16:41:34.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:41:34.147 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:41:34.147 +03:00 [INF] Request finished in 1.1317ms 200 image/png +2018-09-06 16:44:56.827 +03:00 [INF] Loaded modules: +2018-09-06 16:44:56.861 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:44:56.865 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:44:56.866 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:44:56.867 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:44:56.868 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:44:56.870 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:44:56.870 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:44:56.870 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:44:59.663 +03:00 [INF] Initialized all modules. +2018-09-06 16:44:59.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-06 16:45:03.142 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:45:03.347 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:45:05.424 +03:00 [INF] Executed action /Blog/Posts/New in 2276.9853000000003ms +2018-09-06 16:45:05.436 +03:00 [INF] Request finished in 5510.5751ms 200 text/html; charset=utf-8 +2018-09-06 16:45:05.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:45:05.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:45:05.481 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:45:05.481 +03:00 [INF] Request finished in 3.8757ms 200 text/css +2018-09-06 16:45:05.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:45:05.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:45:05.498 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:45:05.498 +03:00 [INF] Request finished in 1.2581ms 200 text/css +2018-09-06 16:45:05.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:45:05.503 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:45:05.503 +03:00 [INF] Request finished in 3.6714ms 200 text/css +2018-09-06 16:45:05.504 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:45:05.504 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:45:05.512 +03:00 [INF] Request finished in 28.04ms 200 text/css +2018-09-06 16:45:05.512 +03:00 [INF] Request finished in 42.3751ms 200 text/css +2018-09-06 16:45:05.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:45:05.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:45:05.521 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:45:05.521 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:45:05.521 +03:00 [INF] Request finished in 1.0231ms 200 text/css +2018-09-06 16:45:05.521 +03:00 [INF] Request finished in 1.0163ms 200 text/css +2018-09-06 16:45:05.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:45:05.524 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:45:05.524 +03:00 [INF] Request finished in 1.1708ms 200 text/css +2018-09-06 16:45:05.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718376879993195 +2018-09-06 16:45:05.555 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-06 16:45:05.555 +03:00 [INF] Request finished in 2.7496ms 200 text/css +2018-09-06 16:45:05.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718376886213220 +2018-09-06 16:45:05.558 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-06 16:45:05.558 +03:00 [INF] Request finished in 1.1047ms 200 text/css +2018-09-06 16:45:05.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718376884063239 +2018-09-06 16:45:05.571 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-06 16:45:05.571 +03:00 [INF] Request finished in 1.0615ms 200 text/css +2018-09-06 16:45:05.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718376880833243 +2018-09-06 16:45:05.590 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-06 16:45:05.590 +03:00 [INF] Request finished in 2.0279ms 200 text/css +2018-09-06 16:45:05.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718382831336960 +2018-09-06 16:45:05.609 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-06 16:45:05.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:45:05.610 +03:00 [INF] Request finished in 2.6863ms 200 text/css +2018-09-06 16:45:05.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:45:05.622 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:45:05.622 +03:00 [INF] Request finished in 12.9791ms 200 application/javascript +2018-09-06 16:45:05.623 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:45:05.624 +03:00 [INF] Request finished in 1.949ms 200 application/javascript +2018-09-06 16:45:05.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:45:05.626 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:45:05.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:45:05.628 +03:00 [INF] Request finished in 1.9818ms 200 application/javascript +2018-09-06 16:45:05.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-06 16:45:05.634 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:45:05.635 +03:00 [INF] Request finished in 7.4275ms 200 application/javascript +2018-09-06 16:45:05.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:45:05.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:45:05.655 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:45:05.655 +03:00 [INF] Request finished in 3.1553ms 200 image/svg+xml +2018-09-06 16:45:05.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:45:05.657 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:45:05.658 +03:00 [INF] Request finished in 1.7364ms 200 image/svg+xml +2018-09-06 16:45:05.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:45:05.661 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:45:05.661 +03:00 [INF] Request finished in 1.7599ms 200 application/javascript +2018-09-06 16:45:05.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:45:05.679 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:45:05.679 +03:00 [INF] Request finished in 1.1078ms 200 application/javascript +2018-09-06 16:45:05.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:45:05.681 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:45:05.681 +03:00 [INF] Request finished in 1.139ms 200 application/javascript +2018-09-06 16:45:05.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:45:05.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:45:05.693 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:45:05.694 +03:00 [INF] Request finished in 2.1736ms 200 application/javascript +2018-09-06 16:45:05.706 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:45:05.706 +03:00 [INF] Request finished in 14.7324ms 200 application/javascript +2018-09-06 16:45:05.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:45:05.708 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:45:05.709 +03:00 [INF] Request finished in 0.9462ms 200 application/javascript +2018-09-06 16:45:05.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:45:05.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:45:05.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:45:05.750 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:45:05.750 +03:00 [INF] Request finished in 2.2645ms 200 application/javascript +2018-09-06 16:45:05.750 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:45:05.751 +03:00 [INF] Request finished in 2.944ms 200 application/javascript +2018-09-06 16:45:05.751 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:45:05.752 +03:00 [INF] Request finished in 4.0634ms 200 application/javascript +2018-09-06 16:45:05.757 +03:00 [INF] Request finished in 124.2954ms 404 +2018-09-06 16:45:05.769 +03:00 [INF] Request finished in 127.8472ms 404 +2018-09-06 16:45:05.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:45:05.803 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:45:05.803 +03:00 [INF] Request finished in 1.7824ms 200 application/javascript +2018-09-06 16:45:05.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:45:05.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:45:05.835 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:45:05.835 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:45:05.835 +03:00 [INF] Request finished in 5.2749ms 200 application/javascript +2018-09-06 16:45:05.836 +03:00 [INF] Request finished in 0.9576ms 200 application/javascript +2018-09-06 16:45:05.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:45:05.837 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:45:05.837 +03:00 [INF] Request finished in 1.0901ms 200 application/javascript +2018-09-06 16:45:05.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:45:05.841 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:45:05.841 +03:00 [INF] Request finished in 2.4038ms 200 application/javascript +2018-09-06 16:45:05.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:45:05.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:45:05.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:45:05.863 +03:00 [INF] Request finished in 1.0503ms 200 application/javascript +2018-09-06 16:45:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:45:05.870 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:45:05.870 +03:00 [INF] Request finished in 1.7336ms 200 application/javascript +2018-09-06 16:45:05.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:45:05.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:45:05.920 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:45:05.921 +03:00 [INF] Request finished in 1.7904ms 200 application/javascript +2018-09-06 16:45:05.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:45:05.929 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:45:05.930 +03:00 [INF] Request finished in 1.3981ms 200 application/javascript +2018-09-06 16:45:05.954 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:45:05.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718376880173192 +2018-09-06 16:45:05.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718376880253277 +2018-09-06 16:45:05.974 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-06 16:45:05.974 +03:00 [INF] Request finished in 2.3755ms 200 application/javascript +2018-09-06 16:45:05.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718376880013215 +2018-09-06 16:45:05.983 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-06 16:45:05.984 +03:00 [INF] Request finished in 4.2726ms 200 application/javascript +2018-09-06 16:45:05.990 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:45:05.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718376879993195 +2018-09-06 16:45:05.993 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-06 16:45:05.993 +03:00 [INF] Request finished in 1.1744ms 200 application/javascript +2018-09-06 16:45:05.995 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-06 16:45:05.996 +03:00 [INF] Request finished in 22.0745ms 200 application/javascript +2018-09-06 16:45:06.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718376880003191 +2018-09-06 16:45:06.025 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-06 16:45:06.025 +03:00 [INF] Request finished in 1.2327ms 200 application/javascript +2018-09-06 16:45:06.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718376879993195 +2018-09-06 16:45:06.026 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-06 16:45:06.027 +03:00 [INF] Request finished in 1.1886ms 200 application/javascript +2018-09-06 16:45:06.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718376881703228 +2018-09-06 16:45:06.067 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-06 16:45:06.068 +03:00 [INF] Request finished in 14.2467ms 200 application/javascript +2018-09-06 16:45:06.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718382831336960 +2018-09-06 16:45:06.071 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-06 16:45:06.071 +03:00 [INF] Request finished in 1.1278ms 200 application/javascript +2018-09-06 16:45:06.141 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:45:06.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:45:06.172 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:45:06.173 +03:00 [INF] Request finished in 3.4798ms 200 font/woff2 +2018-09-06 16:45:06.187 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:45:06.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:45:06.222 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.229 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.231 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:45:06.231 +03:00 [INF] Request finished in 11.5947ms 200 image/jpeg +2018-09-06 16:45:06.245 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.248 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.254 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.275 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.281 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.284 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.290 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.298 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.304 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.307 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.313 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.319 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 125.70060000000001ms. +2018-09-06 16:45:06.322 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.325 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.327 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:45:06.328 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 186.6655ms +2018-09-06 16:45:06.330 +03:00 [INF] Request finished in 415.0012ms 200 text/plain; charset=utf-8 +2018-09-06 16:45:06.331 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.335 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.340 +03:00 [INF] Authorization was successful. +2018-09-06 16:45:06.343 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.346 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.353 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.357 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.361 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.364 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.369 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.372 +03:00 [INF] Authorization failed. +2018-09-06 16:45:06.400 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 409.6104ms. +2018-09-06 16:45:06.421 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:45:06.428 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 474.50390000000004ms +2018-09-06 16:45:06.433 +03:00 [INF] Request finished in 572.5242ms 200 text/plain; charset=utf-8 +2018-09-06 16:45:06.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-06 16:45:06.724 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-06 16:45:06.724 +03:00 [INF] Request finished in 1.1599ms 200 image/png +2018-09-06 16:45:06.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:45:06.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:45:06.935 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:45:06.935 +03:00 [INF] Request finished in 1.5629ms 200 image/png +2018-09-06 16:45:06.936 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:45:06.936 +03:00 [INF] Request finished in 0.9707ms 200 image/png +2018-09-06 16:46:18.838 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/new application/x-www-form-urlencoded 466 +2018-09-06 16:46:18.876 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-06 16:46:18.941 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Valid" +2018-09-06 16:46:18.987 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:19.190 +03:00 [INF] Executing RedirectResult, redirecting to /blog/abp/Hello-World. +2018-09-06 16:46:19.191 +03:00 [INF] Executed action /Blog/Posts/New in 314.63280000000003ms +2018-09-06 16:46:19.192 +03:00 [INF] Request finished in 353.5385ms 302 +2018-09-06 16:46:19.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-06 16:46:19.718 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:46:19.730 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:46:19.867 +03:00 [INF] Authorization failed. +2018-09-06 16:46:19.903 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:19.941 +03:00 [INF] Executed action /Blog/Posts/Detail in 222.9754ms +2018-09-06 16:46:19.941 +03:00 [INF] Request finished in 739.1577ms 200 text/html; charset=utf-8 +2018-09-06 16:46:19.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718376880133233 +2018-09-06 16:46:19.994 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:46:19.995 +03:00 [INF] Request finished in 4.0245ms 200 text/css +2018-09-06 16:46:19.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718376880103222 +2018-09-06 16:46:20.000 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:46:20.000 +03:00 [INF] Request finished in 1.1921ms 200 text/css +2018-09-06 16:46:20.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718376880823195 +2018-09-06 16:46:20.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718376880123203 +2018-09-06 16:46:20.011 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:46:20.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718376880093241 +2018-09-06 16:46:20.011 +03:00 [INF] Request finished in 2.2769ms 200 text/css +2018-09-06 16:46:20.012 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:46:20.013 +03:00 [INF] Request finished in 1.3918ms 200 text/css +2018-09-06 16:46:20.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:46:20.022 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:46:20.022 +03:00 [INF] Request finished in 1.5275ms 200 text/css +2018-09-06 16:46:20.027 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:46:20.029 +03:00 [INF] Request finished in 20.2189ms 200 text/css +2018-09-06 16:46:20.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:46:20.033 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:46:20.033 +03:00 [INF] Request finished in 0.8786ms 200 text/css +2018-09-06 16:46:20.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:46:20.038 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:46:20.039 +03:00 [INF] Request finished in 1.5104ms 200 text/css +2018-09-06 16:46:20.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718382831336960 +2018-09-06 16:46:20.049 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:46:20.049 +03:00 [INF] Request finished in 0.7544ms 200 text/css +2018-09-06 16:46:20.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-06 16:46:20.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718376880093241 +2018-09-06 16:46:20.060 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:46:20.060 +03:00 [INF] Request finished in 1.0916ms 200 application/javascript +2018-09-06 16:46:20.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718376880133233 +2018-09-06 16:46:20.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718376879963202 +2018-09-06 16:46:20.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718376880093241 +2018-09-06 16:46:20.072 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:46:20.072 +03:00 [INF] Request finished in 0.8959ms 200 application/javascript +2018-09-06 16:46:20.079 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:46:20.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718376879973213 +2018-09-06 16:46:20.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:46:20.080 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:46:20.080 +03:00 [INF] Request finished in 1.0758ms 200 application/javascript +2018-09-06 16:46:20.080 +03:00 [INF] Request finished in 7.7427ms 200 application/javascript +2018-09-06 16:46:20.081 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:46:20.082 +03:00 [INF] Request finished in 10.5174ms 200 application/javascript +2018-09-06 16:46:20.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718376879973213 +2018-09-06 16:46:20.098 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:46:20.099 +03:00 [INF] Request finished in 2.609ms 200 application/javascript +2018-09-06 16:46:20.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718376879963202 +2018-09-06 16:46:20.101 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:46:20.101 +03:00 [INF] Request finished in 2.1275ms 200 application/javascript +2018-09-06 16:46:20.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718376880173192 +2018-09-06 16:46:20.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718376880163211 +2018-09-06 16:46:20.117 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:46:20.117 +03:00 [INF] Request finished in 3.5252ms 200 application/javascript +2018-09-06 16:46:20.128 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:46:20.128 +03:00 [INF] Request finished in 11.9496ms 200 application/javascript +2018-09-06 16:46:20.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718376880123203 +2018-09-06 16:46:20.139 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:46:20.139 +03:00 [INF] Request finished in 0.854ms 200 application/javascript +2018-09-06 16:46:20.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718376879983213 +2018-09-06 16:46:20.152 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:46:20.152 +03:00 [INF] Request finished in 1.1065ms 200 application/javascript +2018-09-06 16:46:20.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718376881023195 +2018-09-06 16:46:20.162 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:46:20.162 +03:00 [INF] Request finished in 1.0924ms 200 application/javascript +2018-09-06 16:46:20.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718376879983213 +2018-09-06 16:46:20.163 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:46:20.163 +03:00 [INF] Request finished in 0.9623ms 200 application/javascript +2018-09-06 16:46:20.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:46:20.173 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:46:20.174 +03:00 [INF] Request finished in 1.5926ms 200 application/javascript +2018-09-06 16:46:20.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:46:20.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:46:20.181 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:46:20.181 +03:00 [INF] Request finished in 1.2966ms 200 application/javascript +2018-09-06 16:46:20.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:46:20.182 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:46:20.182 +03:00 [INF] Request finished in 0.9102ms 200 application/javascript +2018-09-06 16:46:20.182 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:46:20.182 +03:00 [INF] Request finished in 1.5365ms 200 application/javascript +2018-09-06 16:46:20.195 +03:00 [INF] Request finished in 136.6104ms 404 +2018-09-06 16:46:20.195 +03:00 [INF] Request finished in 115.4774ms 404 +2018-09-06 16:46:20.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:46:20.200 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:46:20.200 +03:00 [INF] Request finished in 0.9913ms 200 application/javascript +2018-09-06 16:46:20.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:46:20.207 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:46:20.207 +03:00 [INF] Request finished in 2.8828ms 200 application/javascript +2018-09-06 16:46:20.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:46:20.211 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:46:20.211 +03:00 [INF] Request finished in 1.4624ms 200 application/javascript +2018-09-06 16:46:20.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:46:20.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:46:20.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:46:20.241 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:46:20.241 +03:00 [INF] Request finished in 3.5144ms 200 application/javascript +2018-09-06 16:46:20.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:46:20.248 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:46:20.248 +03:00 [INF] Request finished in 1.3166ms 200 application/javascript +2018-09-06 16:46:20.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718382831336960 +2018-09-06 16:46:20.252 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:46:20.252 +03:00 [INF] Request finished in 0.6958ms 200 application/javascript +2018-09-06 16:46:20.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718382831336960 +2018-09-06 16:46:20.255 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:46:20.255 +03:00 [INF] Request finished in 0.829ms 200 application/javascript +2018-09-06 16:46:20.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:46:20.256 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:46:20.256 +03:00 [INF] Request finished in 0.9198ms 200 image/svg+xml +2018-09-06 16:46:20.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:46:20.269 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:46:20.269 +03:00 [INF] Request finished in 1.0438ms 200 image/svg+xml +2018-09-06 16:46:20.281 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:46:20.282 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:46:20.283 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.283 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.284 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.285 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.285 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.286 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.286 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.287 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.288 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.288 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.289 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:46:20.289 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.289 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.289 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:46:20.290 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.290 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.23600000000000002ms. +2018-09-06 16:46:20.290 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:46:20.291 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.291 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7281ms +2018-09-06 16:46:20.292 +03:00 [INF] Request finished in 69.4743ms 200 text/plain; charset=utf-8 +2018-09-06 16:46:20.292 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.293 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.294 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.294 +03:00 [INF] Authorization was successful. +2018-09-06 16:46:20.295 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.296 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.296 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.296 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.297 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.297 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.298 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.299 +03:00 [INF] Authorization failed. +2018-09-06 16:46:20.300 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.4189ms. +2018-09-06 16:46:20.301 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:46:20.301 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.7556ms +2018-09-06 16:46:20.301 +03:00 [INF] Request finished in 83.3796ms 200 text/plain; charset=utf-8 +2018-09-06 16:46:20.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:46:20.315 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:46:20.315 +03:00 [INF] Request finished in 2.0986ms 200 font/woff2 +2018-09-06 16:46:20.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:46:20.358 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:46:20.358 +03:00 [INF] Request finished in 8.1482ms 200 image/jpeg +2018-09-06 16:46:28.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:46:28.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-06 16:46:28.138 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-06 16:46:28.138 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:46:28.138 +03:00 [INF] Request finished in 1.3562ms 200 image/png +2018-09-06 16:46:28.139 +03:00 [INF] Request finished in 1.4199ms 200 image/png +2018-09-06 16:53:29.861 +03:00 [INF] Loaded modules: +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:53:29.879 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:53:29.880 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:53:29.881 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:53:31.997 +03:00 [INF] Initialized all modules. +2018-09-06 16:53:32.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-06 16:53:34.898 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:53:35.100 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:53:35.598 +03:00 [INF] Authorization failed. +2018-09-06 16:53:35.779 +03:00 [INF] Authorization was successful. +2018-09-06 16:54:02.317 +03:00 [INF] Loaded modules: +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:54:02.332 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:54:02.333 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:54:02.334 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:54:02.335 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:54:02.335 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:54:02.335 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:54:02.335 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:54:02.335 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:54:04.336 +03:00 [INF] Initialized all modules. +2018-09-06 16:54:04.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-06 16:54:07.025 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:54:07.231 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:54:07.735 +03:00 [INF] Authorization failed. +2018-09-06 16:54:07.931 +03:00 [INF] Authorization was successful. +2018-09-06 16:54:25.531 +03:00 [INF] Loaded modules: +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:54:25.548 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:54:25.549 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:54:25.550 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:54:25.551 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:54:25.551 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:54:27.170 +03:00 [INF] Initialized all modules. +2018-09-06 16:54:27.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-06 16:54:29.857 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:54:30.025 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:54:30.487 +03:00 [INF] Authorization failed. +2018-09-06 16:54:30.700 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:23.017 +03:00 [INF] Loaded modules: +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:55:23.032 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:55:23.033 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:55:23.034 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:55:24.778 +03:00 [INF] Initialized all modules. +2018-09-06 16:55:24.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-06 16:55:27.138 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-06 16:55:27.158 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-06 16:55:28.492 +03:00 [INF] Executed action /Index in 1346.9074ms +2018-09-06 16:55:28.508 +03:00 [INF] Request finished in 3512.6048ms 200 text/html; charset=utf-8 +2018-09-06 16:55:28.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-06 16:55:28.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-06 16:55:28.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-06 16:55:28.550 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:55:28.550 +03:00 [INF] Request finished in 19.1898ms 200 text/css +2018-09-06 16:55:28.552 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:55:28.552 +03:00 [INF] Request finished in 15.6144ms 200 text/css +2018-09-06 16:55:28.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-06 16:55:28.554 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:55:28.554 +03:00 [INF] Request finished in 1.8964ms 200 text/css +2018-09-06 16:55:28.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-06 16:55:28.555 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:55:28.556 +03:00 [INF] Request finished in 1.0836ms 200 text/css +2018-09-06 16:55:28.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:55:28.560 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:55:28.560 +03:00 [INF] Request finished in 1.1367ms 200 text/css +2018-09-06 16:55:28.569 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:55:28.569 +03:00 [INF] Request finished in 38.6828ms 200 text/css +2018-09-06 16:55:28.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:55:28.575 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:55:28.575 +03:00 [INF] Request finished in 1.0902ms 200 text/css +2018-09-06 16:55:28.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:55:28.576 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:55:28.576 +03:00 [INF] Request finished in 1.0733ms 200 text/css +2018-09-06 16:55:28.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-06 16:55:28.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-06 16:55:28.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-06 16:55:28.602 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-06 16:55:28.602 +03:00 [INF] Request finished in 2.6125ms 200 image/png +2018-09-06 16:55:28.603 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-06 16:55:28.603 +03:00 [INF] Request finished in 3.8468ms 200 image/png +2018-09-06 16:55:28.602 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-06 16:55:28.612 +03:00 [INF] Request finished in 12.3956ms 200 image/png +2018-09-06 16:55:28.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-06 16:55:28.624 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-06 16:55:28.624 +03:00 [INF] Request finished in 5.5944ms 200 image/png +2018-09-06 16:55:28.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-06 16:55:28.628 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-06 16:55:28.629 +03:00 [INF] Request finished in 2.8574ms 200 image/png +2018-09-06 16:55:28.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-06 16:55:28.635 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-06 16:55:28.635 +03:00 [INF] Request finished in 1.4999ms 200 image/png +2018-09-06 16:55:28.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-06 16:55:28.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-06 16:55:28.647 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-06 16:55:28.648 +03:00 [INF] Request finished in 2.9485ms 200 image/png +2018-09-06 16:55:28.649 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-06 16:55:28.649 +03:00 [INF] Request finished in 1.6583ms 200 image/png +2018-09-06 16:55:28.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-06 16:55:28.653 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-06 16:55:28.655 +03:00 [INF] Request finished in 4.7842ms 200 image/png +2018-09-06 16:55:28.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-06 16:55:28.658 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-06 16:55:28.658 +03:00 [INF] Request finished in 2.7154ms 200 image/png +2018-09-06 16:55:28.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-06 16:55:28.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-06 16:55:28.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-06 16:55:28.665 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-06 16:55:28.665 +03:00 [INF] Request finished in 1.5619ms 200 image/png +2018-09-06 16:55:28.665 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-06 16:55:28.665 +03:00 [INF] Request finished in 1.978ms 200 image/png +2018-09-06 16:55:28.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-06 16:55:28.666 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-06 16:55:28.666 +03:00 [INF] Request finished in 3.0995ms 200 image/png +2018-09-06 16:55:28.670 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-06 16:55:28.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-06 16:55:28.673 +03:00 [INF] Request finished in 5.2172ms 200 image/png +2018-09-06 16:55:28.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-06 16:55:28.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-06 16:55:28.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-06 16:55:28.679 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-06 16:55:28.679 +03:00 [INF] Request finished in 2.3971ms 200 image/png +2018-09-06 16:55:28.681 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-06 16:55:28.681 +03:00 [INF] Request finished in 3.5554ms 200 image/png +2018-09-06 16:55:28.681 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-06 16:55:28.682 +03:00 [INF] Request finished in 4.9624ms 200 image/png +2018-09-06 16:55:28.682 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-06 16:55:28.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-06 16:55:28.682 +03:00 [INF] Request finished in 9.7719ms 200 image/png +2018-09-06 16:55:28.685 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-06 16:55:28.687 +03:00 [INF] Request finished in 4.7326ms 200 image/png +2018-09-06 16:55:28.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-06 16:55:28.693 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-06 16:55:28.694 +03:00 [INF] Request finished in 7.2064ms 200 image/png +2018-09-06 16:55:28.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-06 16:55:28.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-06 16:55:28.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-06 16:55:28.699 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-06 16:55:28.699 +03:00 [INF] Request finished in 2.9332ms 200 image/png +2018-09-06 16:55:28.700 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-06 16:55:28.700 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-06 16:55:28.700 +03:00 [INF] Request finished in 1.7167ms 200 image/png +2018-09-06 16:55:28.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-06 16:55:28.701 +03:00 [INF] Request finished in 4.4449ms 200 image/png +2018-09-06 16:55:28.702 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-06 16:55:28.702 +03:00 [INF] Request finished in 1.3605ms 200 image/png +2018-09-06 16:55:28.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-06 16:55:28.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-06 16:55:28.712 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-06 16:55:28.712 +03:00 [INF] Request finished in 5.6205ms 200 image/png +2018-09-06 16:55:28.712 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-06 16:55:28.713 +03:00 [INF] Request finished in 4.7698ms 200 image/png +2018-09-06 16:55:28.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-06 16:55:28.715 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-06 16:55:28.715 +03:00 [INF] Request finished in 2.0856ms 200 image/png +2018-09-06 16:55:28.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-06 16:55:28.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-06 16:55:28.722 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-06 16:55:28.723 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-06 16:55:28.723 +03:00 [INF] Request finished in 2.2073ms 200 image/png +2018-09-06 16:55:28.723 +03:00 [INF] Request finished in 2.188ms 200 image/png +2018-09-06 16:55:28.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-06 16:55:28.728 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-06 16:55:28.728 +03:00 [INF] Request finished in 3.1112ms 200 image/png +2018-09-06 16:55:28.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-06 16:55:28.734 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-06 16:55:28.734 +03:00 [INF] Request finished in 2.148ms 200 image/png +2018-09-06 16:55:28.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-06 16:55:28.736 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-06 16:55:28.736 +03:00 [INF] Request finished in 1.6044ms 200 image/png +2018-09-06 16:55:28.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-06 16:55:28.742 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-06 16:55:28.742 +03:00 [INF] Request finished in 1.8154ms 200 image/png +2018-09-06 16:55:28.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-06 16:55:28.750 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-06 16:55:28.750 +03:00 [INF] Request finished in 1.6334ms 200 image/png +2018-09-06 16:55:28.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-06 16:55:28.752 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-06 16:55:28.753 +03:00 [INF] Request finished in 1.4786ms 200 image/png +2018-09-06 16:55:28.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-06 16:55:28.773 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:55:28.774 +03:00 [INF] Request finished in 2.3436ms 200 application/javascript +2018-09-06 16:55:28.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-06 16:55:28.783 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:55:28.784 +03:00 [INF] Request finished in 9.3432ms 200 application/javascript +2018-09-06 16:55:28.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-06 16:55:28.786 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:55:28.786 +03:00 [INF] Request finished in 0.9547ms 200 application/javascript +2018-09-06 16:55:28.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-06 16:55:28.799 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:55:28.799 +03:00 [INF] Request finished in 4.4052ms 200 application/javascript +2018-09-06 16:55:28.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:55:28.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-06 16:55:28.813 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:55:28.813 +03:00 [INF] Request finished in 1.5322ms 200 application/javascript +2018-09-06 16:55:28.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-06 16:55:28.815 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:55:28.815 +03:00 [INF] Request finished in 0.8597ms 200 application/javascript +2018-09-06 16:55:28.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-06 16:55:28.819 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:55:28.819 +03:00 [INF] Request finished in 1.3312ms 200 application/javascript +2018-09-06 16:55:28.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:55:28.830 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:55:28.830 +03:00 [INF] Request finished in 1.1701ms 200 image/svg+xml +2018-09-06 16:55:28.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:55:28.839 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:55:28.839 +03:00 [INF] Request finished in 1.6151ms 200 image/svg+xml +2018-09-06 16:55:28.846 +03:00 [INF] Request finished in 44.178ms 404 +2018-09-06 16:55:28.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-06 16:55:28.848 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:55:28.848 +03:00 [INF] Request finished in 2.0782ms 200 application/javascript +2018-09-06 16:55:28.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-06 16:55:28.862 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:55:28.862 +03:00 [INF] Request finished in 8.4955ms 200 application/javascript +2018-09-06 16:55:28.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-06 16:55:28.864 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:55:28.864 +03:00 [INF] Request finished in 1.0951ms 200 application/javascript +2018-09-06 16:55:28.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-06 16:55:28.873 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:55:28.873 +03:00 [INF] Request finished in 1.7522ms 200 application/javascript +2018-09-06 16:55:28.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:55:28.882 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:55:28.882 +03:00 [INF] Request finished in 2.7104ms 200 font/woff2 +2018-09-06 16:55:28.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-06 16:55:28.885 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:55:28.885 +03:00 [INF] Request finished in 1.2073ms 200 application/javascript +2018-09-06 16:55:28.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-06 16:55:28.894 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:55:28.894 +03:00 [INF] Request finished in 1.0981ms 200 application/javascript +2018-09-06 16:55:28.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:55:28.901 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:55:28.901 +03:00 [INF] Request finished in 1.7471ms 200 application/javascript +2018-09-06 16:55:28.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:55:28.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:55:28.902 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:55:28.902 +03:00 [INF] Request finished in 1.4877ms 200 application/javascript +2018-09-06 16:55:28.902 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:55:28.902 +03:00 [INF] Request finished in 1.1343ms 200 application/javascript +2018-09-06 16:55:28.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:55:28.916 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:55:28.916 +03:00 [INF] Request finished in 1.2076ms 200 application/javascript +2018-09-06 16:55:28.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:55:28.931 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:55:28.931 +03:00 [INF] Request finished in 1.1042ms 200 application/javascript +2018-09-06 16:55:28.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:55:28.936 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:55:28.937 +03:00 [INF] Request finished in 1.7208ms 200 application/javascript +2018-09-06 16:55:28.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:55:28.942 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:55:28.942 +03:00 [INF] Request finished in 1.0422ms 200 application/javascript +2018-09-06 16:55:28.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:55:28.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:55:28.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:55:28.960 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:55:28.961 +03:00 [INF] Request finished in 1.6462ms 200 application/javascript +2018-09-06 16:55:28.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:55:28.967 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:55:28.967 +03:00 [INF] Request finished in 1.1222ms 200 application/javascript +2018-09-06 16:55:28.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:55:28.983 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:55:28.983 +03:00 [INF] Request finished in 14.4399ms 200 image/jpeg +2018-09-06 16:55:29.025 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:55:29.025 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:55:29.072 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:55:29.076 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:55:29.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.821ms. +2018-09-06 16:55:29.152 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:55:29.153 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 127.7291ms +2018-09-06 16:55:29.153 +03:00 [INF] Request finished in 201.0906ms 200 text/plain; charset=utf-8 +2018-09-06 16:55:29.203 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.210 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.213 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.215 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.218 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.220 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.224 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.228 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.230 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.232 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.234 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.236 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.237 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.240 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.243 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.245 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.248 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.250 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:29.252 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.254 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.257 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.259 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.261 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.264 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.267 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.269 +03:00 [INF] Authorization failed. +2018-09-06 16:55:29.286 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 213.9494ms. +2018-09-06 16:55:29.296 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:55:29.296 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 271.4119ms +2018-09-06 16:55:29.296 +03:00 [INF] Request finished in 352.0496ms 200 text/plain; charset=utf-8 +2018-09-06 16:55:29.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:55:29.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:55:29.464 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:55:29.464 +03:00 [INF] Request finished in 0.9714ms 200 image/png +2018-09-06 16:55:29.465 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:55:29.465 +03:00 [INF] Request finished in 1.0136ms 200 image/png +2018-09-06 16:55:43.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-06 16:55:43.622 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-06 16:55:43.661 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:55:43.828 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-06 16:55:43.829 +03:00 [INF] Executed action /Blog/Index in 206.8324ms +2018-09-06 16:55:43.829 +03:00 [INF] Request finished in 539.1271ms 302 +2018-09-06 16:55:43.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:55:44.266 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:55:44.375 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:55:44.613 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:44.994 +03:00 [INF] Executed action /Blog/Posts/Index in 727.6205ms +2018-09-06 16:55:44.994 +03:00 [INF] Request finished in 1156.4837ms 200 text/html; charset=utf-8 +2018-09-06 16:55:45.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-06 16:55:45.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-06 16:55:45.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-06 16:55:45.036 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:55:45.036 +03:00 [INF] Request finished in 1.3836ms 200 text/css +2018-09-06 16:55:45.038 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:55:45.038 +03:00 [INF] Request finished in 2.2263ms 200 text/css +2018-09-06 16:55:45.040 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:55:45.041 +03:00 [INF] Request finished in 7.8014ms 200 text/css +2018-09-06 16:55:45.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-06 16:55:45.044 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:55:45.044 +03:00 [INF] Request finished in 1.0329ms 200 text/css +2018-09-06 16:55:45.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-06 16:55:45.051 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:55:45.052 +03:00 [INF] Request finished in 0.889ms 200 text/css +2018-09-06 16:55:45.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:55:45.064 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:55:45.064 +03:00 [INF] Request finished in 1.6959ms 200 text/css +2018-09-06 16:55:45.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:55:45.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:55:45.075 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:55:45.074 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:55:45.075 +03:00 [INF] Request finished in 1.4301ms 200 text/css +2018-09-06 16:55:45.075 +03:00 [INF] Request finished in 1.5092ms 200 text/css +2018-09-06 16:55:45.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-06 16:55:45.120 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-06 16:55:45.120 +03:00 [INF] Request finished in 1.2195ms 200 text/css +2018-09-06 16:55:45.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-06 16:55:45.123 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-06 16:55:45.123 +03:00 [INF] Request finished in 1.5478ms 200 text/css +2018-09-06 16:55:45.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:55:45.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718382831336960 +2018-09-06 16:55:45.135 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:55:45.136 +03:00 [INF] Request finished in 2.1314ms 200 text/css +2018-09-06 16:55:45.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-06 16:55:45.163 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:55:45.163 +03:00 [INF] Request finished in 1.0133ms 200 application/javascript +2018-09-06 16:55:45.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-06 16:55:45.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-06 16:55:45.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-06 16:55:45.170 +03:00 [INF] Request finished in 38.0267ms 404 +2018-09-06 16:55:45.170 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:55:45.171 +03:00 [INF] Request finished in 1.1652ms 200 application/javascript +2018-09-06 16:55:45.176 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:55:45.177 +03:00 [INF] Request finished in 10.5169ms 200 application/javascript +2018-09-06 16:55:45.178 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:55:45.178 +03:00 [INF] Request finished in 9.0221ms 200 application/javascript +2018-09-06 16:55:45.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:55:45.181 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:55:45.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:55:45.181 +03:00 [INF] Request finished in 0.9864ms 200 image/svg+xml +2018-09-06 16:55:45.182 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:55:45.182 +03:00 [INF] Request finished in 0.8108ms 200 image/svg+xml +2018-09-06 16:55:45.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:55:45.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:55:45.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-06 16:55:45.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-06 16:55:45.191 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:55:45.192 +03:00 [INF] Request finished in 1.7982ms 200 application/javascript +2018-09-06 16:55:45.192 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:55:45.192 +03:00 [INF] Request finished in 1.0363ms 200 application/javascript +2018-09-06 16:55:45.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-06 16:55:45.211 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:55:45.211 +03:00 [INF] Request finished in 1.1521ms 200 application/javascript +2018-09-06 16:55:45.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-06 16:55:45.215 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:55:45.216 +03:00 [INF] Request finished in 5.3993ms 200 application/javascript +2018-09-06 16:55:45.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-06 16:55:45.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-06 16:55:45.232 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:55:45.232 +03:00 [INF] Request finished in 0.8541ms 200 application/javascript +2018-09-06 16:55:45.233 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:55:45.233 +03:00 [INF] Request finished in 11.457ms 200 application/javascript +2018-09-06 16:55:45.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-06 16:55:45.234 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:55:45.234 +03:00 [INF] Request finished in 1.1105ms 200 application/javascript +2018-09-06 16:55:45.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-06 16:55:45.241 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:55:45.242 +03:00 [INF] Request finished in 5.2892ms 200 application/javascript +2018-09-06 16:55:45.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:55:45.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-06 16:55:45.259 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:55:45.259 +03:00 [INF] Request finished in 2.3088ms 200 application/javascript +2018-09-06 16:55:45.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:55:45.260 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:55:45.260 +03:00 [INF] Request finished in 1.1205ms 200 application/javascript +2018-09-06 16:55:45.261 +03:00 [INF] Request finished in 76.3089ms 404 +2018-09-06 16:55:45.260 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:55:45.261 +03:00 [INF] Request finished in 4.4854ms 200 application/javascript +2018-09-06 16:55:45.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:55:45.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:55:45.271 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:55:45.271 +03:00 [INF] Request finished in 0.9046ms 200 application/javascript +2018-09-06 16:55:45.271 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:55:45.272 +03:00 [INF] Request finished in 1.5918ms 200 application/javascript +2018-09-06 16:55:45.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:55:45.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:55:45.274 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:55:45.274 +03:00 [INF] Request finished in 2.2389ms 200 application/javascript +2018-09-06 16:55:45.276 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:55:45.276 +03:00 [INF] Request finished in 4.4025ms 200 application/javascript +2018-09-06 16:55:45.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:55:45.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:55:45.284 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:55:45.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:55:45.285 +03:00 [INF] Request finished in 1.2672ms 200 application/javascript +2018-09-06 16:55:45.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:55:45.292 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:55:45.292 +03:00 [INF] Request finished in 1.5924ms 200 application/javascript +2018-09-06 16:55:45.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:55:45.296 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:55:45.296 +03:00 [INF] Request finished in 1.2509ms 200 application/javascript +2018-09-06 16:55:45.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-06 16:55:45.305 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:55:45.306 +03:00 [INF] Request finished in 3.3755ms 200 application/javascript +2018-09-06 16:55:45.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718382831336960 +2018-09-06 16:55:45.309 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:55:45.310 +03:00 [INF] Request finished in 1.1793ms 200 application/javascript +2018-09-06 16:55:45.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718382831336960 +2018-09-06 16:55:45.319 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:55:45.319 +03:00 [INF] Request finished in 1.0281ms 200 application/javascript +2018-09-06 16:55:45.344 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:55:45.345 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:55:45.347 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.347 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.348 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.349 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.350 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.350 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.351 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.352 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.352 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.352 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:55:45.353 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.353 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:55:45.353 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.354 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2277ms. +2018-09-06 16:55:45.354 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:55:45.354 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.355 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1752000000000002ms +2018-09-06 16:55:45.356 +03:00 [INF] Request finished in 71.5578ms 200 text/plain; charset=utf-8 +2018-09-06 16:55:45.357 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.358 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.359 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.360 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.361 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.362 +03:00 [INF] Authorization was successful. +2018-09-06 16:55:45.362 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.363 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.364 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.364 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.365 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.365 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.366 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.367 +03:00 [INF] Authorization failed. +2018-09-06 16:55:45.369 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 23.2008ms. +2018-09-06 16:55:45.369 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:55:45.369 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.747300000000003ms +2018-09-06 16:55:45.369 +03:00 [INF] Request finished in 86.9923ms 200 text/plain; charset=utf-8 +2018-09-06 16:55:45.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:55:45.614 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:55:45.614 +03:00 [INF] Request finished in 2.0872ms 200 font/woff2 +2018-09-06 16:55:45.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:55:45.686 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:55:45.686 +03:00 [INF] Request finished in 7.6801ms 200 image/jpeg +2018-09-06 16:55:45.879 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:55:45.892 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:55:45.938 +03:00 [INF] Executed action /Blog/Posts/Detail in 58.524ms +2018-09-06 16:55:45.954 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:55:46.003 +03:00 [INF] Request finished in 819.9958ms 500 text/html; charset=utf-8 +2018-09-06 16:55:53.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:55:53.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:55:53.909 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:55:53.909 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:55:53.909 +03:00 [INF] Request finished in 1.1914ms 200 image/png +2018-09-06 16:55:53.909 +03:00 [INF] Request finished in 1.1372ms 200 image/png +2018-09-06 16:57:02.347 +03:00 [INF] Loaded modules: +2018-09-06 16:57:02.367 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:57:02.367 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:57:02.368 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:57:02.369 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:57:02.370 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:57:04.024 +03:00 [INF] Initialized all modules. +2018-09-06 16:57:04.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:57:06.751 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:57:06.944 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:57:07.481 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:08.794 +03:00 [INF] Executed action /Blog/Posts/Index in 2038.3277ms +2018-09-06 16:57:08.811 +03:00 [INF] Request finished in 4570.5945ms 200 text/html; charset=utf-8 +2018-09-06 16:57:08.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-06 16:57:08.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-06 16:57:08.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-06 16:57:08.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-06 16:57:08.864 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-06 16:57:08.864 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-06 16:57:08.864 +03:00 [INF] Request finished in 14.6309ms 200 text/css +2018-09-06 16:57:08.864 +03:00 [INF] Request finished in 6.7251ms 200 text/css +2018-09-06 16:57:08.864 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-06 16:57:08.865 +03:00 [INF] Request finished in 15.2882ms 200 text/css +2018-09-06 16:57:08.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-06 16:57:08.875 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-06 16:57:08.875 +03:00 [INF] Request finished in 2.512ms 200 text/css +2018-09-06 16:57:08.876 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-06 16:57:08.876 +03:00 [INF] Request finished in 26.4814ms 200 text/css +2018-09-06 16:57:08.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-06 16:57:08.883 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-06 16:57:08.883 +03:00 [INF] Request finished in 1.6221ms 200 text/css +2018-09-06 16:57:08.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-06 16:57:08.934 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-06 16:57:08.934 +03:00 [INF] Request finished in 1.0372ms 200 text/css +2018-09-06 16:57:08.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-06 16:57:08.937 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-06 16:57:08.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-06 16:57:08.937 +03:00 [INF] Request finished in 1.0547ms 200 text/css +2018-09-06 16:57:08.938 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-06 16:57:08.939 +03:00 [INF] Request finished in 1.8898ms 200 text/css +2018-09-06 16:57:08.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-06 16:57:08.950 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-06 16:57:08.950 +03:00 [INF] Request finished in 1.0902ms 200 text/css +2018-09-06 16:57:08.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.owl.theme.green.min.css?_v=0 +2018-09-06 16:57:08.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718382831336960 +2018-09-06 16:57:08.954 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-06 16:57:08.954 +03:00 [INF] Request finished in 1.9867ms 200 text/css +2018-09-06 16:57:08.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-06 16:57:08.965 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-06 16:57:08.965 +03:00 [INF] Request finished in 0.8956ms 200 application/javascript +2018-09-06 16:57:08.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-06 16:57:08.977 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-06 16:57:08.977 +03:00 [INF] Request finished in 6.2499ms 200 application/javascript +2018-09-06 16:57:08.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-06 16:57:08.981 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-06 16:57:08.981 +03:00 [INF] Request finished in 0.9051ms 200 application/javascript +2018-09-06 16:57:08.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-06 16:57:08.993 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-06 16:57:08.993 +03:00 [INF] Request finished in 6.3274ms 200 application/javascript +2018-09-06 16:57:08.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-06 16:57:08.999 +03:00 [INF] Request finished in 48.1774ms 404 +2018-09-06 16:57:08.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-06 16:57:09.000 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-06 16:57:09.001 +03:00 [INF] Request finished in 1.302ms 200 application/javascript +2018-09-06 16:57:09.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-06 16:57:09.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-06 16:57:09.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-06 16:57:09.015 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-06 16:57:09.015 +03:00 [INF] Request finished in 1.2573ms 200 application/javascript +2018-09-06 16:57:09.018 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-06 16:57:09.020 +03:00 [INF] Request finished in 5.8642ms 200 application/javascript +2018-09-06 16:57:09.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-06 16:57:09.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-06 16:57:09.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-06 16:57:09.032 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-06 16:57:09.034 +03:00 [INF] Request finished in 2.8735ms 200 application/javascript +2018-09-06 16:57:09.036 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-06 16:57:09.037 +03:00 [INF] Request finished in 5.9973ms 200 application/javascript +2018-09-06 16:57:09.039 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-06 16:57:09.039 +03:00 [INF] Request finished in 11.8033ms 200 application/javascript +2018-09-06 16:57:09.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-06 16:57:09.041 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-06 16:57:09.042 +03:00 [INF] Request finished in 1.3696ms 200 application/javascript +2018-09-06 16:57:09.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-06 16:57:09.047 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-06 16:57:09.047 +03:00 [INF] Request finished in 2.0923ms 200 application/javascript +2018-09-06 16:57:09.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-06 16:57:09.055 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-06 16:57:09.055 +03:00 [INF] Request finished in 1.4593ms 200 application/javascript +2018-09-06 16:57:09.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-06 16:57:09.062 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-06 16:57:09.063 +03:00 [INF] Request finished in 1.8877ms 200 application/javascript +2018-09-06 16:57:09.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-06 16:57:09.067 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-06 16:57:09.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-06 16:57:09.067 +03:00 [INF] Request finished in 1.1544ms 200 application/javascript +2018-09-06 16:57:09.068 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-06 16:57:09.068 +03:00 [INF] Request finished in 1.0268ms 200 application/javascript +2018-09-06 16:57:09.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-06 16:57:09.069 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-06 16:57:09.070 +03:00 [INF] Request finished in 1.74ms 200 application/javascript +2018-09-06 16:57:09.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-06 16:57:09.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-06 16:57:09.077 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-06 16:57:09.077 +03:00 [INF] Request finished in 1.4935ms 200 application/javascript +2018-09-06 16:57:09.077 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-06 16:57:09.078 +03:00 [INF] Request finished in 1.8436ms 200 application/javascript +2018-09-06 16:57:09.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-06 16:57:09.084 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-06 16:57:09.084 +03:00 [INF] Request finished in 4.0327ms 200 application/javascript +2018-09-06 16:57:09.087 +03:00 [INF] Request finished in 89.4655ms 404 +2018-09-06 16:57:09.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-06 16:57:09.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-06 16:57:09.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-06 16:57:09.092 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-06 16:57:09.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-06 16:57:09.093 +03:00 [INF] Request finished in 2.7701ms 200 application/javascript +2018-09-06 16:57:09.094 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-06 16:57:09.095 +03:00 [INF] Request finished in 1.2583ms 200 application/javascript +2018-09-06 16:57:09.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-06 16:57:09.104 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-06 16:57:09.104 +03:00 [INF] Request finished in 5.4033ms 200 application/javascript +2018-09-06 16:57:09.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718382831336960 +2018-09-06 16:57:09.106 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-06 16:57:09.106 +03:00 [INF] Request finished in 1.3032ms 200 application/javascript +2018-09-06 16:57:09.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718382831336960 +2018-09-06 16:57:09.109 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-06 16:57:09.109 +03:00 [INF] Request finished in 1.1249ms 200 application/javascript +2018-09-06 16:57:09.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-06 16:57:09.115 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-06 16:57:09.115 +03:00 [INF] Request finished in 1.2465ms 200 image/svg+xml +2018-09-06 16:57:09.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-06 16:57:09.118 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-06 16:57:09.119 +03:00 [INF] Request finished in 1.0866ms 200 image/svg+xml +2018-09-06 16:57:09.153 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:57:09.157 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-06 16:57:09.199 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-06 16:57:09.202 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-06 16:57:09.216 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.220 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.225 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.229 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.232 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.235 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.240 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.244 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.247 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.250 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.254 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.261 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.266 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.270 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.274 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.278 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.282 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.296 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:09.301 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.304 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.308 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.311 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.314 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.318 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.321 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.323 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 114.4ms. +2018-09-06 16:57:09.325 +03:00 [INF] Authorization failed. +2018-09-06 16:57:09.335 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:57:09.336 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 178.51170000000002ms +2018-09-06 16:57:09.336 +03:00 [INF] Request finished in 246.3643ms 200 text/plain; charset=utf-8 +2018-09-06 16:57:09.371 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 171.5569ms. +2018-09-06 16:57:09.381 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-06 16:57:09.381 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 228.04850000000002ms +2018-09-06 16:57:09.382 +03:00 [INF] Request finished in 294.152ms 200 text/plain; charset=utf-8 +2018-09-06 16:57:09.654 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-06 16:57:09.671 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:57:09.729 +03:00 [INF] Executed action /Blog/Posts/Detail in 74.7548ms +2018-09-06 16:57:09.746 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-06 16:57:09.801 +03:00 [INF] Request finished in 797.6125ms 500 text/html; charset=utf-8 +2018-09-06 16:57:09.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-06 16:57:09.826 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-06 16:57:09.826 +03:00 [INF] Request finished in 3.661ms 200 font/woff2 +2018-09-06 16:57:09.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-06 16:57:09.866 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-06 16:57:09.867 +03:00 [INF] Request finished in 8.7563ms 200 image/jpeg +2018-09-06 16:57:18.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-06 16:57:18.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-06 16:57:18.496 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-06 16:57:18.496 +03:00 [INF] Request finished in 1.4752ms 200 image/png +2018-09-06 16:57:18.496 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-06 16:57:18.496 +03:00 [INF] Request finished in 1.6972ms 200 image/png +2018-09-06 16:57:32.749 +03:00 [INF] Loaded modules: +2018-09-06 16:57:32.762 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-06 16:57:32.762 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-06 16:57:32.762 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-06 16:57:32.762 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-06 16:57:32.763 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-06 16:57:32.764 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-06 16:57:32.765 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-06 16:57:34.423 +03:00 [INF] Initialized all modules. +2018-09-06 16:57:34.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-06 16:57:37.065 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-06 16:57:37.230 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-06 16:57:37.728 +03:00 [INF] Authorization was successful. +2018-09-06 16:57:39.043 +03:00 [INF] Executed action /Blog/Posts/Index in 1973.5061ms +2018-09-06 16:57:39.058 +03:00 [INF] Request finished in 4282.045ms 200 text/html; charset=utf-8 +2018-09-07 09:30:24.343 +03:00 [INF] Loaded modules: +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:30:24.364 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:30:24.365 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:30:24.366 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:30:24.366 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:30:24.366 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:30:24.366 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:30:24.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:30:26.051 +03:00 [INF] Initialized all modules. +2018-09-07 09:30:26.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-07 09:30:28.728 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-07 09:30:28.751 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-07 09:30:30.479 +03:00 [INF] Executed action /Index in 1743.1188000000002ms +2018-09-07 09:30:30.504 +03:00 [INF] Request finished in 4297.3977ms 200 text/html; charset=utf-8 +2018-09-07 09:30:30.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:30:30.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:30:30.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:30:30.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:30:30.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:30:30.542 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:30:30.542 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:30:30.542 +03:00 [INF] Request finished in 23.1105ms 200 text/css +2018-09-07 09:30:30.542 +03:00 [INF] Request finished in 21.8464ms 200 text/css +2018-09-07 09:30:30.542 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:30:30.542 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:30:30.542 +03:00 [INF] Request finished in 20.3304ms 200 text/css +2018-09-07 09:30:30.542 +03:00 [INF] Request finished in 13.7831ms 200 text/css +2018-09-07 09:30:30.554 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:30:30.555 +03:00 [INF] Request finished in 36.4704ms 200 text/css +2018-09-07 09:30:30.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:30:30.560 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:30:30.560 +03:00 [INF] Request finished in 1.7599ms 200 application/javascript +2018-09-07 09:30:30.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:30:30.572 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:30:30.572 +03:00 [INF] Request finished in 1.7199ms 200 application/javascript +2018-09-07 09:30:30.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:30:30.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:30:30.592 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:30:30.593 +03:00 [INF] Request finished in 19.2212ms 200 application/javascript +2018-09-07 09:30:30.596 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:30:30.597 +03:00 [INF] Request finished in 7.2193ms 200 application/javascript +2018-09-07 09:30:30.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:30:30.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:30:30.604 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:30:30.604 +03:00 [INF] Request finished in 2.672ms 200 application/javascript +2018-09-07 09:30:30.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:30:30.608 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:30:30.608 +03:00 [INF] Request finished in 1.5843ms 200 application/javascript +2018-09-07 09:30:30.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:30:30.643 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:30:30.643 +03:00 [INF] Request finished in 5.48ms 200 application/javascript +2018-09-07 09:30:30.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:30:30.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:30:30.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:30:30.650 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:30:30.650 +03:00 [INF] Request finished in 6.8479ms 200 application/javascript +2018-09-07 09:30:30.651 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:30:30.652 +03:00 [INF] Request finished in 2.8828ms 200 application/javascript +2018-09-07 09:30:30.669 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:30:30.670 +03:00 [INF] Request finished in 26.1281ms 200 application/javascript +2018-09-07 09:30:30.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:30:30.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:30:30.680 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:30:30.680 +03:00 [INF] Request finished in 2.7268ms 200 application/javascript +2018-09-07 09:30:30.680 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:30:30.681 +03:00 [INF] Request finished in 3.0091ms 200 application/javascript +2018-09-07 09:30:30.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:30:30.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:30:30.700 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:30:30.700 +03:00 [INF] Request finished in 3.2828ms 200 application/javascript +2018-09-07 09:30:30.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:30:30.825 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:30:30.842 +03:00 [INF] Request finished in 244.6671ms 404 +2018-09-07 09:30:30.889 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:30:30.982 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:30:31.031 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:30:31.091 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.102 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.106 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.109 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.112 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.120 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.124 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.128 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.139 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 107.92030000000001ms. +2018-09-07 09:30:31.147 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.152 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.154 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:30:31.155 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 172.17610000000002ms +2018-09-07 09:30:31.155 +03:00 [INF] Request finished in 439.1143ms 200 text/plain; charset=utf-8 +2018-09-07 09:30:31.156 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.168 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.173 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.177 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.180 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.185 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.194 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:31.197 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.210 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.215 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.222 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.225 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.228 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.232 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.238 +03:00 [INF] Authorization failed. +2018-09-07 09:30:31.275 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 386.0731ms. +2018-09-07 09:30:31.293 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:30:31.294 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 468.43ms +2018-09-07 09:30:31.294 +03:00 [INF] Request finished in 595.0955ms 200 text/plain; charset=utf-8 +2018-09-07 09:30:41.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-07 09:30:41.884 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-07 09:30:41.935 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:30:42.117 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-07 09:30:42.118 +03:00 [INF] Executed action /Blog/Index in 233.3291ms +2018-09-07 09:30:42.118 +03:00 [INF] Request finished in 599.11ms 302 +2018-09-07 09:30:42.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:30:42.592 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:30:42.720 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:30:43.021 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.452 +03:00 [INF] Executed action /Blog/Posts/Index in 859.8644ms +2018-09-07 09:30:43.452 +03:00 [INF] Request finished in 1324.419ms 200 text/html; charset=utf-8 +2018-09-07 09:30:43.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:30:43.537 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:30:43.537 +03:00 [INF] Request finished in 1.9721ms 200 text/css +2018-09-07 09:30:43.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:30:43.538 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:30:43.538 +03:00 [INF] Request finished in 1.1366ms 200 text/css +2018-09-07 09:30:43.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:30:43.542 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:30:43.543 +03:00 [INF] Request finished in 4.6697ms 200 text/css +2018-09-07 09:30:43.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:30:43.567 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:30:43.567 +03:00 [INF] Request finished in 1.0369ms 200 text/css +2018-09-07 09:30:43.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:30:43.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:30:43.601 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:30:43.602 +03:00 [INF] Request finished in 0.9308ms 200 text/css +2018-09-07 09:30:43.602 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:30:43.602 +03:00 [INF] Request finished in 1.0026ms 200 text/css +2018-09-07 09:30:43.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:30:43.665 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:30:43.666 +03:00 [INF] Request finished in 2.0433ms 200 text/css +2018-09-07 09:30:43.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:30:43.675 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:30:43.675 +03:00 [INF] Request finished in 1.839ms 200 text/css +2018-09-07 09:30:43.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:30:43.686 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:30:43.686 +03:00 [INF] Request finished in 1.9974ms 200 text/css +2018-09-07 09:30:43.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:30:43.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:30:43.692 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:30:43.692 +03:00 [INF] Request finished in 3.5288ms 200 text/css +2018-09-07 09:30:43.692 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:30:43.692 +03:00 [INF] Request finished in 3.1293ms 200 text/css +2018-09-07 09:30:43.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718984492052823 +2018-09-07 09:30:43.698 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:30:43.698 +03:00 [INF] Request finished in 2.5622ms 200 text/css +2018-09-07 09:30:43.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:30:43.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:30:43.711 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:30:43.711 +03:00 [INF] Request finished in 2.1287ms 200 application/javascript +2018-09-07 09:30:43.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:30:43.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:30:43.733 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:30:43.734 +03:00 [INF] Request finished in 1.0338ms 200 application/javascript +2018-09-07 09:30:43.738 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:30:43.738 +03:00 [INF] Request finished in 6.8291ms 200 application/javascript +2018-09-07 09:30:43.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:30:43.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:30:43.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:30:43.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:30:43.748 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:30:43.748 +03:00 [INF] Request finished in 1.7835ms 200 application/javascript +2018-09-07 09:30:43.748 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:30:43.749 +03:00 [INF] Request finished in 1.3363ms 200 application/javascript +2018-09-07 09:30:43.750 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:30:43.750 +03:00 [INF] Request finished in 5.3336ms 200 application/javascript +2018-09-07 09:30:43.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:30:43.774 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:30:43.774 +03:00 [INF] Request finished in 4.2697ms 200 application/javascript +2018-09-07 09:30:43.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:30:43.783 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:30:43.784 +03:00 [INF] Request finished in 3.5715ms 200 application/javascript +2018-09-07 09:30:43.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:30:43.789 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:30:43.790 +03:00 [INF] Request finished in 1.3093ms 200 application/javascript +2018-09-07 09:30:43.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:30:43.791 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:30:43.791 +03:00 [INF] Request finished in 1.1941ms 200 application/javascript +2018-09-07 09:30:43.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:30:43.803 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:30:43.803 +03:00 [INF] Request finished in 12.765ms 200 application/javascript +2018-09-07 09:30:43.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:30:43.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:30:43.814 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:30:43.814 +03:00 [INF] Request finished in 1.0376ms 200 application/javascript +2018-09-07 09:30:43.815 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:30:43.815 +03:00 [INF] Request finished in 3.721ms 200 application/javascript +2018-09-07 09:30:43.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:30:43.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:30:43.821 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:30:43.821 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:30:43.821 +03:00 [INF] Request finished in 0.9202ms 200 application/javascript +2018-09-07 09:30:43.821 +03:00 [INF] Request finished in 2.9037ms 200 application/javascript +2018-09-07 09:30:43.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:30:43.825 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:30:43.825 +03:00 [INF] Request finished in 1.0135ms 200 application/javascript +2018-09-07 09:30:43.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:30:43.834 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:30:43.834 +03:00 [INF] Request finished in 1.016ms 200 application/javascript +2018-09-07 09:30:43.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:30:43.836 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:30:43.836 +03:00 [INF] Request finished in 1.1412ms 200 application/javascript +2018-09-07 09:30:43.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:30:43.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:30:43.839 +03:00 [INF] Request finished in 1.2529ms 200 application/javascript +2018-09-07 09:30:43.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:30:43.848 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:30:43.848 +03:00 [INF] Request finished in 1.353ms 200 application/javascript +2018-09-07 09:30:43.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:30:43.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:30:43.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:30:43.869 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:30:43.870 +03:00 [INF] Request finished in 2.8927ms 200 application/javascript +2018-09-07 09:30:43.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:30:43.889 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:30:43.890 +03:00 [INF] Request finished in 1.3274ms 200 application/javascript +2018-09-07 09:30:43.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:30:43.904 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:30:43.904 +03:00 [INF] Request finished in 1.52ms 200 application/javascript +2018-09-07 09:30:43.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718984492052823 +2018-09-07 09:30:43.905 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:30:43.905 +03:00 [INF] Request finished in 0.8216ms 200 application/javascript +2018-09-07 09:30:43.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718984492052823 +2018-09-07 09:30:43.916 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:30:43.916 +03:00 [INF] Request finished in 1.4572ms 200 application/javascript +2018-09-07 09:30:43.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:30:43.918 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:30:43.918 +03:00 [INF] Request finished in 1.5429ms 200 image/svg+xml +2018-09-07 09:30:43.918 +03:00 [INF] Request finished in 173.126ms 404 +2018-09-07 09:30:43.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:30:43.926 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:30:43.926 +03:00 [INF] Request finished in 1.5494ms 200 image/svg+xml +2018-09-07 09:30:43.940 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:30:43.940 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:30:43.941 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.942 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.943 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.944 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.945 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.946 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.947 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.947 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:30:43.948 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.948 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:30:43.949 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.949 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2523ms. +2018-09-07 09:30:43.949 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:30:43.949 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.949 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7726000000000002ms +2018-09-07 09:30:43.949 +03:00 [INF] Request finished in 82.8323ms 200 text/plain; charset=utf-8 +2018-09-07 09:30:43.950 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.950 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.951 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.951 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.952 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.953 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.953 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.954 +03:00 [INF] Authorization was successful. +2018-09-07 09:30:43.955 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.955 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.956 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.956 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.957 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.957 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.958 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.959 +03:00 [INF] Authorization failed. +2018-09-07 09:30:43.961 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.4919ms. +2018-09-07 09:30:43.962 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:30:43.962 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.1082ms +2018-09-07 09:30:43.962 +03:00 [INF] Request finished in 94.0121ms 200 text/plain; charset=utf-8 +2018-09-07 09:30:44.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:30:44.231 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:30:44.231 +03:00 [INF] Request finished in 4.1671ms 200 font/woff2 +2018-09-07 09:30:44.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:30:44.253 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:30:44.253 +03:00 [INF] Request finished in 11.8202ms 200 image/jpeg +2018-09-07 09:30:44.736 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:30:44.757 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:30:44.847 +03:00 [INF] Executed action /Blog/Posts/Detail in 109.967ms +2018-09-07 09:30:44.868 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:30:44.939 +03:00 [INF] Request finished in 1231.4973ms 500 text/html; charset=utf-8 +2018-09-07 09:30:45.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:30:45.200 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:30:45.201 +03:00 [INF] Request finished in 2.1981ms 200 image/png +2018-09-07 09:30:45.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:30:45.204 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:30:45.204 +03:00 [INF] Request finished in 1.9298ms 200 image/png +2018-09-07 09:40:22.609 +03:00 [INF] Loaded modules: +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:40:22.627 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:40:22.628 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:40:22.629 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:40:24.774 +03:00 [INF] Initialized all modules. +2018-09-07 09:40:25.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-07 09:40:27.817 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-07 09:40:27.842 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-07 09:40:29.642 +03:00 [INF] Executed action /Index in 1819.7975000000001ms +2018-09-07 09:40:29.668 +03:00 [INF] Request finished in 4531.8577ms 200 text/html; charset=utf-8 +2018-09-07 09:40:29.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:40:29.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:40:29.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:40:29.690 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-07 09:40:29.691 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-07 09:40:29.691 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-07 09:40:29.694 +03:00 [INF] Request finished in 12.0733ms 304 text/css +2018-09-07 09:40:29.694 +03:00 [INF] Request finished in 9.44ms 304 text/css +2018-09-07 09:40:29.694 +03:00 [INF] Request finished in 9.6875ms 304 text/css +2018-09-07 09:40:29.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:40:29.698 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-07 09:40:29.698 +03:00 [INF] Request finished in 1.9577ms 304 text/css +2018-09-07 09:40:29.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:40:29.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:40:29.701 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-07 09:40:29.701 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-07 09:40:29.701 +03:00 [INF] Request finished in 1.7849ms 304 text/css +2018-09-07 09:40:29.701 +03:00 [INF] Request finished in 2.5262ms 304 text/css +2018-09-07 09:40:29.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:40:29.712 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-07 09:40:29.714 +03:00 [INF] Request finished in 2.384ms 304 text/css +2018-09-07 09:40:29.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:40:29.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:40:29.720 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-07 09:40:29.720 +03:00 [INF] Request finished in 0.5643ms 304 text/css +2018-09-07 09:40:29.720 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-07 09:40:29.720 +03:00 [INF] Request finished in 0.72ms 304 application/javascript +2018-09-07 09:40:29.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:40:29.722 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-07 09:40:29.722 +03:00 [INF] Request finished in 0.7068ms 304 application/javascript +2018-09-07 09:40:29.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:40:29.723 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-07 09:40:29.723 +03:00 [INF] Request finished in 0.8151ms 304 application/javascript +2018-09-07 09:40:29.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:40:29.730 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-07 09:40:29.730 +03:00 [INF] Request finished in 1.1134ms 304 application/javascript +2018-09-07 09:40:29.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:40:29.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:40:29.742 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-07 09:40:29.742 +03:00 [INF] Request finished in 0.6979ms 304 image/svg+xml +2018-09-07 09:40:29.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-07 09:40:29.747 +03:00 [INF] The file /img/modular.png was not modified +2018-09-07 09:40:29.747 +03:00 [INF] Request finished in 1.6345ms 304 image/png +2018-09-07 09:40:29.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-07 09:40:29.753 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-09-07 09:40:29.753 +03:00 [INF] Request finished in 0.7841ms 304 image/png +2018-09-07 09:40:29.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-07 09:40:29.756 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-09-07 09:40:29.756 +03:00 [INF] Request finished in 2.5003ms 304 image/png +2018-09-07 09:40:29.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-07 09:40:29.763 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-07 09:40:29.764 +03:00 [INF] Request finished in 2.0285ms 304 image/png +2018-09-07 09:40:29.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-07 09:40:29.766 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-09-07 09:40:29.766 +03:00 [INF] Request finished in 1.1329ms 304 image/png +2018-09-07 09:40:29.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-07 09:40:29.772 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-09-07 09:40:29.772 +03:00 [INF] Request finished in 0.6153ms 304 image/png +2018-09-07 09:40:29.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-07 09:40:29.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-07 09:40:29.781 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-09-07 09:40:29.781 +03:00 [INF] Request finished in 1.4462ms 304 image/png +2018-09-07 09:40:29.781 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-07 09:40:29.781 +03:00 [INF] Request finished in 0.9979ms 304 image/png +2018-09-07 09:40:29.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-07 09:40:29.784 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-09-07 09:40:29.784 +03:00 [INF] Request finished in 1.8432ms 304 image/png +2018-09-07 09:40:29.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-07 09:40:29.788 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-07 09:40:29.788 +03:00 [INF] Request finished in 0.9434ms 304 image/png +2018-09-07 09:40:29.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-07 09:40:29.801 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-07 09:40:29.801 +03:00 [INF] Request finished in 2.2878ms 304 image/png +2018-09-07 09:40:29.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-07 09:40:29.802 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-07 09:40:29.802 +03:00 [INF] Request finished in 0.8427ms 304 image/png +2018-09-07 09:40:29.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-07 09:40:29.805 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-07 09:40:29.806 +03:00 [INF] Request finished in 0.6598ms 304 image/png +2018-09-07 09:40:29.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-07 09:40:29.818 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-09-07 09:40:29.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-07 09:40:29.818 +03:00 [INF] Request finished in 6.5304ms 304 image/png +2018-09-07 09:40:29.819 +03:00 [INF] The file /img/mt-left.png was not modified +2018-09-07 09:40:29.819 +03:00 [INF] Request finished in 1.1676ms 304 image/png +2018-09-07 09:40:29.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-07 09:40:29.825 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-09-07 09:40:29.825 +03:00 [INF] Request finished in 0.953ms 304 image/png +2018-09-07 09:40:29.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-07 09:40:29.833 +03:00 [INF] The file /assets/my-image.png was not modified +2018-09-07 09:40:29.833 +03:00 [INF] Request finished in 1.2103ms 304 image/png +2018-09-07 09:40:29.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-07 09:40:29.834 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-09-07 09:40:29.835 +03:00 [INF] Request finished in 1.5649ms 304 image/png +2018-09-07 09:40:29.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-07 09:40:29.847 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-09-07 09:40:29.848 +03:00 [INF] Request finished in 2.56ms 304 image/png +2018-09-07 09:40:29.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-07 09:40:29.854 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-09-07 09:40:29.854 +03:00 [INF] Request finished in 1.5584ms 304 image/png +2018-09-07 09:40:29.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-07 09:40:29.857 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-09-07 09:40:29.857 +03:00 [INF] Request finished in 0.895ms 304 image/png +2018-09-07 09:40:29.861 +03:00 [INF] Request finished in 129.712ms 404 +2018-09-07 09:40:29.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-07 09:40:29.865 +03:00 [INF] The file /assets/familiar.png was not modified +2018-09-07 09:40:29.865 +03:00 [INF] Request finished in 1.4109ms 304 image/png +2018-09-07 09:40:29.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-07 09:40:29.881 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-09-07 09:40:29.881 +03:00 [INF] Request finished in 2.8598ms 304 image/png +2018-09-07 09:40:29.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-07 09:40:29.884 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-09-07 09:40:29.885 +03:00 [INF] Request finished in 1.035ms 304 image/png +2018-09-07 09:40:29.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-07 09:40:29.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-07 09:40:29.885 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-09-07 09:40:29.886 +03:00 [INF] Request finished in 0.7891ms 304 image/png +2018-09-07 09:40:29.888 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-09-07 09:40:29.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-07 09:40:29.888 +03:00 [INF] Request finished in 2.9362ms 304 image/png +2018-09-07 09:40:29.889 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-07 09:40:29.889 +03:00 [INF] Request finished in 3.7013ms 304 image/png +2018-09-07 09:40:29.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-07 09:40:29.892 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-09-07 09:40:29.893 +03:00 [INF] Request finished in 2.5666ms 304 image/png +2018-09-07 09:40:29.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-07 09:40:29.894 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-09-07 09:40:29.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-07 09:40:29.894 +03:00 [INF] Request finished in 0.6812ms 304 image/png +2018-09-07 09:40:29.894 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-09-07 09:40:29.894 +03:00 [INF] Request finished in 0.5817ms 304 image/png +2018-09-07 09:40:29.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-07 09:40:29.898 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-09-07 09:40:29.898 +03:00 [INF] Request finished in 1.4695ms 304 image/png +2018-09-07 09:40:29.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-07 09:40:29.903 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-09-07 09:40:29.904 +03:00 [INF] Request finished in 1.7058ms 304 image/png +2018-09-07 09:40:29.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-07 09:40:29.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-07 09:40:29.913 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-09-07 09:40:29.914 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-09-07 09:40:29.914 +03:00 [INF] Request finished in 4.7417ms 304 image/png +2018-09-07 09:40:29.914 +03:00 [INF] Request finished in 1.1482ms 304 image/png +2018-09-07 09:40:29.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-07 09:40:29.922 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-07 09:40:29.922 +03:00 [INF] Request finished in 1.1575ms 304 image/png +2018-09-07 09:40:29.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:40:29.925 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-07 09:40:29.925 +03:00 [INF] Request finished in 1.0954ms 304 image/svg+xml +2018-09-07 09:40:29.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:40:29.931 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-07 09:40:29.931 +03:00 [INF] Request finished in 0.7276ms 304 application/javascript +2018-09-07 09:40:29.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:40:29.935 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-07 09:40:29.936 +03:00 [INF] Request finished in 0.7181ms 304 application/javascript +2018-09-07 09:40:29.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:40:29.941 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-07 09:40:29.941 +03:00 [INF] Request finished in 0.6972ms 304 application/javascript +2018-09-07 09:40:29.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:40:29.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:40:29.957 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-07 09:40:29.957 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-07 09:40:29.958 +03:00 [INF] Request finished in 2.7383ms 304 application/javascript +2018-09-07 09:40:29.958 +03:00 [INF] Request finished in 2.4524ms 304 application/javascript +2018-09-07 09:40:29.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:40:29.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:40:29.971 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-07 09:40:29.971 +03:00 [INF] Request finished in 3.6126ms 304 application/javascript +2018-09-07 09:40:29.971 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-07 09:40:29.971 +03:00 [INF] Request finished in 0.6132ms 304 application/javascript +2018-09-07 09:40:29.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:40:29.975 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-07 09:40:29.976 +03:00 [INF] Request finished in 0.7462ms 304 application/javascript +2018-09-07 09:40:30.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:40:30.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:40:30.006 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-07 09:40:30.007 +03:00 [INF] Request finished in 0.9724ms 304 application/javascript +2018-09-07 09:40:30.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:40:30.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:40:30.007 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-07 09:40:30.007 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-07 09:40:30.007 +03:00 [INF] Request finished in 2.955ms 304 application/javascript +2018-09-07 09:40:30.007 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-07 09:40:30.007 +03:00 [INF] Request finished in 0.3434ms 304 application/javascript +2018-09-07 09:40:30.007 +03:00 [INF] Request finished in 0.48ms 304 application/javascript +2018-09-07 09:40:30.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:40:30.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:40:30.026 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-07 09:40:30.027 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-07 09:40:30.027 +03:00 [INF] Request finished in 0.5899ms 304 application/javascript +2018-09-07 09:40:30.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:40:30.027 +03:00 [INF] Request finished in 1.1927ms 304 application/javascript +2018-09-07 09:40:30.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:40:30.034 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-07 09:40:30.034 +03:00 [INF] Request finished in 0.9802ms 304 application/javascript +2018-09-07 09:40:30.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:40:30.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:40:30.036 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-07 09:40:30.036 +03:00 [INF] Request finished in 1.6186ms 304 application/javascript +2018-09-07 09:40:30.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:40:30.038 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-07 09:40:30.038 +03:00 [INF] Request finished in 0.6675ms 304 application/javascript +2018-09-07 09:40:30.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:40:30.041 +03:00 [INF] The file /js/vs.js was not modified +2018-09-07 09:40:30.041 +03:00 [INF] Request finished in 2.9095ms 304 application/javascript +2018-09-07 09:40:30.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:40:30.053 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-07 09:40:30.054 +03:00 [INF] Request finished in 0.7446ms 304 image/jpeg +2018-09-07 09:40:30.111 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:40:30.113 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:40:30.156 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:40:30.158 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:40:30.261 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 98.4353ms. +2018-09-07 09:40:30.270 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:40:30.271 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 159.3384ms +2018-09-07 09:40:30.271 +03:00 [INF] Request finished in 235.124ms 200 text/plain; charset=utf-8 +2018-09-07 09:40:30.316 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.322 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.326 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.332 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.336 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.339 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.342 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.344 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.348 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.352 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.354 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.357 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.360 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.362 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.365 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.370 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.374 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.376 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:30.379 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.383 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.386 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.388 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.391 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.394 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.397 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.400 +03:00 [INF] Authorization failed. +2018-09-07 09:40:30.426 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 269.5886ms. +2018-09-07 09:40:30.441 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:40:30.442 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 328.76410000000004ms +2018-09-07 09:40:30.442 +03:00 [INF] Request finished in 415.3056ms 200 text/plain; charset=utf-8 +2018-09-07 09:40:30.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:40:30.586 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-07 09:40:30.586 +03:00 [INF] Request finished in 1.0782ms 304 image/png +2018-09-07 09:40:30.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:40:30.592 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-07 09:40:30.592 +03:00 [INF] Request finished in 0.5874ms 304 image/png +2018-09-07 09:40:31.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:40:32.076 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:40:32.236 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:40:32.668 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.038 +03:00 [INF] Executed action /Blog/Posts/Index in 961.9380000000001ms +2018-09-07 09:40:33.039 +03:00 [INF] Request finished in 1451.5957ms 200 text/html; charset=utf-8 +2018-09-07 09:40:33.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:40:33.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:40:33.077 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:40:33.077 +03:00 [INF] Request finished in 2.4606ms 200 text/css +2018-09-07 09:40:33.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:40:33.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:40:33.104 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:40:33.104 +03:00 [INF] Request finished in 1.5952ms 200 text/css +2018-09-07 09:40:33.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:40:33.105 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:40:33.106 +03:00 [INF] Request finished in 1.5308ms 200 text/css +2018-09-07 09:40:33.119 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:40:33.119 +03:00 [INF] Request finished in 18.1283ms 200 text/css +2018-09-07 09:40:33.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:40:33.119 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:40:33.120 +03:00 [INF] Request finished in 53.9358ms 200 text/css +2018-09-07 09:40:33.120 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:40:33.120 +03:00 [INF] Request finished in 1.1146ms 200 text/css +2018-09-07 09:40:33.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:40:33.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:40:33.122 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:40:33.122 +03:00 [INF] Request finished in 1.8833ms 200 text/css +2018-09-07 09:40:33.123 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:40:33.123 +03:00 [INF] Request finished in 1.136ms 200 text/css +2018-09-07 09:40:33.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:40:33.131 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:40:33.131 +03:00 [INF] Request finished in 1.009ms 200 text/css +2018-09-07 09:40:33.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:40:33.154 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:40:33.154 +03:00 [INF] Request finished in 1.1318ms 200 text/css +2018-09-07 09:40:33.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:40:33.171 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:40:33.172 +03:00 [INF] Request finished in 0.9534ms 200 text/css +2018-09-07 09:40:33.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718991892617402 +2018-09-07 09:40:33.178 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:40:33.178 +03:00 [INF] Request finished in 6.2038ms 200 text/css +2018-09-07 09:40:33.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:40:33.183 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:40:33.183 +03:00 [INF] Request finished in 1.3394ms 200 application/javascript +2018-09-07 09:40:33.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:40:33.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:40:33.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:40:33.191 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:40:33.191 +03:00 [INF] Request finished in 1.2657ms 200 application/javascript +2018-09-07 09:40:33.197 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:40:33.197 +03:00 [INF] Request finished in 12.3308ms 200 application/javascript +2018-09-07 09:40:33.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:40:33.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:40:33.214 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:40:33.214 +03:00 [INF] Request finished in 1.3647ms 200 application/javascript +2018-09-07 09:40:33.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:40:33.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:40:33.218 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:40:33.219 +03:00 [INF] Request finished in 2.4203ms 200 application/javascript +2018-09-07 09:40:33.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:40:33.230 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:40:33.230 +03:00 [INF] Request finished in 17.1148ms 200 application/javascript +2018-09-07 09:40:33.231 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:40:33.231 +03:00 [INF] Request finished in 1.4352ms 200 application/javascript +2018-09-07 09:40:33.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:40:33.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:40:33.246 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:40:33.246 +03:00 [INF] Request finished in 2.9182ms 200 application/javascript +2018-09-07 09:40:33.258 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:40:33.259 +03:00 [INF] Request finished in 15.4475ms 200 application/javascript +2018-09-07 09:40:33.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:40:33.273 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:40:33.274 +03:00 [INF] Request finished in 2.8652ms 200 application/javascript +2018-09-07 09:40:33.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:40:33.281 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:40:33.282 +03:00 [INF] Request finished in 1.38ms 200 application/javascript +2018-09-07 09:40:33.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:40:33.286 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:40:33.286 +03:00 [INF] Request finished in 3.617ms 200 application/javascript +2018-09-07 09:40:33.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:40:33.293 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:40:33.293 +03:00 [INF] Request finished in 1.8913ms 200 application/javascript +2018-09-07 09:40:33.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:40:33.301 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:40:33.301 +03:00 [INF] Request finished in 1.4973ms 200 application/javascript +2018-09-07 09:40:33.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:40:33.303 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:40:33.303 +03:00 [INF] Request finished in 1.0729ms 200 application/javascript +2018-09-07 09:40:33.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:40:33.315 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:40:33.315 +03:00 [INF] Request finished in 1.0912ms 200 application/javascript +2018-09-07 09:40:33.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:40:33.316 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:40:33.316 +03:00 [INF] Request finished in 1.5538ms 200 application/javascript +2018-09-07 09:40:33.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:40:33.322 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:40:33.322 +03:00 [INF] Request finished in 2.9171ms 200 application/javascript +2018-09-07 09:40:33.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:40:33.339 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:40:33.339 +03:00 [INF] Request finished in 1.2159ms 200 application/javascript +2018-09-07 09:40:33.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:40:33.345 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:40:33.345 +03:00 [INF] Request finished in 1.8701ms 200 application/javascript +2018-09-07 09:40:33.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:40:33.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:40:33.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:40:33.378 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:40:33.378 +03:00 [INF] Request finished in 1.6658ms 200 application/javascript +2018-09-07 09:40:33.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:40:33.413 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:40:33.413 +03:00 [INF] Request finished in 2.2634ms 200 application/javascript +2018-09-07 09:40:33.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:40:33.421 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:40:33.421 +03:00 [INF] Request finished in 0.8945ms 200 application/javascript +2018-09-07 09:40:33.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718991892617402 +2018-09-07 09:40:33.445 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:40:33.445 +03:00 [INF] Request finished in 1.4084ms 200 application/javascript +2018-09-07 09:40:33.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718991892617402 +2018-09-07 09:40:33.454 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:40:33.454 +03:00 [INF] Request finished in 1.1578ms 200 application/javascript +2018-09-07 09:40:33.456 +03:00 [INF] Request finished in 240.6712ms 404 +2018-09-07 09:40:33.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:40:33.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:40:33.470 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:40:33.470 +03:00 [INF] Request finished in 1.0682ms 200 image/svg+xml +2018-09-07 09:40:33.470 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:40:33.470 +03:00 [INF] Request finished in 1.2615ms 200 image/svg+xml +2018-09-07 09:40:33.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:40:33.498 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:40:33.498 +03:00 [INF] Request finished in 3.3938ms 200 font/woff2 +2018-09-07 09:40:33.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:40:33.529 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:40:33.530 +03:00 [INF] Request finished in 11.884ms 200 image/jpeg +2018-09-07 09:40:33.623 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:40:33.624 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:40:33.624 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.24580000000000002ms. +2018-09-07 09:40:33.625 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:40:33.625 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9799ms +2018-09-07 09:40:33.625 +03:00 [INF] Request finished in 272.9891ms 200 text/plain; charset=utf-8 +2018-09-07 09:40:33.691 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:40:33.692 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:40:33.693 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.694 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.696 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.697 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.698 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.698 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.703 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.705 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.706 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.706 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.707 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.707 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.708 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.708 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.709 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.710 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.710 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.711 +03:00 [INF] Authorization was successful. +2018-09-07 09:40:33.711 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.712 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.713 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.713 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.714 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.715 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.715 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.718 +03:00 [INF] Authorization failed. +2018-09-07 09:40:33.724 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 31.7846ms. +2018-09-07 09:40:33.724 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:40:33.724 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 33.738800000000005ms +2018-09-07 09:40:33.725 +03:00 [INF] Request finished in 379.7179ms 200 text/plain; charset=utf-8 +2018-09-07 09:40:34.214 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:40:34.244 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:40:34.322 +03:00 [INF] Executed action /Blog/Posts/Detail in 107.40570000000001ms +2018-09-07 09:40:34.352 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:40:34.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:40:34.404 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:40:34.405 +03:00 [INF] Request finished in 4.4502ms 200 image/png +2018-09-07 09:40:34.430 +03:00 [INF] Request finished in 1239.5059ms 500 text/html; charset=utf-8 +2018-09-07 09:40:34.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:40:34.436 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:40:34.439 +03:00 [INF] Request finished in 5.1798ms 200 image/png +2018-09-07 09:40:55.558 +03:00 [INF] Loaded modules: +2018-09-07 09:40:55.571 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:40:55.572 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:40:55.573 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:40:55.574 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:40:57.227 +03:00 [INF] Initialized all modules. +2018-09-07 09:40:57.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-07 09:40:59.792 +03:00 [INF] Route matched with {page = "/Templates", area = "", action = "", controller = ""}. Executing action /Templates +2018-09-07 09:40:59.845 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-07 09:41:01.200 +03:00 [INF] Executed action /Templates in 1403.9804000000001ms +2018-09-07 09:41:01.208 +03:00 [INF] Request finished in 3646.0699ms 200 text/html; charset=utf-8 +2018-09-07 09:41:01.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:41:01.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:41:01.316 +03:00 [INF] Request finished in 51.1853ms 404 +2018-09-07 09:41:01.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:41:01.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-09-07 09:41:01.358 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-09-07 09:41:01.367 +03:00 [INF] Request finished in 33.4132ms 200 application/javascript +2018-09-07 09:41:01.384 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:41:01.384 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:41:01.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:41:01.429 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:41:01.431 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:41:01.449 +03:00 [INF] Request finished in 46.6245ms 404 +2018-09-07 09:41:01.510 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 74.8451ms. +2018-09-07 09:41:01.518 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:41:01.519 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 134.1771ms +2018-09-07 09:41:01.519 +03:00 [INF] Request finished in 202.4731ms 200 text/plain; charset=utf-8 +2018-09-07 09:41:01.548 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.552 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.554 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.556 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.557 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.559 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.562 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.564 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.566 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.568 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.570 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.572 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.574 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.575 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.577 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.581 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.583 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.585 +03:00 [INF] Authorization was successful. +2018-09-07 09:41:01.587 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.589 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.591 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.593 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.596 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.598 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.600 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.602 +03:00 [INF] Authorization failed. +2018-09-07 09:41:01.626 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 197.09210000000002ms. +2018-09-07 09:41:01.638 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:41:01.641 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 256.4458ms +2018-09-07 09:41:01.644 +03:00 [INF] Request finished in 337.979ms 200 text/plain; charset=utf-8 +2018-09-07 09:42:41.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:42:42.034 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:42:42.198 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:42:42.590 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:42.626 +03:00 [INF] Executed action /Blog/Posts/Index in 591.1946ms +2018-09-07 09:42:42.626 +03:00 [INF] Request finished in 1006.3216ms 200 text/html; charset=utf-8 +2018-09-07 09:42:42.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:42:42.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:42:42.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:42:42.664 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:42:42.664 +03:00 [INF] Request finished in 2.0139ms 200 text/css +2018-09-07 09:42:42.665 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:42:42.665 +03:00 [INF] Request finished in 2.3428ms 200 text/css +2018-09-07 09:42:42.673 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:42:42.673 +03:00 [INF] Request finished in 17.843ms 200 text/css +2018-09-07 09:42:42.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:42:42.682 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:42:42.682 +03:00 [INF] Request finished in 1.407ms 200 text/css +2018-09-07 09:42:42.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:42:42.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:42:42.688 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:42:42.688 +03:00 [INF] Request finished in 1.621ms 200 text/css +2018-09-07 09:42:42.690 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:42:42.690 +03:00 [INF] Request finished in 1.8645ms 200 text/css +2018-09-07 09:42:42.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:42:42.699 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:42:42.699 +03:00 [INF] Request finished in 1.0316ms 200 text/css +2018-09-07 09:42:42.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:42:42.715 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:42:42.716 +03:00 [INF] Request finished in 1.2441ms 200 text/css +2018-09-07 09:42:42.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:42:42.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:42:42.720 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:42:42.721 +03:00 [INF] Request finished in 1.3601ms 200 text/css +2018-09-07 09:42:42.721 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:42:42.722 +03:00 [INF] Request finished in 1.2162ms 200 text/css +2018-09-07 09:42:42.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:42:42.732 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:42:42.732 +03:00 [INF] Request finished in 1.2244ms 200 text/css +2018-09-07 09:42:42.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718991892617402 +2018-09-07 09:42:42.735 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:42:42.735 +03:00 [INF] Request finished in 2.1254ms 200 text/css +2018-09-07 09:42:42.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:42:42.736 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:42:42.736 +03:00 [INF] Request finished in 1.5472ms 200 application/javascript +2018-09-07 09:42:42.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:42:42.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:42:42.758 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:42:42.758 +03:00 [INF] Request finished in 8.5075ms 200 application/javascript +2018-09-07 09:42:42.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:42:42.768 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:42:42.768 +03:00 [INF] Request finished in 1.5149ms 200 application/javascript +2018-09-07 09:42:42.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:42:42.770 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:42:42.771 +03:00 [INF] Request finished in 1.0304ms 200 image/svg+xml +2018-09-07 09:42:42.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:42:42.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:42:42.787 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:42:42.787 +03:00 [INF] Request finished in 0.8796ms 200 image/svg+xml +2018-09-07 09:42:42.790 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:42:42.790 +03:00 [INF] Request finished in 6.0601ms 200 application/javascript +2018-09-07 09:42:42.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:42:42.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:42:42.792 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:42:42.792 +03:00 [INF] Request finished in 1.2221ms 200 application/javascript +2018-09-07 09:42:42.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:42:42.794 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:42:42.794 +03:00 [INF] Request finished in 1.0068ms 200 application/javascript +2018-09-07 09:42:42.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:42:42.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:42:42.806 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:42:42.807 +03:00 [INF] Request finished in 0.9507ms 200 application/javascript +2018-09-07 09:42:42.809 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:42:42.809 +03:00 [INF] Request finished in 3.1838ms 200 application/javascript +2018-09-07 09:42:42.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:42:42.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:42:42.825 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:42:42.826 +03:00 [INF] Request finished in 2.0747ms 200 application/javascript +2018-09-07 09:42:42.832 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:42:42.833 +03:00 [INF] Request finished in 17.8348ms 200 application/javascript +2018-09-07 09:42:42.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:42:42.839 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:42:42.840 +03:00 [INF] Request finished in 1.3701ms 200 application/javascript +2018-09-07 09:42:42.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:42:42.849 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:42:42.849 +03:00 [INF] Request finished in 1.7996ms 200 application/javascript +2018-09-07 09:42:42.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:42:42.853 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:42:42.853 +03:00 [INF] Request finished in 1.2079ms 200 application/javascript +2018-09-07 09:42:42.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:42:42.874 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:42:42.876 +03:00 [INF] Request finished in 3.3934ms 200 application/javascript +2018-09-07 09:42:42.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:42:42.883 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:42:42.883 +03:00 [INF] Request finished in 2.2829ms 200 application/javascript +2018-09-07 09:42:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:42:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:42:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:42:42.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:42:42.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:42:42.895 +03:00 [INF] Request finished in 1.1475ms 200 application/javascript +2018-09-07 09:42:42.895 +03:00 [INF] Request finished in 1.2593ms 200 application/javascript +2018-09-07 09:42:42.897 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:42:42.898 +03:00 [INF] Request finished in 3.2528ms 200 application/javascript +2018-09-07 09:42:42.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:42:42.904 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:42:42.904 +03:00 [INF] Request finished in 1.0089ms 200 application/javascript +2018-09-07 09:42:42.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:42:42.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:42:42.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:42:42.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:42:42.917 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:42:42.918 +03:00 [INF] Request finished in 1.8961ms 200 application/javascript +2018-09-07 09:42:42.918 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:42:42.919 +03:00 [INF] Request finished in 1.4204ms 200 application/javascript +2018-09-07 09:42:42.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:42:42.928 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:42:42.928 +03:00 [INF] Request finished in 1.3079ms 200 application/javascript +2018-09-07 09:42:42.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:42:42.935 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:42:42.935 +03:00 [INF] Request finished in 0.9126ms 200 application/javascript +2018-09-07 09:42:42.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718991892617402 +2018-09-07 09:42:42.943 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:42:42.943 +03:00 [INF] Request finished in 0.8186ms 200 application/javascript +2018-09-07 09:42:42.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718991892617402 +2018-09-07 09:42:42.954 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:42:42.955 +03:00 [INF] Request finished in 1.1856ms 200 application/javascript +2018-09-07 09:42:42.961 +03:00 [INF] Request finished in 170.2033ms 404 +2018-09-07 09:42:42.992 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:42:42.993 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:42:42.993 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.25670000000000004ms. +2018-09-07 09:42:42.993 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:42:42.994 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9746000000000001ms +2018-09-07 09:42:42.994 +03:00 [INF] Request finished in 77.8522ms 200 text/plain; charset=utf-8 +2018-09-07 09:42:42.994 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:42:42.996 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:42:42.998 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:42.999 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.000 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.001 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.001 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.002 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.002 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.003 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.003 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.004 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.005 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.005 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.006 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.006 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.007 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.007 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.008 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.009 +03:00 [INF] Authorization was successful. +2018-09-07 09:42:43.009 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.010 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.010 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.011 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.012 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.012 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.014 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.015 +03:00 [INF] Authorization failed. +2018-09-07 09:42:43.017 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.590600000000002ms. +2018-09-07 09:42:43.017 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:42:43.018 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.8965ms +2018-09-07 09:42:43.018 +03:00 [INF] Request finished in 101.3938ms 200 text/plain; charset=utf-8 +2018-09-07 09:42:43.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:42:43.056 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:42:43.057 +03:00 [INF] Request finished in 2.3281ms 200 font/woff2 +2018-09-07 09:42:43.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:42:43.084 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:42:43.085 +03:00 [INF] Request finished in 11.5846ms 200 image/jpeg +2018-09-07 09:42:43.481 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:42:43.508 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:42:43.566 +03:00 [INF] Executed action /Blog/Posts/Detail in 84.8695ms +2018-09-07 09:42:43.587 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:42:43.646 +03:00 [INF] Request finished in 904.8484ms 500 text/html; charset=utf-8 +2018-09-07 09:42:43.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:42:43.835 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:42:43.835 +03:00 [INF] Request finished in 1.5598ms 200 image/png +2018-09-07 09:42:43.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-07 09:42:43.841 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-07 09:42:43.841 +03:00 [INF] Request finished in 5.0822ms 200 image/png +2018-09-07 09:43:06.282 +03:00 [INF] Loaded modules: +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:43:06.300 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:43:06.301 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:43:06.302 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:43:06.303 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:43:07.991 +03:00 [INF] Initialized all modules. +2018-09-07 09:43:08.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:43:10.828 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:43:11.033 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:11.722 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.102 +03:00 [INF] Executed action /Blog/Posts/Index in 2269.2135000000003ms +2018-09-07 09:43:13.124 +03:00 [INF] Request finished in 4976.2742ms 200 text/html; charset=utf-8 +2018-09-07 09:43:13.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:43:13.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:43:13.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:43:13.162 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:43:13.162 +03:00 [INF] Request finished in 9.2299ms 200 text/css +2018-09-07 09:43:13.174 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:43:13.174 +03:00 [INF] Request finished in 13.3643ms 200 text/css +2018-09-07 09:43:13.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:43:13.176 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:43:13.176 +03:00 [INF] Request finished in 1.025ms 200 text/css +2018-09-07 09:43:13.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:43:13.178 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:43:13.178 +03:00 [INF] Request finished in 3.4911ms 200 text/css +2018-09-07 09:43:13.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:43:13.180 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:43:13.181 +03:00 [INF] Request finished in 27.8089ms 200 text/css +2018-09-07 09:43:13.183 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:43:13.183 +03:00 [INF] Request finished in 3.8885ms 200 text/css +2018-09-07 09:43:13.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:43:13.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:43:13.189 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:43:13.189 +03:00 [INF] Request finished in 1.2574ms 200 text/css +2018-09-07 09:43:13.189 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:43:13.189 +03:00 [INF] Request finished in 1.042ms 200 text/css +2018-09-07 09:43:13.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:43:13.197 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:43:13.197 +03:00 [INF] Request finished in 6.1834ms 200 text/css +2018-09-07 09:43:13.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:43:13.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:43:13.198 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:43:13.199 +03:00 [INF] Request finished in 1.1902ms 200 text/css +2018-09-07 09:43:13.199 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:43:13.200 +03:00 [INF] Request finished in 1.7319ms 200 text/css +2018-09-07 09:43:13.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718993699126612 +2018-09-07 09:43:13.213 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:43:13.213 +03:00 [INF] Request finished in 3.391ms 200 text/css +2018-09-07 09:43:13.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:43:13.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:43:13.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:43:13.230 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:43:13.230 +03:00 [INF] Request finished in 1.4157ms 200 application/javascript +2018-09-07 09:43:13.239 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:43:13.240 +03:00 [INF] Request finished in 11.7381ms 200 application/javascript +2018-09-07 09:43:13.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:43:13.246 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:43:13.247 +03:00 [INF] Request finished in 2.7778ms 200 application/javascript +2018-09-07 09:43:13.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:43:13.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:43:13.261 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:43:13.262 +03:00 [INF] Request finished in 8.3761ms 200 application/javascript +2018-09-07 09:43:13.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:43:13.274 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:43:13.274 +03:00 [INF] Request finished in 2.9389ms 200 application/javascript +2018-09-07 09:43:13.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:43:13.287 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:43:13.287 +03:00 [INF] Request finished in 2.9921ms 200 application/javascript +2018-09-07 09:43:13.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:43:13.294 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:43:13.295 +03:00 [INF] Request finished in 2.8379ms 200 application/javascript +2018-09-07 09:43:13.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:43:13.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:43:13.311 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:43:13.311 +03:00 [INF] Request finished in 5.3474ms 200 application/javascript +2018-09-07 09:43:13.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:43:13.319 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:43:13.320 +03:00 [INF] Request finished in 1.153ms 200 application/javascript +2018-09-07 09:43:13.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:43:13.331 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:43:13.331 +03:00 [INF] Request finished in 20.6225ms 200 application/javascript +2018-09-07 09:43:13.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:43:13.332 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:43:13.332 +03:00 [INF] Request finished in 4.8254ms 200 application/javascript +2018-09-07 09:43:13.336 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:43:13.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:43:13.338 +03:00 [INF] Request finished in 10.2443ms 200 application/javascript +2018-09-07 09:43:13.339 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:43:13.339 +03:00 [INF] Request finished in 1.4593ms 200 application/javascript +2018-09-07 09:43:13.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:43:13.344 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:43:13.345 +03:00 [INF] Request finished in 2.4945ms 200 application/javascript +2018-09-07 09:43:13.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:43:13.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:43:13.352 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:43:13.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:43:13.352 +03:00 [INF] Request finished in 1.8551ms 200 application/javascript +2018-09-07 09:43:13.353 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:43:13.353 +03:00 [INF] Request finished in 3.0492ms 200 application/javascript +2018-09-07 09:43:13.353 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:43:13.353 +03:00 [INF] Request finished in 1.1837ms 200 application/javascript +2018-09-07 09:43:13.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:43:13.365 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:43:13.365 +03:00 [INF] Request finished in 1.3283ms 200 application/javascript +2018-09-07 09:43:13.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:43:13.373 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:43:13.374 +03:00 [INF] Request finished in 3.2753ms 200 application/javascript +2018-09-07 09:43:13.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:43:13.385 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:43:13.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:43:13.387 +03:00 [INF] Request finished in 2.9927ms 200 application/javascript +2018-09-07 09:43:13.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:43:13.411 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:43:13.412 +03:00 [INF] Request finished in 5.7168ms 200 image/svg+xml +2018-09-07 09:43:13.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:43:13.434 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:43:13.434 +03:00 [INF] Request finished in 2.8955ms 200 image/svg+xml +2018-09-07 09:43:13.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:43:13.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:43:13.450 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:43:13.450 +03:00 [INF] Request finished in 1.0496ms 200 application/javascript +2018-09-07 09:43:13.463 +03:00 [INF] Request finished in 204.1545ms 404 +2018-09-07 09:43:13.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:43:13.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:43:13.470 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:43:13.470 +03:00 [INF] Request finished in 1.6058ms 200 application/javascript +2018-09-07 09:43:13.473 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:43:13.473 +03:00 [INF] Request finished in 4.3362ms 200 font/woff2 +2018-09-07 09:43:13.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:43:13.489 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:43:13.489 +03:00 [INF] Request finished in 1.1057ms 200 application/javascript +2018-09-07 09:43:13.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718993699126612 +2018-09-07 09:43:13.497 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:43:13.497 +03:00 [INF] Request finished in 1.2177ms 200 application/javascript +2018-09-07 09:43:13.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718993699126612 +2018-09-07 09:43:13.511 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:43:13.511 +03:00 [INF] Request finished in 1.8295ms 200 application/javascript +2018-09-07 09:43:13.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:43:13.545 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:43:13.546 +03:00 [INF] Request finished in 10.3679ms 200 image/jpeg +2018-09-07 09:43:13.585 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:43:13.651 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:43:13.689 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.695 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.699 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.707 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.712 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.716 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.719 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.722 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.726 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:43:13.727 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.748 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.754 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.763 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.771 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.772 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:43:13.774 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.781 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.784 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.787 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.800 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:13.803 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.805 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.808 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.812 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.816 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.819 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.821 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.824 +03:00 [INF] Authorization failed. +2018-09-07 09:43:13.864 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 207.0027ms. +2018-09-07 09:43:13.876 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:43:13.878 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 293.1745ms +2018-09-07 09:43:13.879 +03:00 [INF] Request finished in 491.7934ms 200 text/plain; charset=utf-8 +2018-09-07 09:43:13.888 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 110.5062ms. +2018-09-07 09:43:13.888 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:43:13.889 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 162.26850000000002ms +2018-09-07 09:43:13.889 +03:00 [INF] Request finished in 453.2345ms 200 text/plain; charset=utf-8 +2018-09-07 09:43:14.214 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:43:14.229 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:14.270 +03:00 [INF] Executed action /Blog/Posts/Detail in 55.0683ms +2018-09-07 09:43:14.283 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 9 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:43:14.331 +03:00 [INF] Request finished in 1112.0549ms 500 text/html; charset=utf-8 +2018-09-07 09:43:22.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:43:22.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-07 09:43:22.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-07 09:43:22.342 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-07 09:43:22.342 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:43:22.342 +03:00 [INF] Request finished in 2.2784ms 200 image/png +2018-09-07 09:43:22.342 +03:00 [INF] Request finished in 2.5105ms 200 image/png +2018-09-07 09:43:28.432 +03:00 [INF] Loaded modules: +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:43:28.453 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:43:28.454 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:43:28.455 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:43:30.186 +03:00 [INF] Initialized all modules. +2018-09-07 09:43:30.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-07 09:43:32.890 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:43:33.080 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:33.717 +03:00 [INF] Authorization failed. +2018-09-07 09:43:34.046 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:45.352 +03:00 [INF] Loaded modules: +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:43:45.374 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:43:45.375 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:43:45.376 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:43:45.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:43:46.965 +03:00 [INF] Initialized all modules. +2018-09-07 09:43:47.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:43:49.592 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:43:49.772 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:50.402 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:50.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-07 09:43:50.903 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-07 09:43:50.907 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:50.931 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-07 09:43:50.936 +03:00 [INF] Executed action /Blog/Index in 29.0026ms +2018-09-07 09:43:50.944 +03:00 [INF] Request finished in 353.5838ms 302 +2018-09-07 09:43:50.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:43:50.977 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:43:50.982 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:51.004 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:51.757 +03:00 [INF] Executed action /Blog/Posts/Index in 779.34030000000007ms +2018-09-07 09:43:51.762 +03:00 [INF] Request finished in 807.7607ms 200 text/html; charset=utf-8 +2018-09-07 09:43:51.766 +03:00 [INF] Executed action /Blog/Posts/Index in 2173.6812ms +2018-09-07 09:43:51.775 +03:00 [INF] Request finished in 4506.5927ms 200 text/html; charset=utf-8 +2018-09-07 09:43:51.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:43:51.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:43:51.850 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:43:51.850 +03:00 [INF] Request finished in 3.5004ms 200 text/css +2018-09-07 09:43:51.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:43:51.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:43:51.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:43:51.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:43:51.862 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:43:51.862 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:43:51.862 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:43:51.862 +03:00 [INF] Request finished in 2.5685ms 200 text/css +2018-09-07 09:43:51.862 +03:00 [INF] Request finished in 3.5687ms 200 text/css +2018-09-07 09:43:51.862 +03:00 [INF] Request finished in 4.0518ms 200 text/css +2018-09-07 09:43:51.863 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:43:51.863 +03:00 [INF] Request finished in 7.673ms 200 text/css +2018-09-07 09:43:51.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:43:51.868 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:43:51.868 +03:00 [INF] Request finished in 2.9058ms 200 text/css +2018-09-07 09:43:51.869 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:43:51.869 +03:00 [INF] Request finished in 29.1208ms 200 text/css +2018-09-07 09:43:51.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:43:51.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:43:51.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:43:51.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:43:51.875 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:43:51.875 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:43:51.875 +03:00 [INF] Request finished in 1.0884ms 200 text/css +2018-09-07 09:43:51.875 +03:00 [INF] Request finished in 1.0015ms 200 text/css +2018-09-07 09:43:51.875 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:43:51.875 +03:00 [INF] Request finished in 0.9457ms 200 text/css +2018-09-07 09:43:51.879 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:43:51.879 +03:00 [INF] Request finished in 5.5519ms 200 text/css +2018-09-07 09:43:51.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718993699126612 +2018-09-07 09:43:51.889 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:43:51.889 +03:00 [INF] Request finished in 1.9292ms 200 text/css +2018-09-07 09:43:51.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:43:51.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:43:51.927 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:43:51.927 +03:00 [INF] Request finished in 1.0331ms 200 application/javascript +2018-09-07 09:43:51.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:43:51.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:43:51.943 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:43:51.943 +03:00 [INF] Request finished in 2.1692ms 200 application/javascript +2018-09-07 09:43:51.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:43:51.951 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:43:51.951 +03:00 [INF] Request finished in 9.9462ms 200 application/javascript +2018-09-07 09:43:51.952 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:43:51.953 +03:00 [INF] Request finished in 8.9555ms 200 application/javascript +2018-09-07 09:43:51.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:43:51.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:43:51.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:43:51.962 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:43:51.963 +03:00 [INF] Request finished in 0.9631ms 200 application/javascript +2018-09-07 09:43:51.963 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:43:51.963 +03:00 [INF] Request finished in 1.2634ms 200 application/javascript +2018-09-07 09:43:51.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:43:51.977 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:43:51.977 +03:00 [INF] Request finished in 0.909ms 200 application/javascript +2018-09-07 09:43:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:43:51.988 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:43:51.989 +03:00 [INF] Request finished in 4.1126ms 200 application/javascript +2018-09-07 09:43:52.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:43:52.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:43:52.011 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:43:52.011 +03:00 [INF] Request finished in 1.1772ms 200 application/javascript +2018-09-07 09:43:52.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:43:52.021 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:43:52.022 +03:00 [INF] Request finished in 12.0959ms 200 application/javascript +2018-09-07 09:43:52.022 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:43:52.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:43:52.022 +03:00 [INF] Request finished in 0.9123ms 200 application/javascript +2018-09-07 09:43:52.023 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:43:52.023 +03:00 [INF] Request finished in 1.091ms 200 application/javascript +2018-09-07 09:43:52.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:43:52.035 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:43:52.035 +03:00 [INF] Request finished in 1.8678ms 200 application/javascript +2018-09-07 09:43:52.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:43:52.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:43:52.039 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:43:52.039 +03:00 [INF] Request finished in 3.4648ms 200 application/javascript +2018-09-07 09:43:52.039 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:43:52.039 +03:00 [INF] Request finished in 3.0186ms 200 application/javascript +2018-09-07 09:43:52.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:43:52.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:43:52.047 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:43:52.047 +03:00 [INF] Request finished in 1.1223ms 200 application/javascript +2018-09-07 09:43:52.048 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:43:52.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:43:52.050 +03:00 [INF] Request finished in 2.3778ms 200 application/javascript +2018-09-07 09:43:52.051 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:43:52.051 +03:00 [INF] Request finished in 3.6606ms 200 application/javascript +2018-09-07 09:43:52.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:43:52.053 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:43:52.053 +03:00 [INF] Request finished in 1.1995ms 200 application/javascript +2018-09-07 09:43:52.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:43:52.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:43:52.063 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:43:52.063 +03:00 [INF] Request finished in 1.084ms 200 application/javascript +2018-09-07 09:43:52.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:43:52.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:43:52.076 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:43:52.076 +03:00 [INF] Request finished in 1.946ms 200 application/javascript +2018-09-07 09:43:52.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:43:52.089 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:43:52.089 +03:00 [INF] Request finished in 1.2824ms 200 application/javascript +2018-09-07 09:43:52.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:43:52.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718993699126612 +2018-09-07 09:43:52.102 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:43:52.102 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:43:52.102 +03:00 [INF] Request finished in 0.7535ms 200 application/javascript +2018-09-07 09:43:52.102 +03:00 [INF] Request finished in 1.4727ms 200 application/javascript +2018-09-07 09:43:52.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718993699126612 +2018-09-07 09:43:52.108 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:43:52.108 +03:00 [INF] Request finished in 0.9607ms 200 application/javascript +2018-09-07 09:43:52.113 +03:00 [INF] Request finished in 159.8713ms 404 +2018-09-07 09:43:52.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:43:52.118 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:43:52.118 +03:00 [INF] Request finished in 0.9624ms 200 image/svg+xml +2018-09-07 09:43:52.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:43:52.123 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:43:52.124 +03:00 [INF] Request finished in 1.1008ms 200 image/svg+xml +2018-09-07 09:43:52.149 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:43:52.149 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:43:52.191 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:43:52.192 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:43:52.202 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.206 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.210 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.214 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:43:52.220 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:43:52.220 +03:00 [INF] Request finished in 2.369ms 200 font/woff2 +2018-09-07 09:43:52.222 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.226 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.229 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.233 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.239 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.241 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.244 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.247 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.251 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.254 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.257 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.260 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:43:52.264 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.267 +03:00 [INF] Authorization was successful. +2018-09-07 09:43:52.271 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.271 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:43:52.272 +03:00 [INF] Request finished in 9.8293ms 200 image/jpeg +2018-09-07 09:43:52.275 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.279 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.282 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.288 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.292 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.295 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.300 +03:00 [INF] Authorization failed. +2018-09-07 09:43:52.306 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 106.6939ms. +2018-09-07 09:43:52.314 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:43:52.318 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 168.3038ms +2018-09-07 09:43:52.318 +03:00 [INF] Request finished in 252.1809ms 200 text/plain; charset=utf-8 +2018-09-07 09:43:52.339 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 147.8564ms. +2018-09-07 09:43:52.346 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:43:52.346 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 196.8631ms +2018-09-07 09:43:52.347 +03:00 [INF] Request finished in 284.9749ms 200 text/plain; charset=utf-8 +2018-09-07 09:43:52.569 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:43:52.580 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:43:52.631 +03:00 [INF] Executed action /Blog/Posts/Detail in 61.4833ms +2018-09-07 09:43:52.648 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 9 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:43:52.681 +03:00 [INF] Request finished in 771.5766ms 500 text/html; charset=utf-8 +2018-09-07 09:44:00.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:44:00.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:44:00.150 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:44:00.150 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:44:00.150 +03:00 [INF] Request finished in 1.3131ms 200 image/png +2018-09-07 09:44:00.150 +03:00 [INF] Request finished in 1.3167ms 200 image/png +2018-09-07 09:46:31.400 +03:00 [INF] Loaded modules: +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:46:31.414 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:46:31.415 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:46:32.968 +03:00 [INF] Initialized all modules. +2018-09-07 09:46:33.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:46:33.290 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:46:33.297 +03:00 [INF] Request finished in 68.8417ms 200 text/css +2018-09-07 09:46:33.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-07 09:46:33.545 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-07 09:46:33.549 +03:00 [INF] Request finished in 8.4605ms 304 text/plain +2018-09-07 09:46:33.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-07 09:46:33.949 +03:00 [INF] Request finished in 398.2723ms 404 +2018-09-07 09:46:41.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-07 09:46:43.105 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-07 09:46:43.267 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:46:44.846 +03:00 [INF] Executed action /Blog/Posts/New in 1733.5138000000002ms +2018-09-07 09:46:44.855 +03:00 [INF] Request finished in 3689.769ms 200 text/html; charset=utf-8 +2018-09-07 09:46:44.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:46:44.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:46:44.897 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:46:44.899 +03:00 [INF] Request finished in 3.3358ms 200 text/css +2018-09-07 09:46:44.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:46:44.903 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:46:44.903 +03:00 [INF] Request finished in 13.9799ms 200 text/css +2018-09-07 09:46:44.904 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:46:44.905 +03:00 [INF] Request finished in 2.5915ms 200 text/css +2018-09-07 09:46:44.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:46:44.912 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:46:44.912 +03:00 [INF] Request finished in 0.949ms 200 text/css +2018-09-07 09:46:44.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:46:44.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:46:44.917 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:46:44.917 +03:00 [INF] Request finished in 1.0651ms 200 text/css +2018-09-07 09:46:44.918 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:46:44.918 +03:00 [INF] Request finished in 1.469ms 200 text/css +2018-09-07 09:46:44.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:46:44.930 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:46:44.930 +03:00 [INF] Request finished in 1.9373ms 200 text/css +2018-09-07 09:46:44.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:46:44.934 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:46:44.934 +03:00 [INF] Request finished in 1.3761ms 200 text/css +2018-09-07 09:46:44.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718386696187115 +2018-09-07 09:46:44.944 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-07 09:46:44.945 +03:00 [INF] Request finished in 2.3357ms 200 text/css +2018-09-07 09:46:44.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718386703457117 +2018-09-07 09:46:44.948 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-07 09:46:44.949 +03:00 [INF] Request finished in 1.5377ms 200 text/css +2018-09-07 09:46:44.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718386699947106 +2018-09-07 09:46:44.957 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-07 09:46:44.958 +03:00 [INF] Request finished in 3.5673ms 200 text/css +2018-09-07 09:46:44.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718386697187112 +2018-09-07 09:46:44.961 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-07 09:46:44.961 +03:00 [INF] Request finished in 1.7208ms 200 text/css +2018-09-07 09:46:44.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636718993699126612 +2018-09-07 09:46:44.965 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-07 09:46:44.965 +03:00 [INF] Request finished in 1.3217ms 200 text/css +2018-09-07 09:46:44.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-07 09:46:44.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:46:44.989 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:46:44.990 +03:00 [INF] Request finished in 2.0431ms 200 application/javascript +2018-09-07 09:46:44.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:46:45.000 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:46:45.000 +03:00 [INF] Request finished in 5.1049ms 200 application/javascript +2018-09-07 09:46:45.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:46:45.008 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:46:45.008 +03:00 [INF] Request finished in 1.0309ms 200 application/javascript +2018-09-07 09:46:45.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:46:45.014 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:46:45.014 +03:00 [INF] Request finished in 4.0767ms 200 application/javascript +2018-09-07 09:46:45.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:46:45.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:46:45.023 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:46:45.023 +03:00 [INF] Request finished in 2.1823ms 200 application/javascript +2018-09-07 09:46:45.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:46:45.029 +03:00 [INF] Request finished in 49.0104ms 404 +2018-09-07 09:46:45.029 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:46:45.030 +03:00 [INF] Request finished in 2.0859ms 200 application/javascript +2018-09-07 09:46:45.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:46:45.042 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:46:45.042 +03:00 [INF] Request finished in 1.0331ms 200 application/javascript +2018-09-07 09:46:45.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:46:45.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:46:45.047 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:46:45.047 +03:00 [INF] Request finished in 3.1196ms 200 application/javascript +2018-09-07 09:46:45.052 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:46:45.052 +03:00 [INF] Request finished in 5.9719ms 200 application/javascript +2018-09-07 09:46:45.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:46:45.054 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:46:45.054 +03:00 [INF] Request finished in 1.0511ms 200 application/javascript +2018-09-07 09:46:45.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:46:45.066 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:46:45.067 +03:00 [INF] Request finished in 1.8572ms 200 application/javascript +2018-09-07 09:46:45.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:46:45.075 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:46:45.076 +03:00 [INF] Request finished in 3.2057ms 200 application/javascript +2018-09-07 09:46:45.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:46:45.078 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:46:45.078 +03:00 [INF] Request finished in 1.2405ms 200 application/javascript +2018-09-07 09:46:45.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:46:45.087 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:46:45.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:46:45.089 +03:00 [INF] Request finished in 3.2508ms 200 application/javascript +2018-09-07 09:46:45.090 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:46:45.090 +03:00 [INF] Request finished in 1.148ms 200 application/javascript +2018-09-07 09:46:45.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:46:45.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:46:45.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:46:45.097 +03:00 [INF] Request finished in 1.4431ms 200 application/javascript +2018-09-07 09:46:45.098 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:46:45.098 +03:00 [INF] Request finished in 2.4332ms 200 application/javascript +2018-09-07 09:46:45.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:46:45.106 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:46:45.107 +03:00 [INF] Request finished in 1.6762ms 200 application/javascript +2018-09-07 09:46:45.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:46:45.113 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:46:45.113 +03:00 [INF] Request finished in 1.2367ms 200 application/javascript +2018-09-07 09:46:45.117 +03:00 [INF] Request finished in 101.677ms 404 +2018-09-07 09:46:45.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:46:45.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:46:45.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:46:45.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:46:45.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:46:45.135 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:46:45.135 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:46:45.135 +03:00 [INF] Request finished in 0.5703ms 200 application/javascript +2018-09-07 09:46:45.135 +03:00 [INF] Request finished in 1.6362ms 200 application/javascript +2018-09-07 09:46:45.135 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:46:45.135 +03:00 [INF] Request finished in 0.6591ms 200 application/javascript +2018-09-07 09:46:45.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718386696527110 +2018-09-07 09:46:45.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718386696187115 +2018-09-07 09:46:45.146 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-07 09:46:45.146 +03:00 [INF] Request finished in 0.8716ms 200 application/javascript +2018-09-07 09:46:45.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718386696187115 +2018-09-07 09:46:45.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718386696187115 +2018-09-07 09:46:45.152 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-07 09:46:45.152 +03:00 [INF] Request finished in 7.3509ms 200 application/javascript +2018-09-07 09:46:45.156 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-07 09:46:45.156 +03:00 [INF] Request finished in 6.4404ms 200 application/javascript +2018-09-07 09:46:45.160 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-07 09:46:45.160 +03:00 [INF] Request finished in 9.7364ms 200 application/javascript +2018-09-07 09:46:45.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718386696187115 +2018-09-07 09:46:45.167 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-07 09:46:45.167 +03:00 [INF] Request finished in 2.5453ms 200 application/javascript +2018-09-07 09:46:45.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718386696187115 +2018-09-07 09:46:45.176 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-07 09:46:45.177 +03:00 [INF] Request finished in 1.3256ms 200 application/javascript +2018-09-07 09:46:45.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718386697907119 +2018-09-07 09:46:45.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636718993699126612 +2018-09-07 09:46:45.188 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-07 09:46:45.188 +03:00 [INF] Request finished in 0.8493ms 200 application/javascript +2018-09-07 09:46:45.199 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-07 09:46:45.199 +03:00 [INF] Request finished in 21.808ms 200 application/javascript +2018-09-07 09:46:45.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:46:45.200 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:46:45.201 +03:00 [INF] Request finished in 1.8399ms 200 image/svg+xml +2018-09-07 09:46:45.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:46:45.202 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:46:45.202 +03:00 [INF] Request finished in 1.2594ms 200 image/svg+xml +2018-09-07 09:46:45.209 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:46:45.210 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:46:45.253 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:46:45.256 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:46:45.349 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 87.9937ms. +2018-09-07 09:46:45.354 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:46:45.356 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 146.9796ms +2018-09-07 09:46:45.356 +03:00 [INF] Request finished in 222.7142ms 200 text/plain; charset=utf-8 +2018-09-07 09:46:45.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:46:45.360 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:46:45.360 +03:00 [INF] Request finished in 2.3284ms 200 font/woff2 +2018-09-07 09:46:45.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:46:45.396 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:46:45.396 +03:00 [INF] Request finished in 10.6169ms 200 image/jpeg +2018-09-07 09:46:45.405 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.411 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.414 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.416 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.419 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.423 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.427 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.430 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.432 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.435 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.437 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.443 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.445 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.448 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.450 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.453 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.457 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.460 +03:00 [INF] Authorization was successful. +2018-09-07 09:46:45.462 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.464 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.466 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.469 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.471 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.474 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.476 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.478 +03:00 [INF] Authorization failed. +2018-09-07 09:46:45.496 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 242.0411ms. +2018-09-07 09:46:45.511 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:46:45.515 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 304.03200000000004ms +2018-09-07 09:46:45.518 +03:00 [INF] Request finished in 384.3494ms 200 text/plain; charset=utf-8 +2018-09-07 09:46:45.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-07 09:46:45.710 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-07 09:46:45.710 +03:00 [INF] Request finished in 1.4662ms 200 image/png +2018-09-07 09:46:45.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:46:45.862 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:46:45.862 +03:00 [INF] Request finished in 1.5361ms 200 image/png +2018-09-07 09:46:45.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:46:45.871 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:46:45.871 +03:00 [INF] Request finished in 1.6023ms 200 image/png +2018-09-07 09:46:46.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:46:46.043 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:46:46.044 +03:00 [INF] Request finished in 3.187ms 200 text/css +2018-09-07 09:46:46.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-07 09:46:46.284 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-07 09:46:46.285 +03:00 [INF] Request finished in 0.8897ms 304 text/plain +2018-09-07 09:46:46.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-07 09:46:46.286 +03:00 [INF] Request finished in 0.8391ms 404 +2018-09-07 09:48:10.503 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/new application/x-www-form-urlencoded 2662 +2018-09-07 09:48:10.544 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-07 09:48:10.614 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Valid" +2018-09-07 09:48:10.660 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:10.874 +03:00 [INF] Executing RedirectResult, redirecting to /blog/abp/ABP-v0.1 Has Been Released. +2018-09-07 09:48:10.874 +03:00 [INF] Executed action /Blog/Posts/New in 330.1418ms +2018-09-07 09:48:10.875 +03:00 [INF] Request finished in 372.0506ms 302 +2018-09-07 09:48:10.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ABP-v0.1 Has Been Released +2018-09-07 09:48:11.282 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:48:11.294 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:48:11.443 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.481 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.519 +03:00 [INF] Executed action /Blog/Posts/Detail in 237.0505ms +2018-09-07 09:48:11.519 +03:00 [INF] Request finished in 633.8194ms 200 text/html; charset=utf-8 +2018-09-07 09:48:11.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:48:11.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:48:11.577 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:48:11.577 +03:00 [INF] Request finished in 2.852ms 200 text/css +2018-09-07 09:48:11.590 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:48:11.590 +03:00 [INF] Request finished in 17.2724ms 200 text/css +2018-09-07 09:48:11.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:48:11.597 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:48:11.597 +03:00 [INF] Request finished in 2.0356ms 200 text/css +2018-09-07 09:48:11.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:48:11.602 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:48:11.602 +03:00 [INF] Request finished in 1.3962ms 200 text/css +2018-09-07 09:48:11.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:48:11.605 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:48:11.606 +03:00 [INF] Request finished in 1.7324ms 200 text/css +2018-09-07 09:48:11.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:48:11.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:48:11.609 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:48:11.609 +03:00 [INF] Request finished in 2.8861ms 200 text/css +2018-09-07 09:48:11.609 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:48:11.609 +03:00 [INF] Request finished in 1.9071ms 200 text/css +2018-09-07 09:48:11.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:48:11.611 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:48:11.611 +03:00 [INF] Request finished in 1.3587ms 200 text/css +2018-09-07 09:48:11.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718993699126612 +2018-09-07 09:48:11.630 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:48:11.631 +03:00 [INF] Request finished in 1.4425ms 200 text/css +2018-09-07 09:48:11.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/docs/images/disable-package-restore-visual-studio.png +2018-09-07 09:48:11.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-07 09:48:11.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:48:11.649 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:48:11.649 +03:00 [INF] Request finished in 1.8779ms 200 application/javascript +2018-09-07 09:48:11.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:48:11.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:48:11.673 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:48:11.673 +03:00 [INF] Request finished in 1.282ms 200 application/javascript +2018-09-07 09:48:11.673 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:48:11.673 +03:00 [INF] Request finished in 8.1609ms 200 application/javascript +2018-09-07 09:48:11.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:48:11.691 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:48:11.692 +03:00 [INF] Request finished in 6.7463ms 200 application/javascript +2018-09-07 09:48:11.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:48:11.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:48:11.711 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:48:11.711 +03:00 [INF] Request finished in 3.2722ms 200 application/javascript +2018-09-07 09:48:11.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:48:11.715 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:48:11.715 +03:00 [INF] Request finished in 1.4859ms 200 application/javascript +2018-09-07 09:48:11.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:48:11.723 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:48:11.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:48:11.723 +03:00 [INF] Request finished in 2.1592ms 200 application/javascript +2018-09-07 09:48:11.730 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:48:11.730 +03:00 [INF] Request finished in 5.0501ms 200 application/javascript +2018-09-07 09:48:11.734 +03:00 [INF] Request finished in 98.2992ms 404 +2018-09-07 09:48:11.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:48:11.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:48:11.749 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:48:11.750 +03:00 [INF] Request finished in 1.2121ms 200 application/javascript +2018-09-07 09:48:11.750 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:48:11.750 +03:00 [INF] Request finished in 2.5987ms 200 application/javascript +2018-09-07 09:48:11.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:48:11.764 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:48:11.764 +03:00 [INF] Request finished in 13.9137ms 200 application/javascript +2018-09-07 09:48:11.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:48:11.764 +03:00 [INF] Request finished in 129.3867ms 404 +2018-09-07 09:48:11.765 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:48:11.766 +03:00 [INF] Request finished in 2.1384ms 200 application/javascript +2018-09-07 09:48:11.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:48:11.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:48:11.774 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:48:11.774 +03:00 [INF] Request finished in 1.1256ms 200 application/javascript +2018-09-07 09:48:11.777 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:48:11.778 +03:00 [INF] Request finished in 6.9775ms 200 application/javascript +2018-09-07 09:48:11.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:48:11.782 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:48:11.783 +03:00 [INF] Request finished in 3.2941ms 200 application/javascript +2018-09-07 09:48:11.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:48:11.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:48:11.790 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:48:11.791 +03:00 [INF] Request finished in 1.5584ms 200 application/javascript +2018-09-07 09:48:11.792 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:48:11.792 +03:00 [INF] Request finished in 2.1074ms 200 application/javascript +2018-09-07 09:48:11.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:48:11.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:48:11.796 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:48:11.797 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:48:11.797 +03:00 [INF] Request finished in 2.5384ms 200 application/javascript +2018-09-07 09:48:11.797 +03:00 [INF] Request finished in 1.2483ms 200 application/javascript +2018-09-07 09:48:11.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:48:11.808 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:48:11.808 +03:00 [INF] Request finished in 1.8635ms 200 application/javascript +2018-09-07 09:48:11.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:48:11.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:48:11.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:48:11.816 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:48:11.816 +03:00 [INF] Request finished in 1.2662ms 200 application/javascript +2018-09-07 09:48:11.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:48:11.820 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:48:11.820 +03:00 [INF] Request finished in 0.894ms 200 application/javascript +2018-09-07 09:48:11.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718993699126612 +2018-09-07 09:48:11.830 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:48:11.830 +03:00 [INF] Request finished in 1.8505ms 200 application/javascript +2018-09-07 09:48:11.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718993699126612 +2018-09-07 09:48:11.833 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:48:11.833 +03:00 [INF] Request finished in 0.8788ms 200 application/javascript +2018-09-07 09:48:11.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:48:11.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:48:11.850 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:48:11.850 +03:00 [INF] Request finished in 2.5076ms 200 image/svg+xml +2018-09-07 09:48:11.900 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:48:11.900 +03:00 [INF] Request finished in 52.4224ms 200 image/svg+xml +2018-09-07 09:48:11.920 +03:00 [INF] Request finished in 220.2195ms 404 +2018-09-07 09:48:11.922 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:48:11.923 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:48:11.924 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3446ms. +2018-09-07 09:48:11.924 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:48:11.925 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6544000000000003ms +2018-09-07 09:48:11.926 +03:00 [INF] Request finished in 114.3594ms 200 text/plain; charset=utf-8 +2018-09-07 09:48:11.933 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:48:11.934 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:48:11.935 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.936 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.936 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.937 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.937 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.938 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.938 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.939 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.939 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.940 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.941 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.942 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.943 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.945 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.946 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.946 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.947 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.948 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:11.948 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.949 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.950 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.950 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.951 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.952 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.953 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.953 +03:00 [INF] Authorization failed. +2018-09-07 09:48:11.955 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 21.2335ms. +2018-09-07 09:48:11.955 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:48:11.956 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.9477ms +2018-09-07 09:48:11.956 +03:00 [INF] Request finished in 144.6424ms 200 text/plain; charset=utf-8 +2018-09-07 09:48:19.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:48:19.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:48:19.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:48:19.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:48:19.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:48:19.320 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:48:19.320 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:48:19.320 +03:00 [INF] Request finished in 1.1092ms 200 image/png +2018-09-07 09:48:19.320 +03:00 [INF] Request finished in 1.1585ms 200 image/png +2018-09-07 09:48:19.320 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:48:19.320 +03:00 [INF] Request finished in 1.373ms 200 text/css +2018-09-07 09:48:19.321 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:48:19.321 +03:00 [INF] Request finished in 2.1266ms 200 font/woff2 +2018-09-07 09:48:21.150 +03:00 [INF] Loaded modules: +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:48:21.165 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:48:21.166 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:48:21.167 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:48:21.169 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:48:21.169 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:48:22.785 +03:00 [INF] Initialized all modules. +2018-09-07 09:48:23.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-07 09:48:23.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-07 09:48:23.164 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-07 09:48:23.169 +03:00 [INF] Request finished in 41.6623ms 304 text/plain +2018-09-07 09:48:23.376 +03:00 [INF] Request finished in 249.4969ms 404 +2018-09-07 09:48:31.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-07 09:48:33.256 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-07 09:48:33.305 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:48:33.493 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-07 09:48:33.500 +03:00 [INF] Executed action /Blog/Index in 237.8358ms +2018-09-07 09:48:33.501 +03:00 [INF] Request finished in 2071.5822ms 302 +2018-09-07 09:48:33.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-07 09:48:34.042 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-07 09:48:34.179 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:48:34.637 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:35.846 +03:00 [INF] Executed action /Blog/Posts/Index in 1804.2591ms +2018-09-07 09:48:35.861 +03:00 [INF] Request finished in 2348.4697ms 200 text/html; charset=utf-8 +2018-09-07 09:48:35.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-07 09:48:35.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-07 09:48:35.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-07 09:48:35.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-07 09:48:35.912 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-07 09:48:35.912 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-07 09:48:35.912 +03:00 [INF] Request finished in 11.014ms 200 text/css +2018-09-07 09:48:35.913 +03:00 [INF] Request finished in 9.5498ms 200 text/css +2018-09-07 09:48:35.912 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-07 09:48:35.913 +03:00 [INF] Request finished in 9.6241ms 200 text/css +2018-09-07 09:48:35.924 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-07 09:48:35.924 +03:00 [INF] Request finished in 23.0412ms 200 text/css +2018-09-07 09:48:35.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-07 09:48:35.926 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-07 09:48:35.926 +03:00 [INF] Request finished in 1.2545ms 200 text/css +2018-09-07 09:48:35.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:48:35.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-07 09:48:35.944 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:48:35.944 +03:00 [INF] Request finished in 1.8551ms 200 text/css +2018-09-07 09:48:35.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-07 09:48:35.946 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-07 09:48:35.946 +03:00 [INF] Request finished in 1.2042ms 200 text/css +2018-09-07 09:48:35.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-07 09:48:35.950 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-07 09:48:35.950 +03:00 [INF] Request finished in 2.1142ms 200 text/css +2018-09-07 09:48:35.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-07 09:48:35.954 +03:00 [INF] Request finished in 10.7811ms 200 text/css +2018-09-07 09:48:35.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-07 09:48:35.956 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-07 09:48:35.956 +03:00 [INF] Request finished in 12.1057ms 200 text/css +2018-09-07 09:48:35.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-07 09:48:35.964 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-07 09:48:35.964 +03:00 [INF] Request finished in 1.084ms 200 text/css +2018-09-07 09:48:35.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-07 09:48:35.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718993699126612 +2018-09-07 09:48:35.971 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-07 09:48:35.971 +03:00 [INF] Request finished in 0.9365ms 200 application/javascript +2018-09-07 09:48:35.971 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-07 09:48:35.971 +03:00 [INF] Request finished in 1.2881ms 200 text/css +2018-09-07 09:48:35.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-07 09:48:35.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-07 09:48:35.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-07 09:48:35.995 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-07 09:48:35.995 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-07 09:48:35.996 +03:00 [INF] Request finished in 1.2197ms 200 application/javascript +2018-09-07 09:48:35.996 +03:00 [INF] Request finished in 6.3766ms 200 application/javascript +2018-09-07 09:48:36.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-07 09:48:36.025 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-07 09:48:36.025 +03:00 [INF] Request finished in 5.428ms 200 application/javascript +2018-09-07 09:48:36.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-07 09:48:36.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-07 09:48:36.044 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-07 09:48:36.044 +03:00 [INF] Request finished in 0.9194ms 200 application/javascript +2018-09-07 09:48:36.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-07 09:48:36.047 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-07 09:48:36.048 +03:00 [INF] Request finished in 1.1555ms 200 application/javascript +2018-09-07 09:48:36.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-07 09:48:36.055 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-07 09:48:36.056 +03:00 [INF] Request finished in 1.5933ms 200 application/javascript +2018-09-07 09:48:36.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-07 09:48:36.072 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-07 09:48:36.072 +03:00 [INF] Request finished in 2.191ms 200 application/javascript +2018-09-07 09:48:36.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-07 09:48:36.087 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-07 09:48:36.087 +03:00 [INF] Request finished in 14.086ms 200 application/javascript +2018-09-07 09:48:36.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-07 09:48:36.090 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-07 09:48:36.091 +03:00 [INF] Request finished in 3.6746ms 200 application/javascript +2018-09-07 09:48:36.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-07 09:48:36.111 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-07 09:48:36.112 +03:00 [INF] Request finished in 1.4734ms 200 application/javascript +2018-09-07 09:48:36.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-07 09:48:36.119 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-07 09:48:36.120 +03:00 [INF] Request finished in 2.0574ms 200 application/javascript +2018-09-07 09:48:36.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-07 09:48:36.123 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-07 09:48:36.123 +03:00 [INF] Request finished in 1.0276ms 200 application/javascript +2018-09-07 09:48:36.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-07 09:48:36.129 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-07 09:48:36.129 +03:00 [INF] Request finished in 0.9938ms 200 application/javascript +2018-09-07 09:48:36.136 +03:00 [INF] Request finished in 103.4311ms 404 +2018-09-07 09:48:36.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-07 09:48:36.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-07 09:48:36.144 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-07 09:48:36.144 +03:00 [INF] Request finished in 1.4335ms 200 application/javascript +2018-09-07 09:48:36.144 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-07 09:48:36.144 +03:00 [INF] Request finished in 1.8153ms 200 application/javascript +2018-09-07 09:48:36.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636634793200502732 +2018-09-07 09:48:36.145 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-07 09:48:36.145 +03:00 [INF] Request finished in 1.2098ms 200 application/javascript +2018-09-07 09:48:36.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-07 09:48:36.152 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-07 09:48:36.152 +03:00 [INF] Request finished in 1.4458ms 200 application/javascript +2018-09-07 09:48:36.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-07 09:48:36.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-07 09:48:36.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-07 09:48:36.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-07 09:48:36.158 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-07 09:48:36.158 +03:00 [INF] Request finished in 3.2586ms 200 application/javascript +2018-09-07 09:48:36.158 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-07 09:48:36.158 +03:00 [INF] Request finished in 0.8722ms 200 application/javascript +2018-09-07 09:48:36.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-07 09:48:36.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-07 09:48:36.166 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-07 09:48:36.167 +03:00 [INF] Request finished in 2.6983ms 200 application/javascript +2018-09-07 09:48:36.168 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-07 09:48:36.169 +03:00 [INF] Request finished in 3.1094ms 200 application/javascript +2018-09-07 09:48:36.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-07 09:48:36.174 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-07 09:48:36.174 +03:00 [INF] Request finished in 0.9539ms 200 application/javascript +2018-09-07 09:48:36.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718993699126612 +2018-09-07 09:48:36.178 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-07 09:48:36.178 +03:00 [INF] Request finished in 1.171ms 200 application/javascript +2018-09-07 09:48:36.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-07 09:48:36.188 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-07 09:48:36.189 +03:00 [INF] Request finished in 0.8876ms 200 image/svg+xml +2018-09-07 09:48:36.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718993699126612 +2018-09-07 09:48:36.190 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-07 09:48:36.190 +03:00 [INF] Request finished in 1.5344ms 200 application/javascript +2018-09-07 09:48:36.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-07 09:48:36.194 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-07 09:48:36.195 +03:00 [INF] Request finished in 1.4066ms 200 image/svg+xml +2018-09-07 09:48:36.242 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:48:36.242 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-07 09:48:36.290 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-07 09:48:36.292 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-07 09:48:36.306 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.310 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.315 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.321 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.324 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.327 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.331 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.336 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.340 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.343 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.346 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.351 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.356 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.359 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.363 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.368 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.371 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.387 +03:00 [INF] Authorization was successful. +2018-09-07 09:48:36.391 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.396 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.398 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.403 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.408 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.410 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 111.4474ms. +2018-09-07 09:48:36.415 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.418 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.419 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:48:36.420 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 177.1977ms +2018-09-07 09:48:36.420 +03:00 [INF] Request finished in 264.8549ms 200 text/plain; charset=utf-8 +2018-09-07 09:48:36.422 +03:00 [INF] Authorization failed. +2018-09-07 09:48:36.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-07 09:48:36.425 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-07 09:48:36.426 +03:00 [INF] Request finished in 2.5392ms 200 font/woff2 +2018-09-07 09:48:36.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-07 09:48:36.456 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-07 09:48:36.456 +03:00 [INF] Request finished in 8.4497ms 200 image/jpeg +2018-09-07 09:48:36.462 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 171.47390000000001ms. +2018-09-07 09:48:36.472 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-07 09:48:36.473 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 230.2435ms +2018-09-07 09:48:36.473 +03:00 [INF] Request finished in 315.5372ms 200 text/plain; charset=utf-8 +2018-09-07 09:48:36.662 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:48:36.681 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:48:36.740 +03:00 [INF] Executed action /Blog/Posts/Detail in 77.4774ms +2018-09-07 09:48:36.762 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 9 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-07 09:48:36.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-07 09:48:36.821 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-07 09:48:36.821 +03:00 [INF] Request finished in 0.9506ms 200 text/css +2018-09-07 09:48:36.839 +03:00 [INF] Request finished in 862.674ms 500 text/html; charset=utf-8 +2018-09-07 09:48:36.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-07 09:48:36.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-07 09:48:36.987 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-07 09:48:36.988 +03:00 [INF] Request finished in 1.0402ms 304 text/plain +2018-09-07 09:48:36.988 +03:00 [INF] Request finished in 1.1863ms 404 +2018-09-07 09:48:44.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-07 09:48:44.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-07 09:48:44.568 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-07 09:48:44.568 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-07 09:48:44.568 +03:00 [INF] Request finished in 1.2732ms 200 image/png +2018-09-07 09:48:44.568 +03:00 [INF] Request finished in 1.2771ms 200 image/png +2018-09-07 09:49:17.892 +03:00 [INF] Loaded modules: +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-07 09:49:17.908 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-07 09:49:17.909 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-07 09:49:17.910 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-07 09:49:17.912 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-07 09:49:17.912 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-07 09:49:19.541 +03:00 [INF] Initialized all modules. +2018-09-07 09:49:19.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ABP-v0.1 Has Been Released +2018-09-07 09:49:22.109 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-07 09:49:22.287 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-07 09:49:22.768 +03:00 [INF] Authorization failed. +2018-09-07 09:49:23.058 +03:00 [INF] Authorization was successful. +2018-09-11 16:53:46.175 +03:00 [INF] Loaded modules: +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 16:53:46.190 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 16:53:46.191 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 16:53:46.192 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 16:53:46.193 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 16:53:46.193 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 16:53:46.193 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 16:53:46.193 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 16:53:47.791 +03:00 [INF] Initialized all modules. +2018-09-11 16:53:47.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-11 16:53:50.081 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-11 16:53:50.113 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-11 16:53:51.786 +03:00 [INF] Executed action /Index in 1697.8990000000001ms +2018-09-11 16:53:51.810 +03:00 [INF] Request finished in 3904.2481ms 200 text/html; charset=utf-8 +2018-09-11 16:53:51.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-11 16:53:51.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-11 16:53:51.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-11 16:53:51.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-11 16:53:51.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-11 16:53:51.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-11 16:53:51.882 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-11 16:53:51.882 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-11 16:53:51.883 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-11 16:53:51.882 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-11 16:53:51.883 +03:00 [INF] Request finished in 18.7841ms 200 text/css +2018-09-11 16:53:51.883 +03:00 [INF] Request finished in 15.3434ms 200 text/css +2018-09-11 16:53:51.883 +03:00 [INF] Request finished in 5.9659ms 200 text/css +2018-09-11 16:53:51.883 +03:00 [INF] Request finished in 19.589ms 200 text/css +2018-09-11 16:53:51.885 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-11 16:53:51.886 +03:00 [INF] Request finished in 23.1294ms 200 text/css +2018-09-11 16:53:51.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-11 16:53:51.911 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-11 16:53:51.911 +03:00 [INF] Request finished in 48.6722ms 200 text/css +2018-09-11 16:53:51.911 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-11 16:53:51.911 +03:00 [INF] Request finished in 1.616ms 200 text/css +2018-09-11 16:53:51.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-11 16:53:51.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-11 16:53:51.937 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-11 16:53:51.937 +03:00 [INF] Request finished in 1.3886ms 200 image/png +2018-09-11 16:53:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-11 16:53:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-11 16:53:51.938 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-11 16:53:51.938 +03:00 [INF] Request finished in 2.328ms 200 image/png +2018-09-11 16:53:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-11 16:53:51.940 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-11 16:53:51.940 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-09-11 16:53:51.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-11 16:53:51.941 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-11 16:53:51.942 +03:00 [INF] Request finished in 3.8515ms 200 image/svg+xml +2018-09-11 16:53:51.943 +03:00 [INF] Request finished in 4.9989ms 304 image/png +2018-09-11 16:53:51.943 +03:00 [INF] Request finished in 4.5507ms 304 image/png +2018-09-11 16:53:51.954 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-11 16:53:51.954 +03:00 [INF] Request finished in 14.9854ms 200 image/png +2018-09-11 16:53:51.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-11 16:53:51.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-11 16:53:51.959 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-11 16:53:51.960 +03:00 [INF] Request finished in 2.4294ms 200 image/png +2018-09-11 16:53:51.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-11 16:53:51.961 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-11 16:53:51.961 +03:00 [INF] Request finished in 2.8664ms 200 image/png +2018-09-11 16:53:51.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-11 16:53:51.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-11 16:53:51.963 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-11 16:53:51.963 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-11 16:53:51.963 +03:00 [INF] Request finished in 1.0385ms 304 image/png +2018-09-11 16:53:51.963 +03:00 [INF] Request finished in 1.0386ms 304 image/png +2018-09-11 16:53:51.965 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-11 16:53:51.966 +03:00 [INF] Request finished in 4.2951ms 304 image/png +2018-09-11 16:53:51.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-11 16:53:51.973 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-11 16:53:51.973 +03:00 [INF] Request finished in 2.8254ms 200 image/png +2018-09-11 16:53:51.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-11 16:53:51.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-11 16:53:51.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-11 16:53:51.980 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-11 16:53:51.981 +03:00 [INF] Request finished in 2.0015ms 200 image/png +2018-09-11 16:53:51.981 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-11 16:53:51.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-11 16:53:51.983 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-11 16:53:51.983 +03:00 [INF] Request finished in 3.624ms 200 image/png +2018-09-11 16:53:51.985 +03:00 [INF] Request finished in 6.5665ms 304 image/png +2018-09-11 16:53:51.985 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-11 16:53:51.986 +03:00 [INF] Request finished in 4.2112ms 200 image/png +2018-09-11 16:53:51.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-11 16:53:51.999 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-11 16:53:52.000 +03:00 [INF] Request finished in 3.1851ms 200 image/png +2018-09-11 16:53:52.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-11 16:53:52.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-11 16:53:52.011 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-11 16:53:52.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-11 16:53:52.018 +03:00 [INF] Request finished in 9.6861ms 200 image/png +2018-09-11 16:53:52.017 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-11 16:53:52.018 +03:00 [INF] Request finished in 13.1876ms 200 image/png +2018-09-11 16:53:52.019 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-11 16:53:52.019 +03:00 [INF] Request finished in 4.3013ms 200 image/png +2018-09-11 16:53:52.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-11 16:53:52.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-11 16:53:52.023 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-11 16:53:52.023 +03:00 [INF] Request finished in 1.3405ms 200 image/png +2018-09-11 16:53:52.023 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-11 16:53:52.023 +03:00 [INF] Request finished in 1.1967ms 200 image/png +2018-09-11 16:53:52.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-11 16:53:52.038 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-11 16:53:52.038 +03:00 [INF] Request finished in 1.6816ms 200 image/png +2018-09-11 16:53:52.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-11 16:53:52.048 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-11 16:53:52.049 +03:00 [INF] Request finished in 3.0894ms 200 image/png +2018-09-11 16:53:52.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-11 16:53:52.052 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-11 16:53:52.053 +03:00 [INF] Request finished in 1.3595ms 200 image/png +2018-09-11 16:53:52.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-11 16:53:52.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-11 16:53:52.058 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-11 16:53:52.058 +03:00 [INF] Request finished in 4.7291ms 200 image/png +2018-09-11 16:53:52.061 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-11 16:53:52.061 +03:00 [INF] Request finished in 3.8164ms 200 image/png +2018-09-11 16:53:52.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-11 16:53:52.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-11 16:53:52.072 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-11 16:53:52.072 +03:00 [INF] Request finished in 2.4949ms 200 image/png +2018-09-11 16:53:52.072 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-11 16:53:52.072 +03:00 [INF] Request finished in 1.9819ms 200 image/png +2018-09-11 16:53:52.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-11 16:53:52.075 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-11 16:53:52.076 +03:00 [INF] Request finished in 2.275ms 200 image/png +2018-09-11 16:53:52.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-11 16:53:52.079 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-11 16:53:52.079 +03:00 [INF] Request finished in 3.096ms 200 image/png +2018-09-11 16:53:52.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-11 16:53:52.091 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-11 16:53:52.092 +03:00 [INF] Request finished in 5.5193ms 200 image/png +2018-09-11 16:53:52.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-11 16:53:52.096 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-11 16:53:52.096 +03:00 [INF] Request finished in 2.0732ms 200 image/png +2018-09-11 16:53:52.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-11 16:53:52.099 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-09-11 16:53:52.100 +03:00 [INF] Request finished in 1.4192ms 304 image/png +2018-09-11 16:53:52.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-11 16:53:52.105 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-11 16:53:52.105 +03:00 [INF] Request finished in 1.9486ms 200 image/png +2018-09-11 16:53:52.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-11 16:53:52.111 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-11 16:53:52.111 +03:00 [INF] Request finished in 2.8348ms 200 image/png +2018-09-11 16:53:52.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-11 16:53:52.112 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-11 16:53:52.113 +03:00 [INF] Request finished in 1.8815ms 200 image/svg+xml +2018-09-11 16:53:52.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-11 16:53:52.117 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-11 16:53:52.118 +03:00 [INF] Request finished in 2.5256ms 200 application/javascript +2018-09-11 16:53:52.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-11 16:53:52.124 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-11 16:53:52.124 +03:00 [INF] Request finished in 1.4933ms 200 application/javascript +2018-09-11 16:53:52.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-11 16:53:52.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-11 16:53:52.130 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-11 16:53:52.130 +03:00 [INF] Request finished in 1.9521ms 304 application/javascript +2018-09-11 16:53:52.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:53:52.141 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-11 16:53:52.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-11 16:53:52.141 +03:00 [INF] Request finished in 15.8396ms 200 application/javascript +2018-09-11 16:53:52.143 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-11 16:53:52.143 +03:00 [INF] Request finished in 1.6554ms 200 application/javascript +2018-09-11 16:53:52.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-11 16:53:52.144 +03:00 [INF] Request finished in 9.483ms 404 +2018-09-11 16:53:52.147 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-11 16:53:52.148 +03:00 [INF] Request finished in 4.0719ms 200 application/javascript +2018-09-11 16:53:52.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-11 16:53:52.162 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-11 16:53:52.162 +03:00 [INF] Request finished in 3.561ms 200 application/javascript +2018-09-11 16:53:52.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-11 16:53:52.173 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-11 16:53:52.174 +03:00 [INF] Request finished in 5.4199ms 200 application/javascript +2018-09-11 16:53:52.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-11 16:53:52.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-11 16:53:52.177 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-11 16:53:52.177 +03:00 [INF] Request finished in 0.8437ms 304 application/javascript +2018-09-11 16:53:52.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-11 16:53:52.179 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-11 16:53:52.183 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-11 16:53:52.183 +03:00 [INF] Request finished in 5.4205ms 200 application/javascript +2018-09-11 16:53:52.183 +03:00 [INF] Request finished in 5.3166ms 200 application/javascript +2018-09-11 16:53:52.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-11 16:53:52.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-11 16:53:52.193 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-11 16:53:52.193 +03:00 [INF] Request finished in 1.6368ms 200 application/javascript +2018-09-11 16:53:52.193 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-11 16:53:52.194 +03:00 [INF] Request finished in 4.302ms 200 application/javascript +2018-09-11 16:53:52.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-11 16:53:52.200 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-11 16:53:52.201 +03:00 [INF] Request finished in 3.3674ms 200 application/javascript +2018-09-11 16:53:52.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 16:53:52.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 16:53:52.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-11 16:53:52.472 +03:00 [INF] The file /js/vs.js was not modified +2018-09-11 16:53:52.473 +03:00 [INF] Request finished in 0.6054ms 304 application/javascript +2018-09-11 16:53:52.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-11 16:53:52.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-11 16:53:52.513 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-11 16:53:52.513 +03:00 [INF] Request finished in 0.6706ms 304 application/javascript +2018-09-11 16:53:52.529 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-11 16:53:52.529 +03:00 [INF] Request finished in 56.0477ms 304 image/jpeg +2018-09-11 16:53:52.542 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:53:52.543 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:53:52.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:53:52.562 +03:00 [INF] Request finished in 1.6199ms 404 +2018-09-11 16:53:52.599 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 16:53:52.604 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 16:53:52.668 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.670 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.671 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.672 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.673 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.673 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.673 +03:00 [INF] Authorization failed. +2018-09-11 16:53:52.707 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.97890000000001ms. +2018-09-11 16:53:52.711 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 110.92790000000001ms. +2018-09-11 16:53:52.714 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:53:52.714 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:53:52.715 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 171.56390000000002ms +2018-09-11 16:53:52.715 +03:00 [INF] Request finished in 491.6664ms 200 text/plain; charset=utf-8 +2018-09-11 16:53:52.716 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 173.7433ms +2018-09-11 16:53:52.716 +03:00 [INF] Request finished in 490.4569ms 200 text/plain; charset=utf-8 +2018-09-11 16:53:52.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-11 16:53:52.828 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-11 16:53:52.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-11 16:53:52.828 +03:00 [INF] Request finished in 0.9429ms 304 image/png +2018-09-11 16:53:52.828 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-11 16:53:52.828 +03:00 [INF] Request finished in 0.653ms 304 image/png +2018-09-11 16:53:59.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-11 16:53:59.881 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-11 16:53:59.917 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:54:00.080 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-11 16:54:00.080 +03:00 [INF] Executed action /Blog/Index in 199.31900000000002ms +2018-09-11 16:54:00.080 +03:00 [INF] Request finished in 581.616ms 302 +2018-09-11 16:54:00.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:54:00.489 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:54:00.605 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:54:00.897 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.316 +03:00 [INF] Executed action /Blog/Posts/Index in 826.88370000000009ms +2018-09-11 16:54:01.316 +03:00 [INF] Request finished in 1219.1364ms 200 text/html; charset=utf-8 +2018-09-11 16:54:01.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-11 16:54:01.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-11 16:54:01.421 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-11 16:54:01.421 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-11 16:54:01.421 +03:00 [INF] Request finished in 0.6179ms 304 text/css +2018-09-11 16:54:01.421 +03:00 [INF] Request finished in 0.6084ms 304 text/css +2018-09-11 16:54:01.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-11 16:54:01.433 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-11 16:54:01.434 +03:00 [INF] Request finished in 0.8393ms 304 text/css +2018-09-11 16:54:01.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-11 16:54:01.438 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-11 16:54:01.438 +03:00 [INF] Request finished in 1.3513ms 304 text/css +2018-09-11 16:54:01.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-11 16:54:01.441 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-11 16:54:01.442 +03:00 [INF] Request finished in 2.766ms 304 text/css +2018-09-11 16:54:01.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-11 16:54:01.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-11 16:54:01.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-11 16:54:01.449 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-11 16:54:01.449 +03:00 [INF] Request finished in 3.7135ms 200 text/css +2018-09-11 16:54:01.449 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-11 16:54:01.450 +03:00 [INF] Request finished in 2.307ms 200 text/css +2018-09-11 16:54:01.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718993699126612 +2018-09-11 16:54:01.451 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-11 16:54:01.451 +03:00 [INF] Request finished in 4.0314ms 200 text/css +2018-09-11 16:54:01.455 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-11 16:54:01.455 +03:00 [INF] Request finished in 4.6598ms 200 text/css +2018-09-11 16:54:01.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 16:54:01.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-11 16:54:01.472 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-11 16:54:01.472 +03:00 [INF] Request finished in 0.6425ms 304 image/svg+xml +2018-09-11 16:54:01.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-11 16:54:01.479 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-11 16:54:01.480 +03:00 [INF] Request finished in 1.5099ms 304 application/javascript +2018-09-11 16:54:01.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:54:01.488 +03:00 [INF] Request finished in 1.3193ms 404 +2018-09-11 16:54:01.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-11 16:54:01.497 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-11 16:54:01.497 +03:00 [INF] Request finished in 1.14ms 304 application/javascript +2018-09-11 16:54:01.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-11 16:54:01.516 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-11 16:54:01.516 +03:00 [INF] Request finished in 1.1889ms 304 application/javascript +2018-09-11 16:54:01.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 16:54:01.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 16:54:01.539 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:54:01.548 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 16:54:01.549 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.85710000000000008ms. +2018-09-11 16:54:01.551 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:54:01.551 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 11.7803ms +2018-09-11 16:54:01.551 +03:00 [INF] Request finished in 13.0746ms 200 text/plain; charset=utf-8 +2018-09-11 16:54:01.553 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:54:01.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-11 16:54:01.555 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 16:54:01.555 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-11 16:54:01.555 +03:00 [INF] Request finished in 2.425ms 200 application/javascript +2018-09-11 16:54:01.555 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.556 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.559 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.560 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.561 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.561 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.562 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.562 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.562 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.563 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.564 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.564 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.564 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.564 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.564 +03:00 [INF] Authorization failed. +2018-09-11 16:54:01.567 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 11.433100000000001ms. +2018-09-11 16:54:01.567 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:54:01.567 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.2866ms +2018-09-11 16:54:01.568 +03:00 [INF] Request finished in 30.0124ms 200 text/plain; charset=utf-8 +2018-09-11 16:54:01.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636718993699126612 +2018-09-11 16:54:01.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718993699126612 +2018-09-11 16:54:01.569 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-11 16:54:01.569 +03:00 [INF] Request finished in 0.7987ms 200 application/javascript +2018-09-11 16:54:01.569 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-11 16:54:01.569 +03:00 [INF] Request finished in 1.4073ms 200 application/javascript +2018-09-11 16:54:01.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:54:01.612 +03:00 [INF] Request finished in 0.9476ms 404 +2018-09-11 16:54:01.980 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 16:54:01.991 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:54:02.029 +03:00 [INF] Executed action /Blog/Posts/Detail in 48.8904ms +2018-09-11 16:54:02.047 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 9 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 16:54:02.108 +03:00 [INF] Request finished in 639.128ms 500 text/html; charset=utf-8 +2018-09-11 16:54:12.761 +03:00 [INF] Loaded modules: +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 16:54:12.778 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 16:54:12.779 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 16:54:12.780 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 16:54:12.781 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 16:54:14.348 +03:00 [INF] Initialized all modules. +2018-09-11 16:54:14.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:54:14.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-11 16:54:14.849 +03:00 [INF] Request finished in 266.2147ms 404 +2018-09-11 16:54:16.914 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:54:17.084 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:54:17.631 +03:00 [INF] Authorization failed. +2018-09-11 16:54:18.799 +03:00 [INF] Executed action /Blog/Posts/Index in 1880.6702ms +2018-09-11 16:54:18.805 +03:00 [INF] Request finished in 4222.5658ms 200 text/html; charset=utf-8 +2018-09-11 16:54:18.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 16:54:19.307 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 16:54:19.318 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:54:19.358 +03:00 [INF] Executed action /Blog/Posts/Detail in 50.4654ms +2018-09-11 16:54:19.371 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in /Pages/Blog/Posts/Detail.cshtml:line 9 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 16:54:19.415 +03:00 [INF] Request finished in 548.9582ms 500 text/html; charset=utf-8 +2018-09-11 16:54:26.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-11 16:54:26.465 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 16:54:26.472 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:57:40.365 +03:00 [INF] Loaded modules: +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 16:57:40.383 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 16:57:40.384 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 16:57:40.385 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 16:57:42.217 +03:00 [INF] Initialized all modules. +2018-09-11 16:57:42.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:57:45.130 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:57:45.316 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:57:45.487 +03:00 [INF] Executed action /Blog/Posts/Index in 353.52770000000004ms +2018-09-11 16:57:45.545 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'CoverImage'. + at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + at System.Data.SqlClient.SqlDataReader.get_MetaData() + at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) + at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds) + at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method) + at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) + at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + at System.Data.Common.DbCommand.ExecuteReader() + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer) + at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext() + at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Volo.Blogging.Posts.EfCorePostRepository.GetPostsByBlogId(Guid id) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Posts\EfCorePostRepository.cs:line 23 + at Castle.Proxies.Invocations.IPostRepository_GetPostsByBlogId.InvokeMethodOnTarget() + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 43 + at Volo.Abp.Uow.UnitOfWorkInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 31 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptSyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 52 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 28 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Castle.Proxies.IBasicRepository`1Proxy_4.GetPostsByBlogId(Guid id) + at Volo.Blogging.Posts.PostAppService.GetListByBlogIdAndTagName(Guid id, String tagName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Posts\PostAppService.cs:line 37 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 38 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +ClientConnectionId:d38d1795-35c9-4e08-b223-aba3645ecbc9 +Error Number:207,State:1,Class:16 +2018-09-11 16:57:45.627 +03:00 [INF] Request finished in 3191.7227ms 500 text/html; charset=utf-8 +2018-09-11 16:58:10.203 +03:00 [INF] Loaded modules: +2018-09-11 16:58:10.218 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 16:58:10.219 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 16:58:10.220 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 16:58:12.441 +03:00 [INF] Initialized all modules. +2018-09-11 16:58:12.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-11 16:58:14.898 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-11 16:58:14.917 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-11 16:58:16.318 +03:00 [INF] Executed action /Index in 1416.3163ms +2018-09-11 16:58:16.340 +03:00 [INF] Request finished in 3601.7905ms 200 text/html; charset=utf-8 +2018-09-11 16:58:16.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-11 16:58:16.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-11 16:58:16.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-11 16:58:16.402 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-09-11 16:58:16.402 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-11 16:58:16.402 +03:00 [INF] The file /img/mt-left.png was not modified +2018-09-11 16:58:16.405 +03:00 [INF] Request finished in 11.2611ms 304 image/png +2018-09-11 16:58:16.405 +03:00 [INF] Request finished in 5.5486ms 304 image/png +2018-09-11 16:58:16.405 +03:00 [INF] Request finished in 10.7893ms 304 image/png +2018-09-11 16:58:16.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-11 16:58:16.410 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-09-11 16:58:16.410 +03:00 [INF] Request finished in 0.7703ms 304 image/png +2018-09-11 16:58:16.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-11 16:58:16.413 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-09-11 16:58:16.414 +03:00 [INF] Request finished in 2.0237ms 304 image/png +2018-09-11 16:58:16.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-11 16:58:16.417 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-09-11 16:58:16.417 +03:00 [INF] Request finished in 0.8952ms 304 image/png +2018-09-11 16:58:16.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-11 16:58:16.433 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-11 16:58:16.433 +03:00 [INF] Request finished in 0.9869ms 304 image/png +2018-09-11 16:58:16.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-11 16:58:16.436 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-09-11 16:58:16.436 +03:00 [INF] Request finished in 1.2439ms 304 image/png +2018-09-11 16:58:16.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-11 16:58:16.440 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-09-11 16:58:16.441 +03:00 [INF] Request finished in 0.7639ms 304 image/png +2018-09-11 16:58:16.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-11 16:58:16.444 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-09-11 16:58:16.445 +03:00 [INF] Request finished in 1.9245ms 304 image/png +2018-09-11 16:58:16.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:58:16.471 +03:00 [INF] Request finished in 4.8425ms 404 +2018-09-11 16:58:16.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 16:58:16.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 16:58:16.524 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:58:16.527 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 16:58:16.571 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 16:58:16.572 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 16:58:16.624 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.626 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.626 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.626 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.626 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.627 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.628 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.629 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.630 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.630 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.630 +03:00 [INF] Authorization failed. +2018-09-11 16:58:16.630 +03:00 [INF] Request finished in 1.3483ms 404 +2018-09-11 16:58:16.658 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 80.6499ms. +2018-09-11 16:58:16.669 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:58:16.669 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.82950000000001ms. +2018-09-11 16:58:16.671 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 16:58:16.671 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 146.7303ms +2018-09-11 16:58:16.672 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 144.25050000000002ms +2018-09-11 16:58:16.672 +03:00 [INF] Request finished in 164.1232ms 200 text/plain; charset=utf-8 +2018-09-11 16:58:16.672 +03:00 [INF] Request finished in 166.6942ms 200 text/plain; charset=utf-8 +2018-09-11 16:58:18.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:58:19.163 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:58:19.303 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:58:19.465 +03:00 [INF] Executed action /Blog/Posts/Index in 301.7431ms +2018-09-11 16:58:19.511 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'CoverImage'. + at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + at System.Data.SqlClient.SqlDataReader.get_MetaData() + at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) + at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds) + at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method) + at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) + at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + at System.Data.Common.DbCommand.ExecuteReader() + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer) + at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext() + at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Volo.Blogging.Posts.EfCorePostRepository.GetPostsByBlogId(Guid id) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Posts\EfCorePostRepository.cs:line 23 + at Castle.Proxies.Invocations.IPostRepository_GetPostsByBlogId.InvokeMethodOnTarget() + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 43 + at Volo.Abp.Uow.UnitOfWorkInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 31 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptSyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 52 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 28 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Castle.Proxies.IBasicRepository`1Proxy_4.GetPostsByBlogId(Guid id) + at Volo.Blogging.Posts.PostAppService.GetListByBlogIdAndTagName(Guid id, String tagName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Posts\PostAppService.cs:line 37 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 38 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +ClientConnectionId:c2cf661b-e562-472f-a206-9e9c5652f5b5 +Error Number:207,State:1,Class:16 +2018-09-11 16:58:19.579 +03:00 [INF] Request finished in 799.1557ms 500 text/html; charset=utf-8 +2018-09-11 16:58:19.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-11 16:58:19.600 +03:00 [INF] Request finished in 1.2622ms 404 +2018-09-11 16:58:23.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-11 16:58:24.064 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-11 16:58:24.068 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:58:24.101 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-11 16:58:24.101 +03:00 [INF] Executed action /Blog/Index in 36.8765ms +2018-09-11 16:58:24.101 +03:00 [INF] Request finished in 286.7156ms 302 +2018-09-11 16:58:24.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:58:24.112 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:58:24.115 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:58:24.123 +03:00 [INF] Executed action /Blog/Posts/Index in 11.327300000000001ms +2018-09-11 16:58:24.126 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'CoverImage'. + at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + at System.Data.SqlClient.SqlDataReader.get_MetaData() + at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) + at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds) + at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method) + at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) + at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + at System.Data.Common.DbCommand.ExecuteReader() + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer) + at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext() + at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Volo.Blogging.Posts.EfCorePostRepository.GetPostsByBlogId(Guid id) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Posts\EfCorePostRepository.cs:line 23 + at Castle.Proxies.Invocations.IPostRepository_GetPostsByBlogId.InvokeMethodOnTarget() + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 43 + at Volo.Abp.Uow.UnitOfWorkInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 31 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptSyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 52 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 28 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Castle.Proxies.IBasicRepository`1Proxy_4.GetPostsByBlogId(Guid id) + at Volo.Blogging.Posts.PostAppService.GetListByBlogIdAndTagName(Guid id, String tagName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Posts\PostAppService.cs:line 37 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 38 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +ClientConnectionId:c2cf661b-e562-472f-a206-9e9c5652f5b5 +Error Number:207,State:1,Class:16 +2018-09-11 16:58:24.162 +03:00 [INF] Request finished in 51.9877ms 500 text/html; charset=utf-8 +2018-09-11 16:58:24.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-11 16:58:24.185 +03:00 [INF] Request finished in 0.7425ms 404 +2018-09-11 16:58:44.707 +03:00 [INF] Loaded modules: +2018-09-11 16:58:44.721 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 16:58:44.722 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 16:58:44.723 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 16:58:44.724 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 16:58:46.365 +03:00 [INF] Initialized all modules. +2018-09-11 16:58:46.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 16:58:48.836 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 16:58:49.009 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 16:58:49.170 +03:00 [INF] Executed action /Blog/Posts/Index in 330.3016ms +2018-09-11 16:58:49.210 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'CoverImage'. + at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + at System.Data.SqlClient.SqlDataReader.get_MetaData() + at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) + at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds) + at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method) + at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) + at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + at System.Data.Common.DbCommand.ExecuteReader() + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader(IRelationalConnection connection, IReadOnlyDictionary`2 parameterValues) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.BufferlessMoveNext(DbContext _, Boolean buffer) + at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryingEnumerable`1.Enumerator.MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider._TrackEntities[TOut,TIn](IEnumerable`1 results, QueryContext queryContext, IList`1 entityTrackingInfos, IList`1 entityAccessors)+MoveNext() + at Microsoft.EntityFrameworkCore.Query.Internal.LinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext() + at System.Collections.Generic.List`1.AddEnumerable(IEnumerable`1 enumerable) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Volo.Blogging.Posts.EfCorePostRepository.GetPostsByBlogId(Guid id) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Posts\EfCorePostRepository.cs:line 23 + at Castle.Proxies.Invocations.IPostRepository_GetPostsByBlogId.InvokeMethodOnTarget() + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 43 + at Volo.Abp.Uow.UnitOfWorkInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 31 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptSyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 52 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 28 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Castle.Proxies.IBasicRepository`1Proxy_4.GetPostsByBlogId(Guid id) + at Volo.Blogging.Posts.PostAppService.GetListByBlogIdAndTagName(Guid id, String tagName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Posts\PostAppService.cs:line 37 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 38 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +ClientConnectionId:1b74e82c-0d66-4e6b-a85c-018cafe4bbd9 +Error Number:207,State:1,Class:16 +2018-09-11 16:58:49.291 +03:00 [INF] Request finished in 2621.6346ms 500 text/html; charset=utf-8 +2018-09-11 16:58:49.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-11 16:58:49.321 +03:00 [INF] Request finished in 5.5905ms 404 +2018-09-11 17:01:27.061 +03:00 [INF] Loaded modules: +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-11 17:01:27.077 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-11 17:01:27.078 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-11 17:01:27.079 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-11 17:01:27.079 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-11 17:01:27.080 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-11 17:01:28.801 +03:00 [INF] Initialized all modules. +2018-09-11 17:01:29.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-11 17:01:31.328 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-11 17:01:31.348 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:32.762 +03:00 [INF] Executed action /Index in 1426.9178000000002ms +2018-09-11 17:01:32.791 +03:00 [INF] Request finished in 3660.3521ms 200 text/html; charset=utf-8 +2018-09-11 17:01:32.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:32.908 +03:00 [INF] Request finished in 10.1889ms 404 +2018-09-11 17:01:32.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:32.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:32.962 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:32.962 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:33.019 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:33.027 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:33.095 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.096 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.097 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.098 +03:00 [INF] Authorization failed. +2018-09-11 17:01:33.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:33.104 +03:00 [INF] Request finished in 1.2278ms 404 +2018-09-11 17:01:33.140 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 109.4269ms. +2018-09-11 17:01:33.140 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 116.62570000000001ms. +2018-09-11 17:01:33.149 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:33.149 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:33.150 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 188.2852ms +2018-09-11 17:01:33.150 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 188.26250000000002ms +2018-09-11 17:01:33.150 +03:00 [INF] Request finished in 210.3792ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:33.150 +03:00 [INF] Request finished in 213.7564ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:33.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:01:34.308 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:01:34.451 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:34.732 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.067 +03:00 [INF] Executed action /Blog/Posts/Index in 758.9786ms +2018-09-11 17:01:35.067 +03:00 [INF] Request finished in 1146.444ms 200 text/html; charset=utf-8 +2018-09-11 17:01:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-11 17:01:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-11 17:01:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-11 17:01:35.099 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-11 17:01:35.099 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-11 17:01:35.099 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-11 17:01:35.100 +03:00 [INF] Request finished in 3.6914ms 304 text/css +2018-09-11 17:01:35.100 +03:00 [INF] Request finished in 4.3195ms 304 text/css +2018-09-11 17:01:35.100 +03:00 [INF] Request finished in 4.3057ms 304 text/css +2018-09-11 17:01:35.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-11 17:01:35.101 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-11 17:01:35.101 +03:00 [INF] Request finished in 0.7229ms 304 text/css +2018-09-11 17:01:35.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-11 17:01:35.109 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-11 17:01:35.109 +03:00 [INF] Request finished in 2.1612ms 304 text/css +2018-09-11 17:01:35.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-11 17:01:35.119 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-11 17:01:35.122 +03:00 [INF] Request finished in 6.1878ms 304 text/css +2018-09-11 17:01:35.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-11 17:01:35.125 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-11 17:01:35.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-11 17:01:35.125 +03:00 [INF] Request finished in 1.4314ms 304 text/css +2018-09-11 17:01:35.126 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-11 17:01:35.126 +03:00 [INF] Request finished in 1.5283ms 304 text/css +2018-09-11 17:01:35.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-11 17:01:35.130 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-11 17:01:35.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-11 17:01:35.130 +03:00 [INF] Request finished in 1.7081ms 304 text/css +2018-09-11 17:01:35.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-11 17:01:35.131 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-11 17:01:35.131 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-11 17:01:35.131 +03:00 [INF] Request finished in 0.4231ms 304 text/css +2018-09-11 17:01:35.131 +03:00 [INF] Request finished in 1.1249ms 304 text/css +2018-09-11 17:01:35.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636722710401517993 +2018-09-11 17:01:35.143 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-11 17:01:35.144 +03:00 [INF] Request finished in 9.3153ms 200 text/css +2018-09-11 17:01:35.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-11 17:01:35.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-11 17:01:35.152 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-11 17:01:35.152 +03:00 [INF] Request finished in 3.3365ms 304 application/javascript +2018-09-11 17:01:35.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:01:35.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-11 17:01:35.153 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-11 17:01:35.153 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-11 17:01:35.154 +03:00 [INF] Request finished in 0.896ms 304 application/javascript +2018-09-11 17:01:35.154 +03:00 [INF] Request finished in 1.5943ms 304 application/javascript +2018-09-11 17:01:35.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-11 17:01:35.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-11 17:01:35.162 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-11 17:01:35.163 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-11 17:01:35.163 +03:00 [INF] Request finished in 0.8226ms 304 image/svg+xml +2018-09-11 17:01:35.163 +03:00 [INF] Request finished in 0.8058ms 304 image/svg+xml +2018-09-11 17:01:35.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:35.168 +03:00 [INF] Request finished in 1.3249ms 404 +2018-09-11 17:01:35.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-11 17:01:35.171 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-11 17:01:35.171 +03:00 [INF] Request finished in 1.8688ms 304 application/javascript +2018-09-11 17:01:35.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-11 17:01:35.174 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-11 17:01:35.174 +03:00 [INF] Request finished in 0.6566ms 304 application/javascript +2018-09-11 17:01:35.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-11 17:01:35.183 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-11 17:01:35.190 +03:00 [INF] Request finished in 10.6801ms 304 application/javascript +2018-09-11 17:01:35.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-11 17:01:35.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-11 17:01:35.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-11 17:01:35.192 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-11 17:01:35.192 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-11 17:01:35.192 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-11 17:01:35.192 +03:00 [INF] Request finished in 3.1241ms 304 application/javascript +2018-09-11 17:01:35.192 +03:00 [INF] Request finished in 5.5228ms 304 application/javascript +2018-09-11 17:01:35.192 +03:00 [INF] Request finished in 4.4869ms 304 application/javascript +2018-09-11 17:01:35.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-11 17:01:35.205 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-11 17:01:35.205 +03:00 [INF] Request finished in 0.785ms 304 application/javascript +2018-09-11 17:01:35.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-11 17:01:35.214 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-11 17:01:35.214 +03:00 [INF] Request finished in 2.8618ms 304 application/javascript +2018-09-11 17:01:35.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-11 17:01:35.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-11 17:01:35.220 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-11 17:01:35.222 +03:00 [INF] Request finished in 2.5911ms 304 application/javascript +2018-09-11 17:01:35.222 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-11 17:01:35.223 +03:00 [INF] Request finished in 2.9582ms 304 application/javascript +2018-09-11 17:01:35.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-11 17:01:35.228 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-11 17:01:35.229 +03:00 [INF] Request finished in 1.6114ms 304 application/javascript +2018-09-11 17:01:35.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-11 17:01:35.233 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-11 17:01:35.233 +03:00 [INF] Request finished in 3.6737ms 304 application/javascript +2018-09-11 17:01:35.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-11 17:01:35.239 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-11 17:01:35.239 +03:00 [INF] Request finished in 0.8049ms 304 application/javascript +2018-09-11 17:01:35.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-11 17:01:35.240 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-11 17:01:35.240 +03:00 [INF] Request finished in 0.7508ms 304 application/javascript +2018-09-11 17:01:35.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-11 17:01:35.246 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-11 17:01:35.246 +03:00 [INF] Request finished in 3.2653ms 304 application/javascript +2018-09-11 17:01:35.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-11 17:01:35.253 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-11 17:01:35.253 +03:00 [INF] Request finished in 1.0808ms 304 application/javascript +2018-09-11 17:01:35.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-11 17:01:35.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:35.257 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-11 17:01:35.257 +03:00 [INF] Request finished in 1.7174ms 304 application/javascript +2018-09-11 17:01:35.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:35.268 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:35.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-11 17:01:35.268 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:35.269 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:35.270 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:35.270 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4067ms. +2018-09-11 17:01:35.271 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:35.271 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5938000000000003ms +2018-09-11 17:01:35.272 +03:00 [INF] Request finished in 6.0773ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:35.273 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.273 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-11 17:01:35.273 +03:00 [INF] Request finished in 5.5723ms 304 application/javascript +2018-09-11 17:01:35.274 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.274 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.274 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.274 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.275 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.275 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.276 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.276 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.276 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.277 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.278 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.281 +03:00 [INF] Authorization failed. +2018-09-11 17:01:35.284 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.8764ms. +2018-09-11 17:01:35.284 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:35.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-11 17:01:35.284 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.3834ms +2018-09-11 17:01:35.285 +03:00 [INF] Request finished in 28.8252ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:35.285 +03:00 [INF] The file /js/vs.js was not modified +2018-09-11 17:01:35.285 +03:00 [INF] Request finished in 0.5468ms 304 application/javascript +2018-09-11 17:01:35.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-11 17:01:35.289 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-11 17:01:35.290 +03:00 [INF] Request finished in 1.3354ms 304 application/javascript +2018-09-11 17:01:35.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636722710401517993 +2018-09-11 17:01:35.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636722710401517993 +2018-09-11 17:01:35.299 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-11 17:01:35.299 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-11 17:01:35.299 +03:00 [INF] Request finished in 1.3107ms 200 application/javascript +2018-09-11 17:01:35.299 +03:00 [INF] Request finished in 1.0804ms 200 application/javascript +2018-09-11 17:01:35.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-11 17:01:35.306 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-11 17:01:35.307 +03:00 [INF] Request finished in 1.2207ms 304 image/jpeg +2018-09-11 17:01:35.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-11 17:01:35.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:35.312 +03:00 [INF] Request finished in 0.9201ms 404 +2018-09-11 17:01:35.325 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-11 17:01:35.326 +03:00 [INF] Request finished in 18.4798ms 200 font/woff2 +2018-09-11 17:01:35.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-11 17:01:35.623 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-11 17:01:35.623 +03:00 [INF] Request finished in 0.6084ms 304 image/png +2018-09-11 17:01:35.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-11 17:01:35.625 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-11 17:01:35.625 +03:00 [INF] Request finished in 0.9546ms 304 image/png +2018-09-11 17:01:35.837 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:01:35.849 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:35.858 +03:00 [INF] Executed action /Blog/Posts/Detail in 21.331500000000002ms +2018-09-11 17:01:35.905 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:01:36.001 +03:00 [INF] Request finished in 848.1609ms 500 text/html; charset=utf-8 +2018-09-11 17:01:42.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-11 17:01:43.380 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-11 17:01:43.427 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:43.532 +03:00 [INF] Executed action /Account/Login in 152.3231ms +2018-09-11 17:01:43.532 +03:00 [INF] Request finished in 836.3983ms 200 text/html; charset=utf-8 +2018-09-11 17:01:43.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-11 17:01:43.577 +03:00 [INF] Request finished in 0.7919ms 404 +2018-09-11 17:01:43.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:43.594 +03:00 [INF] Request finished in 1.0731ms 404 +2018-09-11 17:01:43.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:43.634 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:43.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:43.637 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:43.637 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.637 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.638 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.638 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:43.638 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:43.639 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.640 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1668ms. +2018-09-11 17:01:43.640 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:43.640 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.640 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0364ms +2018-09-11 17:01:43.640 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.640 +03:00 [INF] Request finished in 5.282ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:43.640 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.640 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.641 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.642 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.642 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.642 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.642 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.642 +03:00 [INF] Authorization failed. +2018-09-11 17:01:43.644 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.8156000000000008ms. +2018-09-11 17:01:43.644 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:43.644 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.7479000000000013ms +2018-09-11 17:01:43.644 +03:00 [INF] Request finished in 11.4965ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:49.477 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-11 17:01:49.478 +03:00 [INF] Route matched with {page = "/Account/Login", area = "", action = "", controller = ""}. Executing action /Account/Login +2018-09-11 17:01:49.589 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:49.810 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-11 17:01:49.825 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-11 17:01:49.825 +03:00 [INF] Executed action /Account/Login in 346.4221ms +2018-09-11 17:01:49.825 +03:00 [INF] Request finished in 348.8519ms 302 +2018-09-11 17:01:49.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-11 17:01:49.879 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-11 17:01:49.879 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:49.885 +03:00 [INF] Executed action /Index in 6.5942000000000007ms +2018-09-11 17:01:49.886 +03:00 [INF] Request finished in 50.1315ms 200 text/html; charset=utf-8 +2018-09-11 17:01:49.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:50.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:50.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:50.021 +03:00 [INF] Request finished in 73.7272ms 404 +2018-09-11 17:01:50.053 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:50.054 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:50.058 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:50.060 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:50.060 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1148ms. +2018-09-11 17:01:50.060 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:50.061 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0114ms +2018-09-11 17:01:50.061 +03:00 [INF] Request finished in 56.8586ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:50.134 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.138 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.140 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.144 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.146 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.148 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.151 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.153 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.155 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.157 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.160 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.163 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.165 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.167 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.169 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.171 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.172 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.174 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:50.177 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.179 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.181 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.183 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.185 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.187 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.188 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.190 +03:00 [INF] Authorization failed. +2018-09-11 17:01:50.194 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 139.8029ms. +2018-09-11 17:01:50.203 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:50.203 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 149.5496ms +2018-09-11 17:01:50.203 +03:00 [INF] Request finished in 201.2748ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:51.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:01:51.819 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:01:51.822 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:51.840 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:51.856 +03:00 [INF] Executed action /Blog/Posts/Index in 36.8382ms +2018-09-11 17:01:51.856 +03:00 [INF] Request finished in 61.7544ms 200 text/html; charset=utf-8 +2018-09-11 17:01:51.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-11 17:01:51.875 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-11 17:01:51.875 +03:00 [INF] Request finished in 0.9071ms 304 text/css +2018-09-11 17:01:51.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-11 17:01:51.883 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-11 17:01:51.883 +03:00 [INF] Request finished in 2.4846ms 304 text/css +2018-09-11 17:01:51.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-11 17:01:51.885 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-11 17:01:51.885 +03:00 [INF] Request finished in 1.8264ms 304 text/css +2018-09-11 17:01:51.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-11 17:01:51.888 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-11 17:01:51.888 +03:00 [INF] Request finished in 0.5975ms 304 text/css +2018-09-11 17:01:51.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-11 17:01:51.895 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-11 17:01:51.895 +03:00 [INF] Request finished in 1.5456ms 304 text/css +2018-09-11 17:01:51.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-11 17:01:51.897 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-11 17:01:51.898 +03:00 [INF] Request finished in 1.7863ms 304 text/css +2018-09-11 17:01:51.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-11 17:01:51.902 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-11 17:01:51.902 +03:00 [INF] Request finished in 1.5824ms 304 text/css +2018-09-11 17:01:51.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-11 17:01:51.904 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-11 17:01:51.905 +03:00 [INF] Request finished in 0.9662ms 304 text/css +2018-09-11 17:01:51.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-11 17:01:51.912 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-11 17:01:51.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-11 17:01:51.912 +03:00 [INF] Request finished in 2.6934ms 304 text/css +2018-09-11 17:01:51.912 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-11 17:01:51.913 +03:00 [INF] Request finished in 0.6351ms 304 text/css +2018-09-11 17:01:51.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-11 17:01:51.918 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-11 17:01:51.918 +03:00 [INF] Request finished in 0.8988ms 304 text/css +2018-09-11 17:01:51.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636722710401517993 +2018-09-11 17:01:51.921 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-11 17:01:51.921 +03:00 [INF] Request finished in 0.8603ms 304 text/css +2018-09-11 17:01:51.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-11 17:01:51.927 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-11 17:01:51.928 +03:00 [INF] Request finished in 1.2728ms 304 application/javascript +2018-09-11 17:01:51.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:01:51.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-11 17:01:51.933 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-11 17:01:51.933 +03:00 [INF] Request finished in 1.0307ms 304 application/javascript +2018-09-11 17:01:51.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-11 17:01:51.940 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-11 17:01:51.940 +03:00 [INF] Request finished in 0.5342ms 304 application/javascript +2018-09-11 17:01:51.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-11 17:01:51.947 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-11 17:01:51.947 +03:00 [INF] Request finished in 3.2115ms 304 application/javascript +2018-09-11 17:01:51.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:51.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-11 17:01:51.960 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-11 17:01:51.960 +03:00 [INF] Request finished in 0.6614ms 304 application/javascript +2018-09-11 17:01:51.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-11 17:01:51.968 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-11 17:01:51.968 +03:00 [INF] Request finished in 2.9185ms 304 application/javascript +2018-09-11 17:01:51.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-11 17:01:51.972 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-11 17:01:51.973 +03:00 [INF] Request finished in 2.0659ms 304 image/svg+xml +2018-09-11 17:01:51.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-11 17:01:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-11 17:01:51.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-11 17:01:51.984 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-11 17:01:51.984 +03:00 [INF] Request finished in 0.5407ms 304 application/javascript +2018-09-11 17:01:51.984 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-11 17:01:51.984 +03:00 [INF] Request finished in 1.0306ms 304 image/svg+xml +2018-09-11 17:01:51.985 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-11 17:01:51.985 +03:00 [INF] Request finished in 0.7851ms 304 application/javascript +2018-09-11 17:01:51.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-11 17:01:51.993 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-11 17:01:51.993 +03:00 [INF] Request finished in 0.6197ms 304 application/javascript +2018-09-11 17:01:51.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-11 17:01:51.999 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-11 17:01:51.999 +03:00 [INF] Request finished in 1.1696ms 304 application/javascript +2018-09-11 17:01:52.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-11 17:01:52.006 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-11 17:01:52.006 +03:00 [INF] Request finished in 0.8676ms 304 application/javascript +2018-09-11 17:01:52.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-11 17:01:52.010 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-11 17:01:52.010 +03:00 [INF] Request finished in 1.6667ms 304 application/javascript +2018-09-11 17:01:52.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-11 17:01:52.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-11 17:01:52.029 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-11 17:01:52.030 +03:00 [INF] Request finished in 2.1675ms 304 application/javascript +2018-09-11 17:01:52.030 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-11 17:01:52.031 +03:00 [INF] Request finished in 3.3062ms 304 application/javascript +2018-09-11 17:01:52.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-11 17:01:52.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-11 17:01:52.040 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:01:52.041 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-11 17:01:52.041 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-11 17:01:52.041 +03:00 [INF] Request finished in 1.882ms 304 application/javascript +2018-09-11 17:01:52.041 +03:00 [INF] Request finished in 2.2301ms 304 application/javascript +2018-09-11 17:01:52.047 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:52.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-11 17:01:52.054 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-11 17:01:52.056 +03:00 [INF] Request finished in 2.6378ms 304 application/javascript +2018-09-11 17:01:52.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-11 17:01:52.066 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-11 17:01:52.066 +03:00 [INF] Request finished in 1.4151ms 304 application/javascript +2018-09-11 17:01:52.067 +03:00 [INF] Executed action /Blog/Posts/Detail in 26.520500000000002ms +2018-09-11 17:01:52.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-11 17:01:52.068 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-11 17:01:52.068 +03:00 [INF] Request finished in 1.4546ms 304 application/javascript +2018-09-11 17:01:52.071 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:01:52.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:52.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-11 17:01:52.075 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-11 17:01:52.075 +03:00 [INF] Request finished in 1.3191ms 304 application/javascript +2018-09-11 17:01:52.075 +03:00 [INF] Request finished in 124.038ms 404 +2018-09-11 17:01:52.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-11 17:01:52.084 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-11 17:01:52.084 +03:00 [INF] Request finished in 1.2506ms 304 application/javascript +2018-09-11 17:01:52.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:52.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-11 17:01:52.089 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-11 17:01:52.089 +03:00 [INF] Request finished in 0.6805ms 304 application/javascript +2018-09-11 17:01:52.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-11 17:01:52.091 +03:00 [INF] The file /js/vs.js was not modified +2018-09-11 17:01:52.091 +03:00 [INF] Request finished in 0.5506ms 304 application/javascript +2018-09-11 17:01:52.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636722710401517993 +2018-09-11 17:01:52.100 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-11 17:01:52.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636722710401517993 +2018-09-11 17:01:52.100 +03:00 [INF] Request finished in 0.9674ms 304 application/javascript +2018-09-11 17:01:52.100 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-11 17:01:52.100 +03:00 [INF] Request finished in 0.7732ms 304 application/javascript +2018-09-11 17:01:52.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-11 17:01:52.106 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-11 17:01:52.106 +03:00 [INF] Request finished in 1.5588ms 304 image/jpeg +2018-09-11 17:01:52.121 +03:00 [INF] Request finished in 192.3121ms 500 text/html; charset=utf-8 +2018-09-11 17:01:52.143 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:52.145 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:52.146 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.146 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.147 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.148 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.148 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.149 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.149 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.149 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:52.150 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.150 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:52.151 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.109ms. +2018-09-11 17:01:52.151 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:52.151 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3125ms +2018-09-11 17:01:52.151 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.151 +03:00 [INF] Request finished in 65.9167ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:52.152 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.153 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.154 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.155 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.156 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.157 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.160 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.161 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.162 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:52.163 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.164 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.164 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.165 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.166 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.253 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.254 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.255 +03:00 [INF] Authorization failed. +2018-09-11 17:01:52.256 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 111.6601ms. +2018-09-11 17:01:52.257 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:52.257 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 113.5865ms +2018-09-11 17:01:52.257 +03:00 [INF] Request finished in 184.0682ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:52.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-11 17:01:52.403 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-11 17:01:52.403 +03:00 [INF] Request finished in 0.7313ms 304 image/png +2018-09-11 17:01:52.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-11 17:01:52.405 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-11 17:01:52.405 +03:00 [INF] Request finished in 0.6286ms 304 image/png +2018-09-11 17:01:53.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-11 17:01:53.677 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-11 17:01:53.684 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:01:53.811 +03:00 [INF] Executed action /Blog/Posts/New in 134.1902ms +2018-09-11 17:01:53.811 +03:00 [INF] Request finished in 615.5363ms 200 text/html; charset=utf-8 +2018-09-11 17:01:53.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718386696187115 +2018-09-11 17:01:53.862 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-11 17:01:53.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718386703457117 +2018-09-11 17:01:53.862 +03:00 [INF] Request finished in 2.0887ms 200 text/css +2018-09-11 17:01:53.865 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-11 17:01:53.865 +03:00 [INF] Request finished in 3.7226ms 200 text/css +2018-09-11 17:01:53.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718386699947106 +2018-09-11 17:01:53.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718386697187112 +2018-09-11 17:01:53.869 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-11 17:01:53.869 +03:00 [INF] Request finished in 2.3622ms 200 text/css +2018-09-11 17:01:53.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636722710401517993 +2018-09-11 17:01:53.871 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-11 17:01:53.871 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-11 17:01:53.871 +03:00 [INF] Request finished in 0.861ms 200 text/css +2018-09-11 17:01:53.871 +03:00 [INF] Request finished in 3.0625ms 200 text/css +2018-09-11 17:01:53.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/assets/fork.png +2018-09-11 17:01:53.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:01:53.930 +03:00 [INF] Request finished in 44.0609ms 404 +2018-09-11 17:01:53.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:01:53.941 +03:00 [INF] Request finished in 47.7319ms 404 +2018-09-11 17:01:53.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:01:53.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718386696187115 +2018-09-11 17:01:53.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718386696527110 +2018-09-11 17:01:53.963 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-11 17:01:53.965 +03:00 [INF] Request finished in 10.5277ms 200 application/javascript +2018-09-11 17:01:53.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718386696187115 +2018-09-11 17:01:53.972 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-11 17:01:53.972 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-11 17:01:53.972 +03:00 [INF] Request finished in 5.2221ms 200 application/javascript +2018-09-11 17:01:53.973 +03:00 [INF] Request finished in 16.6484ms 200 application/javascript +2018-09-11 17:01:53.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718386696187115 +2018-09-11 17:01:53.982 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-11 17:01:53.982 +03:00 [INF] Request finished in 1.6499ms 200 application/javascript +2018-09-11 17:01:53.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718386696187115 +2018-09-11 17:01:53.995 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-11 17:01:53.995 +03:00 [INF] Request finished in 1.6977ms 200 application/javascript +2018-09-11 17:01:53.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718386696187115 +2018-09-11 17:01:53.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718386697907119 +2018-09-11 17:01:53.998 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-11 17:01:53.998 +03:00 [INF] Request finished in 2.4308ms 200 application/javascript +2018-09-11 17:01:54.007 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-11 17:01:54.008 +03:00 [INF] Request finished in 10.5536ms 200 application/javascript +2018-09-11 17:01:54.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636722710401517993 +2018-09-11 17:01:54.018 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-11 17:01:54.018 +03:00 [INF] Request finished in 1.4588ms 200 application/javascript +2018-09-11 17:01:54.021 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:54.022 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:01:54.023 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.023 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.024 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.024 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.025 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.025 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.026 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.026 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.027 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.029 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.030 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.032 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.033 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.033 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.035 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.036 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.038 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.039 +03:00 [INF] Authorization was successful. +2018-09-11 17:01:54.040 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.042 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.043 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.044 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.045 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.046 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.047 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.049 +03:00 [INF] Authorization failed. +2018-09-11 17:01:54.051 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 29.358400000000003ms. +2018-09-11 17:01:54.052 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:54.052 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 30.747500000000002ms +2018-09-11 17:01:54.052 +03:00 [INF] Request finished in 112.364ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:54.070 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:01:54.071 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:01:54.071 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1013ms. +2018-09-11 17:01:54.071 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:01:54.072 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1382ms +2018-09-11 17:01:54.072 +03:00 [INF] Request finished in 130.3706ms 200 text/plain; charset=utf-8 +2018-09-11 17:01:54.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-11 17:01:54.251 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-11 17:01:54.251 +03:00 [INF] Request finished in 1.379ms 200 image/png +2018-09-11 17:02:35.609 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Blog/Files/UploadImage multipart/form-data; boundary=---------------------------7405221825194 10858936 +2018-09-11 17:02:35.648 +03:00 [INF] Route matched with {area = "Blog", action = "UploadImage", controller = "Files", page = ""}. Executing action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) +2018-09-11 17:02:36.035 +03:00 [INF] Executing action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) with arguments (["Microsoft.AspNetCore.Http.Internal.FormFile"]) - Validation state: "Valid" +2018-09-11 17:02:36.264 +03:00 [WRN] ---------- RemoteServiceErrorInfo ---------- +2018-09-11 17:02:36.267 +03:00 [WRN] { + "code": null, + "message": "File exceeds the maximum upload size (5 MB)!", + "details": null, + "validationErrors": null +} +2018-09-11 17:02:36.270 +03:00 [WRN] File exceeds the maximum upload size (5 MB)! +Volo.Abp.UserFriendlyException: File exceeds the maximum upload size (5 MB)! + at Volo.Blogging.Hosting.FormFileExtensions.ValidateImage(IFormFile file, Byte[]& fileBytes) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Hosting\FormFileExtensions.cs:line 55 + at Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage(IFormFile file) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Areas\Blog\Controllers\FilesController.cs:line 24 + at lambda_method(Closure , Object ) + at Microsoft.Extensions.Internal.ObjectMethodExecutorAwaitable.Awaiter.GetResult() + at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.TaskOfActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at System.Threading.Tasks.ValueTask`1.get_Result() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() +2018-09-11 17:02:36.270 +03:00 [WRN] Code: +2018-09-11 17:02:36.271 +03:00 [WRN] Details: +2018-09-11 17:02:36.274 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. +2018-09-11 17:02:36.279 +03:00 [INF] Executed action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) in 630.92860000000007ms +2018-09-11 17:02:36.280 +03:00 [INF] Request finished in 671.2361ms 403 application/json; charset=utf-8 +2018-09-11 17:03:55.629 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/new application/x-www-form-urlencoded 1259 +2018-09-11 17:03:55.662 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-11 17:03:55.702 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Invalid" +2018-09-11 17:03:55.737 +03:00 [INF] Authorization was successful. +2018-09-11 17:03:55.743 +03:00 [INF] Executed action /Blog/Posts/New in 80.96220000000001ms +2018-09-11 17:03:55.745 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Validation.AbpValidationException: Method arguments are not valid! See ValidationErrors for details. + at Volo.Abp.Validation.MethodInvocationValidator.ThrowValidationError(MethodInvocationValidationContext context) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\MethodInvocationValidator.cs:line 79 + at Volo.Abp.Validation.MethodInvocationValidator.Validate(MethodInvocationValidationContext context) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\MethodInvocationValidator.cs:line 53 + at Volo.Abp.Validation.ValidationInterceptor.Validate(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 31 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 24 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.NewModel.OnPost() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\New.cshtml.cs:line 42 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:03:55.773 +03:00 [INF] Request finished in 143.6656ms 500 text/html; charset=utf-8 +2018-09-11 17:03:55.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-11 17:03:55.838 +03:00 [INF] Request finished in 34.5442ms 404 +2018-09-11 17:04:00.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-11 17:04:00.047 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-11 17:04:00.049 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:04:00.111 +03:00 [INF] Executed action /Blog/Posts/New in 63.851600000000005ms +2018-09-11 17:04:00.111 +03:00 [INF] Request finished in 90.5929ms 200 text/html; charset=utf-8 +2018-09-11 17:09:03.280 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Blog/Files/UploadImage multipart/form-data; boundary=---------------------------14769510931693 304901 +2018-09-11 17:09:03.317 +03:00 [INF] Route matched with {area = "Blog", action = "UploadImage", controller = "Files", page = ""}. Executing action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) +2018-09-11 17:09:03.327 +03:00 [INF] Executing action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) with arguments (["Microsoft.AspNetCore.Http.Internal.FormFile"]) - Validation state: "Valid" +2018-09-11 17:09:03.348 +03:00 [INF] Executed action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web), returned result Microsoft.AspNetCore.Mvc.JsonResult in 20.9529ms. +2018-09-11 17:09:03.350 +03:00 [INF] Executing JsonResult, writing value of type 'Volo.Blogging.Areas.Blog.Models.FileUploadResult'. +2018-09-11 17:09:03.352 +03:00 [INF] Executed action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) in 34.940400000000004ms +2018-09-11 17:09:03.353 +03:00 [INF] Request finished in 73.5707ms 200 application/json; charset=utf-8 +2018-09-11 17:09:03.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:09:03.366 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-11 17:09:03.367 +03:00 [INF] Request finished in 4.9491ms 200 image/jpeg +2018-09-11 17:09:41.716 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/new application/x-www-form-urlencoded 1198 +2018-09-11 17:09:41.748 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", area = "", action = "", controller = ""}. Executing action /Blog/Posts/New +2018-09-11 17:09:41.776 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Valid" +2018-09-11 17:09:41.780 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:41.976 +03:00 [INF] Executing RedirectResult, redirecting to /blog/abp/Hello-World. +2018-09-11 17:09:41.976 +03:00 [INF] Executed action /Blog/Posts/New in 227.60670000000002ms +2018-09-11 17:09:41.976 +03:00 [INF] Request finished in 260.0664ms 302 +2018-09-11 17:09:41.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-11 17:09:42.021 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:09:42.023 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:09:42.229 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.258 +03:00 [INF] Executed action /Blog/Posts/Detail in 237.41150000000002ms +2018-09-11 17:09:42.258 +03:00 [INF] Request finished in 270.2975ms 200 text/html; charset=utf-8 +2018-09-11 17:09:42.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636722710401517993 +2018-09-11 17:09:42.311 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-11 17:09:42.311 +03:00 [INF] Request finished in 0.9898ms 304 text/css +2018-09-11 17:09:42.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-11 17:09:42.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:09:42.377 +03:00 [INF] Request finished in 59.5878ms 404 +2018-09-11 17:09:42.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:09:42.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:09:42.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636722710401517993 +2018-09-11 17:09:42.403 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-11 17:09:42.404 +03:00 [INF] Request finished in 1.2389ms 304 application/javascript +2018-09-11 17:09:42.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636722710401517993 +2018-09-11 17:09:42.409 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-11 17:09:42.409 +03:00 [INF] Request finished in 2.3407ms 304 application/javascript +2018-09-11 17:09:42.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:09:42.412 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-11 17:09:42.412 +03:00 [INF] Request finished in 0.623ms 304 image/jpeg +2018-09-11 17:09:42.423 +03:00 [INF] Request finished in 87.4705ms 404 +2018-09-11 17:09:42.443 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:09:42.444 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:09:42.445 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.445 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.446 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:09:42.446 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.446 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.446 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:09:42.447 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11570000000000001ms. +2018-09-11 17:09:42.447 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:09:42.447 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1434ms +2018-09-11 17:09:42.447 +03:00 [INF] Request finished in 51.0019ms 200 text/plain; charset=utf-8 +2018-09-11 17:09:42.447 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.448 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.449 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.449 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.450 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.451 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.452 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.452 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.452 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.453 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.454 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.454 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.455 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.455 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:42.456 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.456 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.457 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.457 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.457 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.458 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.459 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.459 +03:00 [INF] Authorization failed. +2018-09-11 17:09:42.461 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.3533ms. +2018-09-11 17:09:42.461 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:09:42.462 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.9844ms +2018-09-11 17:09:42.462 +03:00 [INF] Request finished in 75.7555ms 200 text/plain; charset=utf-8 +2018-09-11 17:09:42.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-11 17:09:42.725 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-11 17:09:42.725 +03:00 [INF] Request finished in 0.8977ms 304 image/png +2018-09-11 17:09:55.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/edit/9e465e40-51c5-e719-2ad8-39e8db243f99 +2018-09-11 17:09:56.277 +03:00 [INF] Route matched with {page = "/Blog/Posts/Edit", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Edit +2018-09-11 17:09:56.283 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-11 17:09:56.418 +03:00 [INF] Executed action /Blog/Posts/Edit in 140.9616ms +2018-09-11 17:09:56.418 +03:00 [INF] Request finished in 630.5979ms 200 text/html; charset=utf-8 +2018-09-11 17:09:56.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636722710401517993 +2018-09-11 17:09:56.474 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-11 17:09:56.474 +03:00 [INF] Request finished in 0.8708ms 200 text/css +2018-09-11 17:09:56.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/edit/assets/fork.png +2018-09-11 17:09:56.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:09:56.531 +03:00 [INF] Request finished in 49.2148ms 404 +2018-09-11 17:09:56.535 +03:00 [INF] Request finished in 44.7451ms 404 +2018-09-11 17:09:56.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:09:56.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:09:56.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/edit.js?_v=636722710401517993 +2018-09-11 17:09:56.573 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/edit.js'. Physical path: '/Pages/Blog/Posts/edit.js' +2018-09-11 17:09:56.573 +03:00 [INF] Request finished in 2.0381ms 200 application/javascript +2018-09-11 17:09:56.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:09:56.576 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-11 17:09:56.576 +03:00 [INF] Request finished in 1.6897ms 304 image/jpeg +2018-09-11 17:09:56.592 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:09:56.592 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:09:56.593 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.594 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.595 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.595 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:09:56.596 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.596 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:09:56.596 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10310000000000001ms. +2018-09-11 17:09:56.596 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.596 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:09:56.596 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2413ms +2018-09-11 17:09:56.597 +03:00 [INF] Request finished in 55.4494ms 200 text/plain; charset=utf-8 +2018-09-11 17:09:56.597 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.597 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.598 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.598 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.599 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.599 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.600 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.601 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.601 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.601 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.603 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.603 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.605 +03:00 [INF] Authorization was successful. +2018-09-11 17:09:56.606 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.607 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.608 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.609 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.610 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.611 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.613 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.614 +03:00 [INF] Authorization failed. +2018-09-11 17:09:56.615 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.772100000000002ms. +2018-09-11 17:09:56.616 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:09:56.616 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.970100000000002ms +2018-09-11 17:09:56.616 +03:00 [INF] Request finished in 80.2671ms 200 text/plain; charset=utf-8 +2018-09-11 17:09:56.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:09:56.651 +03:00 [INF] Request finished in 31.4846ms 404 +2018-09-11 17:10:18.417 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Blog/Files/UploadImage multipart/form-data; boundary=---------------------------234311767117197 49374 +2018-09-11 17:10:18.439 +03:00 [INF] Route matched with {area = "Blog", action = "UploadImage", controller = "Files", page = ""}. Executing action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) +2018-09-11 17:10:18.440 +03:00 [INF] Executing action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) with arguments (["Microsoft.AspNetCore.Http.Internal.FormFile"]) - Validation state: "Valid" +2018-09-11 17:10:18.444 +03:00 [INF] Executed action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web), returned result Microsoft.AspNetCore.Mvc.JsonResult in 3.8276000000000003ms. +2018-09-11 17:10:18.444 +03:00 [INF] Executing JsonResult, writing value of type 'Volo.Blogging.Areas.Blog.Models.FileUploadResult'. +2018-09-11 17:10:18.444 +03:00 [INF] Executed action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) in 5.3605ms +2018-09-11 17:10:18.445 +03:00 [INF] Request finished in 27.8173ms 200 application/json; charset=utf-8 +2018-09-11 17:10:22.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-11 17:10:22.328 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-11 17:10:22.328 +03:00 [INF] Request finished in 1.1893ms 200 image/png +2018-09-11 17:10:30.790 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/edit/9e465e40-51c5-e719-2ad8-39e8db243f99 application/x-www-form-urlencoded 1327 +2018-09-11 17:10:30.816 +03:00 [INF] Route matched with {page = "/Blog/Posts/Edit", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Edit +2018-09-11 17:10:30.847 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Valid" +2018-09-11 17:10:30.852 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:30.898 +03:00 [INF] Executing RedirectResult, redirecting to /blog/abp/Hello-World. +2018-09-11 17:10:30.898 +03:00 [INF] Executed action /Blog/Posts/Edit in 82.2484ms +2018-09-11 17:10:30.898 +03:00 [INF] Request finished in 108.7279ms 302 +2018-09-11 17:10:30.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-11 17:10:30.934 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:10:30.937 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:10:30.960 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:30.971 +03:00 [INF] Executed action /Blog/Posts/Detail in 36.9244ms +2018-09-11 17:10:30.971 +03:00 [INF] Request finished in 63.8869ms 200 text/html; charset=utf-8 +2018-09-11 17:10:31.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-11 17:10:31.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-11 17:10:31.039 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-11 17:10:31.040 +03:00 [INF] Request finished in 1.6058ms 304 image/png +2018-09-11 17:10:31.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:10:31.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:10:31.102 +03:00 [INF] Request finished in 76.8252ms 404 +2018-09-11 17:10:31.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:10:31.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:10:31.120 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-11 17:10:31.120 +03:00 [INF] Request finished in 3.6852ms 304 image/jpeg +2018-09-11 17:10:31.139 +03:00 [INF] Request finished in 97.0391ms 404 +2018-09-11 17:10:31.162 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:10:31.164 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:10:31.165 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4827ms. +2018-09-11 17:10:31.165 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:10:31.166 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.1654ms +2018-09-11 17:10:31.166 +03:00 [INF] Request finished in 61.2545ms 200 text/plain; charset=utf-8 +2018-09-11 17:10:31.171 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:10:31.173 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:10:31.174 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.174 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.176 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.177 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.178 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.179 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.180 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.181 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.182 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.183 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.183 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.184 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.184 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.185 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.185 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.186 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.186 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.187 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:31.187 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.188 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.189 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.190 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.191 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.192 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.193 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.193 +03:00 [INF] Authorization failed. +2018-09-11 17:10:31.195 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 21.982100000000003ms. +2018-09-11 17:10:31.195 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:10:31.195 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.7102ms +2018-09-11 17:10:31.195 +03:00 [INF] Request finished in 96.4847ms 200 text/plain; charset=utf-8 +2018-09-11 17:10:41.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-11 17:10:42.011 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-11 17:10:42.013 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:10:42.033 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-11 17:10:42.033 +03:00 [INF] Executed action /Blog/Index in 22.5154ms +2018-09-11 17:10:42.033 +03:00 [INF] Request finished in 286.4198ms 302 +2018-09-11 17:10:42.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:10:42.064 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:10:42.067 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:10:42.140 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.152 +03:00 [INF] Executed action /Blog/Posts/Index in 87.5556ms +2018-09-11 17:10:42.152 +03:00 [INF] Request finished in 110.7163ms 200 text/html; charset=utf-8 +2018-09-11 17:10:42.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:10:42.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:10:42.258 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:10:42.265 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:10:42.268 +03:00 [INF] Request finished in 49.5826ms 404 +2018-09-11 17:10:42.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:10:42.272 +03:00 [INF] Executed action /Blog/Posts/Detail in 13.5121ms +2018-09-11 17:10:42.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:10:42.276 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:10:42.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:10:42.293 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-11 17:10:42.293 +03:00 [INF] Request finished in 0.5944ms 304 image/jpeg +2018-09-11 17:10:42.318 +03:00 [INF] Request finished in 111.4351ms 500 text/html; charset=utf-8 +2018-09-11 17:10:42.333 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:10:42.334 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:10:42.335 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.336 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.337 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.338 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.338 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.339 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.340 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.341 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.342 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.344 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.344 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.345 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.346 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.346 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:10:42.346 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.347 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.347 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:10:42.347 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12290000000000001ms. +2018-09-11 17:10:42.347 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:10:42.347 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.347 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0455ms +2018-09-11 17:10:42.347 +03:00 [INF] Request finished in 74.6048ms 200 text/plain; charset=utf-8 +2018-09-11 17:10:42.348 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.348 +03:00 [INF] Authorization was successful. +2018-09-11 17:10:42.349 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.350 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.351 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.351 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.352 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.353 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.354 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.357 +03:00 [INF] Authorization failed. +2018-09-11 17:10:42.360 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 24.8582ms. +2018-09-11 17:10:42.360 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:10:42.360 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 26.4727ms +2018-09-11 17:10:42.360 +03:00 [INF] Request finished in 91.7131ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:32.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp?tagName=abp +2018-09-11 17:23:32.152 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:32.155 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:32.202 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.215 +03:00 [INF] Executed action /Blog/Posts/Index in 63.185ms +2018-09-11 17:23:32.216 +03:00 [INF] Request finished in 95.2912ms 200 text/html; charset=utf-8 +2018-09-11 17:23:32.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636722710401517993 +2018-09-11 17:23:32.287 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-11 17:23:32.287 +03:00 [INF] Request finished in 0.9726ms 304 text/css +2018-09-11 17:23:32.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:23:32.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:23:32.348 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:23:32.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:23:32.355 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:32.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:23:32.363 +03:00 [INF] Executed action /Blog/Posts/Detail in 14.9807ms +2018-09-11 17:23:32.368 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:23:32.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636722710401517993 +2018-09-11 17:23:32.373 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-11 17:23:32.373 +03:00 [INF] Request finished in 3.1912ms 304 application/javascript +2018-09-11 17:23:32.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636722710401517993 +2018-09-11 17:23:32.376 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-11 17:23:32.377 +03:00 [INF] Request finished in 1.1921ms 304 application/javascript +2018-09-11 17:23:32.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-11 17:23:32.386 +03:00 [INF] Request finished in 80.8908ms 404 +2018-09-11 17:23:32.386 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-11 17:23:32.386 +03:00 [INF] Request finished in 0.5519ms 304 image/jpeg +2018-09-11 17:23:32.418 +03:00 [INF] Request finished in 123.0774ms 500 text/html; charset=utf-8 +2018-09-11 17:23:32.451 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:32.452 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:23:32.453 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:32.453 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.453 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.453 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:23:32.454 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1321ms. +2018-09-11 17:23:32.454 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:32.454 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.454 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.191ms +2018-09-11 17:23:32.454 +03:00 [INF] Request finished in 96.4547ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:32.455 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.455 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.455 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.456 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.456 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.456 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.457 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.457 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.458 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.458 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.459 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.460 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.461 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.462 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.462 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:32.463 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.463 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.464 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.464 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.465 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.466 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.466 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.467 +03:00 [INF] Authorization failed. +2018-09-11 17:23:32.469 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.410600000000002ms. +2018-09-11 17:23:32.469 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:32.469 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.67ms +2018-09-11 17:23:32.469 +03:00 [INF] Request finished in 117.1272ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:33.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:23:33.625 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:33.628 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:33.644 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:33.657 +03:00 [INF] Executed action /Blog/Posts/Index in 32.1972ms +2018-09-11 17:23:33.657 +03:00 [INF] Request finished in 56.776ms 200 text/html; charset=utf-8 +2018-09-11 17:23:33.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:23:33.799 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:23:33.807 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:33.811 +03:00 [INF] Executed action /Blog/Posts/Detail in 11.283700000000001ms +2018-09-11 17:23:33.815 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:23:33.844 +03:00 [INF] Request finished in 122.946ms 500 text/html; charset=utf-8 +2018-09-11 17:23:35.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp?tagName=hello +2018-09-11 17:23:35.667 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:35.670 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:35.682 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.691 +03:00 [INF] Executed action /Blog/Posts/Index in 24.3089ms +2018-09-11 17:23:35.691 +03:00 [INF] Request finished in 46.8971ms 200 text/html; charset=utf-8 +2018-09-11 17:23:35.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:23:35.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:23:35.814 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:23:35.824 +03:00 [INF] Request finished in 56.6068ms 404 +2018-09-11 17:23:35.825 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:35.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:23:35.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:23:35.836 +03:00 [INF] Executed action /Blog/Posts/Detail in 21.8013ms +2018-09-11 17:23:35.839 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:23:35.871 +03:00 [INF] Request finished in 118.9597ms 500 text/html; charset=utf-8 +2018-09-11 17:23:35.875 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:35.876 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:23:35.876 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:35.877 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.877 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:23:35.877 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.101ms. +2018-09-11 17:23:35.877 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:35.877 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0535ms +2018-09-11 17:23:35.877 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.877 +03:00 [INF] Request finished in 41.8427ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:35.878 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.878 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.879 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.880 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.880 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.881 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.882 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.882 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.883 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.884 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.885 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.885 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.886 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.886 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.887 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.887 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:35.887 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.888 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.888 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.888 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.889 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.889 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.890 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.890 +03:00 [INF] Authorization failed. +2018-09-11 17:23:35.892 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.0012ms. +2018-09-11 17:23:35.892 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:35.892 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.340600000000002ms +2018-09-11 17:23:35.893 +03:00 [INF] Request finished in 57.1598ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:37.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:23:37.495 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:37.501 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:37.523 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:37.534 +03:00 [INF] Executed action /Blog/Posts/Index in 39.0775ms +2018-09-11 17:23:37.534 +03:00 [INF] Request finished in 66.2056ms 200 text/html; charset=utf-8 +2018-09-11 17:23:37.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:23:37.641 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:23:37.647 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:37.653 +03:00 [INF] Executed action /Blog/Posts/Detail in 11.721ms +2018-09-11 17:23:37.657 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:23:37.689 +03:00 [INF] Request finished in 96.3254ms 500 text/html; charset=utf-8 +2018-09-11 17:23:39.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp?tagName=abp +2018-09-11 17:23:39.031 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:39.035 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:39.051 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.061 +03:00 [INF] Executed action /Blog/Posts/Index in 29.545ms +2018-09-11 17:23:39.061 +03:00 [INF] Request finished in 52.5461ms 200 text/html; charset=utf-8 +2018-09-11 17:23:39.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-11 17:23:39.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-11 17:23:39.169 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-11 17:23:39.175 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:39.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-11 17:23:39.183 +03:00 [INF] Request finished in 49.4602ms 404 +2018-09-11 17:23:39.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-11 17:23:39.185 +03:00 [INF] Executed action /Blog/Posts/Detail in 15.777800000000001ms +2018-09-11 17:23:39.195 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-11 17:23:39.244 +03:00 [INF] Request finished in 123.5879ms 500 text/html; charset=utf-8 +2018-09-11 17:23:39.248 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:39.249 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-11 17:23:39.249 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10740000000000001ms. +2018-09-11 17:23:39.249 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:39.249 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1765ms +2018-09-11 17:23:39.250 +03:00 [INF] Request finished in 66.0233ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:39.254 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-11 17:23:39.255 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-11 17:23:39.255 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.256 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.257 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.257 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.257 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.258 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.258 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.259 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.260 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.261 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.261 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.262 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.262 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.263 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.263 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.264 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.264 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.265 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:39.265 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.266 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.267 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.268 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.269 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.270 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.271 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.271 +03:00 [INF] Authorization failed. +2018-09-11 17:23:39.273 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.432100000000002ms. +2018-09-11 17:23:39.273 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-11 17:23:39.274 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.9157ms +2018-09-11 17:23:39.274 +03:00 [INF] Request finished in 98.0428ms 200 text/plain; charset=utf-8 +2018-09-11 17:23:43.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-11 17:23:43.654 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-11 17:23:43.657 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-11 17:23:43.671 +03:00 [INF] Authorization was successful. +2018-09-11 17:23:43.682 +03:00 [INF] Executed action /Blog/Posts/Index in 27.7146ms +2018-09-11 17:23:43.683 +03:00 [INF] Request finished in 51.2203ms 200 text/html; charset=utf-8 +2018-09-12 14:41:39.122 +03:00 [INF] Loaded modules: +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 14:41:39.138 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 14:41:39.139 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 14:41:39.140 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 14:41:39.141 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 14:41:39.141 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 14:41:39.142 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 14:41:39.142 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 14:41:41.090 +03:00 [INF] Initialized all modules. +2018-09-12 14:41:41.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 14:41:41.281 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:43.712 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 14:41:43.736 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 14:41:45.267 +03:00 [INF] Executed action /Index in 1550.2615ms +2018-09-12 14:41:45.289 +03:00 [INF] Request finished in 4068.7197ms 200 text/html; charset=utf-8 +2018-09-12 14:41:45.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 14:41:45.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 14:41:45.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 14:41:45.324 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-12 14:41:45.324 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-12 14:41:45.324 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-12 14:41:45.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 14:41:45.327 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-12 14:41:45.330 +03:00 [INF] Request finished in 9.3782ms 304 text/css +2018-09-12 14:41:45.330 +03:00 [INF] Request finished in 9.3659ms 304 text/css +2018-09-12 14:41:45.330 +03:00 [INF] Request finished in 15.7204ms 304 text/css +2018-09-12 14:41:45.330 +03:00 [INF] Request finished in 3.476ms 304 text/css +2018-09-12 14:41:45.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 14:41:45.331 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-12 14:41:45.331 +03:00 [INF] Request finished in 0.7963ms 304 text/css +2018-09-12 14:41:45.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 14:41:45.427 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-12 14:41:45.427 +03:00 [INF] Request finished in 0.799ms 304 application/javascript +2018-09-12 14:41:45.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 14:41:45.430 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-12 14:41:45.431 +03:00 [INF] Request finished in 2.2014ms 304 application/javascript +2018-09-12 14:41:45.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 14:41:45.435 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-12 14:41:45.435 +03:00 [INF] Request finished in 1.4927ms 304 application/javascript +2018-09-12 14:41:45.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:41:45.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 14:41:45.444 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-12 14:41:45.444 +03:00 [INF] Request finished in 0.66ms 304 application/javascript +2018-09-12 14:41:45.447 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:45.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 14:41:45.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 14:41:45.452 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-12 14:41:45.453 +03:00 [INF] Request finished in 2.0432ms 304 application/javascript +2018-09-12 14:41:45.453 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-12 14:41:45.453 +03:00 [INF] Request finished in 4.9018ms 304 application/javascript +2018-09-12 14:41:45.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 14:41:45.454 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-12 14:41:45.454 +03:00 [INF] Request finished in 0.9259ms 304 application/javascript +2018-09-12 14:41:45.456 +03:00 [INF] Request finished in 12.2423ms 404 +2018-09-12 14:41:45.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 14:41:45.459 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-12 14:41:45.460 +03:00 [INF] Request finished in 2.0467ms 304 application/javascript +2018-09-12 14:41:45.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 14:41:45.461 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-12 14:41:45.463 +03:00 [INF] Request finished in 2.7458ms 304 application/javascript +2018-09-12 14:41:45.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 14:41:45.471 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-12 14:41:45.472 +03:00 [INF] Request finished in 5.1742ms 304 application/javascript +2018-09-12 14:41:45.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 14:41:45.474 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-12 14:41:45.474 +03:00 [INF] Request finished in 0.9318ms 304 application/javascript +2018-09-12 14:41:45.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 14:41:45.487 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-12 14:41:45.488 +03:00 [INF] Request finished in 0.7838ms 304 application/javascript +2018-09-12 14:41:45.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 14:41:45.490 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-12 14:41:45.490 +03:00 [INF] Request finished in 0.7473ms 304 application/javascript +2018-09-12 14:41:45.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 14:41:45.508 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:45.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 14:41:45.516 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-12 14:41:45.516 +03:00 [INF] Request finished in 3.2427ms 304 application/javascript +2018-09-12 14:41:45.533 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:41:45.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 14:41:45.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-12 14:41:45.542 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:45.549 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:41:45.563 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-12 14:41:45.563 +03:00 [INF] Request finished in 21.8836ms 200 font/woff2 +2018-09-12 14:41:45.584 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 14:41:45.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:41:45.597 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:45.597 +03:00 [INF] Request finished in 2.0093ms 404 +2018-09-12 14:41:45.605 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 14:41:45.649 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.649 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.649 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.650 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.651 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.652 +03:00 [INF] Authorization failed. +2018-09-12 14:41:45.682 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 95.1191ms. +2018-09-12 14:41:45.682 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 74.1545ms. +2018-09-12 14:41:45.693 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:41:45.693 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:41:45.694 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 159.98000000000002ms +2018-09-12 14:41:45.694 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 144.7158ms +2018-09-12 14:41:45.694 +03:00 [INF] Request finished in 186.9907ms 200 text/plain; charset=utf-8 +2018-09-12 14:41:45.694 +03:00 [INF] Request finished in 162.0335ms 200 text/plain; charset=utf-8 +2018-09-12 14:41:49.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-12 14:41:49.991 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:50.360 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-12 14:41:50.396 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:41:50.564 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-12 14:41:50.564 +03:00 [INF] Executed action /Blog/Index in 204.829ms +2018-09-12 14:41:50.565 +03:00 [INF] Request finished in 574.4146ms 302 +2018-09-12 14:41:50.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 14:41:50.575 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:51.008 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 14:41:51.136 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:41:51.456 +03:00 [INF] Authorization failed. +2018-09-12 14:41:51.825 +03:00 [INF] Executed action /Blog/Posts/Index in 816.1884ms +2018-09-12 14:41:51.825 +03:00 [INF] Request finished in 1251.0857ms 200 text/html; charset=utf-8 +2018-09-12 14:41:51.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-12 14:41:51.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-12 14:41:51.919 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-12 14:41:51.919 +03:00 [INF] Request finished in 2.0075ms 200 text/css +2018-09-12 14:41:51.919 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-12 14:41:51.919 +03:00 [INF] Request finished in 1.9116ms 200 text/css +2018-09-12 14:41:51.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-12 14:41:51.927 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-12 14:41:51.928 +03:00 [INF] Request finished in 1.8402ms 304 text/css +2018-09-12 14:41:51.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636723488950878870 +2018-09-12 14:41:51.931 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-12 14:41:51.931 +03:00 [INF] Request finished in 2.1769ms 200 text/css +2018-09-12 14:41:51.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-12 14:41:51.953 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-12 14:41:51.953 +03:00 [INF] Request finished in 1.8395ms 304 image/jpeg +2018-09-12 14:41:51.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 14:41:51.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:41:51.956 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:51.956 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:51.956 +03:00 [INF] Request finished in 1.953ms 404 +2018-09-12 14:41:52.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 14:41:52.015 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:52.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 14:41:52.016 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:52.017 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:41:52.017 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:41:52.018 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 14:41:52.018 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 14:41:52.019 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.019 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.369ms. +2018-09-12 14:41:52.019 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.019 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:41:52.020 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7469ms +2018-09-12 14:41:52.020 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.020 +03:00 [INF] Request finished in 4.8912ms 200 text/plain; charset=utf-8 +2018-09-12 14:41:52.020 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.020 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.020 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.021 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.021 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.021 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.021 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.022 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.022 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.022 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.022 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.025 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.025 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.025 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.025 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-12 14:41:52.028 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.029 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-12 14:41:52.029 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.029 +03:00 [INF] Request finished in 0.8503ms 304 application/javascript +2018-09-12 14:41:52.029 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.055 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.055 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.055 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.055 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.057 +03:00 [INF] Authorization failed. +2018-09-12 14:41:52.060 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 41.4797ms. +2018-09-12 14:41:52.060 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:41:52.060 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 43.510400000000004ms +2018-09-12 14:41:52.060 +03:00 [INF] Request finished in 46.9145ms 200 text/plain; charset=utf-8 +2018-09-12 14:41:52.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636723488950878870 +2018-09-12 14:41:52.063 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-12 14:41:52.063 +03:00 [INF] Request finished in 1.838ms 200 application/javascript +2018-09-12 14:41:52.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636723488950878870 +2018-09-12 14:41:52.067 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-12 14:41:52.067 +03:00 [INF] Request finished in 1.0955ms 200 application/javascript +2018-09-12 14:41:52.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:41:52.117 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:41:52.117 +03:00 [INF] Request finished in 1.2221ms 404 +2018-09-12 14:41:52.533 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 14:41:52.544 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:41:52.556 +03:00 [INF] Executed action /Blog/Posts/Detail in 22.3811ms +2018-09-12 14:41:52.628 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 14:41:52.691 +03:00 [INF] Request finished in 737.7268ms 500 text/html; charset=utf-8 +2018-09-12 14:49:21.675 +03:00 [INF] Loaded modules: +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 14:49:21.696 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 14:49:21.697 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 14:49:21.698 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 14:49:21.699 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 14:49:23.549 +03:00 [INF] Initialized all modules. +2018-09-12 14:49:23.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 14:49:23.817 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:26.255 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 14:49:26.277 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 14:49:27.743 +03:00 [INF] Executed action /Index in 1483.2081ms +2018-09-12 14:49:27.767 +03:00 [INF] Request finished in 4003.2107ms 200 text/html; charset=utf-8 +2018-09-12 14:49:27.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:49:27.903 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:27.910 +03:00 [INF] Request finished in 15.9598ms 404 +2018-09-12 14:49:27.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 14:49:27.946 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:27.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 14:49:27.954 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:27.968 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:49:27.978 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:49:27.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-12 14:49:28.000 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-12 14:49:28.000 +03:00 [INF] Request finished in 21.9315ms 200 font/woff2 +2018-09-12 14:49:28.026 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 14:49:28.027 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 14:49:28.077 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.077 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.078 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.079 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.080 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.080 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.080 +03:00 [INF] Authorization failed. +2018-09-12 14:49:28.119 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 89.1208ms. +2018-09-12 14:49:28.119 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 86.738700000000009ms. +2018-09-12 14:49:28.125 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:49:28.125 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:49:28.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 157.393ms +2018-09-12 14:49:28.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 147.3149ms +2018-09-12 14:49:28.126 +03:00 [INF] Request finished in 172.8123ms 200 text/plain; charset=utf-8 +2018-09-12 14:49:28.126 +03:00 [INF] Request finished in 180.6649ms 200 text/plain; charset=utf-8 +2018-09-12 14:49:45.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-12 14:49:45.833 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:46.182 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-12 14:49:46.226 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:49:46.374 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-12 14:49:46.375 +03:00 [INF] Executed action /Blog/Index in 192.603ms +2018-09-12 14:49:46.375 +03:00 [INF] Request finished in 542.2412ms 302 +2018-09-12 14:49:46.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 14:49:46.386 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:46.842 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 14:49:47.014 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:49:47.319 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 14:49:47.426 +03:00 [INF] Authorization failed. +2018-09-12 14:49:47.772 +03:00 [INF] Executed action /Blog/Posts/Index in 929.0333ms +2018-09-12 14:49:47.772 +03:00 [INF] Request finished in 1386.7471ms 200 text/html; charset=utf-8 +2018-09-12 14:49:47.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636723496894280902 +2018-09-12 14:49:47.850 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-12 14:49:47.851 +03:00 [INF] Request finished in 3.9492ms 200 text/css +2018-09-12 14:49:47.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 14:49:47.864 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:47.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:49:47.882 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:47.882 +03:00 [INF] Request finished in 1.6485ms 404 +2018-09-12 14:49:47.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 14:49:47.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:47.996 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:49:48.000 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 14:49:48.003 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.003 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.003 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.005 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.005 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.005 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.006 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.006 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.006 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.007 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.008 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.008 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.009 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.011 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.011 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.012 +03:00 [INF] Authorization failed. +2018-09-12 14:49:48.014 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.842400000000001ms. +2018-09-12 14:49:48.015 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:49:48.016 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.930500000000002ms +2018-09-12 14:49:48.017 +03:00 [INF] Request finished in 23.8404ms 200 text/plain; charset=utf-8 +2018-09-12 14:49:48.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636723496894280902 +2018-09-12 14:49:48.030 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-12 14:49:48.030 +03:00 [INF] Request finished in 1.467ms 200 application/javascript +2018-09-12 14:49:48.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 14:49:48.035 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:48.039 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 14:49:48.041 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 14:49:48.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636723496894280902 +2018-09-12 14:49:48.041 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3532ms. +2018-09-12 14:49:48.041 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 14:49:48.042 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2871ms +2018-09-12 14:49:48.042 +03:00 [INF] Request finished in 8.1824ms 200 text/plain; charset=utf-8 +2018-09-12 14:49:48.042 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-12 14:49:48.042 +03:00 [INF] Request finished in 0.8083ms 200 application/javascript +2018-09-12 14:49:48.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 14:49:48.043 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-09-12 14:49:48.043 +03:00 [INF] Request finished in 1.1879ms 404 +2018-09-12 14:49:48.542 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 14:49:48.555 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 14:49:48.563 +03:00 [INF] Executed action /Blog/Posts/Detail in 20.730700000000002ms +2018-09-12 14:49:48.597 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 14:49:48.650 +03:00 [INF] Request finished in 787.3095ms 500 text/html; charset=utf-8 +2018-09-12 15:49:33.360 +03:00 [INF] Loaded modules: +2018-09-12 15:49:33.376 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:49:33.377 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:49:33.378 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:49:33.379 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:49:33.379 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:49:33.379 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:49:33.379 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:49:35.192 +03:00 [INF] Initialized all modules. +2018-09-12 15:49:35.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 15:49:37.822 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 15:49:37.840 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 15:49:39.332 +03:00 [INF] Executed action /Index in 1504.9794000000002ms +2018-09-12 15:49:39.351 +03:00 [INF] Request finished in 3890.9943ms 200 text/html; charset=utf-8 +2018-09-12 15:49:39.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:49:39.491 +03:00 [INF] Request finished in 11.8989ms 404 +2018-09-12 15:49:39.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:49:39.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:49:39.546 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:49:39.548 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:49:39.599 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:49:39.601 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:49:39.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:49:39.613 +03:00 [INF] Request finished in 0.9251ms 404 +2018-09-12 15:49:39.656 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.656 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.657 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.658 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.659 +03:00 [INF] Authorization failed. +2018-09-12 15:49:39.685 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 80.1601ms. +2018-09-12 15:49:39.689 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 89.3508ms. +2018-09-12 15:49:39.692 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:49:39.692 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:49:39.693 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 147.3526ms +2018-09-12 15:49:39.693 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 144.984ms +2018-09-12 15:49:39.694 +03:00 [INF] Request finished in 164.7982ms 200 text/plain; charset=utf-8 +2018-09-12 15:49:39.694 +03:00 [INF] Request finished in 167.482ms 200 text/plain; charset=utf-8 +2018-09-12 15:50:02.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-12 15:50:02.616 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-12 15:50:02.653 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:50:02.798 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-12 15:50:02.798 +03:00 [INF] Executed action /Blog/Index in 181.9385ms +2018-09-12 15:50:02.798 +03:00 [INF] Request finished in 541.795ms 302 +2018-09-12 15:50:02.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:50:03.219 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:50:03.387 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:50:03.663 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:50:03.775 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.137 +03:00 [INF] Executed action /Blog/Posts/Index in 917.1679ms +2018-09-12 15:50:04.137 +03:00 [INF] Request finished in 1328.4957ms 200 text/html; charset=utf-8 +2018-09-12 15:50:04.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636723496894280902 +2018-09-12 15:50:04.221 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-12 15:50:04.223 +03:00 [INF] Request finished in 7.0088ms 304 text/css +2018-09-12 15:50:04.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 15:50:04.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:50:04.233 +03:00 [INF] Request finished in 0.9622ms 404 +2018-09-12 15:50:04.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:50:04.278 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:50:04.281 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:50:04.281 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.282 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.283 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.284 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.284 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.284 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.284 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.284 +03:00 [INF] Authorization failed. +2018-09-12 15:50:04.285 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:50:04.286 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0338ms. +2018-09-12 15:50:04.288 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:50:04.288 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.8416ms +2018-09-12 15:50:04.288 +03:00 [INF] Request finished in 12.5142ms 200 text/plain; charset=utf-8 +2018-09-12 15:50:04.289 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:50:04.290 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.83410000000000006ms. +2018-09-12 15:50:04.290 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:50:04.291 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.7935ms +2018-09-12 15:50:04.291 +03:00 [INF] Request finished in 8.9596ms 200 text/plain; charset=utf-8 +2018-09-12 15:50:04.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636723496894280902 +2018-09-12 15:50:04.296 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-12 15:50:04.296 +03:00 [INF] Request finished in 1.0836ms 304 application/javascript +2018-09-12 15:50:04.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636723496894280902 +2018-09-12 15:50:04.309 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-12 15:50:04.310 +03:00 [INF] Request finished in 2.2953ms 304 application/javascript +2018-09-12 15:50:04.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:50:04.312 +03:00 [INF] Request finished in 2.113ms 404 +2018-09-12 15:50:04.801 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 15:50:04.878 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:50:04.886 +03:00 [INF] Executed action /Blog/Posts/Detail in 85.3585ms +2018-09-12 15:50:04.936 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 15:50:04.987 +03:00 [INF] Request finished in 755.4617ms 500 text/html; charset=utf-8 +2018-09-12 15:51:11.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:51:11.636 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:51:11.640 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:51:11.666 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:51:11.675 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.687 +03:00 [INF] Executed action /Blog/Posts/Index in 50.4215ms +2018-09-12 15:51:11.687 +03:00 [INF] Request finished in 51.7715ms 200 text/html; charset=utf-8 +2018-09-12 15:51:11.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 15:51:11.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 15:51:11.723 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-12 15:51:11.723 +03:00 [INF] Request finished in 1.1929ms 304 text/css +2018-09-12 15:51:11.725 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-12 15:51:11.725 +03:00 [INF] Request finished in 2.5676ms 304 text/css +2018-09-12 15:51:11.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 15:51:11.727 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-12 15:51:11.728 +03:00 [INF] Request finished in 1.6122ms 304 text/css +2018-09-12 15:51:11.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 15:51:11.733 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-12 15:51:11.734 +03:00 [INF] Request finished in 2.5642ms 304 text/css +2018-09-12 15:51:11.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:51:11.742 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-12 15:51:11.742 +03:00 [INF] Request finished in 0.7195ms 304 text/css +2018-09-12 15:51:11.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-12 15:51:11.743 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-12 15:51:11.743 +03:00 [INF] Request finished in 0.6924ms 304 text/css +2018-09-12 15:51:11.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 15:51:11.747 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-12 15:51:11.747 +03:00 [INF] Request finished in 3.014ms 304 text/css +2018-09-12 15:51:11.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-12 15:51:11.751 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-12 15:51:11.751 +03:00 [INF] Request finished in 0.6464ms 304 text/css +2018-09-12 15:51:11.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-12 15:51:11.754 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-12 15:51:11.755 +03:00 [INF] Request finished in 2.8586ms 304 text/css +2018-09-12 15:51:11.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-12 15:51:11.760 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-12 15:51:11.761 +03:00 [INF] Request finished in 0.6863ms 304 text/css +2018-09-12 15:51:11.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-12 15:51:11.764 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-12 15:51:11.764 +03:00 [INF] Request finished in 1.1458ms 304 text/css +2018-09-12 15:51:11.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636723496894280902 +2018-09-12 15:51:11.771 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-12 15:51:11.771 +03:00 [INF] Request finished in 0.9132ms 304 text/css +2018-09-12 15:51:11.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 15:51:11.780 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-12 15:51:11.780 +03:00 [INF] Request finished in 1.8791ms 304 application/javascript +2018-09-12 15:51:11.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 15:51:11.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 15:51:11.783 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 15:51:11.784 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-12 15:51:11.784 +03:00 [INF] Request finished in 1.7087ms 304 application/javascript +2018-09-12 15:51:11.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-12 15:51:11.786 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-12 15:51:11.786 +03:00 [INF] Request finished in 1.0152ms 304 image/svg+xml +2018-09-12 15:51:11.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-12 15:51:11.807 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-12 15:51:11.808 +03:00 [INF] Request finished in 2.9429ms 304 image/jpeg +2018-09-12 15:51:11.807 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:51:11.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-12 15:51:11.809 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-12 15:51:11.809 +03:00 [INF] Request finished in 0.7779ms 304 image/svg+xml +2018-09-12 15:51:11.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 15:51:11.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 15:51:11.811 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-12 15:51:11.811 +03:00 [INF] Request finished in 0.6687ms 304 application/javascript +2018-09-12 15:51:11.811 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-12 15:51:11.811 +03:00 [INF] Request finished in 0.433ms 304 application/javascript +2018-09-12 15:51:11.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:51:11.825 +03:00 [INF] Request finished in 1.2347ms 404 +2018-09-12 15:51:11.830 +03:00 [INF] Executed action /Blog/Posts/Detail in 47.3802ms +2018-09-12 15:51:11.838 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 15:51:11.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 15:51:11.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 15:51:11.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 15:51:11.848 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-12 15:51:11.848 +03:00 [INF] Request finished in 4.1412ms 304 application/javascript +2018-09-12 15:51:11.848 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-12 15:51:11.848 +03:00 [INF] Request finished in 3.3862ms 304 application/javascript +2018-09-12 15:51:11.848 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-12 15:51:11.849 +03:00 [INF] Request finished in 4.6696ms 304 application/javascript +2018-09-12 15:51:11.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 15:51:11.851 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-12 15:51:11.851 +03:00 [INF] Request finished in 0.8814ms 304 application/javascript +2018-09-12 15:51:11.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 15:51:11.859 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-12 15:51:11.859 +03:00 [INF] Request finished in 1.8713ms 304 application/javascript +2018-09-12 15:51:11.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 15:51:11.874 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-12 15:51:11.875 +03:00 [INF] Request finished in 1.1221ms 304 application/javascript +2018-09-12 15:51:11.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 15:51:11.880 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-12 15:51:11.880 +03:00 [INF] Request finished in 1.7174ms 304 application/javascript +2018-09-12 15:51:11.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 15:51:11.892 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-12 15:51:11.893 +03:00 [INF] Request finished in 2.252ms 304 application/javascript +2018-09-12 15:51:11.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 15:51:11.898 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-12 15:51:11.898 +03:00 [INF] Request finished in 3.7028ms 304 application/javascript +2018-09-12 15:51:11.900 +03:00 [INF] Request finished in 119.2268ms 500 text/html; charset=utf-8 +2018-09-12 15:51:11.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-12 15:51:11.903 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-12 15:51:11.903 +03:00 [INF] Request finished in 0.605ms 304 application/javascript +2018-09-12 15:51:11.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-12 15:51:11.909 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-12 15:51:11.909 +03:00 [INF] Request finished in 3.0077ms 304 application/javascript +2018-09-12 15:51:11.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-12 15:51:11.932 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-12 15:51:11.932 +03:00 [INF] Request finished in 2.1614ms 304 application/javascript +2018-09-12 15:51:11.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 15:51:11.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-12 15:51:11.932 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-12 15:51:11.932 +03:00 [INF] Request finished in 0.5243ms 304 application/javascript +2018-09-12 15:51:11.933 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-12 15:51:11.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-12 15:51:11.933 +03:00 [INF] Request finished in 0.6732ms 304 application/javascript +2018-09-12 15:51:11.933 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-12 15:51:11.933 +03:00 [INF] Request finished in 0.6055ms 304 application/javascript +2018-09-12 15:51:11.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-12 15:51:11.937 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-12 15:51:11.937 +03:00 [INF] Request finished in 1.2789ms 304 application/javascript +2018-09-12 15:51:11.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:51:11.950 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:51:11.950 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:51:11.952 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.8418ms. +2018-09-12 15:51:11.953 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:51:11.953 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.2785ms +2018-09-12 15:51:11.953 +03:00 [INF] Request finished in 4.4291ms 200 text/plain; charset=utf-8 +2018-09-12 15:51:11.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:51:11.954 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:51:11.955 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.955 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.956 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.957 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.957 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.957 +03:00 [INF] Authorization failed. +2018-09-12 15:51:11.959 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3609ms. +2018-09-12 15:51:11.960 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:51:11.960 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.9391000000000007ms +2018-09-12 15:51:11.960 +03:00 [INF] Request finished in 6.9097ms 200 text/plain; charset=utf-8 +2018-09-12 15:51:11.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-12 15:51:11.964 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-12 15:51:11.964 +03:00 [INF] Request finished in 1.2024ms 304 application/javascript +2018-09-12 15:51:11.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-12 15:51:11.988 +03:00 [INF] The file /js/vs.js was not modified +2018-09-12 15:51:11.988 +03:00 [INF] Request finished in 1.745ms 304 application/javascript +2018-09-12 15:51:11.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-12 15:51:11.995 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-12 15:51:11.995 +03:00 [INF] Request finished in 0.8574ms 304 application/javascript +2018-09-12 15:51:12.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636723496894280902 +2018-09-12 15:51:12.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-12 15:51:12.013 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-12 15:51:12.014 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-12 15:51:12.013 +03:00 [INF] Request finished in 1.7135ms 304 application/javascript +2018-09-12 15:51:12.014 +03:00 [INF] Request finished in 2.0406ms 304 image/jpeg +2018-09-12 15:51:12.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:51:12.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636723496894280902 +2018-09-12 15:51:12.015 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-12 15:51:12.015 +03:00 [INF] Request finished in 0.847ms 304 application/javascript +2018-09-12 15:51:12.016 +03:00 [INF] Request finished in 1.9003ms 404 +2018-09-12 15:51:12.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-12 15:51:12.294 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-12 15:51:12.294 +03:00 [INF] Request finished in 0.8593ms 304 image/png +2018-09-12 15:51:12.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-12 15:51:12.297 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-12 15:51:12.297 +03:00 [INF] Request finished in 1.2396ms 304 image/png +2018-09-12 15:52:00.605 +03:00 [INF] Loaded modules: +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:52:00.621 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:52:00.622 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:52:00.623 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:52:02.417 +03:00 [INF] Initialized all modules. +2018-09-12 15:52:02.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 15:52:04.936 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 15:52:04.955 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 15:52:06.457 +03:00 [INF] Executed action /Index in 1516.9187000000002ms +2018-09-12 15:52:06.479 +03:00 [INF] Request finished in 3739.228ms 200 text/html; charset=utf-8 +2018-09-12 15:52:06.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:06.590 +03:00 [INF] Request finished in 8.4425ms 404 +2018-09-12 15:52:06.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:52:06.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:52:06.632 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:06.634 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:06.677 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:52:06.679 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.716 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.717 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.718 +03:00 [INF] Authorization failed. +2018-09-12 15:52:06.749 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 64.4684ms. +2018-09-12 15:52:06.749 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 66.034100000000009ms. +2018-09-12 15:52:06.760 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:06.761 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 128.3039ms +2018-09-12 15:52:06.761 +03:00 [INF] Request finished in 141.0981ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:06.761 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:06.762 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 127.7198ms +2018-09-12 15:52:06.762 +03:00 [INF] Request finished in 144.661ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:06.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:06.820 +03:00 [INF] Request finished in 0.7149ms 404 +2018-09-12 15:52:07.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-12 15:52:07.073 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-12 15:52:07.074 +03:00 [INF] Request finished in 19.163ms 200 font/woff2 +2018-09-12 15:52:07.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:52:07.804 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:52:08.010 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:52:08.366 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:52:08.476 +03:00 [INF] Authorization failed. +2018-09-12 15:52:08.955 +03:00 [INF] Executed action /Blog/Posts/Index in 1151.7095000000002ms +2018-09-12 15:52:08.956 +03:00 [INF] Request finished in 1642.583ms 200 text/html; charset=utf-8 +2018-09-12 15:52:08.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 15:52:08.983 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-12 15:52:08.985 +03:00 [INF] Request finished in 4.5173ms 304 text/css +2018-09-12 15:52:08.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 15:52:08.986 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-12 15:52:08.986 +03:00 [INF] Request finished in 0.9164ms 304 text/css +2018-09-12 15:52:09.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 15:52:09.002 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-12 15:52:09.003 +03:00 [INF] Request finished in 1.6573ms 304 text/css +2018-09-12 15:52:09.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 15:52:09.005 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-12 15:52:09.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 15:52:09.007 +03:00 [INF] Request finished in 2.2327ms 304 text/css +2018-09-12 15:52:09.007 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-12 15:52:09.007 +03:00 [INF] Request finished in 1.0264ms 304 text/css +2018-09-12 15:52:09.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-12 15:52:09.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-12 15:52:09.010 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-12 15:52:09.010 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-12 15:52:09.010 +03:00 [INF] Request finished in 0.7965ms 304 text/css +2018-09-12 15:52:09.010 +03:00 [INF] Request finished in 0.7782ms 304 text/css +2018-09-12 15:52:09.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:52:09.013 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-12 15:52:09.014 +03:00 [INF] Request finished in 1.254ms 304 text/css +2018-09-12 15:52:09.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-12 15:52:09.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-12 15:52:09.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-12 15:52:09.020 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-12 15:52:09.020 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-12 15:52:09.020 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-12 15:52:09.020 +03:00 [INF] Request finished in 0.8208ms 304 text/css +2018-09-12 15:52:09.020 +03:00 [INF] Request finished in 0.4583ms 304 text/css +2018-09-12 15:52:09.020 +03:00 [INF] Request finished in 0.4813ms 304 text/css +2018-09-12 15:52:09.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718985510269168 +2018-09-12 15:52:09.028 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-12 15:52:09.028 +03:00 [INF] Request finished in 1.1501ms 200 text/css +2018-09-12 15:52:09.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 15:52:09.032 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-12 15:52:09.032 +03:00 [INF] Request finished in 1.3671ms 304 application/javascript +2018-09-12 15:52:09.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 15:52:09.040 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-12 15:52:09.040 +03:00 [INF] Request finished in 1.4358ms 304 application/javascript +2018-09-12 15:52:09.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 15:52:09.041 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-12 15:52:09.041 +03:00 [INF] Request finished in 0.6952ms 304 application/javascript +2018-09-12 15:52:09.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:09.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 15:52:09.052 +03:00 [INF] Request finished in 2.5519ms 404 +2018-09-12 15:52:09.052 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-12 15:52:09.052 +03:00 [INF] Request finished in 0.5875ms 304 application/javascript +2018-09-12 15:52:09.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 15:52:09.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 15:52:09.071 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-12 15:52:09.071 +03:00 [INF] Request finished in 0.6574ms 304 application/javascript +2018-09-12 15:52:09.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 15:52:09.071 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-12 15:52:09.071 +03:00 [INF] Request finished in 0.4691ms 304 application/javascript +2018-09-12 15:52:09.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 15:52:09.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 15:52:09.072 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-12 15:52:09.072 +03:00 [INF] Request finished in 0.707ms 304 application/javascript +2018-09-12 15:52:09.073 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-12 15:52:09.074 +03:00 [INF] Request finished in 1.9927ms 304 application/javascript +2018-09-12 15:52:09.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 15:52:09.076 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-12 15:52:09.077 +03:00 [INF] Request finished in 1.14ms 304 application/javascript +2018-09-12 15:52:09.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 15:52:09.089 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-12 15:52:09.089 +03:00 [INF] Request finished in 3.063ms 304 application/javascript +2018-09-12 15:52:09.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 15:52:09.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 15:52:09.092 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-12 15:52:09.093 +03:00 [INF] Request finished in 0.8055ms 304 application/javascript +2018-09-12 15:52:09.093 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-12 15:52:09.093 +03:00 [INF] Request finished in 0.5759ms 304 application/javascript +2018-09-12 15:52:09.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 15:52:09.097 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-12 15:52:09.098 +03:00 [INF] Request finished in 0.6328ms 304 application/javascript +2018-09-12 15:52:09.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-12 15:52:09.109 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-12 15:52:09.109 +03:00 [INF] Request finished in 0.7587ms 304 application/javascript +2018-09-12 15:52:09.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-12 15:52:09.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-12 15:52:09.112 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-12 15:52:09.112 +03:00 [INF] Request finished in 1.1839ms 304 application/javascript +2018-09-12 15:52:09.113 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-12 15:52:09.113 +03:00 [INF] Request finished in 0.9183ms 304 application/javascript +2018-09-12 15:52:09.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 15:52:09.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-12 15:52:09.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-12 15:52:09.130 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-12 15:52:09.130 +03:00 [INF] Request finished in 1.7269ms 304 application/javascript +2018-09-12 15:52:09.131 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-12 15:52:09.131 +03:00 [INF] Request finished in 2.595ms 304 application/javascript +2018-09-12 15:52:09.133 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-12 15:52:09.133 +03:00 [INF] Request finished in 4.2637ms 304 application/javascript +2018-09-12 15:52:09.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:52:09.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-12 15:52:09.137 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-12 15:52:09.137 +03:00 [INF] Request finished in 0.8313ms 304 application/javascript +2018-09-12 15:52:09.138 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:09.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:52:09.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-12 15:52:09.141 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-12 15:52:09.141 +03:00 [INF] Request finished in 0.5044ms 304 application/javascript +2018-09-12 15:52:09.142 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:52:09.142 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.143 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.144 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.145 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.145 +03:00 [INF] Authorization failed. +2018-09-12 15:52:09.146 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:09.147 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:52:09.150 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2371ms. +2018-09-12 15:52:09.151 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.2139ms. +2018-09-12 15:52:09.158 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:09.159 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:09.159 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 12.869800000000001ms +2018-09-12 15:52:09.159 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.8973ms +2018-09-12 15:52:09.159 +03:00 [INF] Request finished in 20.2131ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:09.159 +03:00 [INF] Request finished in 22.845ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:09.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-12 15:52:09.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-12 15:52:09.159 +03:00 [INF] The file /js/vs.js was not modified +2018-09-12 15:52:09.160 +03:00 [INF] Request finished in 0.6209ms 304 application/javascript +2018-09-12 15:52:09.160 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-12 15:52:09.160 +03:00 [INF] Request finished in 0.6698ms 304 application/javascript +2018-09-12 15:52:09.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636721727683590446 +2018-09-12 15:52:09.171 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-12 15:52:09.171 +03:00 [INF] Request finished in 2.2685ms 200 application/javascript +2018-09-12 15:52:09.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718991851979166 +2018-09-12 15:52:09.180 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-12 15:52:09.180 +03:00 [INF] Request finished in 1.1384ms 200 application/javascript +2018-09-12 15:52:09.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-12 15:52:09.186 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-12 15:52:09.187 +03:00 [INF] Request finished in 0.659ms 304 image/svg+xml +2018-09-12 15:52:09.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-12 15:52:09.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-12 15:52:09.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-12 15:52:09.203 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-12 15:52:09.203 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-12 15:52:09.203 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-12 15:52:09.203 +03:00 [INF] Request finished in 1.6424ms 304 image/svg+xml +2018-09-12 15:52:09.203 +03:00 [INF] Request finished in 0.6745ms 304 image/jpeg +2018-09-12 15:52:09.203 +03:00 [INF] Request finished in 0.7382ms 304 image/jpeg +2018-09-12 15:52:09.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:09.214 +03:00 [INF] Request finished in 1.3454ms 404 +2018-09-12 15:52:09.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-12 15:52:09.571 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-12 15:52:09.571 +03:00 [INF] Request finished in 1.0427ms 304 image/png +2018-09-12 15:52:09.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-12 15:52:09.574 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-12 15:52:09.575 +03:00 [INF] Request finished in 1.4944ms 304 image/png +2018-09-12 15:52:09.661 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 15:52:09.672 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:52:09.680 +03:00 [INF] Executed action /Blog/Posts/Detail in 18.71ms +2018-09-12 15:52:09.713 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 15:52:09.762 +03:00 [INF] Request finished in 709.6728ms 500 text/html; charset=utf-8 +2018-09-12 15:52:29.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:52:29.472 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:52:29.476 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:52:29.491 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:52:29.498 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.508 +03:00 [INF] Executed action /Blog/Posts/Index in 35.989000000000004ms +2018-09-12 15:52:29.508 +03:00 [INF] Request finished in 37.342ms 200 text/html; charset=utf-8 +2018-09-12 15:52:29.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 15:52:29.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 15:52:29.558 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-12 15:52:29.559 +03:00 [INF] Request finished in 5.2163ms 200 text/css +2018-09-12 15:52:29.559 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-12 15:52:29.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 15:52:29.559 +03:00 [INF] Request finished in 1.2149ms 200 text/css +2018-09-12 15:52:29.560 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-12 15:52:29.560 +03:00 [INF] Request finished in 1.0284ms 200 text/css +2018-09-12 15:52:29.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 15:52:29.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 15:52:29.571 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-12 15:52:29.571 +03:00 [INF] Request finished in 1.6639ms 200 text/css +2018-09-12 15:52:29.571 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-12 15:52:29.571 +03:00 [INF] Request finished in 1.8008ms 200 text/css +2018-09-12 15:52:29.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-12 15:52:29.582 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-12 15:52:29.582 +03:00 [INF] Request finished in 1.2687ms 200 text/css +2018-09-12 15:52:29.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:52:29.597 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-12 15:52:29.597 +03:00 [INF] Request finished in 1.2079ms 200 text/css +2018-09-12 15:52:29.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-12 15:52:29.612 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-12 15:52:29.612 +03:00 [INF] Request finished in 1.5412ms 200 text/css +2018-09-12 15:52:29.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-12 15:52:29.614 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-12 15:52:29.614 +03:00 [INF] Request finished in 1.2661ms 200 text/css +2018-09-12 15:52:29.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-12 15:52:29.620 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-12 15:52:29.621 +03:00 [INF] Request finished in 3.3435ms 200 text/css +2018-09-12 15:52:29.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-12 15:52:29.622 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-12 15:52:29.622 +03:00 [INF] Request finished in 0.8676ms 200 text/css +2018-09-12 15:52:29.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718985510269168 +2018-09-12 15:52:29.630 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-12 15:52:29.631 +03:00 [INF] Request finished in 1.5196ms 200 text/css +2018-09-12 15:52:29.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 15:52:29.631 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-12 15:52:29.631 +03:00 [INF] Request finished in 0.8841ms 200 application/javascript +2018-09-12 15:52:29.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 15:52:29.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 15:52:29.643 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 15:52:29.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 15:52:29.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 15:52:29.647 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-12 15:52:29.647 +03:00 [INF] Request finished in 0.9637ms 200 application/javascript +2018-09-12 15:52:29.649 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-12 15:52:29.649 +03:00 [INF] Request finished in 6.0526ms 200 application/javascript +2018-09-12 15:52:29.650 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:52:29.653 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-12 15:52:29.654 +03:00 [INF] Request finished in 6.9366ms 200 application/javascript +2018-09-12 15:52:29.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:29.662 +03:00 [INF] Request finished in 1.6663ms 404 +2018-09-12 15:52:29.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 15:52:29.663 +03:00 [INF] Executed action /Blog/Posts/Detail in 19.692700000000002ms +2018-09-12 15:52:29.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 15:52:29.663 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-12 15:52:29.663 +03:00 [INF] Request finished in 1.1596ms 200 application/javascript +2018-09-12 15:52:29.664 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-12 15:52:29.664 +03:00 [INF] Request finished in 1.4414ms 200 application/javascript +2018-09-12 15:52:29.669 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 15:52:29.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 15:52:29.674 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-12 15:52:29.674 +03:00 [INF] Request finished in 1.0071ms 200 application/javascript +2018-09-12 15:52:29.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 15:52:29.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 15:52:29.692 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-12 15:52:29.692 +03:00 [INF] Request finished in 7.602ms 200 application/javascript +2018-09-12 15:52:29.697 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-12 15:52:29.697 +03:00 [INF] Request finished in 10.35ms 200 application/javascript +2018-09-12 15:52:29.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 15:52:29.700 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-12 15:52:29.700 +03:00 [INF] Request finished in 1.1053ms 200 application/javascript +2018-09-12 15:52:29.706 +03:00 [INF] Request finished in 66.4096ms 500 text/html; charset=utf-8 +2018-09-12 15:52:29.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 15:52:29.711 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-12 15:52:29.711 +03:00 [INF] Request finished in 1.1685ms 200 application/javascript +2018-09-12 15:52:29.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 15:52:29.713 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-12 15:52:29.713 +03:00 [INF] Request finished in 1.3622ms 200 application/javascript +2018-09-12 15:52:29.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 15:52:29.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-12 15:52:29.737 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-12 15:52:29.737 +03:00 [INF] Request finished in 1.1463ms 200 application/javascript +2018-09-12 15:52:29.738 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-12 15:52:29.738 +03:00 [INF] Request finished in 1.1051ms 200 application/javascript +2018-09-12 15:52:29.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-12 15:52:29.742 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-12 15:52:29.743 +03:00 [INF] Request finished in 1.7048ms 200 application/javascript +2018-09-12 15:52:29.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-12 15:52:29.759 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-12 15:52:29.759 +03:00 [INF] Request finished in 2.033ms 200 application/javascript +2018-09-12 15:52:29.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 15:52:29.770 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-12 15:52:29.770 +03:00 [INF] Request finished in 2.1197ms 200 application/javascript +2018-09-12 15:52:29.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-12 15:52:29.774 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-12 15:52:29.774 +03:00 [INF] Request finished in 1.1454ms 200 application/javascript +2018-09-12 15:52:29.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-12 15:52:29.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-12 15:52:29.779 +03:00 [INF] Request finished in 1.061ms 200 application/javascript +2018-09-12 15:52:29.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-12 15:52:29.785 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-12 15:52:29.785 +03:00 [INF] Request finished in 1.6267ms 200 application/javascript +2018-09-12 15:52:29.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:52:29.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:52:29.798 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:29.798 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:52:29.799 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:52:29.801 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.6571ms. +2018-09-12 15:52:29.801 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:29.802 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5122ms +2018-09-12 15:52:29.802 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:52:29.802 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.803 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Request finished in 6.8176ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.804 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.805 +03:00 [INF] Authorization failed. +2018-09-12 15:52:29.807 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.6734ms. +2018-09-12 15:52:29.807 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:52:29.807 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.8297ms +2018-09-12 15:52:29.807 +03:00 [INF] Request finished in 10.1656ms 200 text/plain; charset=utf-8 +2018-09-12 15:52:29.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-12 15:52:29.833 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-12 15:52:29.833 +03:00 [INF] Request finished in 1.0484ms 200 application/javascript +2018-09-12 15:52:29.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-12 15:52:29.844 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-12 15:52:29.844 +03:00 [INF] Request finished in 1.0329ms 200 application/javascript +2018-09-12 15:52:29.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-12 15:52:29.857 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-12 15:52:29.857 +03:00 [INF] Request finished in 0.806ms 200 application/javascript +2018-09-12 15:52:29.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636721727683590446 +2018-09-12 15:52:29.866 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-12 15:52:29.866 +03:00 [INF] Request finished in 1.5779ms 200 application/javascript +2018-09-12 15:52:29.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718991851979166 +2018-09-12 15:52:29.876 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-12 15:52:29.876 +03:00 [INF] Request finished in 1.1228ms 200 application/javascript +2018-09-12 15:52:29.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-12 15:52:29.884 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-12 15:52:29.884 +03:00 [INF] Request finished in 1.1691ms 200 image/svg+xml +2018-09-12 15:52:29.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-12 15:52:29.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-12 15:52:29.895 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-12 15:52:29.895 +03:00 [INF] Request finished in 7.7906ms 200 image/jpeg +2018-09-12 15:52:29.895 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-12 15:52:29.895 +03:00 [INF] Request finished in 0.8688ms 200 image/svg+xml +2018-09-12 15:52:29.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-12 15:52:29.927 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-12 15:52:29.928 +03:00 [INF] Request finished in 1.8105ms 200 font/woff2 +2018-09-12 15:52:29.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-12 15:52:29.972 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-12 15:52:29.972 +03:00 [INF] Request finished in 15.1956ms 200 image/jpeg +2018-09-12 15:52:29.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:52:29.999 +03:00 [INF] Request finished in 0.9829ms 404 +2018-09-12 15:52:30.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-12 15:52:30.357 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-12 15:52:30.357 +03:00 [INF] Request finished in 2.117ms 200 image/png +2018-09-12 15:52:30.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-12 15:52:30.358 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-12 15:52:30.358 +03:00 [INF] Request finished in 0.8828ms 200 image/png +2018-09-12 15:52:37.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:52:37.009 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-12 15:52:37.010 +03:00 [INF] Request finished in 2.5562ms 200 text/css +2018-09-12 15:52:37.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-12 15:52:37.184 +03:00 [INF] Sending file. Request path: '/scss/vs.css.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css.map' +2018-09-12 15:52:37.184 +03:00 [INF] Request finished in 0.9984ms 200 text/plain +2018-09-12 15:52:37.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-12 15:52:37.189 +03:00 [INF] Request finished in 1.4974ms 404 +2018-09-12 15:53:05.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 15:53:05.133 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 15:53:05.133 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 15:53:05.142 +03:00 [INF] Executed action /Index in 9.6441ms +2018-09-12 15:53:05.143 +03:00 [INF] Request finished in 11.0258ms 200 text/html; charset=utf-8 +2018-09-12 15:53:05.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:53:05.334 +03:00 [INF] Request finished in 2.3464ms 404 +2018-09-12 15:53:05.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:53:05.379 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:53:05.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:53:05.380 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:53:05.380 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.381 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:53:05.381 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1193ms. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.382 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2854ms +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Request finished in 3.3034ms 200 text/plain; charset=utf-8 +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.383 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.384 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.384 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.384 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.384 +03:00 [INF] Authorization failed. +2018-09-12 15:53:05.385 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0936ms. +2018-09-12 15:53:05.386 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:53:05.386 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7649ms +2018-09-12 15:53:05.386 +03:00 [INF] Request finished in 10.3921ms 200 text/plain; charset=utf-8 +2018-09-12 15:53:05.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:53:05.405 +03:00 [INF] Request finished in 1.6341ms 404 +2018-09-12 15:53:07.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:53:07.519 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:53:07.523 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:53:07.546 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:53:07.554 +03:00 [INF] Authorization failed. +2018-09-12 15:53:07.565 +03:00 [INF] Executed action /Blog/Posts/Index in 46.157000000000004ms +2018-09-12 15:53:07.565 +03:00 [INF] Request finished in 47.4139ms 200 text/html; charset=utf-8 +2018-09-12 15:53:07.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 15:53:07.628 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 15:53:07.643 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:53:07.648 +03:00 [INF] Executed action /Blog/Posts/Detail in 20.0347ms +2018-09-12 15:53:07.653 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 15:53:07.704 +03:00 [INF] Request finished in 79.0258ms 500 text/html; charset=utf-8 +2018-09-12 15:56:40.719 +03:00 [INF] Loaded modules: +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:56:40.734 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:56:40.735 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:56:40.736 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:56:40.738 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:56:42.382 +03:00 [INF] Initialized all modules. +2018-09-12 15:56:42.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-12 15:56:42.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 15:56:44.948 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:56:44.948 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:56:45.198 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:56:45.198 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:56:45.611 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:56:45.611 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:56:45.883 +03:00 [INF] Authorization failed. +2018-09-12 15:56:45.883 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.182 +03:00 [INF] Executed action /Blog/Posts/Index in 2228.3436ms +2018-09-12 15:56:47.182 +03:00 [INF] Executed action /Blog/Posts/Index in 2228.3431ms +2018-09-12 15:56:47.190 +03:00 [INF] Request finished in 4654.0277ms 200 text/html; charset=utf-8 +2018-09-12 15:56:47.190 +03:00 [INF] Request finished in 4653.9961ms 200 text/html; charset=utf-8 +2018-09-12 15:56:47.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-12 15:56:47.273 +03:00 [INF] Request finished in 10.267ms 404 +2018-09-12 15:56:47.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:56:47.278 +03:00 [INF] Request finished in 4.3605ms 404 +2018-09-12 15:56:47.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:56:47.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:56:47.356 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:56:47.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:56:47.360 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:56:47.375 +03:00 [INF] Request finished in 17.432ms 404 +2018-09-12 15:56:47.405 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:56:47.407 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:56:47.415 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.416 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.417 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.418 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.418 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.418 +03:00 [INF] Authorization failed. +2018-09-12 15:56:47.448 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 37.630700000000004ms. +2018-09-12 15:56:47.456 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:56:47.457 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 96.0991ms +2018-09-12 15:56:47.457 +03:00 [INF] Request finished in 128.4037ms 200 text/plain; charset=utf-8 +2018-09-12 15:56:47.482 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 74.769ms. +2018-09-12 15:56:47.483 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:56:47.483 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 126.9424ms +2018-09-12 15:56:47.483 +03:00 [INF] Request finished in 145.8556ms 200 text/plain; charset=utf-8 +2018-09-12 15:56:53.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-12 15:56:53.459 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:56:53.463 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:56:53.475 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:56:53.484 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.492 +03:00 [INF] Executed action /Blog/Posts/Index in 32.707300000000004ms +2018-09-12 15:56:53.492 +03:00 [INF] Request finished in 36.9797ms 200 text/html; charset=utf-8 +2018-09-12 15:56:53.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-12 15:56:53.551 +03:00 [INF] Request finished in 1.8094ms 404 +2018-09-12 15:56:53.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:56:53.565 +03:00 [INF] Request finished in 2.2804ms 404 +2018-09-12 15:56:53.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:56:53.604 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:56:53.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:56:53.606 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:56:53.606 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.606 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.606 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.607 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.608 +03:00 [INF] Authorization failed. +2018-09-12 15:56:53.609 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:56:53.611 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.7699ms. +2018-09-12 15:56:53.611 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.5315ms. +2018-09-12 15:56:53.611 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:56:53.611 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:56:53.611 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5272ms +2018-09-12 15:56:53.612 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.3185ms +2018-09-12 15:56:53.612 +03:00 [INF] Request finished in 9.2678ms 200 text/plain; charset=utf-8 +2018-09-12 15:56:53.612 +03:00 [INF] Request finished in 7.2997ms 200 text/plain; charset=utf-8 +2018-09-12 15:58:07.318 +03:00 [INF] Loaded modules: +2018-09-12 15:58:07.333 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:58:07.333 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:58:07.333 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:58:07.333 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:58:07.333 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:58:07.334 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:58:07.335 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:58:08.978 +03:00 [INF] Initialized all modules. +2018-09-12 15:58:09.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-12 15:58:12.037 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 15:58:12.253 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 15:58:12.613 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 15:58:12.871 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.108 +03:00 [INF] Executed action /Blog/Posts/Index in 2066.8251ms +2018-09-12 15:58:14.116 +03:00 [INF] Request finished in 4850.9746ms 200 text/html; charset=utf-8 +2018-09-12 15:58:14.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 15:58:14.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 15:58:14.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 15:58:14.148 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-12 15:58:14.148 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-12 15:58:14.148 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-12 15:58:14.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 15:58:14.151 +03:00 [INF] Request finished in 4.8123ms 304 text/css +2018-09-12 15:58:14.151 +03:00 [INF] Request finished in 9.7018ms 304 text/css +2018-09-12 15:58:14.151 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-12 15:58:14.151 +03:00 [INF] Request finished in 8.356ms 304 text/css +2018-09-12 15:58:14.151 +03:00 [INF] Request finished in 1.0696ms 304 text/css +2018-09-12 15:58:14.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-12 15:58:14.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-12 15:58:14.168 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-12 15:58:14.168 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-12 15:58:14.169 +03:00 [INF] Request finished in 1.4565ms 304 text/css +2018-09-12 15:58:14.169 +03:00 [INF] Request finished in 1.4763ms 304 text/css +2018-09-12 15:58:14.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 15:58:14.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:58:14.170 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-12 15:58:14.170 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-12 15:58:14.170 +03:00 [INF] Request finished in 1.3912ms 304 text/css +2018-09-12 15:58:14.170 +03:00 [INF] Request finished in 0.9615ms 304 text/css +2018-09-12 15:58:14.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-12 15:58:14.172 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-12 15:58:14.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-12 15:58:14.172 +03:00 [INF] Request finished in 0.6269ms 304 text/css +2018-09-12 15:58:14.172 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-12 15:58:14.172 +03:00 [INF] Request finished in 0.5461ms 304 text/css +2018-09-12 15:58:14.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-12 15:58:14.184 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-12 15:58:14.184 +03:00 [INF] Request finished in 1.2477ms 304 text/css +2018-09-12 15:58:14.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636718985510269168 +2018-09-12 15:58:14.187 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-12 15:58:14.187 +03:00 [INF] Request finished in 0.6799ms 304 text/css +2018-09-12 15:58:14.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 15:58:14.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-12 15:58:14.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 15:58:14.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 15:58:14.204 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-12 15:58:14.204 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-12 15:58:14.204 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-12 15:58:14.204 +03:00 [INF] Request finished in 0.8742ms 304 application/javascript +2018-09-12 15:58:14.204 +03:00 [INF] Request finished in 1.2383ms 304 application/javascript +2018-09-12 15:58:14.204 +03:00 [INF] Request finished in 0.8147ms 304 application/javascript +2018-09-12 15:58:14.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 15:58:14.206 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-12 15:58:14.206 +03:00 [INF] Request finished in 0.7419ms 304 application/javascript +2018-09-12 15:58:14.207 +03:00 [INF] Request finished in 3.3834ms 404 +2018-09-12 15:58:14.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 15:58:14.217 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-12 15:58:14.217 +03:00 [INF] Request finished in 0.7366ms 304 application/javascript +2018-09-12 15:58:14.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:58:14.218 +03:00 [INF] Request finished in 1.7039ms 404 +2018-09-12 15:58:14.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 15:58:14.236 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-12 15:58:14.236 +03:00 [INF] Request finished in 4.8088ms 304 application/javascript +2018-09-12 15:58:14.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 15:58:14.237 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-12 15:58:14.238 +03:00 [INF] Request finished in 0.6839ms 304 application/javascript +2018-09-12 15:58:14.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 15:58:14.254 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-12 15:58:14.255 +03:00 [INF] Request finished in 0.7173ms 304 application/javascript +2018-09-12 15:58:14.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-12 15:58:14.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 15:58:14.259 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-12 15:58:14.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-12 15:58:14.259 +03:00 [INF] Request finished in 1.1911ms 304 application/javascript +2018-09-12 15:58:14.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-12 15:58:14.259 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-12 15:58:14.259 +03:00 [INF] Request finished in 0.5088ms 304 image/jpeg +2018-09-12 15:58:14.259 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-12 15:58:14.260 +03:00 [INF] Request finished in 0.4131ms 304 image/svg+xml +2018-09-12 15:58:14.260 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-12 15:58:14.262 +03:00 [INF] Request finished in 4.6788ms 304 image/svg+xml +2018-09-12 15:58:14.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 15:58:14.271 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-12 15:58:14.271 +03:00 [INF] Request finished in 1.2187ms 304 application/javascript +2018-09-12 15:58:14.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 15:58:14.279 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-12 15:58:14.279 +03:00 [INF] Request finished in 1.9112ms 304 application/javascript +2018-09-12 15:58:14.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 15:58:14.284 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-12 15:58:14.284 +03:00 [INF] Request finished in 2.5402ms 304 application/javascript +2018-09-12 15:58:14.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-12 15:58:14.285 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-12 15:58:14.285 +03:00 [INF] Request finished in 0.7374ms 304 application/javascript +2018-09-12 15:58:14.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 15:58:14.286 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-12 15:58:14.286 +03:00 [INF] Request finished in 0.7823ms 304 application/javascript +2018-09-12 15:58:14.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-12 15:58:14.290 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-12 15:58:14.290 +03:00 [INF] Request finished in 0.9026ms 304 application/javascript +2018-09-12 15:58:14.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-12 15:58:14.293 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-12 15:58:14.293 +03:00 [INF] Request finished in 0.8295ms 304 application/javascript +2018-09-12 15:58:14.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 15:58:14.302 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-12 15:58:14.302 +03:00 [INF] Request finished in 3.9056ms 304 application/javascript +2018-09-12 15:58:14.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-12 15:58:14.304 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-12 15:58:14.304 +03:00 [INF] Request finished in 1.2056ms 304 application/javascript +2018-09-12 15:58:14.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-12 15:58:14.314 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-12 15:58:14.315 +03:00 [INF] Request finished in 0.9497ms 304 application/javascript +2018-09-12 15:58:14.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-12 15:58:14.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:58:14.316 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-12 15:58:14.316 +03:00 [INF] Request finished in 1.4544ms 304 application/javascript +2018-09-12 15:58:14.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:58:14.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-12 15:58:14.338 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-12 15:58:14.339 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:58:14.338 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:58:14.340 +03:00 [INF] Request finished in 2.4066ms 304 application/javascript +2018-09-12 15:58:14.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-12 15:58:14.371 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-12 15:58:14.371 +03:00 [INF] Request finished in 2.4532ms 304 application/javascript +2018-09-12 15:58:14.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636718991851979166 +2018-09-12 15:58:14.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636721727683590446 +2018-09-12 15:58:14.373 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-12 15:58:14.373 +03:00 [INF] Request finished in 1.4169ms 304 application/javascript +2018-09-12 15:58:14.373 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-12 15:58:14.373 +03:00 [INF] Request finished in 1.772ms 304 application/javascript +2018-09-12 15:58:14.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-12 15:58:14.378 +03:00 [INF] The file /js/vs.js was not modified +2018-09-12 15:58:14.379 +03:00 [INF] Request finished in 4.1445ms 304 application/javascript +2018-09-12 15:58:14.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:58:14.384 +03:00 [INF] Request finished in 2.7694ms 404 +2018-09-12 15:58:14.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-12 15:58:14.388 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-12 15:58:14.389 +03:00 [INF] Request finished in 2.3859ms 304 image/jpeg +2018-09-12 15:58:14.415 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:58:14.417 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.426 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.427 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.428 +03:00 [INF] Authorization failed. +2018-09-12 15:58:14.474 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 53.6856ms. +2018-09-12 15:58:14.478 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:58:14.480 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 140.1457ms +2018-09-12 15:58:14.480 +03:00 [INF] Request finished in 164.8087ms 200 text/plain; charset=utf-8 +2018-09-12 15:58:14.504 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 85.80810000000001ms. +2018-09-12 15:58:14.505 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:58:14.505 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 165.187ms +2018-09-12 15:58:14.505 +03:00 [INF] Request finished in 188.5441ms 200 text/plain; charset=utf-8 +2018-09-12 15:58:14.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-12 15:58:14.751 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-12 15:58:14.752 +03:00 [INF] Request finished in 0.8502ms 304 image/png +2018-09-12 15:58:14.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-12 15:58:14.753 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-12 15:58:14.754 +03:00 [INF] Request finished in 0.8758ms 304 image/png +2018-09-12 15:58:34.127 +03:00 [INF] Loaded modules: +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:58:34.141 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:58:34.142 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:58:34.143 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:58:35.894 +03:00 [INF] Initialized all modules. +2018-09-12 15:58:36.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 15:58:38.301 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 15:58:38.323 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 15:58:39.881 +03:00 [INF] Executed action /Index in 1574.1522ms +2018-09-12 15:58:39.908 +03:00 [INF] Request finished in 3778.5749ms 200 text/html; charset=utf-8 +2018-09-12 15:58:40.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:58:40.084 +03:00 [INF] Request finished in 29.5466ms 404 +2018-09-12 15:58:40.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:58:40.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:58:40.153 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:58:40.160 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:58:40.214 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:58:40.216 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:58:40.281 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.282 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.282 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.282 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.283 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.284 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.285 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.286 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.286 +03:00 [INF] Authorization failed. +2018-09-12 15:58:40.322 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 99.0886ms. +2018-09-12 15:58:40.328 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 113.3418ms. +2018-09-12 15:58:40.330 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:58:40.331 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:58:40.331 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 178.3605ms +2018-09-12 15:58:40.331 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 171.502ms +2018-09-12 15:58:40.332 +03:00 [INF] Request finished in 198.6104ms 200 text/plain; charset=utf-8 +2018-09-12 15:58:40.332 +03:00 [INF] Request finished in 201.0187ms 200 text/plain; charset=utf-8 +2018-09-12 15:59:32.585 +03:00 [INF] Loaded modules: +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-12 15:59:32.609 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-12 15:59:32.610 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-12 15:59:32.611 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-12 15:59:34.585 +03:00 [INF] Initialized all modules. +2018-09-12 15:59:34.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-12 15:59:37.589 +03:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing action /Index +2018-09-12 15:59:37.609 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-12 15:59:39.271 +03:00 [INF] Executed action /Index in 1673.3602ms +2018-09-12 15:59:39.289 +03:00 [INF] Request finished in 4427.1799ms 200 text/html; charset=utf-8 +2018-09-12 15:59:39.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-12 15:59:39.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-12 15:59:39.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-12 15:59:39.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-12 15:59:39.322 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-12 15:59:39.322 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-12 15:59:39.323 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-12 15:59:39.328 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-12 15:59:39.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-12 15:59:39.329 +03:00 [INF] Request finished in 10.6048ms 304 text/css +2018-09-12 15:59:39.329 +03:00 [INF] Request finished in 10.8838ms 304 text/css +2018-09-12 15:59:39.329 +03:00 [INF] Request finished in 16.5329ms 304 text/css +2018-09-12 15:59:39.329 +03:00 [INF] Request finished in 10.2874ms 304 text/css +2018-09-12 15:59:39.329 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-12 15:59:39.331 +03:00 [INF] Request finished in 2.7279ms 304 text/css +2018-09-12 15:59:39.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-12 15:59:39.349 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-12 15:59:39.349 +03:00 [INF] Request finished in 2.911ms 304 text/css +2018-09-12 15:59:39.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-12 15:59:39.359 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-12 15:59:39.359 +03:00 [INF] Request finished in 1.8539ms 304 text/css +2018-09-12 15:59:39.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-12 15:59:39.360 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-12 15:59:39.361 +03:00 [INF] Request finished in 0.8129ms 304 application/javascript +2018-09-12 15:59:39.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-12 15:59:39.363 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-12 15:59:39.363 +03:00 [INF] Request finished in 0.9737ms 304 text/css +2018-09-12 15:59:39.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-12 15:59:39.373 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-12 15:59:39.374 +03:00 [INF] Request finished in 1.1814ms 304 application/javascript +2018-09-12 15:59:39.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-12 15:59:39.380 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-12 15:59:39.381 +03:00 [INF] Request finished in 3.6332ms 304 application/javascript +2018-09-12 15:59:39.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-12 15:59:39.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-12 15:59:39.398 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-12 15:59:39.398 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-09-12 15:59:39.398 +03:00 [INF] Request finished in 0.6351ms 304 application/javascript +2018-09-12 15:59:39.398 +03:00 [INF] Request finished in 0.6547ms 304 image/png +2018-09-12 15:59:39.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-12 15:59:39.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-12 15:59:39.404 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-12 15:59:39.404 +03:00 [INF] The file /img/modular.png was not modified +2018-09-12 15:59:39.404 +03:00 [INF] Request finished in 0.8631ms 304 image/png +2018-09-12 15:59:39.404 +03:00 [INF] Request finished in 1.1889ms 304 image/svg+xml +2018-09-12 15:59:39.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-12 15:59:39.412 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-09-12 15:59:39.412 +03:00 [INF] Request finished in 0.5915ms 304 image/png +2018-09-12 15:59:39.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-12 15:59:39.424 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-12 15:59:39.424 +03:00 [INF] Request finished in 11.3113ms 304 image/png +2018-09-12 15:59:39.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-12 15:59:39.431 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-09-12 15:59:39.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-12 15:59:39.433 +03:00 [INF] Request finished in 3.5509ms 304 image/png +2018-09-12 15:59:39.434 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-09-12 15:59:39.434 +03:00 [INF] Request finished in 1.4126ms 304 image/png +2018-09-12 15:59:39.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-12 15:59:39.435 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-09-12 15:59:39.436 +03:00 [INF] Request finished in 0.6458ms 304 image/png +2018-09-12 15:59:39.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-12 15:59:39.442 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-09-12 15:59:39.443 +03:00 [INF] Request finished in 0.6094ms 304 image/png +2018-09-12 15:59:39.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-12 15:59:39.450 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-12 15:59:39.450 +03:00 [INF] Request finished in 0.7631ms 304 image/png +2018-09-12 15:59:39.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-12 15:59:39.451 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-12 15:59:39.451 +03:00 [INF] Request finished in 1.1187ms 304 image/png +2018-09-12 15:59:39.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-12 15:59:39.455 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-12 15:59:39.455 +03:00 [INF] Request finished in 2.0394ms 304 image/png +2018-09-12 15:59:39.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-12 15:59:39.458 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-12 15:59:39.459 +03:00 [INF] Request finished in 1.2046ms 304 image/png +2018-09-12 15:59:39.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-12 15:59:39.462 +03:00 [INF] The file /img/mt-left.png was not modified +2018-09-12 15:59:39.462 +03:00 [INF] Request finished in 0.6889ms 304 image/png +2018-09-12 15:59:39.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-12 15:59:39.463 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-09-12 15:59:39.464 +03:00 [INF] Request finished in 1.1579ms 304 image/png +2018-09-12 15:59:39.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-12 15:59:39.467 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-09-12 15:59:39.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-12 15:59:39.467 +03:00 [INF] Request finished in 1.1579ms 304 image/png +2018-09-12 15:59:39.468 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-12 15:59:39.468 +03:00 [INF] Request finished in 1.1474ms 304 image/png +2018-09-12 15:59:39.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-12 15:59:39.469 +03:00 [INF] The file /assets/my-image.png was not modified +2018-09-12 15:59:39.469 +03:00 [INF] Request finished in 0.6897ms 304 image/png +2018-09-12 15:59:39.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-12 15:59:39.484 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-09-12 15:59:39.484 +03:00 [INF] Request finished in 3.4097ms 304 image/png +2018-09-12 15:59:39.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-12 15:59:39.485 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-09-12 15:59:39.485 +03:00 [INF] Request finished in 0.6608ms 304 image/png +2018-09-12 15:59:39.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-12 15:59:39.487 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-09-12 15:59:39.487 +03:00 [INF] Request finished in 0.7943ms 304 image/png +2018-09-12 15:59:39.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-12 15:59:39.491 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-09-12 15:59:39.491 +03:00 [INF] Request finished in 1.0027ms 304 image/png +2018-09-12 15:59:39.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-12 15:59:39.492 +03:00 [INF] The file /assets/familiar.png was not modified +2018-09-12 15:59:39.492 +03:00 [INF] Request finished in 0.5392ms 304 image/png +2018-09-12 15:59:39.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-12 15:59:39.504 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-09-12 15:59:39.505 +03:00 [INF] Request finished in 1.776ms 304 image/png +2018-09-12 15:59:39.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-12 15:59:39.522 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-09-12 15:59:39.522 +03:00 [INF] Request finished in 0.8997ms 304 image/png +2018-09-12 15:59:39.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-12 15:59:39.523 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-12 15:59:39.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-12 15:59:39.523 +03:00 [INF] Request finished in 0.5515ms 304 image/png +2018-09-12 15:59:39.523 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-09-12 15:59:39.524 +03:00 [INF] Request finished in 0.6066ms 304 image/png +2018-09-12 15:59:39.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-12 15:59:39.526 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-09-12 15:59:39.526 +03:00 [INF] Request finished in 0.9406ms 304 image/png +2018-09-12 15:59:39.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-12 15:59:39.526 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-09-12 15:59:39.526 +03:00 [INF] Request finished in 0.4631ms 304 image/png +2018-09-12 15:59:39.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-12 15:59:39.534 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-09-12 15:59:39.534 +03:00 [INF] Request finished in 3.6244ms 304 image/png +2018-09-12 15:59:39.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-12 15:59:39.543 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-09-12 15:59:39.544 +03:00 [INF] Request finished in 1.2914ms 304 image/png +2018-09-12 15:59:39.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-12 15:59:39.544 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-09-12 15:59:39.544 +03:00 [INF] Request finished in 0.5821ms 304 image/png +2018-09-12 15:59:39.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-12 15:59:39.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-12 15:59:39.551 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-09-12 15:59:39.551 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-09-12 15:59:39.551 +03:00 [INF] Request finished in 1.2344ms 304 image/png +2018-09-12 15:59:39.552 +03:00 [INF] Request finished in 1.308ms 304 image/png +2018-09-12 15:59:39.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-12 15:59:39.553 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-09-12 15:59:39.553 +03:00 [INF] Request finished in 0.6704ms 304 image/png +2018-09-12 15:59:39.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-12 15:59:39.559 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-12 15:59:39.559 +03:00 [INF] Request finished in 0.8813ms 304 image/png +2018-09-12 15:59:39.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-12 15:59:39.568 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-12 15:59:39.569 +03:00 [INF] Request finished in 0.9425ms 304 image/svg+xml +2018-09-12 15:59:39.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 15:59:39.580 +03:00 [INF] Request finished in 10.7395ms 404 +2018-09-12 15:59:39.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-12 15:59:39.584 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-12 15:59:39.585 +03:00 [INF] Request finished in 1.3045ms 304 application/javascript +2018-09-12 15:59:39.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-12 15:59:39.588 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-12 15:59:39.588 +03:00 [INF] Request finished in 2.1011ms 304 application/javascript +2018-09-12 15:59:39.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-12 15:59:39.590 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-12 15:59:39.590 +03:00 [INF] Request finished in 1.615ms 304 application/javascript +2018-09-12 15:59:39.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-12 15:59:39.594 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-12 15:59:39.594 +03:00 [INF] Request finished in 0.9283ms 304 application/javascript +2018-09-12 15:59:39.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-12 15:59:39.597 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-12 15:59:39.599 +03:00 [INF] Request finished in 1.3814ms 304 application/javascript +2018-09-12 15:59:39.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-12 15:59:39.618 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-12 15:59:39.618 +03:00 [INF] Request finished in 3.0456ms 304 application/javascript +2018-09-12 15:59:39.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-12 15:59:39.634 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-12 15:59:39.635 +03:00 [INF] Request finished in 1.5295ms 304 application/javascript +2018-09-12 15:59:39.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-12 15:59:39.642 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-12 15:59:39.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-12 15:59:39.642 +03:00 [INF] Request finished in 0.6959ms 304 application/javascript +2018-09-12 15:59:39.643 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-12 15:59:39.643 +03:00 [INF] Request finished in 0.6639ms 304 application/javascript +2018-09-12 15:59:39.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-12 15:59:39.650 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-12 15:59:39.651 +03:00 [INF] Request finished in 1.4799ms 304 application/javascript +2018-09-12 15:59:39.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-12 15:59:39.653 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-12 15:59:39.653 +03:00 [INF] Request finished in 0.8838ms 304 application/javascript +2018-09-12 15:59:39.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-12 15:59:39.663 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-12 15:59:39.663 +03:00 [INF] Request finished in 2.0122ms 304 application/javascript +2018-09-12 15:59:39.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-12 15:59:39.673 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-12 15:59:39.673 +03:00 [INF] Request finished in 2.5488ms 304 application/javascript +2018-09-12 15:59:39.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-12 15:59:39.674 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-12 15:59:39.675 +03:00 [INF] Request finished in 0.7448ms 304 application/javascript +2018-09-12 15:59:39.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-12 15:59:39.686 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-12 15:59:39.686 +03:00 [INF] Request finished in 7.5729ms 304 application/javascript +2018-09-12 15:59:39.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-12 15:59:39.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 15:59:39.688 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-12 15:59:39.689 +03:00 [INF] Request finished in 1.0482ms 304 application/javascript +2018-09-12 15:59:39.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-12 15:59:39.702 +03:00 [INF] The file /js/vs.js was not modified +2018-09-12 15:59:39.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 15:59:39.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-12 15:59:39.702 +03:00 [INF] Request finished in 2.8669ms 304 application/javascript +2018-09-12 15:59:39.702 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-12 15:59:39.702 +03:00 [INF] Request finished in 0.5114ms 304 image/jpeg +2018-09-12 15:59:39.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-12 15:59:39.709 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-12 15:59:39.709 +03:00 [INF] Request finished in 0.791ms 304 application/javascript +2018-09-12 15:59:39.723 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:59:39.723 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 15:59:39.770 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 15:59:39.772 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 15:59:39.827 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.828 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.829 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.830 +03:00 [INF] Authorization failed. +2018-09-12 15:59:39.871 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 93.45920000000001ms. +2018-09-12 15:59:39.874 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 102.9561ms. +2018-09-12 15:59:39.879 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:59:39.879 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 15:59:39.879 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 156.66570000000002ms +2018-09-12 15:59:39.880 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 156.7228ms +2018-09-12 15:59:39.880 +03:00 [INF] Request finished in 177.7685ms 200 text/plain; charset=utf-8 +2018-09-12 15:59:39.880 +03:00 [INF] Request finished in 191.7231ms 200 text/plain; charset=utf-8 +2018-09-12 15:59:40.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-12 15:59:40.028 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-12 15:59:40.028 +03:00 [INF] Request finished in 0.6673ms 304 image/png +2018-09-12 15:59:40.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-12 15:59:40.033 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-12 15:59:40.033 +03:00 [INF] Request finished in 0.6603ms 304 image/png +2018-09-12 16:51:13.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-12 16:51:13.461 +03:00 [INF] Route matched with {page = "/Blog/Index", area = "", action = "", controller = ""}. Executing action /Blog/Index +2018-09-12 16:51:13.497 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 16:51:13.671 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-12 16:51:13.672 +03:00 [INF] Executed action /Blog/Index in 210.0395ms +2018-09-12 16:51:13.672 +03:00 [INF] Request finished in 548.2259ms 302 +2018-09-12 16:51:13.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-12 16:51:14.167 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Index +2018-09-12 16:51:14.340 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 16:51:14.586 +03:00 [WRN] Creator of post 9e465e40-51c5-e719-2ad8-39e8db243f99 is admin +2018-09-12 16:51:14.687 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.035 +03:00 [INF] Executed action /Blog/Posts/Index in 868.124ms +2018-09-12 16:51:15.035 +03:00 [INF] Request finished in 1353.7026ms 200 text/html; charset=utf-8 +2018-09-12 16:51:15.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-12 16:51:15.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-12 16:51:15.117 +03:00 [INF] Request finished in 1.2411ms 404 +2018-09-12 16:51:15.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-12 16:51:15.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-12 16:51:15.173 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-12 16:51:15.175 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-12 16:51:15.176 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.176 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.176 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.176 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.177 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.177 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.177 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.177 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.177 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.178 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.179 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-12 16:51:15.179 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.180 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.0554000000000001ms. +2018-09-12 16:51:15.181 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.181 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.181 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 16:51:15.182 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.182 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.134ms +2018-09-12 16:51:15.182 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.182 +03:00 [INF] Request finished in 10.147ms 200 text/plain; charset=utf-8 +2018-09-12 16:51:15.182 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.183 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.183 +03:00 [INF] Authorization failed. +2018-09-12 16:51:15.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.6624ms. +2018-09-12 16:51:15.185 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-12 16:51:15.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.193800000000001ms +2018-09-12 16:51:15.186 +03:00 [INF] Request finished in 15.1045ms 200 text/plain; charset=utf-8 +2018-09-12 16:51:15.722 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", area = "", action = "", controller = ""}. Executing action /Blog/Posts/Detail +2018-09-12 16:51:15.733 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-12 16:51:15.741 +03:00 [INF] Executed action /Blog/Posts/Detail in 18.1228ms +2018-09-12 16:51:15.778 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 36 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 74 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 50 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-12 16:51:15.827 +03:00 [INF] Request finished in 723.4882ms 500 text/html; charset=utf-8 +2018-09-21 10:10:52.385 +03:00 [INF] Loaded modules: +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:10:52.400 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:10:52.401 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:10:52.402 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:10:52.402 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:10:52.402 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:10:52.402 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:10:52.554 +03:00 [FTL] Application startup exception +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.MissingMethodException: Method not found: 'Void Volo.Abp.AutoMapper.AutoMapperExpressionExtensions.Ignore(AutoMapper.IMappingExpression`2, System.Linq.Expressions.Expression`1>)'. + at Volo.Blogging.BloggingApplicationAutoMapperProfile..ctor() + --- End of inner exception stack trace --- + at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean wrapExceptions, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor) + at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean wrapExceptions, Boolean skipCheckThis, Boolean fillCache) + at System.Activator.CreateInstance[T]() + at AutoMapper.Configuration.MapperConfigurationExpression.AddProfile[TProfile]() + at Volo.Abp.AutoMapper.AbpAutoMapperOptions.<>c__12`1.b__12_0(IAbpAutoMapperConfigurationContext context) in D:\Github\abp\framework\src\Volo.Abp.AutoMapper\Volo\Abp\AutoMapper\AbpAutoMapperOptions.cs:line 28 + at Volo.Abp.AutoMapper.AbpAutoMapperModule.<>c__DisplayClass4_1.g__ConfigureAll|0(IAbpAutoMapperConfigurationContext ctx) in D:\Github\abp\framework\src\Volo.Abp.AutoMapper\Volo\Abp\AutoMapper\AbpAutoMapperModule.cs:line 45 + at Volo.Abp.AutoMapper.AbpAutoMapperModule.<>c__DisplayClass4_1.b__2(IMapperConfigurationExpression mapperConfigurationExpression) in D:\Github\abp\framework\src\Volo.Abp.AutoMapper\Volo\Abp\AutoMapper\AbpAutoMapperModule.cs:line 64 + at AutoMapper.MapperConfiguration.Build(Action`1 configure) + at AutoMapper.Mapper.Initialize(Action`1 config) + at Volo.Abp.AutoMapper.AbpAutoMapperModule.CreateMappings(IServiceProvider serviceProvider) in D:\Github\abp\framework\src\Volo.Abp.AutoMapper\Volo\Abp\AutoMapper\AbpAutoMapperModule.cs:line 62 + at Volo.Abp.AutoMapper.AbpAutoMapperModule.OnPreApplicationInitialization(ApplicationInitializationContext context) in D:\Github\abp\framework\src\Volo.Abp.AutoMapper\Volo\Abp\AutoMapper\AbpAutoMapperModule.cs:line 29 + at Volo.Abp.Modularity.OnPreApplicationInitializationModuleLifecycleContributer.Initialize(ApplicationInitializationContext context, IAbpModule module) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\DefaultModuleLifecycleContributer.cs:line 23 + at Volo.Abp.Modularity.ModuleManager.InitializeModules(ApplicationInitializationContext context) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Modularity\ModuleManager.cs:line 41 + at Volo.Abp.AbpApplicationBase.InitializeModules() in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationBase.cs:line 72 + at Volo.Abp.AbpApplicationWithExternalServiceProvider.Initialize(IServiceProvider serviceProvider) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\AbpApplicationWithExternalServiceProvider.cs:line 27 + at Microsoft.AspNetCore.Builder.AbpApplicationBuilderExtensions.InitializeApplication(IApplicationBuilder app) in D:\Github\abp\framework\src\Volo.Abp.AspNetCore\Microsoft\AspNetCore\Builder\AbpApplicationBuilderExtensions.cs:line 27 + at Volo.AbpWebSite.Startup.Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) in D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Startup.cs:line 36 +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.Configure(IApplicationBuilder app) + at Microsoft.AspNetCore.Server.IISIntegration.IISSetupFilter.<>c__DisplayClass4_0.b__0(IApplicationBuilder app) + at Microsoft.AspNetCore.Hosting.Internal.AutoRequestServicesStartupFilter.<>c__DisplayClass0_0.b__0(IApplicationBuilder builder) + at Microsoft.AspNetCore.Hosting.Internal.WebHost.BuildApplication() +2018-09-21 10:10:52.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:10:52.785 +03:00 [INF] Request finished in 39.8748ms 500 text/html; charset=utf-8 +2018-09-21 10:10:52.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:10:52.888 +03:00 [INF] Request finished in 13.3047ms 500 text/html; charset=utf-8 +2018-09-21 10:20:01.418 +03:00 [INF] Loaded modules: +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:20:01.435 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:20:01.436 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:20:01.438 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:20:01.438 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:20:01.438 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:20:01.438 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:20:03.117 +03:00 [INF] Initialized all modules. +2018-09-21 10:20:03.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:20:03.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:03.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:05.551 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:20:05.570 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:20:06.886 +03:00 [INF] Executed action /Index in 1329.596ms +2018-09-21 10:20:06.903 +03:00 [INF] Request finished in 3636.9085ms 200 text/html; charset=utf-8 +2018-09-21 10:20:06.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:20:06.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:20:06.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:20:06.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.953 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 10:20:06.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:20:06.953 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 10:20:06.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:20:06.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:20:06.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.954 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 10:20:06.956 +03:00 [INF] Request finished in 6.6321ms 304 text/css +2018-09-21 10:20:06.956 +03:00 [INF] Request finished in 2.3325ms 304 text/css +2018-09-21 10:20:06.956 +03:00 [INF] Request finished in 5.4973ms 304 text/css +2018-09-21 10:20:06.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:20:06.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:20:06.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.978 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:20:06.978 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:20:06.978 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:20:06.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:20:06.978 +03:00 [INF] Request finished in 10.4863ms 200 text/css +2018-09-21 10:20:06.978 +03:00 [INF] Request finished in 25.3927ms 200 text/css +2018-09-21 10:20:06.978 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:20:06.978 +03:00 [INF] Request finished in 31.7547ms 200 text/css +2018-09-21 10:20:06.978 +03:00 [INF] Request finished in 10.8287ms 200 text/css +2018-09-21 10:20:06.978 +03:00 [INF] Request finished in 25.5185ms 200 text/css +2018-09-21 10:20:06.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 10:20:06.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:20:06.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 10:20:06.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 10:20:06.992 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:20:06.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.992 +03:00 [INF] Request finished in 1.6404ms 200 image/svg+xml +2018-09-21 10:20:06.992 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 10:20:06.992 +03:00 [INF] Request finished in 1.9213ms 200 image/png +2018-09-21 10:20:06.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.992 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-21 10:20:06.993 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 10:20:06.993 +03:00 [INF] Request finished in 1.1256ms 304 image/png +2018-09-21 10:20:06.993 +03:00 [INF] Request finished in 2.2713ms 200 image/png +2018-09-21 10:20:06.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 10:20:06.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:06.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:06.998 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-09-21 10:20:06.999 +03:00 [INF] Request finished in 3.2236ms 304 image/png +2018-09-21 10:20:07.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 10:20:07.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 10:20:07.003 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-09-21 10:20:07.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.003 +03:00 [INF] Request finished in 1.4359ms 304 image/png +2018-09-21 10:20:07.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.003 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-09-21 10:20:07.004 +03:00 [INF] Request finished in 1.9273ms 304 image/png +2018-09-21 10:20:07.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 10:20:07.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.007 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-09-21 10:20:07.007 +03:00 [INF] Request finished in 2.4856ms 304 image/png +2018-09-21 10:20:07.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:20:07.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 10:20:07.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.016 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 10:20:07.016 +03:00 [INF] Request finished in 3.5522ms 200 image/png +2018-09-21 10:20:07.016 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 10:20:07.016 +03:00 [INF] Request finished in 5.8422ms 200 image/png +2018-09-21 10:20:07.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:20:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 10:20:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.019 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 10:20:07.019 +03:00 [INF] Request finished in 2.2271ms 200 image/png +2018-09-21 10:20:07.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 10:20:07.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.022 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 10:20:07.022 +03:00 [INF] Request finished in 4.4319ms 200 image/png +2018-09-21 10:20:07.023 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 10:20:07.024 +03:00 [INF] Request finished in 1.989ms 200 image/png +2018-09-21 10:20:07.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 10:20:07.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 10:20:07.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.024 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-21 10:20:07.025 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-21 10:20:07.025 +03:00 [INF] Request finished in 0.6829ms 304 image/png +2018-09-21 10:20:07.025 +03:00 [INF] Request finished in 0.6504ms 304 image/png +2018-09-21 10:20:07.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 10:20:07.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.034 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-21 10:20:07.035 +03:00 [INF] Request finished in 0.684ms 304 image/png +2018-09-21 10:20:07.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:20:07.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 10:20:07.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.037 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 10:20:07.037 +03:00 [INF] Request finished in 1.6809ms 200 image/png +2018-09-21 10:20:07.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 10:20:07.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 10:20:07.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.054 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 10:20:07.054 +03:00 [INF] Request finished in 1.6011ms 200 image/png +2018-09-21 10:20:07.055 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 10:20:07.056 +03:00 [INF] Request finished in 2.6513ms 200 image/png +2018-09-21 10:20:07.061 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 10:20:07.061 +03:00 [INF] Request finished in 24.4221ms 200 image/png +2018-09-21 10:20:07.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 10:20:07.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.066 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 10:20:07.067 +03:00 [INF] Request finished in 3.7483ms 200 image/png +2018-09-21 10:20:07.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 10:20:07.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.072 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 10:20:07.073 +03:00 [INF] Request finished in 4.1301ms 200 image/png +2018-09-21 10:20:07.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 10:20:07.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 10:20:07.078 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 10:20:07.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.078 +03:00 [INF] Request finished in 5.0563ms 200 image/png +2018-09-21 10:20:07.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.080 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 10:20:07.080 +03:00 [INF] Request finished in 2.7008ms 200 image/png +2018-09-21 10:20:07.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:20:07.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.084 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 10:20:07.084 +03:00 [INF] Request finished in 2.3784ms 200 image/png +2018-09-21 10:20:07.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 10:20:07.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.089 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 10:20:07.089 +03:00 [INF] Request finished in 1.5946ms 200 image/png +2018-09-21 10:20:07.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 10:20:07.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.095 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 10:20:07.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 10:20:07.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.096 +03:00 [INF] Request finished in 2.9957ms 200 image/png +2018-09-21 10:20:07.097 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 10:20:07.098 +03:00 [INF] Request finished in 1.5762ms 200 image/png +2018-09-21 10:20:07.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:20:07.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.104 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 10:20:07.104 +03:00 [INF] Request finished in 2.3439ms 200 image/png +2018-09-21 10:20:07.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 10:20:07.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.107 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 10:20:07.107 +03:00 [INF] Request finished in 1.7262ms 200 image/png +2018-09-21 10:20:07.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 10:20:07.109 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.113 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 10:20:07.113 +03:00 [INF] Request finished in 3.9505ms 200 image/png +2018-09-21 10:20:07.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 10:20:07.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:20:07.119 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 10:20:07.120 +03:00 [INF] Request finished in 3.8663ms 200 image/png +2018-09-21 10:20:07.120 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.120 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.122 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 10:20:07.122 +03:00 [INF] Request finished in 2.6448ms 200 image/png +2018-09-21 10:20:07.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 10:20:07.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 10:20:07.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.131 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 10:20:07.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.131 +03:00 [INF] Request finished in 5.7417ms 200 image/png +2018-09-21 10:20:07.133 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 10:20:07.133 +03:00 [INF] Request finished in 2.7893ms 200 image/png +2018-09-21 10:20:07.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 10:20:07.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.137 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 10:20:07.137 +03:00 [INF] Request finished in 2.4445ms 200 image/png +2018-09-21 10:20:07.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:20:07.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.151 +03:00 [INF] Request finished in 3.2386ms 404 +2018-09-21 10:20:07.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:20:07.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:20:07.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:20:07.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.156 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 10:20:07.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.156 +03:00 [INF] Request finished in 2.4055ms 304 image/svg+xml +2018-09-21 10:20:07.156 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 10:20:07.156 +03:00 [INF] Request finished in 0.8793ms 304 application/javascript +2018-09-21 10:20:07.157 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 10:20:07.157 +03:00 [INF] Request finished in 1.4551ms 304 application/javascript +2018-09-21 10:20:07.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:20:07.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.159 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 10:20:07.159 +03:00 [INF] Request finished in 1.3752ms 304 application/javascript +2018-09-21 10:20:07.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:20:07.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.166 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 10:20:07.166 +03:00 [INF] Request finished in 1.779ms 304 application/javascript +2018-09-21 10:20:07.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:20:07.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:20:07.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.167 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 10:20:07.167 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 10:20:07.167 +03:00 [INF] Request finished in 0.8061ms 304 application/javascript +2018-09-21 10:20:07.167 +03:00 [INF] Request finished in 0.8453ms 304 application/javascript +2018-09-21 10:20:07.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:20:07.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.168 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 10:20:07.168 +03:00 [INF] Request finished in 1.1422ms 304 application/javascript +2018-09-21 10:20:07.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:20:07.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.169 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 10:20:07.170 +03:00 [INF] Request finished in 2.8738ms 304 application/javascript +2018-09-21 10:20:07.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:20:07.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.171 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 10:20:07.171 +03:00 [INF] Request finished in 1.0828ms 304 application/javascript +2018-09-21 10:20:07.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:20:07.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:20:07.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:20:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.183 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 10:20:07.183 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 10:20:07.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.183 +03:00 [INF] Request finished in 0.9075ms 304 application/javascript +2018-09-21 10:20:07.183 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 10:20:07.183 +03:00 [INF] Request finished in 1.068ms 304 application/javascript +2018-09-21 10:20:07.183 +03:00 [INF] Request finished in 1.5997ms 304 application/javascript +2018-09-21 10:20:07.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.183 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 10:20:07.183 +03:00 [INF] Request finished in 1.1742ms 304 application/javascript +2018-09-21 10:20:07.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:20:07.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.188 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 10:20:07.188 +03:00 [INF] Request finished in 1.0296ms 304 application/javascript +2018-09-21 10:20:07.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:20:07.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.192 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 10:20:07.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:20:07.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.194 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 10:20:07.194 +03:00 [INF] Request finished in 2.0907ms 304 application/javascript +2018-09-21 10:20:07.195 +03:00 [INF] Request finished in 2.8802ms 304 application/javascript +2018-09-21 10:20:07.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:20:07.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:20:07.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.200 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 10:20:07.200 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 10:20:07.200 +03:00 [INF] Request finished in 1.058ms 304 application/javascript +2018-09-21 10:20:07.200 +03:00 [INF] Request finished in 0.8234ms 304 application/javascript +2018-09-21 10:20:07.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:20:07.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.202 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 10:20:07.202 +03:00 [INF] Request finished in 0.8819ms 304 application/javascript +2018-09-21 10:20:07.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:20:07.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.206 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 10:20:07.206 +03:00 [INF] Request finished in 0.9296ms 304 application/javascript +2018-09-21 10:20:07.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:20:07.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.211 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:20:07.211 +03:00 [INF] Request finished in 3.8216ms 200 application/javascript +2018-09-21 10:20:07.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:20:07.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:20:07.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:20:07.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.219 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 10:20:07.219 +03:00 [INF] Request finished in 1.0116ms 304 application/javascript +2018-09-21 10:20:07.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:20:07.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.222 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 10:20:07.222 +03:00 [INF] Request finished in 2.3696ms 304 application/javascript +2018-09-21 10:20:07.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:20:07.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.229 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 10:20:07.230 +03:00 [INF] Request finished in 1.46ms 304 image/jpeg +2018-09-21 10:20:07.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:20:07.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.232 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-09-21 10:20:07.232 +03:00 [INF] Request finished in 2.1142ms 304 font/woff2 +2018-09-21 10:20:07.237 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:20:07.239 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:20:07.288 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:20:07.296 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:20:07.343 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.343 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.369 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.370 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.371 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.372 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.372 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.372 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.372 +03:00 [INF] Authorization failed. +2018-09-21 10:20:07.398 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 104.6019ms. +2018-09-21 10:20:07.401 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 104.1688ms. +2018-09-21 10:20:07.403 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:20:07.403 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:20:07.404 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 166.5089ms +2018-09-21 10:20:07.404 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 164.7681ms +2018-09-21 10:20:07.404 +03:00 [INF] Request finished in 190.0135ms 200 text/plain; charset=utf-8 +2018-09-21 10:20:07.404 +03:00 [INF] Request finished in 189.1497ms 200 text/plain; charset=utf-8 +2018-09-21 10:20:07.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:20:07.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.417 +03:00 [INF] Request finished in 1.2245ms 404 +2018-09-21 10:20:07.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:20:07.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 10:20:07.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:07.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:07.538 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 10:20:07.538 +03:00 [INF] Request finished in 1.718ms 304 image/png +2018-09-21 10:20:07.539 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 10:20:07.539 +03:00 [INF] Request finished in 1.2689ms 304 image/png +2018-09-21 10:20:10.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:20:10.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:10.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:10.663 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:20:10.839 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:20:10.953 +03:00 [INF] Executed action /Blog/Posts/Index in 290.4392ms +2018-09-21 10:20:11.011 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'Facebook'. +Invalid column name 'Github'. +Invalid column name 'Instagram'. +Invalid column name 'StackOverflow'. +Invalid column name 'Twitter'. + at System.Data.SqlClient.SqlCommand.<>c.b__122_0(Task`1 result) + at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke() + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteAsync(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary`2 parameterValues, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.AsyncQueryingEnumerable`1.AsyncEnumerator.BufferlessMoveNext(DbContext _, Boolean buffer, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.SqlServerExecutionStrategy.ExecuteAsync[TState,TResult](TState state, Func`4 operation, Func`4 verifySucceeded, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.AsyncQueryingEnumerable`1.AsyncEnumerator.MoveNext(CancellationToken cancellationToken) + at System.Linq.AsyncEnumerable.FirstOrDefault_[TSource](IAsyncEnumerable`1 source, CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.AsyncLinqOperatorProvider.TaskResultAsyncEnumerable`1.Enumerator.MoveNext(CancellationToken cancellationToken) + at System.Linq.AsyncEnumerable.SelectEnumerableAsyncIterator`2.MoveNextCore(CancellationToken cancellationToken) + at System.Linq.AsyncEnumerable.AsyncIterator`1.MoveNext(CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.AsyncLinqOperatorProvider.ExceptionInterceptor`1.EnumeratorExceptionInterceptor.MoveNext(CancellationToken cancellationToken) + at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.ExecuteSingletonAsyncQuery[TResult](QueryContext queryContext, Func`2 compiledQuery, IDiagnosticsLogger`1 logger, Type contextType) + at Volo.Blogging.Blogs.EfCoreBlogRepository.FindByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Blogs\EfCoreBlogRepository.cs:line 23 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 43 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 40 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +ClientConnectionId:fe082b4c-d623-4092-ae5a-a96e8df76ab2 +Error Number:207,State:1,Class:16 +2018-09-21 10:20:11.125 +03:00 [INF] Request finished in 865.7541ms 500 text/html; charset=utf-8 +2018-09-21 10:20:11.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:20:11.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:11.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:11.162 +03:00 [INF] Request finished in 0.849ms 404 +2018-09-21 10:20:55.825 +03:00 [INF] Loaded modules: +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:20:55.839 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:20:55.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:20:55.841 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:20:55.842 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:20:55.842 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:20:57.388 +03:00 [INF] Initialized all modules. +2018-09-21 10:20:57.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:20:57.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:20:57.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:20:59.801 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:21:00.010 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:00.572 +03:00 [INF] Authorization failed. +2018-09-21 10:21:01.762 +03:00 [INF] Executed action /Blog/Posts/Index in 1957.8439ms +2018-09-21 10:21:01.770 +03:00 [INF] Request finished in 4166.1701ms 200 text/html; charset=utf-8 +2018-09-21 10:21:01.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:21:01.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:21:01.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:21:01.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.801 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 10:21:01.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:21:01.801 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 10:21:01.801 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 10:21:01.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.802 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 10:21:01.804 +03:00 [INF] Request finished in 2.8071ms 304 text/css +2018-09-21 10:21:01.804 +03:00 [INF] Request finished in 8.1531ms 304 text/css +2018-09-21 10:21:01.804 +03:00 [INF] Request finished in 9.3258ms 304 text/css +2018-09-21 10:21:01.804 +03:00 [INF] Request finished in 7.189ms 304 text/css +2018-09-21 10:21:01.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:21:01.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.805 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 10:21:01.805 +03:00 [INF] Request finished in 1.0676ms 304 text/css +2018-09-21 10:21:01.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:21:01.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:21:01.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:21:01.820 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 10:21:01.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.821 +03:00 [INF] Request finished in 5.735ms 304 text/css +2018-09-21 10:21:01.821 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-21 10:21:01.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.821 +03:00 [INF] Request finished in 1.3239ms 304 text/css +2018-09-21 10:21:01.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.822 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 10:21:01.822 +03:00 [INF] Request finished in 1.1525ms 304 text/css +2018-09-21 10:21:01.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:21:01.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.823 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-21 10:21:01.824 +03:00 [INF] Request finished in 0.6189ms 304 text/css +2018-09-21 10:21:01.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:21:01.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.825 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 10:21:01.825 +03:00 [INF] Request finished in 1.0447ms 304 text/css +2018-09-21 10:21:01.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:21:01.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:21:01.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.836 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-21 10:21:01.836 +03:00 [INF] Request finished in 1.3427ms 304 text/css +2018-09-21 10:21:01.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:21:01.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.843 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 10:21:01.843 +03:00 [INF] Request finished in 0.801ms 304 application/javascript +2018-09-21 10:21:01.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:21:01.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.847 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 10:21:01.847 +03:00 [INF] Request finished in 1.213ms 304 application/javascript +2018-09-21 10:21:01.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:21:01.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.852 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 10:21:01.852 +03:00 [INF] Request finished in 2.5302ms 304 application/javascript +2018-09-21 10:21:01.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:21:01.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.856 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:21:01.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.859 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 10:21:01.859 +03:00 [INF] Request finished in 5.141ms 304 application/javascript +2018-09-21 10:21:01.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:01.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:21:01.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:21:01.867 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 10:21:01.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.867 +03:00 [INF] Request finished in 2.1509ms 304 image/jpeg +2018-09-21 10:21:01.868 +03:00 [INF] Request finished in 3.9738ms 404 +2018-09-21 10:21:01.869 +03:00 [INF] Request finished in 7.6096ms 404 +2018-09-21 10:21:01.874 +03:00 [INF] Request finished in 45.2229ms 200 text/css +2018-09-21 10:21:01.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:21:01.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:21:01.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.875 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 10:21:01.875 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 10:21:01.875 +03:00 [INF] Request finished in 0.7669ms 304 application/javascript +2018-09-21 10:21:01.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:21:01.875 +03:00 [INF] Request finished in 0.6797ms 304 image/svg+xml +2018-09-21 10:21:01.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.876 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 10:21:01.876 +03:00 [INF] Request finished in 1.2772ms 304 image/svg+xml +2018-09-21 10:21:01.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:21:01.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:21:01.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:21:01.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.887 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 10:21:01.887 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 10:21:01.887 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 10:21:01.888 +03:00 [INF] Request finished in 0.7371ms 304 application/javascript +2018-09-21 10:21:01.888 +03:00 [INF] Request finished in 3.5599ms 304 application/javascript +2018-09-21 10:21:01.888 +03:00 [INF] Request finished in 0.8199ms 304 application/javascript +2018-09-21 10:21:01.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:21:01.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.891 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 10:21:01.891 +03:00 [INF] Request finished in 1.3233ms 304 application/javascript +2018-09-21 10:21:01.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:21:01.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.903 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 10:21:01.903 +03:00 [INF] Request finished in 0.8252ms 304 application/javascript +2018-09-21 10:21:01.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:21:01.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.904 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 10:21:01.904 +03:00 [INF] Request finished in 0.675ms 304 application/javascript +2018-09-21 10:21:01.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:21:01.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.912 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 10:21:01.913 +03:00 [INF] Request finished in 2.7843ms 304 application/javascript +2018-09-21 10:21:01.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:21:01.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.914 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 10:21:01.914 +03:00 [INF] Request finished in 0.8932ms 304 application/javascript +2018-09-21 10:21:01.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:21:01.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.920 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 10:21:01.921 +03:00 [INF] Request finished in 2.3596ms 304 application/javascript +2018-09-21 10:21:01.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:21:01.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.923 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 10:21:01.925 +03:00 [INF] Request finished in 2.5048ms 304 application/javascript +2018-09-21 10:21:01.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:21:01.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.926 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 10:21:01.926 +03:00 [INF] Request finished in 1.2074ms 304 application/javascript +2018-09-21 10:21:01.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:21:01.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.937 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 10:21:01.937 +03:00 [INF] Request finished in 2.8585ms 304 application/javascript +2018-09-21 10:21:01.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:21:01.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.943 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 10:21:01.944 +03:00 [INF] Request finished in 2.7089ms 304 application/javascript +2018-09-21 10:21:01.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:21:01.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.944 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 10:21:01.945 +03:00 [INF] Request finished in 1.048ms 304 application/javascript +2018-09-21 10:21:01.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:21:01.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.946 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 10:21:01.947 +03:00 [INF] Request finished in 1.3683ms 304 application/javascript +2018-09-21 10:21:01.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:21:01.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.955 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 10:21:01.955 +03:00 [INF] Request finished in 2.0009ms 304 application/javascript +2018-09-21 10:21:01.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:21:01.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:21:01.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:21:01.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.966 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 10:21:01.966 +03:00 [INF] Request finished in 3.5447ms 304 application/javascript +2018-09-21 10:21:01.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:21:01.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.976 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 10:21:01.976 +03:00 [INF] Request finished in 1.392ms 304 application/javascript +2018-09-21 10:21:01.990 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:01.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:21:01.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:21:01.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.992 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 10:21:01.992 +03:00 [INF] Request finished in 0.7313ms 304 application/javascript +2018-09-21 10:21:01.992 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:21:01.992 +03:00 [INF] Request finished in 1.9566ms 200 application/javascript +2018-09-21 10:21:01.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:21:01.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:01.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:01.997 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:21:01.997 +03:00 [INF] Request finished in 2.7832ms 200 application/javascript +2018-09-21 10:21:01.997 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:02.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:21:02.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:02.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:02.017 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 10:21:02.018 +03:00 [INF] Request finished in 0.7835ms 304 image/jpeg +2018-09-21 10:21:02.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:21:02.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:02.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:02.027 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-09-21 10:21:02.027 +03:00 [INF] Request finished in 2.0948ms 304 font/woff2 +2018-09-21 10:21:02.047 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:21:02.052 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:21:02.064 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.064 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.064 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.065 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.065 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.065 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.066 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.067 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.068 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.068 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.068 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.068 +03:00 [INF] Authorization failed. +2018-09-21 10:21:02.119 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 60.049800000000005ms. +2018-09-21 10:21:02.135 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:02.137 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 140.04340000000002ms +2018-09-21 10:21:02.138 +03:00 [INF] Request finished in 181.3747ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:02.173 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 125.6982ms. +2018-09-21 10:21:02.173 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:02.174 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 183.2493ms +2018-09-21 10:21:02.174 +03:00 [INF] Request finished in 215.1981ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:02.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:02.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:02.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:02.280 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 10:21:02.280 +03:00 [INF] Request finished in 1.1516ms 304 image/png +2018-09-21 10:21:02.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:02.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:02.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:02.285 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:02.285 +03:00 [INF] Request finished in 3.6214ms 200 image/png +2018-09-21 10:21:11.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:21:11.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.076 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:21:11.080 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:11.098 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.106 +03:00 [INF] Executed action /Blog/Posts/Index in 30.6258ms +2018-09-21 10:21:11.107 +03:00 [INF] Request finished in 33.4765ms 200 text/html; charset=utf-8 +2018-09-21 10:21:11.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:21:11.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:21:11.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.153 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:21:11.153 +03:00 [INF] Request finished in 3.5827ms 200 text/css +2018-09-21 10:21:11.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:21:11.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.157 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:21:11.157 +03:00 [INF] Request finished in 1.8703ms 200 text/css +2018-09-21 10:21:11.159 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:21:11.159 +03:00 [INF] Request finished in 17.43ms 200 text/css +2018-09-21 10:21:11.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:21:11.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.167 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:21:11.167 +03:00 [INF] Request finished in 1.8616ms 200 text/css +2018-09-21 10:21:11.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:21:11.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.172 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:21:11.172 +03:00 [INF] Request finished in 1.8544ms 200 text/css +2018-09-21 10:21:11.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:21:11.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.180 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:21:11.180 +03:00 [INF] Request finished in 1.417ms 200 text/css +2018-09-21 10:21:11.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:21:11.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.187 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:21:11.187 +03:00 [INF] Request finished in 1.119ms 200 text/css +2018-09-21 10:21:11.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:21:11.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.198 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:21:11.198 +03:00 [INF] Request finished in 1.3891ms 200 text/css +2018-09-21 10:21:11.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:21:11.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.206 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:21:11.206 +03:00 [INF] Request finished in 2.1319ms 200 text/css +2018-09-21 10:21:11.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:21:11.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.215 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:21:11.215 +03:00 [INF] Request finished in 2.013ms 200 text/css +2018-09-21 10:21:11.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:21:11.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.217 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:21:11.218 +03:00 [INF] Request finished in 1.8002ms 200 text/css +2018-09-21 10:21:11.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:21:11.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.225 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:21:11.226 +03:00 [INF] Request finished in 3.4022ms 200 text/css +2018-09-21 10:21:11.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:21:11.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:21:11.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.228 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:21:11.229 +03:00 [INF] Request finished in 1.831ms 200 application/javascript +2018-09-21 10:21:11.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:21:11.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:21:11.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.232 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:21:11.232 +03:00 [INF] Request finished in 1.9189ms 200 image/svg+xml +2018-09-21 10:21:11.233 +03:00 [INF] Request finished in 1.0346ms 404 +2018-09-21 10:21:11.239 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:21:11.239 +03:00 [INF] Request finished in 11.8283ms 200 application/javascript +2018-09-21 10:21:11.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:21:11.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:21:11.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:21:11.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.244 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:21:11.244 +03:00 [INF] Request finished in 1.733ms 200 application/javascript +2018-09-21 10:21:11.244 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:21:11.244 +03:00 [INF] Request finished in 1.2644ms 200 image/svg+xml +2018-09-21 10:21:11.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:21:11.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.257 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:21:11.257 +03:00 [INF] Request finished in 16.4366ms 200 image/jpeg +2018-09-21 10:21:11.258 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:21:11.258 +03:00 [INF] Request finished in 11.216ms 200 application/javascript +2018-09-21 10:21:11.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:21:11.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:21:11.263 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:21:11.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.264 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:21:11.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:11.264 +03:00 [INF] Request finished in 1.5218ms 200 application/javascript +2018-09-21 10:21:11.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.264 +03:00 [INF] Request finished in 2.0989ms 200 application/javascript +2018-09-21 10:21:11.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.266 +03:00 [INF] Request finished in 2.2351ms 404 +2018-09-21 10:21:11.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:21:11.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:21:11.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.282 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:21:11.283 +03:00 [INF] Request finished in 3.8988ms 200 application/javascript +2018-09-21 10:21:11.284 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:21:11.284 +03:00 [INF] Request finished in 4.3927ms 200 application/javascript +2018-09-21 10:21:11.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:21:11.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:21:11.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.299 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:21:11.299 +03:00 [INF] Request finished in 0.9923ms 200 application/javascript +2018-09-21 10:21:11.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:21:11.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.302 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:21:11.303 +03:00 [INF] Request finished in 3.6122ms 200 application/javascript +2018-09-21 10:21:11.309 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:21:11.309 +03:00 [INF] Request finished in 17.6737ms 200 application/javascript +2018-09-21 10:21:11.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:21:11.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.315 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:21:11.316 +03:00 [INF] Request finished in 1.9563ms 200 application/javascript +2018-09-21 10:21:11.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:21:11.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.317 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:21:11.317 +03:00 [INF] Request finished in 1.4007ms 200 application/javascript +2018-09-21 10:21:11.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:21:11.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:21:11.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.325 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:21:11.325 +03:00 [INF] Request finished in 1.7583ms 200 application/javascript +2018-09-21 10:21:11.326 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:21:11.326 +03:00 [INF] Request finished in 2.3835ms 200 application/javascript +2018-09-21 10:21:11.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:21:11.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.363 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:21:11.363 +03:00 [INF] Request finished in 1.8965ms 200 application/javascript +2018-09-21 10:21:11.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:21:11.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.372 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:21:11.372 +03:00 [INF] Request finished in 1.2365ms 200 application/javascript +2018-09-21 10:21:11.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:21:11.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.386 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:21:11.386 +03:00 [INF] Request finished in 1.8673ms 200 application/javascript +2018-09-21 10:21:11.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:21:11.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.398 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:21:11.398 +03:00 [INF] Request finished in 1.3556ms 200 application/javascript +2018-09-21 10:21:11.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:21:11.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.406 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:21:11.406 +03:00 [INF] Request finished in 1.3766ms 200 application/javascript +2018-09-21 10:21:11.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:21:11.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.412 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:21:11.412 +03:00 [INF] Request finished in 1.3162ms 200 application/javascript +2018-09-21 10:21:11.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:21:11.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.417 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:11.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:21:11.418 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:21:11.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.418 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.418 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.418 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.418 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.419 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2414ms. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5934000000000001ms +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Authorization failed. +2018-09-21 10:21:11.420 +03:00 [INF] Request finished in 2.7615ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:11.422 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3736000000000006ms. +2018-09-21 10:21:11.423 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:11.423 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.8315ms +2018-09-21 10:21:11.423 +03:00 [INF] Request finished in 7.739ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:11.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:21:11.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.425 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:21:11.426 +03:00 [INF] Request finished in 2.7649ms 200 application/javascript +2018-09-21 10:21:11.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:21:11.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.430 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:21:11.430 +03:00 [INF] Request finished in 1.1712ms 200 application/javascript +2018-09-21 10:21:11.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:21:11.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.436 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:21:11.437 +03:00 [INF] Request finished in 2.2494ms 200 application/javascript +2018-09-21 10:21:11.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:21:11.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.441 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:21:11.442 +03:00 [INF] Request finished in 1.7553ms 200 application/javascript +2018-09-21 10:21:11.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:21:11.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.445 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:21:11.446 +03:00 [INF] Request finished in 1.4721ms 200 application/javascript +2018-09-21 10:21:11.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:21:11.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.471 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:21:11.472 +03:00 [INF] Request finished in 6.0692ms 200 font/woff2 +2018-09-21 10:21:11.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:21:11.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.514 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:21:11.514 +03:00 [INF] Request finished in 11.2235ms 200 image/jpeg +2018-09-21 10:21:11.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:11.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.536 +03:00 [INF] Request finished in 1.0776ms 404 +2018-09-21 10:21:11.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:11.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.720 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:21:11.720 +03:00 [INF] Request finished in 2.3205ms 200 image/png +2018-09-21 10:21:11.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:11.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:11.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:11.721 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:11.721 +03:00 [INF] Request finished in 1.1182ms 200 image/png +2018-09-21 10:21:20.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:21:20.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:20.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.119 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:21:21.129 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:21.293 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.293 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.299 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.310 +03:00 [INF] Executed action /Blog/Posts/Detail in 190.5148ms +2018-09-21 10:21:21.310 +03:00 [INF] Request finished in 565.8123ms 200 text/html; charset=utf-8 +2018-09-21 10:21:21.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:21:21.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:21:21.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.364 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:21:21.365 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:21:21.365 +03:00 [INF] Request finished in 3.9884ms 200 text/css +2018-09-21 10:21:21.365 +03:00 [INF] Request finished in 1.4145ms 200 text/css +2018-09-21 10:21:21.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:21:21.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:21:21.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.371 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:21:21.371 +03:00 [INF] Request finished in 1.3675ms 200 text/css +2018-09-21 10:21:21.371 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:21:21.371 +03:00 [INF] Request finished in 1.3829ms 200 text/css +2018-09-21 10:21:21.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:21:21.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.374 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:21:21.374 +03:00 [INF] Request finished in 1.8841ms 200 text/css +2018-09-21 10:21:21.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:21:21.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.382 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:21:21.382 +03:00 [INF] Request finished in 1.3771ms 200 text/css +2018-09-21 10:21:21.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:21:21.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.391 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:21:21.391 +03:00 [INF] Request finished in 1.512ms 200 text/css +2018-09-21 10:21:21.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:21:21.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.394 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:21:21.395 +03:00 [INF] Request finished in 1.8539ms 200 text/css +2018-09-21 10:21:21.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:21:21.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.409 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:21:21.410 +03:00 [INF] Request finished in 2.5213ms 200 text/css +2018-09-21 10:21:21.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:21:21.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.416 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:21:21.416 +03:00 [INF] Request finished in 2.3024ms 200 image/png +2018-09-21 10:21:21.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:21:21.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.424 +03:00 [INF] Request finished in 2.0501ms 404 +2018-09-21 10:21:21.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:21:21.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:21:21.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.428 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:21:21.428 +03:00 [INF] Request finished in 1.146ms 200 application/javascript +2018-09-21 10:21:21.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:21:21.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.431 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:21:21.431 +03:00 [INF] Request finished in 4.7342ms 200 application/javascript +2018-09-21 10:21:21.432 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:21:21.432 +03:00 [INF] Request finished in 1.0618ms 200 application/javascript +2018-09-21 10:21:21.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:21:21.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.445 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:21:21.446 +03:00 [INF] Request finished in 6.3394ms 200 application/javascript +2018-09-21 10:21:21.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:21.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.452 +03:00 [INF] Request finished in 3.2909ms 404 +2018-09-21 10:21:21.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:21:21.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.458 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:21:21.458 +03:00 [INF] Request finished in 1.5878ms 200 application/javascript +2018-09-21 10:21:21.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:21:21.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.463 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:21:21.463 +03:00 [INF] Request finished in 2.7322ms 200 application/javascript +2018-09-21 10:21:21.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:21:21.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:21:21.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.466 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:21:21.466 +03:00 [INF] Request finished in 3.1608ms 200 application/javascript +2018-09-21 10:21:21.472 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:21:21.472 +03:00 [INF] Request finished in 7.1129ms 200 application/javascript +2018-09-21 10:21:21.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:21:21.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:21:21.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.480 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:21:21.481 +03:00 [INF] Request finished in 1.5378ms 200 application/javascript +2018-09-21 10:21:21.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:21:21.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.483 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:21:21.483 +03:00 [INF] Request finished in 1.2901ms 200 application/javascript +2018-09-21 10:21:21.495 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:21:21.495 +03:00 [INF] Request finished in 15.7411ms 200 application/javascript +2018-09-21 10:21:21.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:21:21.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.497 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:21:21.497 +03:00 [INF] Request finished in 1.5123ms 200 application/javascript +2018-09-21 10:21:21.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:21:21.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:21:21.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.501 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:21:21.503 +03:00 [INF] Request finished in 3.5441ms 200 application/javascript +2018-09-21 10:21:21.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.504 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:21:21.504 +03:00 [INF] Request finished in 4.8294ms 200 image/svg+xml +2018-09-21 10:21:21.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:21:21.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:21:21.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.519 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:21:21.520 +03:00 [INF] Request finished in 4.1553ms 200 image/svg+xml +2018-09-21 10:21:21.520 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:21:21.521 +03:00 [INF] Request finished in 2.4175ms 200 application/javascript +2018-09-21 10:21:21.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:21:21.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.527 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:21:21.528 +03:00 [INF] Request finished in 2.6966ms 200 application/javascript +2018-09-21 10:21:21.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:21:21.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.537 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:21:21.537 +03:00 [INF] Request finished in 2.5813ms 200 application/javascript +2018-09-21 10:21:21.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:21:21.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.545 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:21:21.545 +03:00 [INF] Request finished in 2.0992ms 200 application/javascript +2018-09-21 10:21:21.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:21:21.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.549 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:21:21.549 +03:00 [INF] Request finished in 1.4574ms 200 application/javascript +2018-09-21 10:21:21.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:21:21.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.556 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:21:21.557 +03:00 [INF] Request finished in 1.6941ms 200 application/javascript +2018-09-21 10:21:21.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:21:21.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.559 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:21:21.560 +03:00 [INF] Request finished in 2.5139ms 200 application/javascript +2018-09-21 10:21:21.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:21:21.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.563 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:21:21.563 +03:00 [INF] Request finished in 2.2595ms 200 application/javascript +2018-09-21 10:21:21.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:21:21.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.571 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:21.572 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:21:21.572 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.573 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.574 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.575 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.575 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.575 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.575 +03:00 [INF] Authorization failed. +2018-09-21 10:21:21.577 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.7532000000000005ms. +2018-09-21 10:21:21.578 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:21.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:21:21.578 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.3298000000000005ms +2018-09-21 10:21:21.578 +03:00 [INF] Request finished in 8.2762ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:21.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.579 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:21.580 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:21:21.580 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1283ms. +2018-09-21 10:21:21.580 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:21.581 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4040000000000001ms +2018-09-21 10:21:21.581 +03:00 [INF] Request finished in 3.0086ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:21.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:21:21.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.584 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:21:21.584 +03:00 [INF] Request finished in 1.7549ms 200 application/javascript +2018-09-21 10:21:21.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:21:21.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.592 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:21:21.592 +03:00 [INF] Request finished in 1.1838ms 200 application/javascript +2018-09-21 10:21:21.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:21:21.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.600 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:21:21.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:21:21.601 +03:00 [INF] Request finished in 1.2666ms 200 application/javascript +2018-09-21 10:21:21.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.602 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:21:21.603 +03:00 [INF] Request finished in 2.101ms 200 application/javascript +2018-09-21 10:21:21.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:21:21.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.660 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:21:21.660 +03:00 [INF] Request finished in 3.3114ms 200 font/woff2 +2018-09-21 10:21:21.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:21:21.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:21:21.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.697 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:21:21.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.698 +03:00 [INF] Request finished in 10.8495ms 200 image/jpeg +2018-09-21 10:21:21.704 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:21:21.704 +03:00 [INF] Request finished in 8.0938ms 200 image/jpeg +2018-09-21 10:21:21.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:21.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.741 +03:00 [INF] Request finished in 1.277ms 404 +2018-09-21 10:21:21.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:21.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.954 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:21:21.955 +03:00 [INF] Request finished in 1.292ms 200 image/png +2018-09-21 10:21:21.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:21.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:21.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:21.962 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:21.962 +03:00 [INF] Request finished in 1.2702ms 200 image/png +2018-09-21 10:21:24.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:21:24.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:24.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:24.849 +03:00 [INF] Request finished in 1.2757ms 404 +2018-09-21 10:21:24.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:24.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:24.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:24.966 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:21:24.966 +03:00 [INF] Request finished in 1.3018ms 200 image/png +2018-09-21 10:21:24.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:24.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:24.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:24.968 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:24.968 +03:00 [INF] Request finished in 1.0524ms 200 image/png +2018-09-21 10:21:41.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp?tagName=abp +2018-09-21 10:21:41.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.204 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:21:41.211 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:41.250 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.259 +03:00 [INF] Executed action /Blog/Posts/Index in 54.8796ms +2018-09-21 10:21:41.259 +03:00 [INF] Request finished in 56.5078ms 200 text/html; charset=utf-8 +2018-09-21 10:21:41.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:21:41.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:21:41.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.311 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:21:41.311 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:21:41.311 +03:00 [INF] Request finished in 8.0995ms 200 text/css +2018-09-21 10:21:41.311 +03:00 [INF] Request finished in 2.9477ms 200 text/css +2018-09-21 10:21:41.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:21:41.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.317 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.318 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:21:41.318 +03:00 [INF] Request finished in 1.5198ms 200 text/css +2018-09-21 10:21:41.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:21:41.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:21:41.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.332 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:21:41.332 +03:00 [INF] Request finished in 2.3506ms 200 text/css +2018-09-21 10:21:41.332 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:21:41.332 +03:00 [INF] Request finished in 1.015ms 200 text/css +2018-09-21 10:21:41.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:21:41.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.340 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:21:41.340 +03:00 [INF] Request finished in 1.2556ms 200 text/css +2018-09-21 10:21:41.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:21:41.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.345 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:21:41.345 +03:00 [INF] Request finished in 1.693ms 200 text/css +2018-09-21 10:21:41.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:21:41.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.347 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:21:41.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:21:41.347 +03:00 [INF] Request finished in 1.7241ms 200 text/css +2018-09-21 10:21:41.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.348 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:21:41.348 +03:00 [INF] Request finished in 1.1569ms 200 text/css +2018-09-21 10:21:41.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:21:41.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.355 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:21:41.355 +03:00 [INF] Request finished in 2.9467ms 200 text/css +2018-09-21 10:21:41.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:21:41.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.357 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:21:41.357 +03:00 [INF] Request finished in 1.8035ms 200 text/css +2018-09-21 10:21:41.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:21:41.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.364 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:21:41.364 +03:00 [INF] Request finished in 1.3894ms 200 text/css +2018-09-21 10:21:41.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:21:41.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.368 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:21:41.368 +03:00 [INF] Request finished in 1.8907ms 200 application/javascript +2018-09-21 10:21:41.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-21 10:21:41.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.374 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:21:41.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:21:41.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:21:41.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.379 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:21:41.379 +03:00 [INF] Request finished in 1.7881ms 200 application/javascript +2018-09-21 10:21:41.383 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:21:41.383 +03:00 [INF] Request finished in 7.867ms 200 application/javascript +2018-09-21 10:21:41.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:21:41.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.392 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:41.397 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:21:41.397 +03:00 [INF] Request finished in 5.8431ms 200 application/javascript +2018-09-21 10:21:41.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:41.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.401 +03:00 [INF] Request finished in 2.2277ms 404 +2018-09-21 10:21:41.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:21:41.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.408 +03:00 [INF] Executed action /Blog/Posts/Detail in 34.1858ms +2018-09-21 10:21:41.409 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:21:41.409 +03:00 [INF] Request finished in 1.645ms 200 application/javascript +2018-09-21 10:21:41.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:21:41.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.417 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:21:41.418 +03:00 [INF] Request finished in 1.5051ms 200 application/javascript +2018-09-21 10:21:41.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:21:41.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.429 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:21:41.429 +03:00 [INF] Request finished in 1.3952ms 200 application/javascript +2018-09-21 10:21:41.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:21:41.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.443 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:21:41.444 +03:00 [INF] Request finished in 9.0424ms 200 application/javascript +2018-09-21 10:21:41.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:21:41.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:21:41.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.449 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:21:41.451 +03:00 [INF] Request finished in 3.3793ms 200 application/javascript +2018-09-21 10:21:41.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:21:41.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.456 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:21:41.456 +03:00 [INF] Request finished in 8.5002ms 200 application/javascript +2018-09-21 10:21:41.458 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:21:41.458 +03:00 [INF] Request finished in 11.8954ms 200 application/javascript +2018-09-21 10:21:41.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:21:41.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.460 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:21:41.462 +03:00 [INF] Request finished in 3.1983ms 200 application/javascript +2018-09-21 10:21:41.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:21:41.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.464 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:21:41.464 +03:00 [INF] Request finished in 2.1772ms 200 application/javascript +2018-09-21 10:21:41.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:21:41.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:21:41.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:21:41.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.477 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:21:41.478 +03:00 [INF] Request finished in 1.5643ms 200 application/javascript +2018-09-21 10:21:41.478 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:21:41.478 +03:00 [INF] Request finished in 1.7739ms 200 application/javascript +2018-09-21 10:21:41.478 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:21:41.478 +03:00 [INF] Request finished in 1.0128ms 200 application/javascript +2018-09-21 10:21:41.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:21:41.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:21:41.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.487 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:21:41.487 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:21:41.487 +03:00 [INF] Request finished in 1.5098ms 200 application/javascript +2018-09-21 10:21:41.487 +03:00 [INF] Request finished in 1.0051ms 200 application/javascript +2018-09-21 10:21:41.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:21:41.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.493 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:21:41.493 +03:00 [INF] Request finished in 3.2151ms 200 application/javascript +2018-09-21 10:21:41.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:21:41.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.500 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:21:41.500 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 50 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 66 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 49 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 10:21:41.500 +03:00 [INF] Request finished in 1.472ms 200 application/javascript +2018-09-21 10:21:41.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:21:41.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:21:41.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.506 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:21:41.506 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:41.506 +03:00 [INF] Request finished in 5.418ms 200 application/javascript +2018-09-21 10:21:41.507 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:21:41.507 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.507 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.507 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.507 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.508 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.509 +03:00 [INF] Authorization failed. +2018-09-21 10:21:41.512 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.2216000000000005ms. +2018-09-21 10:21:41.512 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:41.513 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.3984000000000005ms +2018-09-21 10:21:41.513 +03:00 [INF] Request finished in 12.1575ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:41.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:21:41.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.519 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:21:41.519 +03:00 [INF] Request finished in 1.4503ms 200 application/javascript +2018-09-21 10:21:41.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:21:41.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.526 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:41.526 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:21:41.527 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11280000000000001ms. +2018-09-21 10:21:41.527 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:41.527 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3095ms +2018-09-21 10:21:41.527 +03:00 [INF] Request finished in 2.9404ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:41.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:21:41.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.528 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:21:41.529 +03:00 [INF] Request finished in 1.1704ms 200 application/javascript +2018-09-21 10:21:41.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:21:41.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.534 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:21:41.534 +03:00 [INF] Request finished in 1.9006ms 200 application/javascript +2018-09-21 10:21:41.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:21:41.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.538 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:21:41.538 +03:00 [INF] Request finished in 1.6022ms 200 application/javascript +2018-09-21 10:21:41.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:21:41.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.545 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:21:41.545 +03:00 [INF] Request finished in 1.8666ms 200 application/javascript +2018-09-21 10:21:41.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:21:41.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.547 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:21:41.548 +03:00 [INF] Request finished in 0.973ms 200 image/svg+xml +2018-09-21 10:21:41.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:21:41.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.563 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:21:41.563 +03:00 [INF] Request finished in 6.6696ms 200 image/jpeg +2018-09-21 10:21:41.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:21:41.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.572 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:21:41.572 +03:00 [INF] Request finished in 2.3942ms 200 image/svg+xml +2018-09-21 10:21:41.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:21:41.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.590 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:21:41.591 +03:00 [INF] Request finished in 3.1729ms 200 font/woff2 +2018-09-21 10:21:41.591 +03:00 [INF] Request finished in 219.5959ms 500 text/html; charset=utf-8 +2018-09-21 10:21:41.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:21:41.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.661 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:21:41.662 +03:00 [INF] Request finished in 15.4786ms 200 image/jpeg +2018-09-21 10:21:41.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:41.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.677 +03:00 [INF] Request finished in 2.2733ms 404 +2018-09-21 10:21:41.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:41.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.905 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:21:41.905 +03:00 [INF] Request finished in 3.0735ms 200 image/png +2018-09-21 10:21:41.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:41.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:41.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:41.909 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:41.909 +03:00 [INF] Request finished in 3.2837ms 200 image/png +2018-09-21 10:21:45.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:21:45.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.490 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:21:45.497 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:21:45.531 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.531 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.533 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.537 +03:00 [INF] Executed action /Blog/Posts/Detail in 47.173ms +2018-09-21 10:21:45.538 +03:00 [INF] Request finished in 48.6043ms 200 text/html; charset=utf-8 +2018-09-21 10:21:45.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:21:45.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.582 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:21:45.582 +03:00 [INF] Request finished in 5.7324ms 200 text/css +2018-09-21 10:21:45.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:21:45.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.587 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:21:45.587 +03:00 [INF] Request finished in 1.9145ms 200 text/css +2018-09-21 10:21:45.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:21:45.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.589 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:21:45.590 +03:00 [INF] Request finished in 1.9421ms 200 text/css +2018-09-21 10:21:45.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:21:45.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.593 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:21:45.593 +03:00 [INF] Request finished in 2.3296ms 200 text/css +2018-09-21 10:21:45.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:21:45.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.597 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:21:45.598 +03:00 [INF] Request finished in 2.6168ms 200 text/css +2018-09-21 10:21:45.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:21:45.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.606 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:21:45.606 +03:00 [INF] Request finished in 1.7509ms 200 text/css +2018-09-21 10:21:45.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:21:45.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.613 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:21:45.613 +03:00 [INF] Request finished in 1.485ms 200 text/css +2018-09-21 10:21:45.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:21:45.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.617 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:21:45.617 +03:00 [INF] Request finished in 1.3376ms 200 text/css +2018-09-21 10:21:45.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:21:45.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.630 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:21:45.630 +03:00 [INF] Request finished in 2.2279ms 200 text/css +2018-09-21 10:21:45.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:21:45.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.639 +03:00 [INF] Request finished in 2.5126ms 404 +2018-09-21 10:21:45.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:21:45.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.641 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:21:45.641 +03:00 [INF] Request finished in 1.2309ms 200 application/javascript +2018-09-21 10:21:45.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:21:45.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.653 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:21:45.653 +03:00 [INF] Request finished in 5.2754ms 200 application/javascript +2018-09-21 10:21:45.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:21:45.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.657 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:21:45.657 +03:00 [INF] Request finished in 1.2987ms 200 application/javascript +2018-09-21 10:21:45.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:45.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:21:45.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.662 +03:00 [INF] Request finished in 1.654ms 404 +2018-09-21 10:21:45.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:21:45.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.667 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:21:45.667 +03:00 [INF] Request finished in 1.9918ms 200 application/javascript +2018-09-21 10:21:45.667 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:21:45.667 +03:00 [INF] Request finished in 6.4784ms 200 application/javascript +2018-09-21 10:21:45.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:21:45.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.671 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:21:45.671 +03:00 [INF] Request finished in 1.5037ms 200 application/javascript +2018-09-21 10:21:45.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:21:45.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:21:45.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.676 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:21:45.676 +03:00 [INF] Request finished in 2.5748ms 200 application/javascript +2018-09-21 10:21:45.677 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:21:45.677 +03:00 [INF] Request finished in 3.7241ms 200 application/javascript +2018-09-21 10:21:45.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:21:45.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:21:45.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.700 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:21:45.701 +03:00 [INF] Request finished in 9.1258ms 200 application/javascript +2018-09-21 10:21:45.702 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:21:45.703 +03:00 [INF] Request finished in 10.7767ms 200 application/javascript +2018-09-21 10:21:45.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:21:45.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.713 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:21:45.713 +03:00 [INF] Request finished in 5.5333ms 200 application/javascript +2018-09-21 10:21:45.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:21:45.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.721 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:21:45.721 +03:00 [INF] Request finished in 4.4306ms 200 application/javascript +2018-09-21 10:21:45.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:21:45.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.727 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:21:45.727 +03:00 [INF] Request finished in 2.7052ms 200 application/javascript +2018-09-21 10:21:45.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:21:45.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.732 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:21:45.732 +03:00 [INF] Request finished in 3.4337ms 200 application/javascript +2018-09-21 10:21:45.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:21:45.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.737 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:21:45.738 +03:00 [INF] Request finished in 3.0525ms 200 application/javascript +2018-09-21 10:21:45.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:21:45.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.748 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:21:45.748 +03:00 [INF] Request finished in 1.7394ms 200 application/javascript +2018-09-21 10:21:45.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:21:45.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:21:45.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:21:45.757 +03:00 [INF] Request finished in 1.3388ms 200 application/javascript +2018-09-21 10:21:45.758 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:21:45.758 +03:00 [INF] Request finished in 1.2798ms 200 application/javascript +2018-09-21 10:21:45.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:21:45.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.771 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:21:45.771 +03:00 [INF] Request finished in 1.6624ms 200 application/javascript +2018-09-21 10:21:45.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:21:45.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.772 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:21:45.772 +03:00 [INF] Request finished in 1.219ms 200 application/javascript +2018-09-21 10:21:45.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:21:45.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.790 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:21:45.791 +03:00 [INF] Request finished in 1.4559ms 200 application/javascript +2018-09-21 10:21:45.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:21:45.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.804 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:45.805 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:21:45.805 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.805 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.806 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:21:45.808 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.808 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.808 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.808 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:21:45.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.810 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:21:45.810 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.810 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.810 +03:00 [INF] Authorization failed. +2018-09-21 10:21:45.811 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:21:45.812 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2177ms. +2018-09-21 10:21:45.812 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:45.812 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3067ms +2018-09-21 10:21:45.813 +03:00 [INF] Request finished in 5.1018ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:45.813 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:21:45.813 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.8635ms. +2018-09-21 10:21:45.813 +03:00 [INF] Request finished in 4.7297ms 200 font/woff2 +2018-09-21 10:21:45.813 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:21:45.813 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.728ms +2018-09-21 10:21:45.814 +03:00 [INF] Request finished in 11.2388ms 200 text/plain; charset=utf-8 +2018-09-21 10:21:45.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:21:45.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.821 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:21:45.821 +03:00 [INF] Request finished in 1.4424ms 200 application/javascript +2018-09-21 10:21:45.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:21:45.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.824 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:21:45.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:21:45.824 +03:00 [INF] Request finished in 1.273ms 200 application/javascript +2018-09-21 10:21:45.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.826 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:21:45.827 +03:00 [INF] Request finished in 2.3202ms 200 application/javascript +2018-09-21 10:21:45.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:21:45.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.832 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:21:45.832 +03:00 [INF] Request finished in 1.5014ms 200 application/javascript +2018-09-21 10:21:45.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:21:45.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.838 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:21:45.838 +03:00 [INF] Request finished in 2.9355ms 200 image/svg+xml +2018-09-21 10:21:45.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:21:45.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.840 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:21:45.840 +03:00 [INF] Request finished in 1.6042ms 200 image/png +2018-09-21 10:21:45.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:21:45.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.844 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:21:45.845 +03:00 [INF] Request finished in 4.1588ms 200 image/svg+xml +2018-09-21 10:21:45.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:21:45.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:21:45.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.852 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:21:45.852 +03:00 [INF] Request finished in 5.2219ms 200 image/jpeg +2018-09-21 10:21:45.857 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:21:45.857 +03:00 [INF] Request finished in 8.6604ms 200 image/jpeg +2018-09-21 10:21:45.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:21:45.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:45.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:45.962 +03:00 [INF] Request finished in 1.1621ms 404 +2018-09-21 10:21:46.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:21:46.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:46.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:46.173 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:21:46.173 +03:00 [INF] Request finished in 1.2431ms 200 image/png +2018-09-21 10:21:46.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:21:46.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:21:46.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:21:46.176 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:21:46.176 +03:00 [INF] Request finished in 1.461ms 200 image/png +2018-09-21 10:22:21.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp?tagName=abp +2018-09-21 10:22:21.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.850 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:22:21.855 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:21.890 +03:00 [INF] Authorization failed. +2018-09-21 10:22:21.905 +03:00 [INF] Executed action /Blog/Posts/Index in 55.545ms +2018-09-21 10:22:21.906 +03:00 [INF] Request finished in 57.1702ms 200 text/html; charset=utf-8 +2018-09-21 10:22:21.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:22:21.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:22:21.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.951 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:22:21.951 +03:00 [INF] Request finished in 1.8821ms 200 text/css +2018-09-21 10:22:21.954 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:22:21.955 +03:00 [INF] Request finished in 5.7892ms 200 text/css +2018-09-21 10:22:21.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:22:21.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.960 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:22:21.960 +03:00 [INF] Request finished in 2.6334ms 200 text/css +2018-09-21 10:22:21.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:22:21.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:22:21.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.969 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:22:21.970 +03:00 [INF] Request finished in 2.8059ms 200 text/css +2018-09-21 10:22:21.970 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:22:21.970 +03:00 [INF] Request finished in 2.2358ms 200 text/css +2018-09-21 10:22:21.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:22:21.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.976 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:22:21.976 +03:00 [INF] Request finished in 1.5526ms 200 text/css +2018-09-21 10:22:21.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:22:21.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.982 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:22:21.983 +03:00 [INF] Request finished in 1.7902ms 200 text/css +2018-09-21 10:22:21.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:22:21.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.992 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:22:21.993 +03:00 [INF] Request finished in 2.0032ms 200 text/css +2018-09-21 10:22:21.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:22:21.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:21.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:21.997 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:22:21.997 +03:00 [INF] Request finished in 7.0381ms 200 text/css +2018-09-21 10:22:22.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:22:22.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.003 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:22:22.003 +03:00 [INF] Request finished in 1.7416ms 200 text/css +2018-09-21 10:22:22.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:22:22.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.006 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:22:22.007 +03:00 [INF] Request finished in 1.8476ms 200 text/css +2018-09-21 10:22:22.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:22:22.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.012 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:22:22.012 +03:00 [INF] Request finished in 2.0087ms 200 text/css +2018-09-21 10:22:22.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:22:22.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:22:22.020 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:22:22.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.021 +03:00 [INF] Request finished in 2.3425ms 200 application/javascript +2018-09-21 10:22:22.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:22:22.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-21 10:22:22.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.024 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:22:22.024 +03:00 [INF] Request finished in 1.2277ms 200 application/javascript +2018-09-21 10:22:22.024 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:22:22.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:22:22.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.027 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:22:22.027 +03:00 [INF] Request finished in 6.9106ms 200 application/javascript +2018-09-21 10:22:22.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:22.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.030 +03:00 [INF] Request finished in 2.4414ms 404 +2018-09-21 10:22:22.031 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:22:22.031 +03:00 [INF] Request finished in 5.3017ms 200 application/javascript +2018-09-21 10:22:22.034 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:22.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:22:22.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.037 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:22:22.037 +03:00 [INF] Request finished in 1.9542ms 200 application/javascript +2018-09-21 10:22:22.043 +03:00 [INF] Executed action /Blog/Posts/Detail in 18.7006ms +2018-09-21 10:22:22.049 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 50 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 66 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 49 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 10:22:22.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:22:22.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.060 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:22:22.060 +03:00 [INF] Request finished in 1.1963ms 200 application/javascript +2018-09-21 10:22:22.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:22:22.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.071 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:22:22.071 +03:00 [INF] Request finished in 1.6707ms 200 application/javascript +2018-09-21 10:22:22.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:22:22.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.077 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:22:22.077 +03:00 [INF] Request finished in 2.5739ms 200 application/javascript +2018-09-21 10:22:22.097 +03:00 [INF] Request finished in 74.5302ms 500 text/html; charset=utf-8 +2018-09-21 10:22:22.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:22:22.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.118 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:22:22.118 +03:00 [INF] Request finished in 14.4215ms 200 application/javascript +2018-09-21 10:22:22.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:22:22.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.132 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:22:22.132 +03:00 [INF] Request finished in 1.3858ms 200 application/javascript +2018-09-21 10:22:22.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:22:22.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:22:22.141 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:22:22.141 +03:00 [INF] Request finished in 1.8431ms 200 application/javascript +2018-09-21 10:22:22.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.142 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:22:22.142 +03:00 [INF] Request finished in 1.4389ms 200 application/javascript +2018-09-21 10:22:22.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:22:22.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.154 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:22:22.154 +03:00 [INF] Request finished in 1.9431ms 200 application/javascript +2018-09-21 10:22:22.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:22:22.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.157 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:22:22.157 +03:00 [INF] Request finished in 1.5556ms 200 application/javascript +2018-09-21 10:22:22.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:22:22.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:22:22.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.168 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:22:22.168 +03:00 [INF] Request finished in 1.3387ms 200 application/javascript +2018-09-21 10:22:22.168 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:22:22.168 +03:00 [INF] Request finished in 2.1247ms 200 application/javascript +2018-09-21 10:22:22.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:22:22.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:22:22.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.170 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:22:22.171 +03:00 [INF] Request finished in 1.2811ms 200 application/javascript +2018-09-21 10:22:22.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:22:22.171 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:22:22.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.171 +03:00 [INF] Request finished in 1.5104ms 200 application/javascript +2018-09-21 10:22:22.173 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:22:22.173 +03:00 [INF] Request finished in 2.271ms 200 application/javascript +2018-09-21 10:22:22.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:22:22.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:22:22.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:22:22.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.180 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:22.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.181 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:22.181 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:22:22.181 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.181 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Request finished in 2.1108ms 200 application/javascript +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11330000000000001ms. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.183 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5107000000000002ms +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Request finished in 3.3245ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.183 +03:00 [INF] Request finished in 0.9218ms 200 application/javascript +2018-09-21 10:22:22.183 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.184 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.184 +03:00 [INF] Authorization failed. +2018-09-21 10:22:22.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:22:22.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.0967ms. +2018-09-21 10:22:22.186 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:22.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.4333ms +2018-09-21 10:22:22.186 +03:00 [INF] Request finished in 7.4172ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:22.186 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:22:22.186 +03:00 [INF] Request finished in 1.9266ms 200 application/javascript +2018-09-21 10:22:22.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:22:22.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.193 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:22:22.193 +03:00 [INF] Request finished in 2.3009ms 200 application/javascript +2018-09-21 10:22:22.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:22:22.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.195 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:22:22.195 +03:00 [INF] Request finished in 1.7225ms 200 application/javascript +2018-09-21 10:22:22.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:22:22.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.199 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:22:22.199 +03:00 [INF] Request finished in 1.9344ms 200 application/javascript +2018-09-21 10:22:22.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:22:22.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:22:22.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.202 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:22:22.203 +03:00 [INF] Request finished in 1.7755ms 200 image/svg+xml +2018-09-21 10:22:22.203 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:22:22.203 +03:00 [INF] Request finished in 1.0159ms 200 application/javascript +2018-09-21 10:22:22.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:22:22.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.213 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:22:22.213 +03:00 [INF] Request finished in 1.2836ms 200 image/svg+xml +2018-09-21 10:22:22.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:22:22.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.222 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:22:22.222 +03:00 [INF] Request finished in 5.9812ms 200 image/jpeg +2018-09-21 10:22:22.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:22:22.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.292 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:22:22.292 +03:00 [INF] Request finished in 2.6185ms 200 font/woff2 +2018-09-21 10:22:22.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:22:22.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.347 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:22:22.347 +03:00 [INF] Request finished in 22.0034ms 200 image/jpeg +2018-09-21 10:22:22.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:22.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.384 +03:00 [INF] Request finished in 7.3361ms 404 +2018-09-21 10:22:22.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:22:22.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:22:22.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:22.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:22.639 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:22:22.639 +03:00 [INF] Request finished in 1.5261ms 200 image/png +2018-09-21 10:22:22.639 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:22:22.639 +03:00 [INF] Request finished in 0.9215ms 200 image/png +2018-09-21 10:22:32.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:22:32.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:32.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:32.708 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:22:32.758 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:32.944 +03:00 [INF] Executed action /Account/Login in 236.6219ms +2018-09-21 10:22:32.948 +03:00 [INF] Request finished in 881.7866ms 200 text/html; charset=utf-8 +2018-09-21 10:22:33.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:22:33.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.007 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:22:33.007 +03:00 [INF] Request finished in 4.4441ms 200 text/css +2018-09-21 10:22:33.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:22:33.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.012 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:22:33.012 +03:00 [INF] Request finished in 1.8784ms 200 text/css +2018-09-21 10:22:33.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:22:33.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.023 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:22:33.024 +03:00 [INF] Request finished in 2.5695ms 200 text/css +2018-09-21 10:22:33.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:22:33.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.033 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:22:33.034 +03:00 [INF] Request finished in 1.4121ms 200 text/css +2018-09-21 10:22:33.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:22:33.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.041 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:22:33.042 +03:00 [INF] Request finished in 2.8051ms 200 text/css +2018-09-21 10:22:33.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:22:33.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.047 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:22:33.047 +03:00 [INF] Request finished in 3.8261ms 200 text/css +2018-09-21 10:22:33.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:22:33.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.052 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:22:33.052 +03:00 [INF] Request finished in 2.1033ms 200 text/css +2018-09-21 10:22:33.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:22:33.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.053 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:22:33.054 +03:00 [INF] Request finished in 1.3445ms 200 text/css +2018-09-21 10:22:33.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:22:33.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.069 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:22:33.069 +03:00 [INF] Request finished in 1.7018ms 200 application/javascript +2018-09-21 10:22:33.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:22:33.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.074 +03:00 [INF] Request finished in 1.3782ms 404 +2018-09-21 10:22:33.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:22:33.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.092 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:22:33.092 +03:00 [INF] Request finished in 8.1355ms 200 application/javascript +2018-09-21 10:22:33.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:22:33.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.103 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:22:33.103 +03:00 [INF] Request finished in 2.54ms 200 application/javascript +2018-09-21 10:22:33.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:22:33.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:33.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.131 +03:00 [INF] Request finished in 1.0995ms 404 +2018-09-21 10:22:33.134 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:22:33.134 +03:00 [INF] Request finished in 3.7551ms 200 application/javascript +2018-09-21 10:22:33.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:22:33.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.152 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:22:33.152 +03:00 [INF] Request finished in 1.3541ms 200 application/javascript +2018-09-21 10:22:33.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:22:33.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.159 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:22:33.161 +03:00 [INF] Request finished in 6.2648ms 200 application/javascript +2018-09-21 10:22:33.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:22:33.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:22:33.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:22:33.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.165 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:22:33.165 +03:00 [INF] Request finished in 2.5891ms 200 application/javascript +2018-09-21 10:22:33.165 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:22:33.165 +03:00 [INF] Request finished in 1.2818ms 200 application/javascript +2018-09-21 10:22:33.177 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:22:33.177 +03:00 [INF] Request finished in 15.3926ms 200 application/javascript +2018-09-21 10:22:33.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:22:33.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.183 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:22:33.183 +03:00 [INF] Request finished in 1.4039ms 200 application/javascript +2018-09-21 10:22:33.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:22:33.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.186 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:22:33.187 +03:00 [INF] Request finished in 5.4654ms 200 application/javascript +2018-09-21 10:22:33.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:22:33.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.198 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:22:33.198 +03:00 [INF] Request finished in 1.4334ms 200 application/javascript +2018-09-21 10:22:33.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:22:33.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.204 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:22:33.204 +03:00 [INF] Request finished in 1.2662ms 200 application/javascript +2018-09-21 10:22:33.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:22:33.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.206 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:22:33.206 +03:00 [INF] Request finished in 1.4763ms 200 application/javascript +2018-09-21 10:22:33.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:22:33.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.215 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:22:33.215 +03:00 [INF] Request finished in 1.7112ms 200 application/javascript +2018-09-21 10:22:33.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:22:33.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:22:33.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.247 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:22:33.247 +03:00 [INF] Request finished in 1.2374ms 200 application/javascript +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:22:33.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:22:33.251 +03:00 [INF] Request finished in 4.8932ms 200 application/javascript +2018-09-21 10:22:33.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:22:33.251 +03:00 [INF] Request finished in 0.8747ms 200 application/javascript +2018-09-21 10:22:33.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:22:33.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:22:33.251 +03:00 [INF] Request finished in 1.0967ms 200 application/javascript +2018-09-21 10:22:33.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.254 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:22:33.254 +03:00 [INF] Request finished in 2.5798ms 200 application/javascript +2018-09-21 10:22:33.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:22:33.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.272 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:22:33.273 +03:00 [INF] Request finished in 1.5909ms 200 application/javascript +2018-09-21 10:22:33.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:22:33.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.278 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:33.279 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:22:33.280 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.280 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.281 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.282 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.283 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.283 +03:00 [INF] Authorization failed. +2018-09-21 10:22:33.285 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.9785ms. +2018-09-21 10:22:33.285 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:33.286 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.9362ms +2018-09-21 10:22:33.286 +03:00 [INF] Request finished in 11.4756ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:33.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:22:33.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.288 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:33.291 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:22:33.292 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2727ms. +2018-09-21 10:22:33.292 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:33.292 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.6157ms +2018-09-21 10:22:33.293 +03:00 [INF] Request finished in 6.3508ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:33.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:22:33.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.299 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:22:33.300 +03:00 [INF] Request finished in 1.471ms 200 application/javascript +2018-09-21 10:22:33.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:22:33.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.305 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:22:33.305 +03:00 [INF] Request finished in 1.4808ms 200 application/javascript +2018-09-21 10:22:33.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:22:33.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.329 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:22:33.330 +03:00 [INF] Request finished in 2.8691ms 200 font/woff2 +2018-09-21 10:22:33.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:22:33.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.365 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:22:33.365 +03:00 [INF] Request finished in 1.8245ms 200 image/svg+xml +2018-09-21 10:22:33.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:22:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:22:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.380 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:22:33.381 +03:00 [INF] Request finished in 1.6697ms 200 image/svg+xml +2018-09-21 10:22:33.388 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:22:33.389 +03:00 [INF] Request finished in 9.1469ms 200 image/jpeg +2018-09-21 10:22:33.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:33.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.437 +03:00 [INF] Request finished in 1.946ms 404 +2018-09-21 10:22:33.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:22:33.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.644 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:22:33.645 +03:00 [INF] Request finished in 2.5933ms 200 image/png +2018-09-21 10:22:33.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:22:33.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:33.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:33.654 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:22:33.654 +03:00 [INF] Request finished in 1.1562ms 200 image/png +2018-09-21 10:22:40.333 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-21 10:22:40.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:40.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:40.334 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:22:40.401 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:40.622 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 10:22:40.635 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 10:22:40.635 +03:00 [INF] Executed action /Account/Login in 300.6993ms +2018-09-21 10:22:40.635 +03:00 [INF] Request finished in 302.3829ms 302 +2018-09-21 10:22:40.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:22:40.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:40.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.109 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:22:41.110 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:41.453 +03:00 [INF] Executed action /Index in 343.2359ms +2018-09-21 10:22:41.453 +03:00 [INF] Request finished in 808.1244ms 200 text/html; charset=utf-8 +2018-09-21 10:22:41.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:22:41.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:22:41.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:22:41.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.537 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:22:41.538 +03:00 [INF] Request finished in 3.0972ms 200 text/css +2018-09-21 10:22:41.538 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:22:41.538 +03:00 [INF] Request finished in 2.8922ms 200 text/css +2018-09-21 10:22:41.538 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:22:41.538 +03:00 [INF] Request finished in 3.8626ms 200 text/css +2018-09-21 10:22:41.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:22:41.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.540 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:22:41.541 +03:00 [INF] Request finished in 1.8058ms 200 text/css +2018-09-21 10:22:41.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:22:41.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:22:41.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.544 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:22:41.545 +03:00 [INF] Request finished in 2.2271ms 200 text/css +2018-09-21 10:22:41.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.545 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:22:41.546 +03:00 [INF] Request finished in 2.0523ms 200 text/css +2018-09-21 10:22:41.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:22:41.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.557 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:22:41.557 +03:00 [INF] Request finished in 2.1634ms 200 text/css +2018-09-21 10:22:41.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:22:41.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.564 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:22:41.565 +03:00 [INF] Request finished in 4.182ms 200 text/css +2018-09-21 10:22:41.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 10:22:41.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.592 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 10:22:41.592 +03:00 [INF] Request finished in 1.3003ms 200 image/png +2018-09-21 10:22:41.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 10:22:41.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.596 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 10:22:41.597 +03:00 [INF] Request finished in 1.3777ms 200 image/png +2018-09-21 10:22:41.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 10:22:41.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.612 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 10:22:41.612 +03:00 [INF] Request finished in 1.7251ms 200 image/png +2018-09-21 10:22:41.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 10:22:41.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 10:22:41.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.631 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 10:22:41.632 +03:00 [INF] Request finished in 4.632ms 200 image/png +2018-09-21 10:22:41.632 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 10:22:41.633 +03:00 [INF] Request finished in 2.8477ms 200 image/png +2018-09-21 10:22:41.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 10:22:41.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 10:22:41.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 10:22:41.644 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 10:22:41.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.644 +03:00 [INF] Request finished in 3.6814ms 200 image/png +2018-09-21 10:22:41.644 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 10:22:41.645 +03:00 [INF] Request finished in 2.1481ms 200 image/png +2018-09-21 10:22:41.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 10:22:41.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.647 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 10:22:41.647 +03:00 [INF] Request finished in 4.102ms 200 image/png +2018-09-21 10:22:41.650 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 10:22:41.650 +03:00 [INF] Request finished in 5.2536ms 200 image/png +2018-09-21 10:22:41.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 10:22:41.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:22:41.660 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 10:22:41.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:22:41.660 +03:00 [INF] Request finished in 4.4536ms 200 image/png +2018-09-21 10:22:41.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 10:22:41.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.662 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 10:22:41.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.662 +03:00 [INF] Request finished in 1.571ms 200 image/png +2018-09-21 10:22:41.663 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 10:22:41.663 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 10:22:41.663 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 10:22:41.663 +03:00 [INF] Request finished in 2.5061ms 200 image/png +2018-09-21 10:22:41.663 +03:00 [INF] Request finished in 2.7761ms 200 image/png +2018-09-21 10:22:41.664 +03:00 [INF] Request finished in 3.4075ms 200 image/png +2018-09-21 10:22:41.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 10:22:41.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 10:22:41.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:22:41.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.675 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 10:22:41.675 +03:00 [INF] Request finished in 4.759ms 200 image/png +2018-09-21 10:22:41.675 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 10:22:41.675 +03:00 [INF] Request finished in 1.1792ms 200 image/png +2018-09-21 10:22:41.678 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 10:22:41.679 +03:00 [INF] Request finished in 4.7494ms 200 image/png +2018-09-21 10:22:41.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 10:22:41.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.681 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 10:22:41.681 +03:00 [INF] Request finished in 2.0048ms 200 image/png +2018-09-21 10:22:41.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 10:22:41.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.687 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 10:22:41.687 +03:00 [INF] Request finished in 1.6232ms 200 image/png +2018-09-21 10:22:41.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 10:22:41.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 10:22:41.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.688 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 10:22:41.688 +03:00 [INF] Request finished in 0.9054ms 200 image/png +2018-09-21 10:22:41.688 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 10:22:41.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 10:22:41.688 +03:00 [INF] Request finished in 1.0395ms 200 image/png +2018-09-21 10:22:41.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 10:22:41.689 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 10:22:41.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.691 +03:00 [INF] Request finished in 2.4663ms 200 image/png +2018-09-21 10:22:41.691 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 10:22:41.691 +03:00 [INF] Request finished in 1.6372ms 200 image/png +2018-09-21 10:22:41.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:22:41.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.706 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 10:22:41.707 +03:00 [INF] Request finished in 3.1148ms 200 image/png +2018-09-21 10:22:41.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 10:22:41.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.714 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 10:22:41.716 +03:00 [INF] Request finished in 4.0724ms 200 image/png +2018-09-21 10:22:41.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 10:22:41.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.725 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 10:22:41.725 +03:00 [INF] Request finished in 2.5402ms 200 image/png +2018-09-21 10:22:41.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:22:41.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 10:22:41.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.743 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 10:22:41.743 +03:00 [INF] Request finished in 1.5351ms 200 image/png +2018-09-21 10:22:41.743 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 10:22:41.744 +03:00 [INF] Request finished in 2.5445ms 200 image/png +2018-09-21 10:22:41.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 10:22:41.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 10:22:41.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.748 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 10:22:41.748 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 10:22:41.749 +03:00 [INF] Request finished in 1.4486ms 200 image/png +2018-09-21 10:22:41.749 +03:00 [INF] Request finished in 2.6573ms 200 image/png +2018-09-21 10:22:41.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 10:22:41.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.754 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 10:22:41.754 +03:00 [INF] Request finished in 2.8836ms 200 image/png +2018-09-21 10:22:41.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:22:41.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.757 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 10:22:41.757 +03:00 [INF] Request finished in 1.8985ms 200 image/png +2018-09-21 10:22:41.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 10:22:41.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.771 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 10:22:41.772 +03:00 [INF] Request finished in 1.2595ms 200 image/png +2018-09-21 10:22:41.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 10:22:41.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.776 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 10:22:41.776 +03:00 [INF] Request finished in 1.162ms 200 image/png +2018-09-21 10:22:41.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 10:22:41.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.787 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 10:22:41.787 +03:00 [INF] Request finished in 1.6808ms 200 image/png +2018-09-21 10:22:41.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:22:41.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.794 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:22:41.794 +03:00 [INF] Request finished in 1.6256ms 200 application/javascript +2018-09-21 10:22:41.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:22:41.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:22:41.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.808 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:22:41.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.808 +03:00 [INF] Request finished in 12.7446ms 200 application/javascript +2018-09-21 10:22:41.809 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:22:41.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:22:41.809 +03:00 [INF] Request finished in 2.1862ms 200 application/javascript +2018-09-21 10:22:41.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.815 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:22:41.816 +03:00 [INF] Request finished in 6.3359ms 200 application/javascript +2018-09-21 10:22:41.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:41.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:22:41.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.835 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:22:41.835 +03:00 [INF] Request finished in 1.1001ms 200 application/javascript +2018-09-21 10:22:41.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:22:41.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.862 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:22:41.862 +03:00 [INF] Request finished in 1.5603ms 200 application/javascript +2018-09-21 10:22:41.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:22:41.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.864 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:22:41.864 +03:00 [INF] Request finished in 1.6266ms 200 font/woff2 +2018-09-21 10:22:41.875 +03:00 [INF] Request finished in 45.2952ms 404 +2018-09-21 10:22:41.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:22:41.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.878 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:22:41.878 +03:00 [INF] Request finished in 1.4091ms 200 application/javascript +2018-09-21 10:22:41.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:22:41.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.890 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:22:41.890 +03:00 [INF] Request finished in 3.2277ms 200 application/javascript +2018-09-21 10:22:41.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:22:41.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.897 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:22:41.897 +03:00 [INF] Request finished in 7.0302ms 200 application/javascript +2018-09-21 10:22:41.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:22:41.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:22:41.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.909 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:22:41.909 +03:00 [INF] Request finished in 4.4687ms 200 application/javascript +2018-09-21 10:22:41.909 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:22:41.910 +03:00 [INF] Request finished in 2.315ms 200 application/javascript +2018-09-21 10:22:41.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:22:41.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.911 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:22:41.912 +03:00 [INF] Request finished in 1.1555ms 200 application/javascript +2018-09-21 10:22:41.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:22:41.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:22:41.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.920 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:22:41.920 +03:00 [INF] Request finished in 1.4764ms 200 application/javascript +2018-09-21 10:22:41.921 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:22:41.921 +03:00 [INF] Request finished in 1.2791ms 200 application/javascript +2018-09-21 10:22:41.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:22:41.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:22:41.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.928 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:22:41.928 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:22:41.928 +03:00 [INF] Request finished in 1.136ms 200 application/javascript +2018-09-21 10:22:41.928 +03:00 [INF] Request finished in 2.0904ms 200 application/javascript +2018-09-21 10:22:41.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:22:41.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:22:41.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:22:41.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.931 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:22:41.931 +03:00 [INF] Request finished in 1.258ms 200 application/javascript +2018-09-21 10:22:41.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.933 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:22:41.933 +03:00 [INF] Request finished in 3.2777ms 200 application/javascript +2018-09-21 10:22:41.934 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:22:41.934 +03:00 [INF] Request finished in 4.9435ms 200 application/javascript +2018-09-21 10:22:41.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:22:41.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.940 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:22:41.940 +03:00 [INF] Request finished in 1.7724ms 200 application/javascript +2018-09-21 10:22:41.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:22:41.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:22:41.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:22:41.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:22:41.955 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:22:41.955 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:22:41.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.955 +03:00 [INF] Request finished in 1.1711ms 200 application/javascript +2018-09-21 10:22:41.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.955 +03:00 [INF] Request finished in 1.198ms 200 application/javascript +2018-09-21 10:22:41.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:22:41.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.964 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:22:41.964 +03:00 [INF] Request finished in 1.6486ms 200 application/javascript +2018-09-21 10:22:41.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:22:41.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.968 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:22:41.968 +03:00 [INF] Request finished in 1.7048ms 200 image/svg+xml +2018-09-21 10:22:41.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:22:41.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.971 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:22:41.971 +03:00 [INF] Request finished in 2.1214ms 200 image/svg+xml +2018-09-21 10:22:41.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:22:41.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:41.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:41.981 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:22:41.982 +03:00 [INF] Request finished in 10.1038ms 200 image/jpeg +2018-09-21 10:22:42.013 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:42.014 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:22:42.014 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.014 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.024 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:42.024 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:22:42.025 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10110000000000001ms. +2018-09-21 10:22:42.025 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:42.025 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1867ms +2018-09-21 10:22:42.025 +03:00 [INF] Request finished in 70.62ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:42.103 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.106 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.109 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.111 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.113 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.115 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.118 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.122 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.124 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.127 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.129 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.131 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.134 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.138 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.141 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.144 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.146 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.147 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.151 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:42.153 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.156 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.160 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.164 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.167 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.170 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.173 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.176 +03:00 [INF] Authorization failed. +2018-09-21 10:22:42.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 166.9771ms. +2018-09-21 10:22:42.190 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:42.190 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 177.10760000000002ms +2018-09-21 10:22:42.190 +03:00 [INF] Request finished in 249.9829ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:42.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:22:42.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:42.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:42.313 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:22:42.313 +03:00 [INF] Request finished in 1.957ms 200 image/png +2018-09-21 10:22:42.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:22:42.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:42.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:42.316 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:22:42.316 +03:00 [INF] Request finished in 2.227ms 200 image/png +2018-09-21 10:22:48.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/admin/blogs +2018-09-21 10:22:48.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.524 +03:00 [INF] Route matched with {page = "/Admin/Blogs/Index", controller = "", area = "", action = ""}. Executing action /Admin/Blogs/Index +2018-09-21 10:22:48.525 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:48.533 +03:00 [INF] Authorization failed. +2018-09-21 10:22:48.534 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 10:22:48.534 +03:00 [INF] Executed action /Admin/Blogs/Index in 9.6933ms +2018-09-21 10:22:48.534 +03:00 [INF] Request finished in 312.1914ms 302 +2018-09-21 10:22:48.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:22:48.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.563 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:22:48.564 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:22:48.572 +03:00 [INF] Executed action /Index in 8.6976ms +2018-09-21 10:22:48.572 +03:00 [INF] Request finished in 29.8038ms 200 text/html; charset=utf-8 +2018-09-21 10:22:48.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:22:48.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:22:48.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.623 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:22:48.623 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:22:48.624 +03:00 [INF] Request finished in 1.2249ms 200 text/css +2018-09-21 10:22:48.624 +03:00 [INF] Request finished in 3.873ms 200 text/css +2018-09-21 10:22:48.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:22:48.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.633 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:22:48.633 +03:00 [INF] Request finished in 1.941ms 200 text/css +2018-09-21 10:22:48.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:22:48.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.638 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:22:48.638 +03:00 [INF] Request finished in 2.2759ms 200 text/css +2018-09-21 10:22:48.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:22:48.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.645 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:22:48.645 +03:00 [INF] Request finished in 1.8637ms 200 text/css +2018-09-21 10:22:48.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:22:48.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.651 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:22:48.651 +03:00 [INF] Request finished in 1.6225ms 200 text/css +2018-09-21 10:22:48.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:22:48.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:22:48.661 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:22:48.661 +03:00 [INF] Request finished in 2.4785ms 200 text/css +2018-09-21 10:22:48.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.662 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:22:48.662 +03:00 [INF] Request finished in 1.5145ms 200 text/css +2018-09-21 10:22:48.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:22:48.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.671 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:22:48.671 +03:00 [INF] Request finished in 1.3383ms 200 application/javascript +2018-09-21 10:22:48.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:22:48.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:22:48.684 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:22:48.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.684 +03:00 [INF] Request finished in 8.8503ms 200 application/javascript +2018-09-21 10:22:48.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:22:48.686 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:22:48.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.686 +03:00 [INF] Request finished in 2.6469ms 200 application/javascript +2018-09-21 10:22:48.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:22:48.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.691 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:22:48.691 +03:00 [INF] Request finished in 3.1214ms 200 image/svg+xml +2018-09-21 10:22:48.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 10:22:48.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.692 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 10:22:48.692 +03:00 [INF] Request finished in 1.3245ms 200 image/png +2018-09-21 10:22:48.692 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:22:48.692 +03:00 [INF] Request finished in 6.102ms 200 application/javascript +2018-09-21 10:22:48.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 10:22:48.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.707 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 10:22:48.707 +03:00 [INF] Request finished in 8.2332ms 200 image/png +2018-09-21 10:22:48.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 10:22:48.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 10:22:48.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.712 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 10:22:48.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.712 +03:00 [INF] Request finished in 1.8633ms 200 image/png +2018-09-21 10:22:48.714 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 10:22:48.714 +03:00 [INF] Request finished in 2.4652ms 200 image/png +2018-09-21 10:22:48.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 10:22:48.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.716 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 10:22:48.716 +03:00 [INF] Request finished in 1.1059ms 200 image/png +2018-09-21 10:22:48.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 10:22:48.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.721 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 10:22:48.722 +03:00 [INF] Request finished in 1.1474ms 200 image/png +2018-09-21 10:22:48.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 10:22:48.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.731 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 10:22:48.732 +03:00 [INF] Request finished in 3.8227ms 200 image/png +2018-09-21 10:22:48.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 10:22:48.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.737 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 10:22:48.737 +03:00 [INF] Request finished in 3.246ms 200 image/png +2018-09-21 10:22:48.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 10:22:48.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.742 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 10:22:48.742 +03:00 [INF] Request finished in 5.543ms 200 image/png +2018-09-21 10:22:48.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 10:22:48.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 10:22:48.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.748 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 10:22:48.748 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 10:22:48.749 +03:00 [INF] Request finished in 1.0045ms 200 image/png +2018-09-21 10:22:48.749 +03:00 [INF] Request finished in 2.211ms 200 image/png +2018-09-21 10:22:48.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:22:48.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.753 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 10:22:48.753 +03:00 [INF] Request finished in 1.627ms 200 image/png +2018-09-21 10:22:48.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:22:48.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.758 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 10:22:48.758 +03:00 [INF] Request finished in 4.297ms 200 image/png +2018-09-21 10:22:48.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 10:22:48.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.778 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 10:22:48.778 +03:00 [INF] Request finished in 4.8601ms 200 image/png +2018-09-21 10:22:48.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:22:48.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.782 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 10:22:48.783 +03:00 [INF] Request finished in 3.1768ms 200 image/png +2018-09-21 10:22:48.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 10:22:48.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.787 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 10:22:48.787 +03:00 [INF] Request finished in 3.3136ms 200 image/png +2018-09-21 10:22:48.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 10:22:48.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 10:22:48.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.790 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 10:22:48.791 +03:00 [INF] Request finished in 2.1942ms 200 image/png +2018-09-21 10:22:48.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 10:22:48.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.795 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 10:22:48.795 +03:00 [INF] Request finished in 1.3997ms 200 image/png +2018-09-21 10:22:48.796 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 10:22:48.796 +03:00 [INF] Request finished in 7.9393ms 200 image/png +2018-09-21 10:22:48.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 10:22:48.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.807 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 10:22:48.807 +03:00 [INF] Request finished in 3.3057ms 200 image/png +2018-09-21 10:22:48.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 10:22:48.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.820 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 10:22:48.820 +03:00 [INF] Request finished in 7.3662ms 200 image/png +2018-09-21 10:22:48.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 10:22:48.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.823 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 10:22:48.823 +03:00 [INF] Request finished in 2.932ms 200 image/png +2018-09-21 10:22:48.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 10:22:48.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.835 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 10:22:48.835 +03:00 [INF] Request finished in 9.9592ms 200 image/png +2018-09-21 10:22:48.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:22:48.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 10:22:48.841 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 10:22:48.841 +03:00 [INF] Request finished in 2.6088ms 200 image/png +2018-09-21 10:22:48.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.842 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 10:22:48.843 +03:00 [INF] Request finished in 1.9723ms 200 image/png +2018-09-21 10:22:48.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 10:22:48.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 10:22:48.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.846 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 10:22:48.846 +03:00 [INF] Request finished in 2.21ms 200 image/png +2018-09-21 10:22:48.847 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 10:22:48.847 +03:00 [INF] Request finished in 1.3078ms 200 image/png +2018-09-21 10:22:48.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:22:48.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 10:22:48.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.853 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 10:22:48.853 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 10:22:48.854 +03:00 [INF] Request finished in 1.0309ms 200 image/png +2018-09-21 10:22:48.854 +03:00 [INF] Request finished in 1.7532ms 200 image/png +2018-09-21 10:22:48.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 10:22:48.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.867 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 10:22:48.867 +03:00 [INF] Request finished in 2.9363ms 200 image/png +2018-09-21 10:22:48.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 10:22:48.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:22:48.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 10:22:48.871 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 10:22:48.871 +03:00 [INF] Request finished in 1.1569ms 200 image/png +2018-09-21 10:22:48.871 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 10:22:48.871 +03:00 [INF] Request finished in 1.3445ms 200 image/png +2018-09-21 10:22:48.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 10:22:48.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.875 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 10:22:48.876 +03:00 [INF] Request finished in 4.6555ms 200 image/png +2018-09-21 10:22:48.876 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 10:22:48.877 +03:00 [INF] Request finished in 3.8385ms 200 image/png +2018-09-21 10:22:48.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 10:22:48.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.894 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 10:22:48.894 +03:00 [INF] Request finished in 8.1105ms 200 image/png +2018-09-21 10:22:48.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:22:48.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.900 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:22:48.900 +03:00 [INF] Request finished in 1.5295ms 200 image/svg+xml +2018-09-21 10:22:48.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:22:48.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:22:48.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.918 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:22:48.918 +03:00 [INF] Request finished in 1.5704ms 200 application/javascript +2018-09-21 10:22:48.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:22:48.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.925 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:22:48.925 +03:00 [INF] Request finished in 2.148ms 200 application/javascript +2018-09-21 10:22:48.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:22:48.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.932 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:22:48.932 +03:00 [INF] Request finished in 2.7395ms 200 application/javascript +2018-09-21 10:22:48.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:22:48.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.933 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:22:48.933 +03:00 [INF] Request finished in 1.0358ms 200 application/javascript +2018-09-21 10:22:48.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:22:48.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:22:48.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.944 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:22:48.944 +03:00 [INF] Request finished in 1.7881ms 200 application/javascript +2018-09-21 10:22:48.947 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:22:48.947 +03:00 [INF] Request finished in 13.3724ms 200 application/javascript +2018-09-21 10:22:48.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:22:48.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.950 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:22:48.950 +03:00 [INF] Request finished in 1.208ms 200 application/javascript +2018-09-21 10:22:48.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:22:48.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.964 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:22:48.965 +03:00 [INF] Request finished in 1.9944ms 200 application/javascript +2018-09-21 10:22:48.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:22:48.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.971 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:22:48.971 +03:00 [INF] Request finished in 1.2409ms 200 application/javascript +2018-09-21 10:22:48.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:22:48.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.979 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:22:48.979 +03:00 [INF] Request finished in 1.3105ms 200 application/javascript +2018-09-21 10:22:48.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:22:48.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.982 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:22:48.984 +03:00 [INF] Request finished in 3.9509ms 200 font/woff2 +2018-09-21 10:22:48.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:22:48.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:48.996 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:22:48.997 +03:00 [INF] Request finished in 3.6217ms 200 application/javascript +2018-09-21 10:22:48.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:22:48.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:48.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.001 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:22:49.001 +03:00 [INF] Request finished in 4.0436ms 200 application/javascript +2018-09-21 10:22:49.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:22:49.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.003 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:22:49.003 +03:00 [INF] Request finished in 1.4881ms 200 application/javascript +2018-09-21 10:22:49.008 +03:00 [INF] Request finished in 108.2507ms 404 +2018-09-21 10:22:49.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:22:49.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.014 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:22:49.015 +03:00 [INF] Request finished in 2.3055ms 200 application/javascript +2018-09-21 10:22:49.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:22:49.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.016 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:22:49.016 +03:00 [INF] Request finished in 1.6819ms 200 application/javascript +2018-09-21 10:22:49.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:22:49.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:22:49.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.020 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:22:49.020 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:22:49.020 +03:00 [INF] Request finished in 1.2118ms 200 application/javascript +2018-09-21 10:22:49.020 +03:00 [INF] Request finished in 1.2261ms 200 application/javascript +2018-09-21 10:22:49.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:22:49.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:22:49.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.030 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:22:49.030 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:22:49.030 +03:00 [INF] Request finished in 0.8068ms 200 application/javascript +2018-09-21 10:22:49.030 +03:00 [INF] Request finished in 1.2257ms 200 application/javascript +2018-09-21 10:22:49.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:22:49.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.041 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:22:49.042 +03:00 [INF] Request finished in 11.2254ms 200 image/jpeg +2018-09-21 10:22:49.086 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:49.087 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:22:49.087 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10350000000000001ms. +2018-09-21 10:22:49.087 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:49.087 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1293ms +2018-09-21 10:22:49.087 +03:00 [INF] Request finished in 58.3796ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:49.089 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:22:49.090 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:22:49.091 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.091 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.092 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.093 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.093 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.094 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.094 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.095 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.095 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.096 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.097 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.097 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.098 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.098 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.099 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.100 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.100 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.101 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.101 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.102 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.103 +03:00 [INF] Authorization was successful. +2018-09-21 10:22:49.103 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.104 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.104 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.106 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.108 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.109 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.109 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.110 +03:00 [INF] Authorization failed. +2018-09-21 10:22:49.111 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.916900000000002ms. +2018-09-21 10:22:49.112 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:22:49.112 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.9262ms +2018-09-21 10:22:49.112 +03:00 [INF] Request finished in 86.1518ms 200 text/plain; charset=utf-8 +2018-09-21 10:22:49.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:22:49.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.340 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:22:49.340 +03:00 [INF] Request finished in 2.0293ms 200 image/png +2018-09-21 10:22:49.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:22:49.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:49.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:49.349 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:22:49.349 +03:00 [INF] Request finished in 1.1394ms 200 image/png +2018-09-21 10:22:54.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/admin/blog +2018-09-21 10:22:54.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:54.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:54.918 +03:00 [INF] Request finished in 28.5959ms 404 +2018-09-21 10:22:54.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:22:54.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:22:54.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:22:54.985 +03:00 [INF] Request finished in 32.5076ms 404 +2018-09-21 10:23:00.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:23:00.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.279 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:23:00.279 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:23:00.287 +03:00 [INF] Executed action /Index in 8.0921ms +2018-09-21 10:23:00.287 +03:00 [INF] Request finished in 31.1666ms 200 text/html; charset=utf-8 +2018-09-21 10:23:00.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:23:00.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:23:00.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.333 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:23:00.333 +03:00 [INF] Request finished in 4.3871ms 200 text/css +2018-09-21 10:23:00.334 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:23:00.334 +03:00 [INF] Request finished in 2.2915ms 200 text/css +2018-09-21 10:23:00.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:23:00.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.348 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:23:00.349 +03:00 [INF] Request finished in 2.9133ms 200 text/css +2018-09-21 10:23:00.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:23:00.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.355 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:23:00.356 +03:00 [INF] Request finished in 2.7751ms 200 text/css +2018-09-21 10:23:00.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:23:00.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.361 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:23:00.361 +03:00 [INF] Request finished in 1.307ms 200 text/css +2018-09-21 10:23:00.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:23:00.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.370 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:23:00.370 +03:00 [INF] Request finished in 2.2513ms 200 text/css +2018-09-21 10:23:00.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:23:00.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.376 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:23:00.376 +03:00 [INF] Request finished in 1.2469ms 200 text/css +2018-09-21 10:23:00.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:23:00.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.382 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:23:00.382 +03:00 [INF] Request finished in 1.3208ms 200 text/css +2018-09-21 10:23:00.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:23:00.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.383 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:23:00.383 +03:00 [INF] Request finished in 1.2918ms 200 application/javascript +2018-09-21 10:23:00.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:23:00.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:23:00.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.395 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:23:00.395 +03:00 [INF] Request finished in 1.3091ms 200 application/javascript +2018-09-21 10:23:00.398 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:23:00.398 +03:00 [INF] Request finished in 6.3269ms 200 application/javascript +2018-09-21 10:23:00.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:23:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:23:00.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.412 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:23:00.412 +03:00 [INF] Request finished in 7.0016ms 200 application/javascript +2018-09-21 10:23:00.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:23:00.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.417 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:23:00.417 +03:00 [INF] Request finished in 2.0679ms 200 application/javascript +2018-09-21 10:23:00.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:23:00.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.426 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:23:00.427 +03:00 [INF] Request finished in 2.0239ms 200 application/javascript +2018-09-21 10:23:00.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:23:00.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.431 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:23:00.431 +03:00 [INF] Request finished in 3.0915ms 200 application/javascript +2018-09-21 10:23:00.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:23:00.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:23:00.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:23:00.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.452 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:23:00.452 +03:00 [INF] Request finished in 7.2113ms 200 application/javascript +2018-09-21 10:23:00.452 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:23:00.453 +03:00 [INF] Request finished in 10.9358ms 200 application/javascript +2018-09-21 10:23:00.453 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:23:00.453 +03:00 [INF] Request finished in 4.3131ms 200 application/javascript +2018-09-21 10:23:00.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:23:00.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 10:23:00.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.460 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:23:00.460 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 10:23:00.460 +03:00 [INF] Request finished in 1.0111ms 200 image/svg+xml +2018-09-21 10:23:00.460 +03:00 [INF] Request finished in 1.1236ms 200 image/png +2018-09-21 10:23:00.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 10:23:00.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 10:23:00.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.474 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 10:23:00.474 +03:00 [INF] Request finished in 1.5219ms 200 image/png +2018-09-21 10:23:00.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 10:23:00.474 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 10:23:00.475 +03:00 [INF] Request finished in 1.3635ms 200 image/png +2018-09-21 10:23:00.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.475 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 10:23:00.475 +03:00 [INF] Request finished in 0.8525ms 200 image/png +2018-09-21 10:23:00.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 10:23:00.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.486 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 10:23:00.486 +03:00 [INF] Request finished in 5.0152ms 200 image/png +2018-09-21 10:23:00.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 10:23:00.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 10:23:00.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.488 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 10:23:00.488 +03:00 [INF] Request finished in 1.9319ms 200 image/png +2018-09-21 10:23:00.490 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 10:23:00.490 +03:00 [INF] Request finished in 2.9392ms 200 image/png +2018-09-21 10:23:00.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 10:23:00.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.497 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 10:23:00.497 +03:00 [INF] Request finished in 5.0792ms 200 image/png +2018-09-21 10:23:00.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 10:23:00.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 10:23:00.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.506 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 10:23:00.506 +03:00 [INF] Request finished in 1.8939ms 200 image/png +2018-09-21 10:23:00.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.507 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 10:23:00.507 +03:00 [INF] Request finished in 2.12ms 200 image/png +2018-09-21 10:23:00.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 10:23:00.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.517 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 10:23:00.517 +03:00 [INF] Request finished in 1.2541ms 200 image/png +2018-09-21 10:23:00.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:23:00.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.525 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 10:23:00.526 +03:00 [INF] Request finished in 2.0474ms 200 image/png +2018-09-21 10:23:00.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:23:00.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.528 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 10:23:00.528 +03:00 [INF] Request finished in 1.4301ms 200 image/png +2018-09-21 10:23:00.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 10:23:00.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.533 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 10:23:00.533 +03:00 [INF] Request finished in 1.5625ms 200 image/png +2018-09-21 10:23:00.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 10:23:00.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.539 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 10:23:00.539 +03:00 [INF] Request finished in 1.769ms 200 image/png +2018-09-21 10:23:00.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:23:00.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.551 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 10:23:00.552 +03:00 [INF] Request finished in 1.6144ms 200 image/png +2018-09-21 10:23:00.554 +03:00 [INF] Request finished in 143.3172ms 404 +2018-09-21 10:23:00.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 10:23:00.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.560 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 10:23:00.560 +03:00 [INF] Request finished in 2.8755ms 200 image/png +2018-09-21 10:23:00.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 10:23:00.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.574 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 10:23:00.575 +03:00 [INF] Request finished in 1.3823ms 200 image/png +2018-09-21 10:23:00.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 10:23:00.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.583 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 10:23:00.583 +03:00 [INF] Request finished in 1.572ms 200 image/png +2018-09-21 10:23:00.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 10:23:00.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.596 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 10:23:00.596 +03:00 [INF] Request finished in 1.1249ms 200 image/png +2018-09-21 10:23:00.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 10:23:00.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.609 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 10:23:00.609 +03:00 [INF] Request finished in 2.2249ms 200 image/png +2018-09-21 10:23:00.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 10:23:00.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.627 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 10:23:00.627 +03:00 [INF] Request finished in 2.1411ms 200 image/png +2018-09-21 10:23:00.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 10:23:00.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.633 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 10:23:00.633 +03:00 [INF] Request finished in 1.4069ms 200 image/png +2018-09-21 10:23:00.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:23:00.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.646 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 10:23:00.646 +03:00 [INF] Request finished in 1.0544ms 200 image/png +2018-09-21 10:23:00.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 10:23:00.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:23:00.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.656 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 10:23:00.656 +03:00 [INF] Request finished in 1.2325ms 200 image/png +2018-09-21 10:23:00.657 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:23:00.657 +03:00 [INF] Request finished in 2.2741ms 200 font/woff2 +2018-09-21 10:23:00.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 10:23:00.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.659 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 10:23:00.659 +03:00 [INF] Request finished in 1.4416ms 200 image/png +2018-09-21 10:23:00.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 10:23:00.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.666 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 10:23:00.666 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 10:23:00.666 +03:00 [INF] Request finished in 1.1029ms 200 image/png +2018-09-21 10:23:00.666 +03:00 [INF] Request finished in 2.4283ms 200 image/png +2018-09-21 10:23:00.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 10:23:00.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.668 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 10:23:00.668 +03:00 [INF] Request finished in 2.0053ms 200 image/png +2018-09-21 10:23:00.668 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 10:23:00.668 +03:00 [INF] Request finished in 3.638ms 200 image/png +2018-09-21 10:23:00.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 10:23:00.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.671 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 10:23:00.671 +03:00 [INF] Request finished in 1.3572ms 200 image/png +2018-09-21 10:23:00.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:23:00.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 10:23:00.678 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 10:23:00.678 +03:00 [INF] Request finished in 1.3884ms 200 image/png +2018-09-21 10:23:00.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.680 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 10:23:00.680 +03:00 [INF] Request finished in 1.8342ms 200 image/png +2018-09-21 10:23:00.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 10:23:00.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.686 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 10:23:00.686 +03:00 [INF] Request finished in 1.1577ms 200 image/png +2018-09-21 10:23:00.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 10:23:00.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:23:00.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.688 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 10:23:00.688 +03:00 [INF] Request finished in 1.3787ms 200 image/png +2018-09-21 10:23:00.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:23:00.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.688 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:23:00.688 +03:00 [INF] Request finished in 1.588ms 200 image/svg+xml +2018-09-21 10:23:00.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:23:00.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.691 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:23:00.691 +03:00 [INF] Request finished in 1.1234ms 200 application/javascript +2018-09-21 10:23:00.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:23:00.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.693 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:23:00.693 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:23:00.693 +03:00 [INF] Request finished in 1.4026ms 200 application/javascript +2018-09-21 10:23:00.693 +03:00 [INF] Request finished in 5.213ms 200 application/javascript +2018-09-21 10:23:00.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:23:00.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:23:00.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:23:00.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.704 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:23:00.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:23:00.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.704 +03:00 [INF] Request finished in 1.7968ms 200 application/javascript +2018-09-21 10:23:00.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:23:00.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.705 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:23:00.706 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:23:00.706 +03:00 [INF] Request finished in 1.1227ms 200 application/javascript +2018-09-21 10:23:00.706 +03:00 [INF] Request finished in 3.1924ms 200 application/javascript +2018-09-21 10:23:00.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.706 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:23:00.706 +03:00 [INF] Request finished in 2.6919ms 200 application/javascript +2018-09-21 10:23:00.707 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:23:00.708 +03:00 [INF] Request finished in 4.0433ms 200 application/javascript +2018-09-21 10:23:00.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:23:00.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.712 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:23:00.712 +03:00 [INF] Request finished in 1.7515ms 200 application/javascript +2018-09-21 10:23:00.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:23:00.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.713 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:23:00.714 +03:00 [INF] Request finished in 0.9268ms 200 application/javascript +2018-09-21 10:23:00.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:23:00.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:23:00.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:23:00.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:23:00.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.720 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:23:00.720 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:23:00.720 +03:00 [INF] Request finished in 0.8015ms 200 application/javascript +2018-09-21 10:23:00.720 +03:00 [INF] Request finished in 1.058ms 200 application/javascript +2018-09-21 10:23:00.721 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:23:00.721 +03:00 [INF] Request finished in 0.9589ms 200 application/javascript +2018-09-21 10:23:00.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:23:00.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.732 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:23:00.732 +03:00 [INF] Request finished in 8.2762ms 200 image/jpeg +2018-09-21 10:23:00.763 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:00.764 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:23:00.764 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1698ms. +2018-09-21 10:23:00.765 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:00.765 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3287ms +2018-09-21 10:23:00.765 +03:00 [INF] Request finished in 46.9994ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:00.765 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:00.766 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:23:00.766 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.767 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.768 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.770 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.771 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.774 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.776 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.776 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.776 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.777 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.777 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.778 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.778 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.779 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.779 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:00.780 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.780 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.780 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.781 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.781 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.782 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.782 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.783 +03:00 [INF] Authorization failed. +2018-09-21 10:23:00.786 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.1115ms. +2018-09-21 10:23:00.786 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:00.786 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.3356ms +2018-09-21 10:23:00.786 +03:00 [INF] Request finished in 68.6748ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:00.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:23:00.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:00.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:00.998 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:23:00.998 +03:00 [INF] Request finished in 2.3019ms 200 image/png +2018-09-21 10:23:00.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:23:00.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:01.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:01.001 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:23:01.001 +03:00 [INF] Request finished in 1.9108ms 200 image/png +2018-09-21 10:23:06.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Roles +2018-09-21 10:23:06.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.441 +03:00 [INF] Route matched with {page = "/Identity/Roles/Index", controller = "", area = "", action = ""}. Executing action /Identity/Roles/Index +2018-09-21 10:23:06.447 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.448 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:23:06.495 +03:00 [INF] Executed action /Identity/Roles/Index in 53.7171ms +2018-09-21 10:23:06.495 +03:00 [INF] Request finished in 314.747ms 200 text/html; charset=utf-8 +2018-09-21 10:23:06.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:23:06.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:23:06.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.568 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:23:06.568 +03:00 [INF] Request finished in 0.9958ms 200 text/css +2018-09-21 10:23:06.569 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:23:06.569 +03:00 [INF] Request finished in 1.0018ms 200 text/css +2018-09-21 10:23:06.569 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:23:06.569 +03:00 [INF] Request finished in 2.1506ms 200 text/css +2018-09-21 10:23:06.571 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:23:06.571 +03:00 [INF] Request finished in 4.3254ms 200 text/css +2018-09-21 10:23:06.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:23:06.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.584 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:23:06.586 +03:00 [INF] Request finished in 4.772ms 200 text/css +2018-09-21 10:23:06.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:23:06.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.594 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:23:06.594 +03:00 [INF] Request finished in 2.788ms 200 text/css +2018-09-21 10:23:06.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:23:06.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:23:06.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.602 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:23:06.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:23:06.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.602 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:23:06.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.602 +03:00 [INF] Request finished in 1.6073ms 200 text/css +2018-09-21 10:23:06.604 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:23:06.604 +03:00 [INF] Request finished in 2.4321ms 200 application/javascript +2018-09-21 10:23:06.607 +03:00 [INF] Request finished in 5.7515ms 200 text/css +2018-09-21 10:23:06.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:23:06.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:23:06.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:23:06.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.613 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:23:06.613 +03:00 [INF] Request finished in 1.5485ms 200 application/javascript +2018-09-21 10:23:06.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/assets/fork.png +2018-09-21 10:23:06.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.616 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:23:06.616 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:23:06.616 +03:00 [INF] Request finished in 7.8946ms 200 application/javascript +2018-09-21 10:23:06.616 +03:00 [INF] Request finished in 4.5449ms 200 application/javascript +2018-09-21 10:23:06.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:23:06.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:23:06.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.625 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:23:06.625 +03:00 [INF] Request finished in 1.45ms 200 application/javascript +2018-09-21 10:23:06.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:23:06.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.633 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:23:06.633 +03:00 [INF] Request finished in 3.5609ms 200 application/javascript +2018-09-21 10:23:06.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:23:06.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:23:06.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.644 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:23:06.644 +03:00 [INF] Request finished in 1.1702ms 200 application/javascript +2018-09-21 10:23:06.646 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:23:06.646 +03:00 [INF] Request finished in 2.4965ms 200 application/javascript +2018-09-21 10:23:06.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:23:06.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:23:06.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.667 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:23:06.667 +03:00 [INF] Request finished in 1.2859ms 200 application/javascript +2018-09-21 10:23:06.673 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:23:06.674 +03:00 [INF] Request finished in 17.1342ms 200 application/javascript +2018-09-21 10:23:06.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:23:06.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.687 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:23:06.687 +03:00 [INF] Request finished in 2.2871ms 200 application/javascript +2018-09-21 10:23:06.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:23:06.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.695 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:23:06.695 +03:00 [INF] Request finished in 3.1917ms 200 application/javascript +2018-09-21 10:23:06.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:23:06.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.705 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:23:06.705 +03:00 [INF] Request finished in 1.0292ms 200 application/javascript +2018-09-21 10:23:06.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:23:06.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.707 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:23:06.707 +03:00 [INF] Request finished in 2.318ms 200 application/javascript +2018-09-21 10:23:06.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:23:06.720 +03:00 [INF] Request finished in 105.095ms 404 +2018-09-21 10:23:06.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.722 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:23:06.722 +03:00 [INF] Request finished in 3.6467ms 200 application/javascript +2018-09-21 10:23:06.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:23:06.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.741 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:23:06.741 +03:00 [INF] Request finished in 2.0978ms 200 application/javascript +2018-09-21 10:23:06.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:23:06.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:23:06.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.746 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:23:06.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.746 +03:00 [INF] Request finished in 2.8629ms 200 application/javascript +2018-09-21 10:23:06.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:23:06.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.747 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:23:06.748 +03:00 [INF] Request finished in 2.5262ms 200 application/javascript +2018-09-21 10:23:06.749 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:23:06.749 +03:00 [INF] Request finished in 2.2641ms 200 application/javascript +2018-09-21 10:23:06.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:23:06.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:23:06.754 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:23:06.755 +03:00 [INF] Request finished in 1.529ms 200 application/javascript +2018-09-21 10:23:06.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.756 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:23:06.756 +03:00 [INF] Request finished in 4.058ms 200 application/javascript +2018-09-21 10:23:06.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:23:06.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:23:06.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.765 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:23:06.765 +03:00 [INF] Request finished in 2.4755ms 200 application/javascript +2018-09-21 10:23:06.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:23:06.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:23:06.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.771 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:23:06.771 +03:00 [INF] Request finished in 1.3758ms 200 application/javascript +2018-09-21 10:23:06.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:23:06.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.788 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:23:06.789 +03:00 [INF] Request finished in 3.7648ms 200 font/woff2 +2018-09-21 10:23:06.790 +03:00 [INF] Request finished in 166.3418ms 404 +2018-09-21 10:23:06.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636731107265573819 +2018-09-21 10:23:06.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.798 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-09-21 10:23:06.798 +03:00 [INF] Request finished in 1.4117ms 200 application/javascript +2018-09-21 10:23:06.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/roles/index.js?_v=636731107404030958 +2018-09-21 10:23:06.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:23:06.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.800 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:23:06.800 +03:00 [INF] Request finished in 0.9646ms 200 image/svg+xml +2018-09-21 10:23:06.801 +03:00 [INF] Sending file. Request path: '/Pages/identity/roles/index.js'. Physical path: '/Pages/Identity/Roles/index.js' +2018-09-21 10:23:06.801 +03:00 [INF] Request finished in 1.938ms 200 application/javascript +2018-09-21 10:23:06.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:23:06.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.805 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:23:06.806 +03:00 [INF] Request finished in 1.2421ms 200 image/svg+xml +2018-09-21 10:23:06.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:23:06.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:06.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:06.821 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:23:06.821 +03:00 [INF] Request finished in 10.3573ms 200 image/jpeg +2018-09-21 10:23:06.833 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:06.834 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:23:06.834 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.834 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.835 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.836 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.836 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.837 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.837 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.838 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.839 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.839 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.840 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.842 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.843 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.844 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.844 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.845 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.846 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.846 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.847 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.848 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.848 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:06.849 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.850 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.850 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.851 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.851 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.852 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.853 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.853 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:06.853 +03:00 [INF] Authorization failed. +2018-09-21 10:23:06.854 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:23:06.854 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0922ms. +2018-09-21 10:23:06.854 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:06.854 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.194ms +2018-09-21 10:23:06.854 +03:00 [INF] Request finished in 86.7923ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:06.855 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.637700000000002ms. +2018-09-21 10:23:06.855 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:06.855 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.6858ms +2018-09-21 10:23:06.855 +03:00 [INF] Request finished in 95.4186ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:07.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityRole application/json +2018-09-21 10:23:07.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:07.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:07.110 +03:00 [INF] Route matched with {area = "identity", controller = "Role", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-09-21 10:23:07.132 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityRolesInput"]) - Validation state: "Valid" +2018-09-21 10:23:07.136 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:07.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:23:07.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:07.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:07.194 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:23:07.195 +03:00 [INF] Request finished in 1.8727ms 200 image/png +2018-09-21 10:23:07.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:23:07.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:07.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:07.205 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:23:07.205 +03:00 [INF] Request finished in 1.2328ms 200 image/png +2018-09-21 10:23:07.580 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 447.77950000000004ms. +2018-09-21 10:23:07.581 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityRoleDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.1.0, Culture=neutral, PublicKeyToken=null]]'. +2018-09-21 10:23:07.587 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityRoleController.GetListAsync (Volo.Abp.Identity.HttpApi) in 476.6945ms +2018-09-21 10:23:07.587 +03:00 [INF] Request finished in 517.6837ms 200 application/json; charset=utf-8 +2018-09-21 10:23:10.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/AbpPermissionManagement/PermissionManagementModal?providerName=Role&providerKey=06dedf50-0989-0ef9-cc02-39e810c5874f +2018-09-21 10:23:10.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:10.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:10.302 +03:00 [INF] Route matched with {page = "/AbpPermissionManagement/PermissionManagementModal", controller = "", area = "", action = ""}. Executing action /AbpPermissionManagement/PermissionManagementModal +2018-09-21 10:23:10.321 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:23:10.324 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:10.325 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:10.928 +03:00 [INF] Executed action /AbpPermissionManagement/PermissionManagementModal in 626.0013ms +2018-09-21 10:23:10.928 +03:00 [INF] Request finished in 919.7415ms 200 text/html; charset=utf-8 +2018-09-21 10:23:38.903 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/AbpPermissionManagement/PermissionManagementModal application/x-www-form-urlencoded; charset=UTF-8 4557 +2018-09-21 10:23:38.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:38.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:38.932 +03:00 [INF] Route matched with {page = "/AbpPermissionManagement/PermissionManagementModal", controller = "", area = "", action = ""}. Executing action /AbpPermissionManagement/PermissionManagementModal +2018-09-21 10:23:39.098 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:23:39.103 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:39.104 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:39.196 +03:00 [INF] Executing HttpStatusCodeResult, setting HTTP status code 204 +2018-09-21 10:23:39.197 +03:00 [INF] Executed action /AbpPermissionManagement/PermissionManagementModal in 264.2952ms +2018-09-21 10:23:39.197 +03:00 [INF] Request finished in 293.6924ms 204 +2018-09-21 10:23:51.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Admin/Blog +2018-09-21 10:23:51.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:51.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:51.140 +03:00 [INF] Request finished in 22.9984ms 404 +2018-09-21 10:23:51.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:23:51.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:51.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:51.209 +03:00 [INF] Request finished in 30.8236ms 404 +2018-09-21 10:23:53.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Admin/Blogs +2018-09-21 10:23:53.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.686 +03:00 [INF] Route matched with {page = "/Admin/Blogs/Index", controller = "", area = "", action = ""}. Executing action /Admin/Blogs/Index +2018-09-21 10:23:53.686 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:23:53.693 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:53.708 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:53.734 +03:00 [INF] Executed action /Admin/Blogs/Index in 47.780300000000004ms +2018-09-21 10:23:53.734 +03:00 [INF] Request finished in 73.7176ms 200 text/html; charset=utf-8 +2018-09-21 10:23:53.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:23:53.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:23:53.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.781 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:23:53.781 +03:00 [INF] Request finished in 1.6107ms 200 text/css +2018-09-21 10:23:53.782 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:23:53.782 +03:00 [INF] Request finished in 2.8745ms 200 text/css +2018-09-21 10:23:53.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:23:53.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.790 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:23:53.790 +03:00 [INF] Request finished in 2.3275ms 200 text/css +2018-09-21 10:23:53.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:23:53.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.803 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:23:53.803 +03:00 [INF] Request finished in 4.0667ms 200 text/css +2018-09-21 10:23:53.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:23:53.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.805 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:23:53.805 +03:00 [INF] Request finished in 2.0456ms 200 text/css +2018-09-21 10:23:53.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:23:53.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.809 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:23:53.810 +03:00 [INF] Request finished in 1.676ms 200 text/css +2018-09-21 10:23:53.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:23:53.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.815 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:23:53.815 +03:00 [INF] Request finished in 1.0984ms 200 text/css +2018-09-21 10:23:53.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:23:53.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.818 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:23:53.819 +03:00 [INF] Request finished in 1.198ms 200 text/css +2018-09-21 10:23:53.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:23:53.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.826 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:23:53.826 +03:00 [INF] Request finished in 1.3296ms 200 application/javascript +2018-09-21 10:23:53.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Admin/assets/fork.png +2018-09-21 10:23:53.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:23:53.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:23:53.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.845 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:23:53.845 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:23:53.845 +03:00 [INF] Request finished in 3.9102ms 200 application/javascript +2018-09-21 10:23:53.845 +03:00 [INF] Request finished in 10.3941ms 200 application/javascript +2018-09-21 10:23:53.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:23:53.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:23:53.857 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:23:53.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.857 +03:00 [INF] Request finished in 6.5271ms 200 application/javascript +2018-09-21 10:23:53.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:23:53.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:23:53.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.874 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:23:53.874 +03:00 [INF] Request finished in 4.0707ms 200 application/javascript +2018-09-21 10:23:53.875 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:23:53.875 +03:00 [INF] Request finished in 3.0886ms 200 application/javascript +2018-09-21 10:23:53.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:23:53.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.896 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:23:53.896 +03:00 [INF] Request finished in 4.3268ms 200 application/javascript +2018-09-21 10:23:53.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:23:53.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.900 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:23:53.900 +03:00 [INF] Request finished in 3.5149ms 200 application/javascript +2018-09-21 10:23:53.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:23:53.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.916 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:23:53.916 +03:00 [INF] Request finished in 13.4724ms 200 application/javascript +2018-09-21 10:23:53.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:23:53.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.918 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:23:53.918 +03:00 [INF] Request finished in 1.2795ms 200 application/javascript +2018-09-21 10:23:53.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:23:53.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.927 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:23:53.927 +03:00 [INF] Request finished in 2.4144ms 200 application/javascript +2018-09-21 10:23:53.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:23:53.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.932 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:23:53.932 +03:00 [INF] Request finished in 2.1402ms 200 application/javascript +2018-09-21 10:23:53.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:23:53.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.941 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:23:53.941 +03:00 [INF] Request finished in 4.0826ms 200 application/javascript +2018-09-21 10:23:53.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:23:53.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:23:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.943 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:23:53.943 +03:00 [INF] Request finished in 1.2819ms 200 application/javascript +2018-09-21 10:23:53.943 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:23:53.944 +03:00 [INF] Request finished in 1.8257ms 200 application/javascript +2018-09-21 10:23:53.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:23:53.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:23:53.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:23:53.955 +03:00 [INF] Request finished in 3.5707ms 200 application/javascript +2018-09-21 10:23:53.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:23:53.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.956 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:23:53.956 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:23:53.956 +03:00 [INF] Request finished in 5.5021ms 200 application/javascript +2018-09-21 10:23:53.956 +03:00 [INF] Request finished in 1.1454ms 200 application/javascript +2018-09-21 10:23:53.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:23:53.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.963 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:23:53.963 +03:00 [INF] Request finished in 1.9576ms 200 application/javascript +2018-09-21 10:23:53.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:23:53.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:23:53.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.967 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:23:53.967 +03:00 [INF] Request finished in 1.1028ms 200 application/javascript +2018-09-21 10:23:53.967 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:23:53.968 +03:00 [INF] Request finished in 3.3717ms 200 application/javascript +2018-09-21 10:23:53.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:23:53.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:23:53.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:23:53.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.974 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:23:53.974 +03:00 [INF] Request finished in 1.1264ms 200 image/svg+xml +2018-09-21 10:23:53.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:23:53.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.980 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:23:53.981 +03:00 [INF] Request finished in 1.564ms 200 application/javascript +2018-09-21 10:23:53.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:23:53.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.985 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:23:53.985 +03:00 [INF] Request finished in 1.0345ms 200 image/svg+xml +2018-09-21 10:23:53.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:23:53.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:23:53.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:53.997 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:23:53.997 +03:00 [INF] Request finished in 1.1198ms 200 application/javascript +2018-09-21 10:23:53.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:53.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.001 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:23:54.001 +03:00 [INF] Request finished in 5.0529ms 200 font/woff2 +2018-09-21 10:23:54.016 +03:00 [INF] Request finished in 159.4459ms 404 +2018-09-21 10:23:54.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Admin/Blogs/index.js?_v=636731105662261069 +2018-09-21 10:23:54.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.026 +03:00 [INF] Sending file. Request path: '/Pages/Admin/Blogs/index.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Admin\Blogs\index.js' +2018-09-21 10:23:54.026 +03:00 [INF] Request finished in 1.4194ms 200 application/javascript +2018-09-21 10:23:54.031 +03:00 [INF] Request finished in 202.3118ms 404 +2018-09-21 10:23:54.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Admin/Blogs/create.js?_v=636724313231271445 +2018-09-21 10:23:54.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.036 +03:00 [INF] Sending file. Request path: '/Pages/Admin/Blogs/create.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Admin\Blogs\create.js' +2018-09-21 10:23:54.036 +03:00 [INF] Request finished in 2.2734ms 200 application/javascript +2018-09-21 10:23:54.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Admin/Blogs/edit.js?_v=636724313231277189 +2018-09-21 10:23:54.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.041 +03:00 [INF] Sending file. Request path: '/Pages/Admin/Blogs/edit.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Admin\Blogs\edit.js' +2018-09-21 10:23:54.043 +03:00 [INF] Request finished in 2.8415ms 200 application/javascript +2018-09-21 10:23:54.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:23:54.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.056 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:23:54.056 +03:00 [INF] Request finished in 8.8372ms 200 image/jpeg +2018-09-21 10:23:54.077 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:54.079 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:23:54.079 +03:00 [INF] Authorization failed. +2018-09-21 10:23:54.079 +03:00 [INF] Authorization failed. +2018-09-21 10:23:54.080 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.081 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.082 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.082 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.083 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.084 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.085 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.086 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.087 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.089 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.090 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.090 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.091 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.092 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.093 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.093 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.094 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.095 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.096 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.106 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.109 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.115 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.117 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:23:54.118 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.118 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:23:54.118 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1056ms. +2018-09-21 10:23:54.119 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:54.119 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1229ms +2018-09-21 10:23:54.119 +03:00 [INF] Request finished in 145.5584ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:54.127 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.129 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.133 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.141 +03:00 [INF] Authorization was successful. +2018-09-21 10:23:54.143 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 63.9391ms. +2018-09-21 10:23:54.144 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:23:54.144 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 66.5526ms +2018-09-21 10:23:54.144 +03:00 [INF] Request finished in 176.0858ms 200 text/plain; charset=utf-8 +2018-09-21 10:23:54.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:23:54.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.339 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:23:54.339 +03:00 [INF] Request finished in 3.0188ms 200 image/png +2018-09-21 10:23:54.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:23:54.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.343 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:23:54.343 +03:00 [INF] Request finished in 1.3563ms 200 image/png +2018-09-21 10:23:54.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/blogging/blogs?skipCount=0&maxResultCount=10&sorting=creationTime%20desc application/json +2018-09-21 10:23:54.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:23:54.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:23:54.409 +03:00 [INF] Route matched with {area = "blogging", controller = "Blogs", action = "GetListPagedAsync", page = ""}. Executing action Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) +2018-09-21 10:23:54.413 +03:00 [INF] Executing action method Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) with arguments (["Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto"]) - Validation state: "Valid" +2018-09-21 10:23:54.463 +03:00 [INF] Executed action method Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 49.746500000000005ms. +2018-09-21 10:23:54.464 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Blogging.Blogs.Dtos.BlogDto, Volo.Blogging.Application.Contracts, Version=0.4.1.0, Culture=neutral, PublicKeyToken=null]]'. +2018-09-21 10:23:54.476 +03:00 [INF] Executed action Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) in 66.8458ms +2018-09-21 10:23:54.476 +03:00 [INF] Request finished in 118.6923ms 200 application/json; charset=utf-8 +2018-09-21 10:24:02.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Admin/Blogs/Edit?blogId=fc8ad029-8860-4436-8515-84e55de6dd65 +2018-09-21 10:24:02.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:24:02.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:24:02.614 +03:00 [INF] Route matched with {page = "/Admin/Blogs/Edit", controller = "", area = "", action = ""}. Executing action /Admin/Blogs/Edit +2018-09-21 10:24:02.617 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:24:02.619 +03:00 [INF] Authorization was successful. +2018-09-21 10:24:02.762 +03:00 [INF] Executed action /Admin/Blogs/Edit in 148.0601ms +2018-09-21 10:24:02.762 +03:00 [INF] Request finished in 439.7099ms 200 text/html; charset=utf-8 +2018-09-21 10:25:36.938 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Admin/Blogs/Edit application/x-www-form-urlencoded; charset=UTF-8 450 +2018-09-21 10:25:36.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:36.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:36.969 +03:00 [INF] Route matched with {page = "/Admin/Blogs/Edit", controller = "", area = "", action = ""}. Executing action /Admin/Blogs/Edit +2018-09-21 10:25:37.015 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:25:37.018 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:37.133 +03:00 [INF] Executed action /Admin/Blogs/Edit in 164.55030000000002ms +2018-09-21 10:25:37.134 +03:00 [INF] Request finished in 195.3103ms 200 text/html; charset=utf-8 +2018-09-21 10:25:37.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/blogging/blogs?skipCount=0&maxResultCount=10&sorting=creationTime%20desc application/json +2018-09-21 10:25:37.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:37.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:37.179 +03:00 [INF] Route matched with {area = "blogging", controller = "Blogs", action = "GetListPagedAsync", page = ""}. Executing action Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) +2018-09-21 10:25:37.180 +03:00 [INF] Executing action method Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) with arguments (["Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto"]) - Validation state: "Valid" +2018-09-21 10:25:37.186 +03:00 [INF] Executed action method Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.2116000000000007ms. +2018-09-21 10:25:37.186 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Blogging.Blogs.Dtos.BlogDto, Volo.Blogging.Application.Contracts, Version=0.4.1.0, Culture=neutral, PublicKeyToken=null]]'. +2018-09-21 10:25:37.186 +03:00 [INF] Executed action Volo.Blogging.BlogsController.GetListPagedAsync (Volo.Blogging.HttpApi) in 7.131ms +2018-09-21 10:25:37.186 +03:00 [INF] Request finished in 36.7925ms 200 application/json; charset=utf-8 +2018-09-21 10:25:41.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:25:41.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.726 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:25:41.731 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:25:41.756 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:41.769 +03:00 [INF] Executed action /Blog/Posts/Index in 42.6062ms +2018-09-21 10:25:41.769 +03:00 [INF] Request finished in 67.6001ms 200 text/html; charset=utf-8 +2018-09-21 10:25:41.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:25:41.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.819 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:25:41.819 +03:00 [INF] Request finished in 4.9198ms 200 text/css +2018-09-21 10:25:41.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:25:41.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.824 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:25:41.824 +03:00 [INF] Request finished in 1.7546ms 200 text/css +2018-09-21 10:25:41.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:25:41.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.827 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:25:41.827 +03:00 [INF] Request finished in 1.6ms 200 text/css +2018-09-21 10:25:41.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:25:41.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.829 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:25:41.829 +03:00 [INF] Request finished in 1.8308ms 200 text/css +2018-09-21 10:25:41.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:25:41.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:25:41.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.842 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:25:41.842 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:25:41.842 +03:00 [INF] Request finished in 2.1889ms 200 text/css +2018-09-21 10:25:41.842 +03:00 [INF] Request finished in 1.8864ms 200 text/css +2018-09-21 10:25:41.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:25:41.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:25:41.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.860 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:25:41.860 +03:00 [INF] Request finished in 1.6705ms 200 text/css +2018-09-21 10:25:41.860 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:25:41.861 +03:00 [INF] Request finished in 2.7145ms 200 text/css +2018-09-21 10:25:41.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:25:41.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:25:41.864 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:25:41.864 +03:00 [INF] Request finished in 1.8535ms 200 text/css +2018-09-21 10:25:41.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.869 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:25:41.869 +03:00 [INF] Request finished in 6.1184ms 200 text/css +2018-09-21 10:25:41.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:25:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:25:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.873 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:25:41.874 +03:00 [INF] Request finished in 2.0821ms 200 text/css +2018-09-21 10:25:41.874 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:25:41.874 +03:00 [INF] Request finished in 2.811ms 200 text/css +2018-09-21 10:25:41.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:25:41.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:25:41.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.885 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:25:41.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:25:41.885 +03:00 [INF] Request finished in 3.2312ms 200 application/javascript +2018-09-21 10:25:41.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:25:41.886 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:25:41.886 +03:00 [INF] Request finished in 1.0422ms 200 application/javascript +2018-09-21 10:25:41.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:25:41.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.892 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:25:41.892 +03:00 [INF] Request finished in 6.3942ms 200 application/javascript +2018-09-21 10:25:41.895 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:25:41.896 +03:00 [INF] Request finished in 5.3692ms 200 application/javascript +2018-09-21 10:25:41.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:25:41.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:25:41.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.921 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:25:41.921 +03:00 [INF] Request finished in 1.3182ms 200 application/javascript +2018-09-21 10:25:41.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:25:41.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.942 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:25:41.943 +03:00 [INF] Request finished in 3.8861ms 200 application/javascript +2018-09-21 10:25:41.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:25:41.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.948 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:25:41.948 +03:00 [INF] Request finished in 1.9616ms 200 application/javascript +2018-09-21 10:25:41.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:25:41.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.952 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:25:41.952 +03:00 [INF] Request finished in 3.7429ms 200 application/javascript +2018-09-21 10:25:41.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:25:41.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:25:41.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.969 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:25:41.969 +03:00 [INF] Request finished in 4.0659ms 200 application/javascript +2018-09-21 10:25:41.970 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:25:41.971 +03:00 [INF] Request finished in 17.5322ms 200 application/javascript +2018-09-21 10:25:41.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:25:41.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.975 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:25:41.975 +03:00 [INF] Request finished in 2.5727ms 200 application/javascript +2018-09-21 10:25:41.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:25:41.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:25:41.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.984 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:25:41.985 +03:00 [INF] Request finished in 1.367ms 200 application/javascript +2018-09-21 10:25:41.985 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:25:41.985 +03:00 [INF] Request finished in 1.4518ms 200 application/javascript +2018-09-21 10:25:41.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:25:41.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.996 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:25:41.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:25:41.996 +03:00 [INF] Request finished in 5.2357ms 200 application/javascript +2018-09-21 10:25:41.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:25:41.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:41.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:41.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:25:41.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:25:41.997 +03:00 [INF] Request finished in 1.049ms 200 application/javascript +2018-09-21 10:25:41.997 +03:00 [INF] Request finished in 1.3607ms 200 application/javascript +2018-09-21 10:25:42.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:25:42.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:25:42.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.005 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:25:42.006 +03:00 [INF] Request finished in 1.4758ms 200 application/javascript +2018-09-21 10:25:42.006 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:25:42.006 +03:00 [INF] Request finished in 1.2793ms 200 application/javascript +2018-09-21 10:25:42.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:25:42.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.008 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:25:42.008 +03:00 [INF] Request finished in 1.7461ms 200 application/javascript +2018-09-21 10:25:42.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:25:42.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.016 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:25:42.016 +03:00 [INF] Request finished in 1.8091ms 200 application/javascript +2018-09-21 10:25:42.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:25:42.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.018 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:25:42.018 +03:00 [INF] Request finished in 1.896ms 200 application/javascript +2018-09-21 10:25:42.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:25:42.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:25:42.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:25:42.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:25:42.029 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:25:42.029 +03:00 [INF] Request finished in 2.1494ms 200 application/javascript +2018-09-21 10:25:42.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.031 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:25:42.031 +03:00 [INF] Request finished in 2.0855ms 200 application/javascript +2018-09-21 10:25:42.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:25:42.037 +03:00 [INF] Request finished in 157.7197ms 404 +2018-09-21 10:25:42.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.038 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:25:42.039 +03:00 [INF] Request finished in 1.6312ms 200 application/javascript +2018-09-21 10:25:42.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:25:42.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.043 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:25:42.043 +03:00 [INF] Request finished in 1.9935ms 200 application/javascript +2018-09-21 10:25:42.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:25:42.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:25:42.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.052 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:25:42.052 +03:00 [INF] Request finished in 1.1911ms 200 application/javascript +2018-09-21 10:25:42.053 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:25:42.053 +03:00 [INF] Request finished in 2.0714ms 200 font/woff2 +2018-09-21 10:25:42.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:25:42.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:25:42.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.059 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:25:42.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.059 +03:00 [INF] Request finished in 1.6876ms 200 image/svg+xml +2018-09-21 10:25:42.066 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:25:42.066 +03:00 [INF] Request finished in 8.3613ms 200 image/jpeg +2018-09-21 10:25:42.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:25:42.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:25:42.068 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:25:42.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.068 +03:00 [INF] Request finished in 159.0174ms 404 +2018-09-21 10:25:42.069 +03:00 [INF] Request finished in 2.2703ms 200 image/svg+xml +2018-09-21 10:25:42.077 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:25:42.077 +03:00 [INF] Request finished in 10.149ms 200 image/jpeg +2018-09-21 10:25:42.112 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:25:42.114 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:25:42.114 +03:00 [INF] Authorization failed. +2018-09-21 10:25:42.115 +03:00 [INF] Authorization failed. +2018-09-21 10:25:42.115 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.116 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.116 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.117 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.118 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.119 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.120 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.120 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.121 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.121 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.122 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.123 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.123 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.124 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.124 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.125 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.125 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.126 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.126 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.127 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.129 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.129 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.130 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.131 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.132 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.132 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.133 +03:00 [INF] Authorization was successful. +2018-09-21 10:25:42.134 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.9386ms. +2018-09-21 10:25:42.134 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:25:42.135 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.9188ms +2018-09-21 10:25:42.135 +03:00 [INF] Request finished in 115.7762ms 200 text/plain; charset=utf-8 +2018-09-21 10:25:42.157 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:25:42.158 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:25:42.158 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1013ms. +2018-09-21 10:25:42.158 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:25:42.158 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0292000000000001ms +2018-09-21 10:25:42.159 +03:00 [INF] Request finished in 135.5396ms 200 text/plain; charset=utf-8 +2018-09-21 10:25:42.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:25:42.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:25:42.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:25:42.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.484 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:25:42.484 +03:00 [INF] Request finished in 2.2786ms 200 image/png +2018-09-21 10:25:42.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:25:42.493 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:25:42.493 +03:00 [INF] Request finished in 11.0995ms 200 image/png +2018-09-21 10:26:47.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:26:47.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.633 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:26:47.636 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:26:47.672 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:47.674 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:47.678 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:47.688 +03:00 [INF] Executed action /Blog/Posts/Detail in 54.778000000000006ms +2018-09-21 10:26:47.688 +03:00 [INF] Request finished in 83.9767ms 200 text/html; charset=utf-8 +2018-09-21 10:26:47.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:26:47.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:26:47.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.744 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:26:47.744 +03:00 [INF] Request finished in 5.4218ms 200 text/css +2018-09-21 10:26:47.744 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:26:47.745 +03:00 [INF] Request finished in 2.4835ms 200 text/css +2018-09-21 10:26:47.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:26:47.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.746 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:26:47.746 +03:00 [INF] Request finished in 1.0917ms 200 text/css +2018-09-21 10:26:47.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:26:47.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.750 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:26:47.750 +03:00 [INF] Request finished in 1.5836ms 200 text/css +2018-09-21 10:26:47.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:26:47.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.765 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:26:47.765 +03:00 [INF] Request finished in 1.9868ms 200 text/css +2018-09-21 10:26:47.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:26:47.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:26:47.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.769 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:26:47.770 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:26:47.770 +03:00 [INF] Request finished in 1.3391ms 200 text/css +2018-09-21 10:26:47.771 +03:00 [INF] Request finished in 2.0176ms 200 text/css +2018-09-21 10:26:47.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:26:47.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.775 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:26:47.775 +03:00 [INF] Request finished in 1.0367ms 200 text/css +2018-09-21 10:26:47.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:26:47.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.778 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:26:47.779 +03:00 [INF] Request finished in 2.4944ms 200 text/css +2018-09-21 10:26:47.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:26:47.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.787 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:26:47.787 +03:00 [INF] Request finished in 1.3641ms 200 image/png +2018-09-21 10:26:47.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:26:47.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:26:47.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.795 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:26:47.795 +03:00 [INF] Request finished in 5.218ms 200 application/javascript +2018-09-21 10:26:47.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:26:47.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.808 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:26:47.808 +03:00 [INF] Request finished in 9.4343ms 200 application/javascript +2018-09-21 10:26:47.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:26:47.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.811 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:26:47.812 +03:00 [INF] Request finished in 1.4592ms 200 application/javascript +2018-09-21 10:26:47.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:26:47.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.821 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:26:47.821 +03:00 [INF] Request finished in 7.5025ms 200 application/javascript +2018-09-21 10:26:47.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:26:47.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:26:47.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.834 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:26:47.834 +03:00 [INF] Request finished in 2.8937ms 200 application/javascript +2018-09-21 10:26:47.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:26:47.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.852 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:26:47.852 +03:00 [INF] Request finished in 4.6559ms 200 application/javascript +2018-09-21 10:26:47.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:26:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.854 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:26:47.855 +03:00 [INF] Request finished in 1.4497ms 200 application/javascript +2018-09-21 10:26:47.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:26:47.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:26:47.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.884 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:26:47.884 +03:00 [INF] Request finished in 1.4293ms 200 application/javascript +2018-09-21 10:26:47.886 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:26:47.886 +03:00 [INF] Request finished in 3.8707ms 200 application/javascript +2018-09-21 10:26:47.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:26:47.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:26:47.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.893 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:26:47.893 +03:00 [INF] Request finished in 2.6497ms 200 application/javascript +2018-09-21 10:26:47.904 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:26:47.904 +03:00 [INF] Request finished in 16.8699ms 200 application/javascript +2018-09-21 10:26:47.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:26:47.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.914 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:26:47.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:26:47.914 +03:00 [INF] Request finished in 2.0647ms 200 application/javascript +2018-09-21 10:26:47.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.916 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:26:47.916 +03:00 [INF] Request finished in 2.2723ms 200 application/javascript +2018-09-21 10:26:47.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:26:47.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.926 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:26:47.926 +03:00 [INF] Request finished in 1.8871ms 200 application/javascript +2018-09-21 10:26:47.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:26:47.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:26:47.931 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:26:47.931 +03:00 [INF] Request finished in 4.3873ms 200 application/javascript +2018-09-21 10:26:47.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.932 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:26:47.932 +03:00 [INF] Request finished in 1.3409ms 200 application/javascript +2018-09-21 10:26:47.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:26:47.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:26:47.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:26:47.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:26:47.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:26:47.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.954 +03:00 [INF] Request finished in 2.0862ms 200 application/javascript +2018-09-21 10:26:47.954 +03:00 [INF] Request finished in 2.6476ms 200 application/javascript +2018-09-21 10:26:47.955 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:26:47.955 +03:00 [INF] Request finished in 1.7236ms 200 application/javascript +2018-09-21 10:26:47.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:26:47.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:26:47.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.967 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:26:47.967 +03:00 [INF] Request finished in 1.0879ms 200 application/javascript +2018-09-21 10:26:47.967 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:26:47.967 +03:00 [INF] Request finished in 1.5178ms 200 application/javascript +2018-09-21 10:26:47.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:26:47.969 +03:00 [INF] Request finished in 181.624ms 404 +2018-09-21 10:26:47.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:26:47.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:26:47.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.976 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:26:47.976 +03:00 [INF] Request finished in 2.5538ms 200 application/javascript +2018-09-21 10:26:47.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:26:47.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.983 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:26:47.984 +03:00 [INF] Request finished in 2.1165ms 200 application/javascript +2018-09-21 10:26:47.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:26:47.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:26:47.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:47.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:47.999 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:26:47.999 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:26:47.999 +03:00 [INF] Request finished in 3.0879ms 200 application/javascript +2018-09-21 10:26:47.999 +03:00 [INF] Request finished in 1.5884ms 200 application/javascript +2018-09-21 10:26:48.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:26:48.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.012 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:26:48.012 +03:00 [INF] Request finished in 7.6958ms 200 font/woff2 +2018-09-21 10:26:48.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:26:48.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.017 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:26:48.018 +03:00 [INF] Request finished in 2.2037ms 200 image/svg+xml +2018-09-21 10:26:48.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:26:48.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.024 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:26:48.024 +03:00 [INF] Request finished in 3.5198ms 200 image/svg+xml +2018-09-21 10:26:48.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:26:48.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:26:48.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.036 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:26:48.036 +03:00 [INF] Request finished in 6.2625ms 200 image/jpeg +2018-09-21 10:26:48.039 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:26:48.039 +03:00 [INF] Request finished in 12.3668ms 200 image/jpeg +2018-09-21 10:26:48.052 +03:00 [INF] Request finished in 223.1442ms 404 +2018-09-21 10:26:48.075 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:26:48.076 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:26:48.076 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13ms. +2018-09-21 10:26:48.076 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:26:48.076 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3110000000000002ms +2018-09-21 10:26:48.077 +03:00 [INF] Request finished in 102.729ms 200 text/plain; charset=utf-8 +2018-09-21 10:26:48.087 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:26:48.088 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:26:48.089 +03:00 [INF] Authorization failed. +2018-09-21 10:26:48.089 +03:00 [INF] Authorization failed. +2018-09-21 10:26:48.090 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.091 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.092 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.096 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.099 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.100 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.102 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.102 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.103 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.103 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.104 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.105 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.106 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.106 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.106 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.107 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.107 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.108 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.108 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.109 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.112 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.113 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.114 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.114 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.115 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.117 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.118 +03:00 [INF] Authorization was successful. +2018-09-21 10:26:48.120 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 31.876900000000003ms. +2018-09-21 10:26:48.121 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:26:48.121 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 33.3585ms +2018-09-21 10:26:48.121 +03:00 [INF] Request finished in 151.9058ms 200 text/plain; charset=utf-8 +2018-09-21 10:26:48.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:26:48.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.470 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:26:48.470 +03:00 [INF] Request finished in 1.7369ms 200 image/png +2018-09-21 10:26:48.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:26:48.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:26:48.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:26:48.478 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:26:48.478 +03:00 [INF] Request finished in 4.9843ms 200 image/png +2018-09-21 10:27:06.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:27:06.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.399 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:27:06.402 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:27:06.426 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.438 +03:00 [INF] Executed action /Blog/Posts/Index in 38.275ms +2018-09-21 10:27:06.438 +03:00 [INF] Request finished in 81.6454ms 200 text/html; charset=utf-8 +2018-09-21 10:27:06.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:27:06.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:27:06.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.481 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:27:06.481 +03:00 [INF] Request finished in 5.5118ms 200 text/css +2018-09-21 10:27:06.482 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:27:06.482 +03:00 [INF] Request finished in 4.8564ms 200 text/css +2018-09-21 10:27:06.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:27:06.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.492 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:27:06.493 +03:00 [INF] Request finished in 4.3222ms 200 text/css +2018-09-21 10:27:06.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:27:06.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.500 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:27:06.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:27:06.500 +03:00 [INF] Request finished in 2.335ms 200 text/css +2018-09-21 10:27:06.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.501 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:27:06.501 +03:00 [INF] Request finished in 1.2759ms 200 text/css +2018-09-21 10:27:06.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:27:06.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.507 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:27:06.508 +03:00 [INF] Request finished in 1.919ms 200 text/css +2018-09-21 10:27:06.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:27:06.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.511 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:27:06.511 +03:00 [INF] Request finished in 2.4866ms 200 text/css +2018-09-21 10:27:06.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:27:06.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.520 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:27:06.520 +03:00 [INF] Request finished in 3.1921ms 200 text/css +2018-09-21 10:27:06.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:27:06.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:27:06.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.523 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:27:06.523 +03:00 [INF] Request finished in 1.0984ms 200 text/css +2018-09-21 10:27:06.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:27:06.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.524 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:27:06.525 +03:00 [INF] Request finished in 3.2091ms 200 text/css +2018-09-21 10:27:06.526 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:27:06.526 +03:00 [INF] Request finished in 2.3377ms 200 text/css +2018-09-21 10:27:06.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:27:06.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.531 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:27:06.532 +03:00 [INF] Request finished in 2.1832ms 200 text/css +2018-09-21 10:27:06.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:27:06.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:27:06.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.553 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:27:06.553 +03:00 [INF] Request finished in 1.3038ms 200 application/javascript +2018-09-21 10:27:06.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:27:06.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:27:06.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.565 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:27:06.565 +03:00 [INF] Request finished in 1.4103ms 200 application/javascript +2018-09-21 10:27:06.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:27:06.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.571 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:27:06.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.571 +03:00 [INF] Request finished in 10.1611ms 200 application/javascript +2018-09-21 10:27:06.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:27:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:27:06.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.581 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:27:06.581 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:27:06.582 +03:00 [INF] Request finished in 1.9683ms 200 application/javascript +2018-09-21 10:27:06.582 +03:00 [INF] Request finished in 9.569ms 200 application/javascript +2018-09-21 10:27:06.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:27:06.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.586 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:27:06.587 +03:00 [INF] Request finished in 2.215ms 200 application/javascript +2018-09-21 10:27:06.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:27:06.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:27:06.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.607 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:27:06.607 +03:00 [INF] Request finished in 2.6769ms 200 application/javascript +2018-09-21 10:27:06.608 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:27:06.608 +03:00 [INF] Request finished in 3.3933ms 200 application/javascript +2018-09-21 10:27:06.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:27:06.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:27:06.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.622 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:27:06.622 +03:00 [INF] Request finished in 3.257ms 200 application/javascript +2018-09-21 10:27:06.629 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:27:06.629 +03:00 [INF] Request finished in 10.4771ms 200 application/javascript +2018-09-21 10:27:06.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:27:06.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.632 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:27:06.632 +03:00 [INF] Request finished in 1.7174ms 200 application/javascript +2018-09-21 10:27:06.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:27:06.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:27:06.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.640 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:27:06.640 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:27:06.640 +03:00 [INF] Request finished in 1.6988ms 200 application/javascript +2018-09-21 10:27:06.640 +03:00 [INF] Request finished in 2.7773ms 200 application/javascript +2018-09-21 10:27:06.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:27:06.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.651 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:27:06.652 +03:00 [INF] Request finished in 2.8273ms 200 application/javascript +2018-09-21 10:27:06.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:27:06.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:27:06.653 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:27:06.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.653 +03:00 [INF] Request finished in 1.5828ms 200 application/javascript +2018-09-21 10:27:06.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.654 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:27:06.654 +03:00 [INF] Request finished in 1.3166ms 200 application/javascript +2018-09-21 10:27:06.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:27:06.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:27:06.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.661 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:27:06.661 +03:00 [INF] Request finished in 1.444ms 200 application/javascript +2018-09-21 10:27:06.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:27:06.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.666 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:27:06.666 +03:00 [INF] Request finished in 5.0449ms 200 application/javascript +2018-09-21 10:27:06.666 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:27:06.667 +03:00 [INF] Request finished in 2.1082ms 200 application/javascript +2018-09-21 10:27:06.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:27:06.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.670 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:27:06.670 +03:00 [INF] Request finished in 2.4238ms 200 application/javascript +2018-09-21 10:27:06.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:27:06.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:27:06.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:27:06.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.677 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:27:06.678 +03:00 [INF] Request finished in 2.2788ms 200 application/javascript +2018-09-21 10:27:06.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:27:06.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.692 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:27:06.692 +03:00 [INF] Request finished in 2.1948ms 200 application/javascript +2018-09-21 10:27:06.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:27:06.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.704 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:27:06.704 +03:00 [INF] Request finished in 1.2553ms 200 application/javascript +2018-09-21 10:27:06.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:27:06.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.710 +03:00 [INF] Request finished in 166.6694ms 404 +2018-09-21 10:27:06.710 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:27:06.710 +03:00 [INF] Request finished in 1.633ms 200 application/javascript +2018-09-21 10:27:06.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:27:06.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.711 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:27:06.712 +03:00 [INF] Request finished in 1.2257ms 200 application/javascript +2018-09-21 10:27:06.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:27:06.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:27:06.720 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:27:06.721 +03:00 [INF] Request finished in 1.3639ms 200 application/javascript +2018-09-21 10:27:06.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.724 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:27:06.724 +03:00 [INF] Request finished in 3.9587ms 200 font/woff2 +2018-09-21 10:27:06.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:27:06.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.728 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:27:06.729 +03:00 [INF] Request finished in 2.2446ms 200 image/svg+xml +2018-09-21 10:27:06.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:27:06.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:27:06.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.736 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:27:06.736 +03:00 [INF] Request finished in 1.4645ms 200 image/svg+xml +2018-09-21 10:27:06.737 +03:00 [INF] Request finished in 167.1274ms 404 +2018-09-21 10:27:06.739 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:27:06.739 +03:00 [INF] Request finished in 6.721ms 200 image/jpeg +2018-09-21 10:27:06.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:27:06.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:06.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:06.752 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:27:06.752 +03:00 [INF] Request finished in 8.148ms 200 image/jpeg +2018-09-21 10:27:06.764 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:27:06.765 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:27:06.765 +03:00 [INF] Authorization failed. +2018-09-21 10:27:06.765 +03:00 [INF] Authorization failed. +2018-09-21 10:27:06.766 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.767 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.767 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.768 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:27:06.768 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.769 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:27:06.769 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11030000000000001ms. +2018-09-21 10:27:06.769 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:27:06.769 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2384000000000002ms +2018-09-21 10:27:06.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.769 +03:00 [INF] Request finished in 94.2231ms 200 text/plain; charset=utf-8 +2018-09-21 10:27:06.770 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.774 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.774 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.776 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.777 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.777 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.778 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.779 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.780 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.781 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.782 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.783 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.783 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.784 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.784 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.785 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.785 +03:00 [INF] Authorization was successful. +2018-09-21 10:27:06.787 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 21.41ms. +2018-09-21 10:27:06.787 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:27:06.787 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.6555ms +2018-09-21 10:27:06.787 +03:00 [INF] Request finished in 115.1927ms 200 text/plain; charset=utf-8 +2018-09-21 10:27:07.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:27:07.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:07.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:07.034 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:27:07.034 +03:00 [INF] Request finished in 1.8356ms 200 image/png +2018-09-21 10:27:07.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:27:07.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:27:07.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:27:07.043 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:27:07.043 +03:00 [INF] Request finished in 3.0427ms 200 image/png +2018-09-21 10:29:21.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:29:21.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:21.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:21.351 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:29:21.351 +03:00 [INF] Request finished in 4.0426ms 200 text/css +2018-09-21 10:29:21.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-21 10:29:21.520 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-21 10:29:21.521 +03:00 [INF] Request finished in 0.7201ms 304 text/plain +2018-09-21 10:29:21.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:29:21.523 +03:00 [INF] Request finished in 1.0598ms 404 +2018-09-21 10:29:42.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 10:29:42.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.731 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 10:29:42.762 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:29:42.792 +03:00 [INF] Executed action /Templates in 61.6141ms +2018-09-21 10:29:42.793 +03:00 [INF] Request finished in 390.5045ms 200 text/html; charset=utf-8 +2018-09-21 10:29:42.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:29:42.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:29:42.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.896 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 10:29:42.896 +03:00 [INF] Request finished in 2.1462ms 304 application/javascript +2018-09-21 10:29:42.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:29:42.898 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.898 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:29:42.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.908 +03:00 [INF] Request finished in 52.8953ms 404 +2018-09-21 10:29:42.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-09-21 10:29:42.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:42.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:42.923 +03:00 [INF] The file /Pages/templates.js was not modified +2018-09-21 10:29:42.923 +03:00 [INF] Request finished in 0.7466ms 304 application/javascript +2018-09-21 10:29:42.940 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:29:42.940 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:29:42.940 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:29:42.940 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:29:42.940 +03:00 [INF] Authorization failed. +2018-09-21 10:29:42.940 +03:00 [INF] Authorization failed. +2018-09-21 10:29:42.941 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1371ms. +2018-09-21 10:29:42.941 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:29:42.941 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3049000000000002ms +2018-09-21 10:29:42.941 +03:00 [INF] Request finished in 41.0186ms 200 text/plain; charset=utf-8 +2018-09-21 10:29:42.941 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.942 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.942 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.943 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.944 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.945 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.946 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.946 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.947 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.948 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.948 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.949 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.950 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.951 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.951 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.952 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.953 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.955 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.955 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.956 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.957 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.958 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.959 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.959 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.960 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.961 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.962 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:42.963 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.918200000000002ms. +2018-09-21 10:29:42.964 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:29:42.964 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.046000000000003ms +2018-09-21 10:29:42.964 +03:00 [INF] Request finished in 66.5291ms 200 text/plain; charset=utf-8 +2018-09-21 10:29:43.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:29:43.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:43.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:43.114 +03:00 [INF] Request finished in 26.345ms 404 +2018-09-21 10:29:53.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 10:29:53.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:53.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:53.710 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 10:29:53.711 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:29:53.718 +03:00 [INF] Executed action /Templates in 8.0080000000000009ms +2018-09-21 10:29:53.718 +03:00 [INF] Request finished in 37.9472ms 200 text/html; charset=utf-8 +2018-09-21 10:29:53.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:29:53.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:53.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:53.813 +03:00 [INF] Request finished in 32.2051ms 404 +2018-09-21 10:29:53.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:29:53.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:29:53.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:53.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:53.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:53.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:53.859 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:29:53.859 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:29:53.859 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:29:53.859 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:29:53.859 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11330000000000001ms. +2018-09-21 10:29:53.859 +03:00 [INF] Authorization failed. +2018-09-21 10:29:53.859 +03:00 [INF] Authorization failed. +2018-09-21 10:29:53.860 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:29:53.860 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.94580000000000009ms +2018-09-21 10:29:53.860 +03:00 [INF] Request finished in 28.8326ms 200 text/plain; charset=utf-8 +2018-09-21 10:29:53.860 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.861 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.861 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.862 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.864 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.865 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.866 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.866 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.867 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.868 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.868 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.869 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.870 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.870 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.872 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.873 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.873 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.874 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.874 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.875 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.875 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.876 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.876 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.876 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.877 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.877 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.877 +03:00 [INF] Authorization was successful. +2018-09-21 10:29:53.879 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.4436ms. +2018-09-21 10:29:53.879 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:29:53.879 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.377000000000002ms +2018-09-21 10:29:53.879 +03:00 [INF] Request finished in 48.6237ms 200 text/plain; charset=utf-8 +2018-09-21 10:29:54.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:29:54.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:29:54.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:29:54.171 +03:00 [INF] Request finished in 30.2146ms 404 +2018-09-21 10:30:40.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:30:40.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:30:40.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:30:40.592 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:30:40.594 +03:00 [INF] Request finished in 2.6115ms 200 text/css +2018-09-21 10:31:11.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:31:11.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.609 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:31:11.613 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:31:11.639 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.649 +03:00 [INF] Executed action /Blog/Posts/Index in 38.9217ms +2018-09-21 10:31:11.649 +03:00 [INF] Request finished in 67.3768ms 200 text/html; charset=utf-8 +2018-09-21 10:31:11.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:31:11.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.672 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 10:31:11.672 +03:00 [INF] Request finished in 1.8653ms 304 text/css +2018-09-21 10:31:11.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:31:11.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.676 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 10:31:11.676 +03:00 [INF] Request finished in 1.0824ms 304 text/css +2018-09-21 10:31:11.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:31:11.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.680 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 10:31:11.681 +03:00 [INF] Request finished in 1.2942ms 304 text/css +2018-09-21 10:31:11.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:31:11.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.683 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 10:31:11.683 +03:00 [INF] Request finished in 0.8802ms 304 text/css +2018-09-21 10:31:11.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:31:11.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.689 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 10:31:11.692 +03:00 [INF] Request finished in 2.0742ms 304 text/css +2018-09-21 10:31:11.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:31:11.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.696 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 10:31:11.696 +03:00 [INF] Request finished in 3.2586ms 304 text/css +2018-09-21 10:31:11.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:31:11.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.699 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 10:31:11.699 +03:00 [INF] Request finished in 1.2531ms 304 text/css +2018-09-21 10:31:11.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:31:11.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.703 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 10:31:11.703 +03:00 [INF] Request finished in 1.0389ms 304 text/css +2018-09-21 10:31:11.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:31:11.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.709 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-21 10:31:11.709 +03:00 [INF] Request finished in 3.0573ms 304 text/css +2018-09-21 10:31:11.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:31:11.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.711 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-21 10:31:11.711 +03:00 [INF] Request finished in 1.7185ms 304 text/css +2018-09-21 10:31:11.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:31:11.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.713 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-21 10:31:11.713 +03:00 [INF] Request finished in 0.8544ms 304 text/css +2018-09-21 10:31:11.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:31:11.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.714 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 10:31:11.714 +03:00 [INF] Request finished in 0.9218ms 304 text/css +2018-09-21 10:31:11.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:31:11.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:31:11.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.722 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 10:31:11.722 +03:00 [INF] Request finished in 0.7739ms 304 application/javascript +2018-09-21 10:31:11.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:31:11.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.726 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 10:31:11.726 +03:00 [INF] Request finished in 1.6333ms 304 application/javascript +2018-09-21 10:31:11.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:31:11.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.734 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 10:31:11.734 +03:00 [INF] Request finished in 1.5713ms 304 application/javascript +2018-09-21 10:31:11.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:31:11.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.738 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 10:31:11.738 +03:00 [INF] Request finished in 1.0719ms 304 application/javascript +2018-09-21 10:31:11.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:31:11.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:31:11.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.744 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 10:31:11.744 +03:00 [INF] Request finished in 1.5517ms 304 application/javascript +2018-09-21 10:31:11.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:31:11.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.752 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 10:31:11.753 +03:00 [INF] Request finished in 1.3226ms 304 application/javascript +2018-09-21 10:31:11.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:31:11.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.756 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 10:31:11.756 +03:00 [INF] Request finished in 2.6984ms 304 application/javascript +2018-09-21 10:31:11.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:31:11.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.758 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 10:31:11.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:31:11.758 +03:00 [INF] Request finished in 1.6446ms 304 application/javascript +2018-09-21 10:31:11.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.759 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 10:31:11.759 +03:00 [INF] Request finished in 1.2475ms 304 application/javascript +2018-09-21 10:31:11.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:31:11.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.764 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 10:31:11.764 +03:00 [INF] Request finished in 3.2873ms 304 application/javascript +2018-09-21 10:31:11.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:31:11.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.773 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 10:31:11.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:31:11.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.775 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 10:31:11.776 +03:00 [INF] Request finished in 2.5134ms 304 application/javascript +2018-09-21 10:31:11.774 +03:00 [INF] Request finished in 1.3573ms 304 application/javascript +2018-09-21 10:31:11.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:31:11.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.781 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 10:31:11.781 +03:00 [INF] Request finished in 1.2019ms 304 application/javascript +2018-09-21 10:31:11.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:31:11.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.786 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 10:31:11.787 +03:00 [INF] Request finished in 1.2787ms 304 application/javascript +2018-09-21 10:31:11.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:31:11.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:31:11.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:31:11.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.792 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 10:31:11.793 +03:00 [INF] Request finished in 4.4689ms 304 application/javascript +2018-09-21 10:31:11.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.793 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 10:31:11.794 +03:00 [INF] Request finished in 3.1989ms 304 application/javascript +2018-09-21 10:31:11.795 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 10:31:11.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:31:11.795 +03:00 [INF] Request finished in 3.8339ms 304 application/javascript +2018-09-21 10:31:11.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.795 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 10:31:11.796 +03:00 [INF] Request finished in 1.1665ms 304 application/javascript +2018-09-21 10:31:11.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:31:11.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.804 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 10:31:11.804 +03:00 [INF] Request finished in 2.5935ms 304 application/javascript +2018-09-21 10:31:11.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:31:11.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.807 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 10:31:11.808 +03:00 [INF] Request finished in 3.1138ms 304 application/javascript +2018-09-21 10:31:11.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:31:11.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.811 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 10:31:11.812 +03:00 [INF] Request finished in 1.6155ms 304 application/javascript +2018-09-21 10:31:11.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:31:11.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:31:11.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:31:11.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.822 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 10:31:11.822 +03:00 [INF] Request finished in 0.967ms 304 application/javascript +2018-09-21 10:31:11.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:31:11.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.827 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 10:31:11.827 +03:00 [INF] Request finished in 0.8301ms 304 application/javascript +2018-09-21 10:31:11.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:31:11.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.832 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 10:31:11.833 +03:00 [INF] Request finished in 1.4344ms 304 application/javascript +2018-09-21 10:31:11.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:31:11.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.839 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 10:31:11.839 +03:00 [INF] Request finished in 0.9965ms 304 application/javascript +2018-09-21 10:31:11.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:31:11.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.841 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 10:31:11.841 +03:00 [INF] Request finished in 1.008ms 304 application/javascript +2018-09-21 10:31:11.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:31:11.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.847 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 10:31:11.847 +03:00 [INF] Request finished in 0.7838ms 304 image/svg+xml +2018-09-21 10:31:11.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:31:11.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.849 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 10:31:11.849 +03:00 [INF] Request finished in 0.8265ms 304 image/jpeg +2018-09-21 10:31:11.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:31:11.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.857 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 10:31:11.857 +03:00 [INF] Request finished in 0.8202ms 304 image/svg+xml +2018-09-21 10:31:11.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:31:11.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:11.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:11.859 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 10:31:11.859 +03:00 [INF] Request finished in 0.7727ms 304 image/jpeg +2018-09-21 10:31:11.872 +03:00 [INF] Request finished in 134.09ms 404 +2018-09-21 10:31:11.876 +03:00 [INF] Request finished in 155.2819ms 404 +2018-09-21 10:31:11.915 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:31:11.916 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:31:11.917 +03:00 [INF] Authorization failed. +2018-09-21 10:31:11.917 +03:00 [INF] Authorization failed. +2018-09-21 10:31:11.918 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.920 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.921 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.922 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.922 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.923 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.924 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.926 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.927 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.927 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.928 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.928 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:31:11.928 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.929 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:31:11.929 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.08900000000000001ms. +2018-09-21 10:31:11.929 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.929 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:31:11.929 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0825ms +2018-09-21 10:31:11.929 +03:00 [INF] Request finished in 111.833ms 200 text/plain; charset=utf-8 +2018-09-21 10:31:11.929 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.930 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.931 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.932 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.932 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.933 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.934 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.934 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.935 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.936 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.936 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.937 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.937 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.938 +03:00 [INF] Authorization was successful. +2018-09-21 10:31:11.940 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 23.234ms. +2018-09-21 10:31:11.940 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:31:11.940 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 25.187900000000003ms +2018-09-21 10:31:11.940 +03:00 [INF] Request finished in 125.2802ms 200 text/plain; charset=utf-8 +2018-09-21 10:31:12.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:31:12.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:12.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:12.214 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 10:31:12.214 +03:00 [INF] Request finished in 0.7831ms 304 image/png +2018-09-21 10:31:12.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:31:12.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:31:12.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:31:12.216 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-09-21 10:31:12.216 +03:00 [INF] Request finished in 0.9049ms 304 image/png +2018-09-21 10:32:12.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:32:12.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:32:12.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:32:12.756 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:32:12.756 +03:00 [INF] Request finished in 3.5438ms 200 text/css +2018-09-21 10:32:12.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:32:12.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:32:12.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:32:12.880 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:32:12.880 +03:00 [INF] Request finished in 2.0382ms 200 text/css +2018-09-21 10:32:12.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:32:12.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:32:12.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:32:12.994 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:32:12.995 +03:00 [INF] Request finished in 8.6749ms 200 text/css +2018-09-21 10:32:12.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:32:12.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:32:12.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:32:13.003 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:32:13.003 +03:00 [INF] Request finished in 8.017ms 200 text/css +2018-09-21 10:32:13.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-21 10:32:13.288 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-21 10:32:13.288 +03:00 [INF] Request finished in 0.7169ms 304 text/plain +2018-09-21 10:32:13.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:32:13.291 +03:00 [INF] Request finished in 2.1294ms 404 +2018-09-21 10:32:13.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636724313231447453 +2018-09-21 10:32:13.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:32:13.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:32:13.814 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:32:13.815 +03:00 [INF] Request finished in 15.0452ms 200 text/css +2018-09-21 10:35:14.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:35:14.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:14.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.304 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:35:15.308 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:35:15.391 +03:00 [INF] Executed action /Blog/Posts/Index in 86.71050000000001ms +2018-09-21 10:35:15.391 +03:00 [INF] Request finished in 554.4869ms 200 text/html; charset=utf-8 +2018-09-21 10:35:15.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:35:15.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:35:15.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:35:15.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.437 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:35:15.437 +03:00 [INF] Request finished in 1.4274ms 200 text/css +2018-09-21 10:35:15.437 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:35:15.437 +03:00 [INF] Request finished in 5.4084ms 200 text/css +2018-09-21 10:35:15.438 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:35:15.438 +03:00 [INF] Request finished in 3.9431ms 200 text/css +2018-09-21 10:35:15.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:35:15.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.453 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:35:15.453 +03:00 [INF] Request finished in 3.1479ms 200 text/css +2018-09-21 10:35:15.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:35:15.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.471 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:35:15.471 +03:00 [INF] Request finished in 1.6338ms 200 text/css +2018-09-21 10:35:15.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:35:15.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.473 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:35:15.473 +03:00 [INF] Request finished in 1.5386ms 200 text/css +2018-09-21 10:35:15.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636688924656935618 +2018-09-21 10:35:15.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.483 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:35:15.483 +03:00 [INF] Request finished in 1.8793ms 200 text/css +2018-09-21 10:35:15.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:35:15.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.494 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:35:15.494 +03:00 [INF] Request finished in 2.1374ms 200 text/css +2018-09-21 10:35:15.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:35:15.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:35:15.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.502 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:35:15.502 +03:00 [INF] Request finished in 2.4744ms 200 text/css +2018-09-21 10:35:15.502 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:35:15.503 +03:00 [INF] Request finished in 3.8181ms 200 text/css +2018-09-21 10:35:15.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:35:15.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.508 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:35:15.508 +03:00 [INF] Request finished in 1.8132ms 200 text/css +2018-09-21 10:35:15.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:35:15.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.510 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:35:15.511 +03:00 [INF] Request finished in 2.11ms 200 text/css +2018-09-21 10:35:15.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:35:15.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.515 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:35:15.516 +03:00 [INF] Request finished in 3.7061ms 200 application/javascript +2018-09-21 10:35:15.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:35:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:35:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:35:15.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.526 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:35:15.526 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:35:15.526 +03:00 [INF] Request finished in 2.9627ms 200 application/javascript +2018-09-21 10:35:15.526 +03:00 [INF] Request finished in 10.3889ms 200 application/javascript +2018-09-21 10:35:15.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:35:15.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:35:15.548 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:35:15.548 +03:00 [INF] Request finished in 6.5946ms 200 application/javascript +2018-09-21 10:35:15.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:35:15.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.577 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:35:15.577 +03:00 [INF] Request finished in 1.5388ms 200 application/javascript +2018-09-21 10:35:15.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:35:15.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:35:15.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.580 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:35:15.580 +03:00 [INF] Request finished in 1.0436ms 200 application/javascript +2018-09-21 10:35:15.580 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:35:15.580 +03:00 [INF] Request finished in 1.5857ms 200 application/javascript +2018-09-21 10:35:15.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:35:15.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:35:15.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.599 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:35:15.599 +03:00 [INF] Request finished in 3.7727ms 200 application/javascript +2018-09-21 10:35:15.608 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:35:15.608 +03:00 [INF] Request finished in 11.6495ms 200 application/javascript +2018-09-21 10:35:15.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:35:15.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.612 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:35:15.612 +03:00 [INF] Request finished in 1.6599ms 200 application/javascript +2018-09-21 10:35:15.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:35:15.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.624 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:35:15.624 +03:00 [INF] Request finished in 1.4404ms 200 application/javascript +2018-09-21 10:35:15.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:35:15.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.628 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:35:15.628 +03:00 [INF] Request finished in 2.0701ms 200 application/javascript +2018-09-21 10:35:15.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:35:15.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.645 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:35:15.645 +03:00 [INF] Request finished in 3.9336ms 200 application/javascript +2018-09-21 10:35:15.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:35:15.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.650 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:35:15.650 +03:00 [INF] Request finished in 1.2718ms 200 application/javascript +2018-09-21 10:35:15.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:35:15.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:35:15.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.659 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:35:15.659 +03:00 [INF] Request finished in 3.1088ms 200 application/javascript +2018-09-21 10:35:15.659 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:35:15.660 +03:00 [INF] Request finished in 5.7955ms 200 application/javascript +2018-09-21 10:35:15.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:35:15.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.672 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:35:15.672 +03:00 [INF] Request finished in 1.5095ms 200 application/javascript +2018-09-21 10:35:15.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:35:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.677 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:35:15.677 +03:00 [INF] Request finished in 2.1522ms 200 application/javascript +2018-09-21 10:35:15.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:35:15.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:35:15.680 +03:00 [INF] Request finished in 2.718ms 200 application/javascript +2018-09-21 10:35:15.689 +03:00 [INF] Request finished in 165.0489ms 404 +2018-09-21 10:35:15.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:35:15.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.691 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:35:15.692 +03:00 [INF] Request finished in 1.8593ms 200 application/javascript +2018-09-21 10:35:15.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:35:15.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.693 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:35:15.693 +03:00 [INF] Request finished in 0.9152ms 200 application/javascript +2018-09-21 10:35:15.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:35:15.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:35:15.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:35:15.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:35:15.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.702 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:35:15.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.702 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:35:15.702 +03:00 [INF] Request finished in 2.4033ms 200 application/javascript +2018-09-21 10:35:15.702 +03:00 [INF] Request finished in 1.564ms 200 application/javascript +2018-09-21 10:35:15.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:35:15.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:35:15.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.713 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:35:15.713 +03:00 [INF] Request finished in 1.4817ms 200 application/javascript +2018-09-21 10:35:15.713 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:35:15.713 +03:00 [INF] Request finished in 1.6424ms 200 application/javascript +2018-09-21 10:35:15.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:35:15.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:35:15.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.724 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:35:15.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.725 +03:00 [INF] Request finished in 1.969ms 200 application/javascript +2018-09-21 10:35:15.725 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:35:15.725 +03:00 [INF] Request finished in 1.5864ms 200 image/svg+xml +2018-09-21 10:35:15.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:35:15.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.740 +03:00 [INF] Request finished in 192.1396ms 404 +2018-09-21 10:35:15.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.747 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:35:15.748 +03:00 [INF] Request finished in 8.3191ms 200 image/jpeg +2018-09-21 10:35:15.781 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:35:15.781 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:35:15.782 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:35:15.782 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:35:15.783 +03:00 [INF] Authorization failed. +2018-09-21 10:35:15.783 +03:00 [INF] Authorization failed. +2018-09-21 10:35:15.783 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1461ms. +2018-09-21 10:35:15.783 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:35:15.783 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5918ms +2018-09-21 10:35:15.783 +03:00 [INF] Request finished in 82.5144ms 200 text/plain; charset=utf-8 +2018-09-21 10:35:15.783 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.785 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.787 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.788 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.789 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.790 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.791 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.792 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.792 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.793 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:35:15.793 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.794 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.795 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.795 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.796 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.796 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:35:15.796 +03:00 [INF] Request finished in 3.2393ms 200 image/svg+xml +2018-09-21 10:35:15.797 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.797 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.798 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.798 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.799 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.799 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.800 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.802 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.803 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.806 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.807 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.808 +03:00 [INF] Authorization was successful. +2018-09-21 10:35:15.809 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 26.9846ms. +2018-09-21 10:35:15.810 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:35:15.810 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 28.5152ms +2018-09-21 10:35:15.810 +03:00 [INF] Request finished in 112.3451ms 200 text/plain; charset=utf-8 +2018-09-21 10:35:15.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:35:15.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.832 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:35:15.832 +03:00 [INF] Request finished in 2.7183ms 200 font/woff2 +2018-09-21 10:35:15.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:35:15.878 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:15.878 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:15.887 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:35:15.887 +03:00 [INF] Request finished in 9.332ms 200 image/jpeg +2018-09-21 10:35:16.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:35:16.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:16.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:16.164 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:35:16.165 +03:00 [INF] Request finished in 1.9522ms 200 image/png +2018-09-21 10:35:16.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:35:16.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:16.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:16.176 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:35:16.176 +03:00 [INF] Request finished in 1.2457ms 200 image/png +2018-09-21 10:35:16.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:35:16.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:35:16.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:35:16.206 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:35:16.207 +03:00 [INF] Request finished in 1.6402ms 200 text/css +2018-09-21 10:35:16.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:35:16.518 +03:00 [INF] Request finished in 1.1923ms 404 +2018-09-21 10:35:16.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css.map +2018-09-21 10:35:16.525 +03:00 [INF] The file /scss/vs.css.map was not modified +2018-09-21 10:35:16.526 +03:00 [INF] Request finished in 0.6752ms 304 text/plain +2018-09-21 10:38:23.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:38:23.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:23.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.032 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:38:24.037 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:38:24.086 +03:00 [INF] Executed action /Blog/Posts/Index in 54.089000000000006ms +2018-09-21 10:38:24.087 +03:00 [INF] Request finished in 88.4394ms 200 text/html; charset=utf-8 +2018-09-21 10:38:24.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:38:24.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.126 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:38:24.127 +03:00 [INF] Request finished in 4.1694ms 200 text/css +2018-09-21 10:38:24.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:38:24.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.137 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:38:24.137 +03:00 [INF] Request finished in 1.3028ms 200 text/css +2018-09-21 10:38:24.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:38:24.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.142 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:38:24.142 +03:00 [INF] Request finished in 1.1791ms 200 text/css +2018-09-21 10:38:24.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:38:24.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.149 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:38:24.149 +03:00 [INF] Request finished in 1.7653ms 200 text/css +2018-09-21 10:38:24.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:38:24.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.154 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:38:24.154 +03:00 [INF] Request finished in 1.5504ms 200 text/css +2018-09-21 10:38:24.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:38:24.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.163 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:38:24.163 +03:00 [INF] Request finished in 1.3425ms 200 text/css +2018-09-21 10:38:24.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123035779837 +2018-09-21 10:38:24.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:38:24.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.172 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:38:24.172 +03:00 [INF] Request finished in 1.145ms 200 text/css +2018-09-21 10:38:24.173 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:38:24.173 +03:00 [INF] Request finished in 2.0776ms 200 text/css +2018-09-21 10:38:24.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:38:24.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:38:24.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.193 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:38:24.193 +03:00 [INF] Request finished in 2.2811ms 200 text/css +2018-09-21 10:38:24.193 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:38:24.194 +03:00 [INF] Request finished in 2.4699ms 200 text/css +2018-09-21 10:38:24.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:38:24.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.208 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:38:24.209 +03:00 [INF] Request finished in 4.7178ms 200 text/css +2018-09-21 10:38:24.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:38:24.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.217 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:38:24.217 +03:00 [INF] Request finished in 3.0957ms 200 text/css +2018-09-21 10:38:24.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:38:24.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:38:24.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:38:24.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:38:24.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.252 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:38:24.253 +03:00 [INF] Request finished in 1.7464ms 200 application/javascript +2018-09-21 10:38:24.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:38:24.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:38:24.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.254 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:38:24.254 +03:00 [INF] Request finished in 2.3106ms 200 application/javascript +2018-09-21 10:38:24.263 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:38:24.263 +03:00 [INF] Request finished in 9.9992ms 200 application/javascript +2018-09-21 10:38:24.263 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:38:24.264 +03:00 [INF] Request finished in 12.3157ms 200 application/javascript +2018-09-21 10:38:24.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:38:24.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.270 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:38:24.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:38:24.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.273 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:38:24.273 +03:00 [INF] Request finished in 1.854ms 200 application/javascript +2018-09-21 10:38:24.276 +03:00 [INF] Request finished in 1.8957ms 200 application/javascript +2018-09-21 10:38:24.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:38:24.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.301 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:38:24.301 +03:00 [INF] Request finished in 1.3485ms 200 application/javascript +2018-09-21 10:38:24.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:38:24.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.321 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:38:24.322 +03:00 [INF] Request finished in 2.5522ms 200 application/javascript +2018-09-21 10:38:24.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:38:24.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.337 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:38:24.337 +03:00 [INF] Request finished in 11.1483ms 200 application/javascript +2018-09-21 10:38:24.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:38:24.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.340 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:38:24.341 +03:00 [INF] Request finished in 2.4828ms 200 application/javascript +2018-09-21 10:38:24.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:38:24.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.352 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:38:24.352 +03:00 [INF] Request finished in 1.7684ms 200 application/javascript +2018-09-21 10:38:24.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:38:24.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.360 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:38:24.360 +03:00 [INF] Request finished in 3.7296ms 200 application/javascript +2018-09-21 10:38:24.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:38:24.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.378 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:38:24.378 +03:00 [INF] Request finished in 1.6061ms 200 application/javascript +2018-09-21 10:38:24.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:38:24.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.386 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:38:24.387 +03:00 [INF] Request finished in 2.4416ms 200 application/javascript +2018-09-21 10:38:24.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:38:24.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.399 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:38:24.399 +03:00 [INF] Request finished in 3.8579ms 200 application/javascript +2018-09-21 10:38:24.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:38:24.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:38:24.402 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:38:24.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.402 +03:00 [INF] Request finished in 2.0781ms 200 application/javascript +2018-09-21 10:38:24.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.403 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:38:24.403 +03:00 [INF] Request finished in 2.1261ms 200 application/javascript +2018-09-21 10:38:24.409 +03:00 [INF] Request finished in 176.8691ms 404 +2018-09-21 10:38:24.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:38:24.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.419 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:38:24.420 +03:00 [INF] Request finished in 1.6456ms 200 application/javascript +2018-09-21 10:38:24.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:38:24.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:38:24.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.421 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:38:24.421 +03:00 [INF] Request finished in 1.3089ms 200 application/javascript +2018-09-21 10:38:24.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:38:24.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.422 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:38:24.422 +03:00 [INF] Request finished in 1.2323ms 200 application/javascript +2018-09-21 10:38:24.422 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:38:24.422 +03:00 [INF] Request finished in 1.0499ms 200 application/javascript +2018-09-21 10:38:24.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:38:24.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:38:24.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.437 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:38:24.437 +03:00 [INF] Request finished in 1.5645ms 200 application/javascript +2018-09-21 10:38:24.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:38:24.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:38:24.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.450 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:38:24.451 +03:00 [INF] Request finished in 2.2839ms 200 application/javascript +2018-09-21 10:38:24.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:38:24.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.461 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:38:24.461 +03:00 [INF] Request finished in 1.7708ms 200 application/javascript +2018-09-21 10:38:24.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:38:24.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.474 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:38:24.474 +03:00 [INF] Request finished in 2.0603ms 200 application/javascript +2018-09-21 10:38:24.483 +03:00 [INF] Request finished in 230.2909ms 404 +2018-09-21 10:38:24.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:38:24.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.491 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:38:24.491 +03:00 [INF] Request finished in 1.765ms 200 application/javascript +2018-09-21 10:38:24.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:38:24.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:38:24.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.495 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:38:24.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:38:24.495 +03:00 [INF] Request finished in 0.995ms 200 image/svg+xml +2018-09-21 10:38:24.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.496 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:38:24.496 +03:00 [INF] Request finished in 2.9757ms 200 font/woff2 +2018-09-21 10:38:24.502 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:38:24.502 +03:00 [INF] Request finished in 7.1317ms 200 image/jpeg +2018-09-21 10:38:24.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:38:24.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:38:24.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.511 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:38:24.516 +03:00 [INF] Request finished in 6.1793ms 200 image/svg+xml +2018-09-21 10:38:24.520 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:38:24.520 +03:00 [INF] Request finished in 10.8901ms 200 image/jpeg +2018-09-21 10:38:24.535 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:38:24.536 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:38:24.536 +03:00 [INF] Authorization failed. +2018-09-21 10:38:24.536 +03:00 [INF] Authorization failed. +2018-09-21 10:38:24.537 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.537 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.539 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.540 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.541 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.543 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.543 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.544 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.545 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.546 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.546 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.547 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.547 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.548 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.549 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.550 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.550 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.551 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.552 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.552 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.553 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.554 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.555 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.555 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.556 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:24.558 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.6168ms. +2018-09-21 10:38:24.559 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:38:24.559 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.038600000000002ms +2018-09-21 10:38:24.559 +03:00 [INF] Request finished in 124.6134ms 200 text/plain; charset=utf-8 +2018-09-21 10:38:24.560 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:38:24.561 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:38:24.561 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10490000000000001ms. +2018-09-21 10:38:24.562 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:38:24.562 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3767ms +2018-09-21 10:38:24.562 +03:00 [INF] Request finished in 119.4398ms 200 text/plain; charset=utf-8 +2018-09-21 10:38:24.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:38:24.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.834 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:38:24.834 +03:00 [INF] Request finished in 1.3345ms 200 image/png +2018-09-21 10:38:24.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:38:24.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.837 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:38:24.837 +03:00 [INF] Request finished in 0.9887ms 200 image/png +2018-09-21 10:38:24.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123035779837 +2018-09-21 10:38:24.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:24.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:24.881 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:38:24.881 +03:00 [INF] Request finished in 1.2094ms 200 text/css +2018-09-21 10:38:25.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:38:25.087 +03:00 [INF] Request finished in 1.0827ms 404 +2018-09-21 10:38:47.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:38:47.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.197 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:38:47.200 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:38:47.223 +03:00 [INF] Executed action /Blog/Posts/Index in 26.3579ms +2018-09-21 10:38:47.223 +03:00 [INF] Request finished in 52.8298ms 200 text/html; charset=utf-8 +2018-09-21 10:38:47.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:38:47.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:38:47.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.258 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:38:47.258 +03:00 [INF] Request finished in 1.2022ms 200 text/css +2018-09-21 10:38:47.259 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:38:47.260 +03:00 [INF] Request finished in 2.8695ms 200 text/css +2018-09-21 10:38:47.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:38:47.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:38:47.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.272 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:38:47.272 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:38:47.272 +03:00 [INF] Request finished in 1.0509ms 200 text/css +2018-09-21 10:38:47.272 +03:00 [INF] Request finished in 1.7774ms 200 text/css +2018-09-21 10:38:47.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:38:47.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:38:47.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.291 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:38:47.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.291 +03:00 [INF] Request finished in 1.6298ms 200 text/css +2018-09-21 10:38:47.293 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:38:47.293 +03:00 [INF] Request finished in 2.512ms 200 text/css +2018-09-21 10:38:47.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123269442420 +2018-09-21 10:38:47.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.304 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:38:47.304 +03:00 [INF] Request finished in 1.3487ms 200 text/css +2018-09-21 10:38:47.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:38:47.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:38:47.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.306 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:38:47.306 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:38:47.306 +03:00 [INF] Request finished in 1.3325ms 200 text/css +2018-09-21 10:38:47.306 +03:00 [INF] Request finished in 1.4442ms 200 text/css +2018-09-21 10:38:47.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:38:47.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.307 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:38:47.308 +03:00 [INF] Request finished in 1.1633ms 200 text/css +2018-09-21 10:38:47.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:38:47.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.316 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:38:47.316 +03:00 [INF] Request finished in 1.403ms 200 text/css +2018-09-21 10:38:47.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:38:47.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.320 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:38:47.321 +03:00 [INF] Request finished in 1.3303ms 200 text/css +2018-09-21 10:38:47.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:38:47.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:38:47.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:38:47.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:38:47.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.338 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:38:47.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.338 +03:00 [INF] Request finished in 1.2423ms 200 application/javascript +2018-09-21 10:38:47.338 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:38:47.338 +03:00 [INF] Request finished in 1.4779ms 200 application/javascript +2018-09-21 10:38:47.344 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:38:47.344 +03:00 [INF] Request finished in 7.0582ms 200 application/javascript +2018-09-21 10:38:47.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:38:47.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.352 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:38:47.352 +03:00 [INF] Request finished in 7.0163ms 200 application/javascript +2018-09-21 10:38:47.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:38:47.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:38:47.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.360 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:38:47.360 +03:00 [INF] Request finished in 1.7213ms 200 application/javascript +2018-09-21 10:38:47.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:38:47.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.373 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:38:47.374 +03:00 [INF] Request finished in 2.1857ms 200 application/javascript +2018-09-21 10:38:47.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:38:47.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.384 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:38:47.384 +03:00 [INF] Request finished in 2.1948ms 200 application/javascript +2018-09-21 10:38:47.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:38:47.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.392 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:38:47.392 +03:00 [INF] Request finished in 3.1554ms 200 application/javascript +2018-09-21 10:38:47.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:38:47.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:38:47.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.437 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:38:47.437 +03:00 [INF] Request finished in 1.1463ms 200 application/javascript +2018-09-21 10:38:47.438 +03:00 [INF] Request finished in 111.313ms 404 +2018-09-21 10:38:47.439 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:38:47.439 +03:00 [INF] Request finished in 11.6288ms 200 application/javascript +2018-09-21 10:38:47.440 +03:00 [INF] Request finished in 86.4122ms 404 +2018-09-21 10:38:47.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:38:47.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.443 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:38:47.443 +03:00 [INF] Request finished in 1.1544ms 200 application/javascript +2018-09-21 10:38:47.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:38:47.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:38:47.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.445 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:38:47.445 +03:00 [INF] Request finished in 1.0758ms 200 application/javascript +2018-09-21 10:38:47.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.450 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:38:47.450 +03:00 [INF] Request finished in 5.9735ms 200 application/javascript +2018-09-21 10:38:47.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:38:47.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.454 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:38:47.455 +03:00 [INF] Request finished in 3.3961ms 200 application/javascript +2018-09-21 10:38:47.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:38:47.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.459 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:38:47.459 +03:00 [INF] Request finished in 2.1249ms 200 application/javascript +2018-09-21 10:38:47.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:38:47.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.469 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:38:47.469 +03:00 [INF] Request finished in 1.4881ms 200 application/javascript +2018-09-21 10:38:47.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:38:47.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:38:47.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.474 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:38:47.474 +03:00 [INF] Request finished in 1.4372ms 200 application/javascript +2018-09-21 10:38:47.475 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:38:47.475 +03:00 [INF] Request finished in 1.2254ms 200 application/javascript +2018-09-21 10:38:47.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:38:47.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.484 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:38:47.485 +03:00 [INF] Request finished in 3.083ms 200 application/javascript +2018-09-21 10:38:47.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:38:47.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.488 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:38:47.489 +03:00 [INF] Request finished in 2.3431ms 200 application/javascript +2018-09-21 10:38:47.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:38:47.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.493 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:38:47.494 +03:00 [INF] Request finished in 0.9897ms 200 application/javascript +2018-09-21 10:38:47.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:38:47.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:38:47.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:38:47.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:38:47.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.522 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:38:47.523 +03:00 [INF] Request finished in 1.2467ms 200 application/javascript +2018-09-21 10:38:47.522 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:38:47.523 +03:00 [INF] Request finished in 1.4166ms 200 application/javascript +2018-09-21 10:38:47.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:38:47.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.533 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:38:47.533 +03:00 [INF] Request finished in 1.824ms 200 application/javascript +2018-09-21 10:38:47.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:38:47.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:38:47.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.535 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:38:47.535 +03:00 [INF] Request finished in 1.2479ms 200 application/javascript +2018-09-21 10:38:47.537 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:38:47.537 +03:00 [INF] Request finished in 3.4363ms 200 application/javascript +2018-09-21 10:38:47.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:38:47.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.544 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:38:47.544 +03:00 [INF] Request finished in 1.7576ms 200 image/svg+xml +2018-09-21 10:38:47.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:38:47.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.549 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:38:47.549 +03:00 [INF] Request finished in 4.0818ms 200 image/jpeg +2018-09-21 10:38:47.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:38:47.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.558 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:38:47.558 +03:00 [INF] Request finished in 1.7897ms 200 image/svg+xml +2018-09-21 10:38:47.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:38:47.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.595 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:38:47.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.596 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:38:47.596 +03:00 [INF] Authorization failed. +2018-09-21 10:38:47.596 +03:00 [INF] Authorization failed. +2018-09-21 10:38:47.596 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:38:47.597 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:38:47.598 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.598 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.281ms. +2018-09-21 10:38:47.599 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:38:47.599 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2391ms +2018-09-21 10:38:47.599 +03:00 [INF] Request finished in 84.4504ms 200 text/plain; charset=utf-8 +2018-09-21 10:38:47.599 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.600 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.601 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.602 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:38:47.602 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.602 +03:00 [INF] Request finished in 7.1173ms 200 font/woff2 +2018-09-21 10:38:47.603 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.604 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.604 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.605 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.606 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.607 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.608 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.608 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.609 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.610 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.611 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.611 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.612 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.613 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.615 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.616 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.617 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.617 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.618 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.619 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.620 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.620 +03:00 [INF] Authorization was successful. +2018-09-21 10:38:47.623 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 26.4582ms. +2018-09-21 10:38:47.623 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:38:47.623 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 27.8133ms +2018-09-21 10:38:47.623 +03:00 [INF] Request finished in 115.5198ms 200 text/plain; charset=utf-8 +2018-09-21 10:38:47.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:38:47.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.669 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:38:47.670 +03:00 [INF] Request finished in 12.5066ms 200 image/jpeg +2018-09-21 10:38:47.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:38:47.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:38:47.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.867 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:38:47.867 +03:00 [INF] Request finished in 2.5507ms 200 image/png +2018-09-21 10:38:47.867 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:38:47.867 +03:00 [INF] Request finished in 1.0201ms 200 image/png +2018-09-21 10:38:47.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123269442420 +2018-09-21 10:38:47.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:38:47.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:38:47.935 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:38:47.935 +03:00 [INF] Request finished in 1.7471ms 200 text/css +2018-09-21 10:38:48.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:38:48.210 +03:00 [INF] Request finished in 1.1156ms 404 +2018-09-21 10:39:05.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:39:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.617 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:39:05.619 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:39:05.641 +03:00 [INF] Executed action /Blog/Posts/Index in 24.7363ms +2018-09-21 10:39:05.642 +03:00 [INF] Request finished in 48.0081ms 200 text/html; charset=utf-8 +2018-09-21 10:39:05.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:39:05.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:39:05.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.676 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:39:05.676 +03:00 [INF] Request finished in 1.1851ms 200 text/css +2018-09-21 10:39:05.678 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:39:05.678 +03:00 [INF] Request finished in 3.4946ms 200 text/css +2018-09-21 10:39:05.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:39:05.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.690 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:39:05.690 +03:00 [INF] Request finished in 1.9851ms 200 text/css +2018-09-21 10:39:05.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:39:05.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.700 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:39:05.700 +03:00 [INF] Request finished in 1.253ms 200 text/css +2018-09-21 10:39:05.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:39:05.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.707 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:39:05.707 +03:00 [INF] Request finished in 2.0963ms 200 text/css +2018-09-21 10:39:05.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:39:05.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.714 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:39:05.714 +03:00 [INF] Request finished in 2.3116ms 200 text/css +2018-09-21 10:39:05.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123434941101 +2018-09-21 10:39:05.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.717 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:39:05.718 +03:00 [INF] Request finished in 1.5103ms 200 text/css +2018-09-21 10:39:05.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:39:05.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.719 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:39:05.719 +03:00 [INF] Request finished in 1.2909ms 200 text/css +2018-09-21 10:39:05.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:39:05.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.725 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:39:05.725 +03:00 [INF] Request finished in 1.8938ms 200 text/css +2018-09-21 10:39:05.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:39:05.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.726 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:39:05.727 +03:00 [INF] Request finished in 1.3629ms 200 text/css +2018-09-21 10:39:05.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:39:05.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.732 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:39:05.732 +03:00 [INF] Request finished in 2.7959ms 200 text/css +2018-09-21 10:39:05.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:39:05.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.739 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:39:05.739 +03:00 [INF] Request finished in 1.6096ms 200 text/css +2018-09-21 10:39:05.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:39:05.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:39:05.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.745 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:39:05.745 +03:00 [INF] Request finished in 1.0432ms 200 application/javascript +2018-09-21 10:39:05.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:39:05.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:39:05.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.760 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:39:05.761 +03:00 [INF] Request finished in 1.1435ms 200 application/javascript +2018-09-21 10:39:05.761 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:39:05.761 +03:00 [INF] Request finished in 6.9411ms 200 application/javascript +2018-09-21 10:39:05.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:39:05.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.783 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:39:05.784 +03:00 [INF] Request finished in 8.4878ms 200 application/javascript +2018-09-21 10:39:05.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:39:05.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:39:05.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.796 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:39:05.796 +03:00 [INF] Request finished in 2.2565ms 200 application/javascript +2018-09-21 10:39:05.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:39:05.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.809 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:39:05.809 +03:00 [INF] Request finished in 1.4097ms 200 application/javascript +2018-09-21 10:39:05.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:39:05.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.811 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:39:05.811 +03:00 [INF] Request finished in 1.1453ms 200 application/javascript +2018-09-21 10:39:05.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:39:05.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.819 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:39:05.819 +03:00 [INF] Request finished in 2.8224ms 200 application/javascript +2018-09-21 10:39:05.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:39:05.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:39:05.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.838 +03:00 [INF] Request finished in 94.1144ms 404 +2018-09-21 10:39:05.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.839 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:39:05.841 +03:00 [INF] Request finished in 4.0791ms 200 application/javascript +2018-09-21 10:39:05.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:39:05.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.844 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:39:05.844 +03:00 [INF] Request finished in 1.4106ms 200 application/javascript +2018-09-21 10:39:05.846 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:39:05.846 +03:00 [INF] Request finished in 10.6552ms 200 application/javascript +2018-09-21 10:39:05.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:39:05.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:39:05.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.849 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:39:05.849 +03:00 [INF] Request finished in 2.1267ms 200 application/javascript +2018-09-21 10:39:05.849 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:39:05.849 +03:00 [INF] Request finished in 3.3604ms 200 application/javascript +2018-09-21 10:39:05.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:39:05.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.861 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:39:05.861 +03:00 [INF] Request finished in 5.0929ms 200 application/javascript +2018-09-21 10:39:05.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:39:05.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.867 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:39:05.867 +03:00 [INF] Request finished in 1.2945ms 200 application/javascript +2018-09-21 10:39:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:39:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:39:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:39:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.869 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:39:05.869 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:39:05.869 +03:00 [INF] Request finished in 1.2327ms 200 application/javascript +2018-09-21 10:39:05.869 +03:00 [INF] Request finished in 1.2566ms 200 application/javascript +2018-09-21 10:39:05.869 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:39:05.870 +03:00 [INF] Request finished in 1.3379ms 200 application/javascript +2018-09-21 10:39:05.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:39:05.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.881 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:39:05.881 +03:00 [INF] Request finished in 2.2005ms 200 application/javascript +2018-09-21 10:39:05.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:39:05.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:39:05.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.886 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:39:05.886 +03:00 [INF] Request finished in 1.1332ms 200 application/javascript +2018-09-21 10:39:05.887 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:39:05.887 +03:00 [INF] Request finished in 2.5963ms 200 application/javascript +2018-09-21 10:39:05.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:39:05.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:39:05.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:39:05.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.900 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:39:05.901 +03:00 [INF] Request finished in 1.8081ms 200 application/javascript +2018-09-21 10:39:05.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:39:05.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.910 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:39:05.910 +03:00 [INF] Request finished in 1.4269ms 200 application/javascript +2018-09-21 10:39:05.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:39:05.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:39:05.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.924 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:39:05.924 +03:00 [INF] Request finished in 1.7407ms 200 application/javascript +2018-09-21 10:39:05.924 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:39:05.925 +03:00 [INF] Request finished in 0.9132ms 200 application/javascript +2018-09-21 10:39:05.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:39:05.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.936 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:39:05.937 +03:00 [INF] Request finished in 2.0056ms 200 application/javascript +2018-09-21 10:39:05.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:39:05.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.940 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:39:05.940 +03:00 [INF] Request finished in 1.8969ms 200 image/svg+xml +2018-09-21 10:39:05.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:39:05.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.956 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:39:05.956 +03:00 [INF] Request finished in 9.705ms 200 image/jpeg +2018-09-21 10:39:05.956 +03:00 [INF] Request finished in 170.6432ms 404 +2018-09-21 10:39:05.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:39:05.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:05.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:05.963 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:39:05.963 +03:00 [INF] Request finished in 1.3942ms 200 image/svg+xml +2018-09-21 10:39:05.977 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:39:05.977 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:39:05.977 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1153ms. +2018-09-21 10:39:05.978 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:39:05.978 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1299000000000001ms +2018-09-21 10:39:05.978 +03:00 [INF] Request finished in 86.2445ms 200 text/plain; charset=utf-8 +2018-09-21 10:39:05.980 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:39:05.981 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:39:05.981 +03:00 [INF] Authorization failed. +2018-09-21 10:39:05.981 +03:00 [INF] Authorization failed. +2018-09-21 10:39:05.982 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.983 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.983 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.984 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.985 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.985 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.986 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.987 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.988 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.988 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.989 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.989 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.990 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.990 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.991 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.991 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.992 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.992 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.993 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.993 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.994 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.994 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.995 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.995 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.996 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.996 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.997 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:05.999 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.948700000000002ms. +2018-09-21 10:39:05.999 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:39:05.999 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.4251ms +2018-09-21 10:39:06.000 +03:00 [INF] Request finished in 108.2798ms 200 text/plain; charset=utf-8 +2018-09-21 10:39:06.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:39:06.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:06.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:06.017 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:39:06.017 +03:00 [INF] Request finished in 2.8475ms 200 font/woff2 +2018-09-21 10:39:06.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:39:06.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:06.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:06.054 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:39:06.054 +03:00 [INF] Request finished in 9.4622ms 200 image/jpeg +2018-09-21 10:39:06.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:39:06.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:06.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:06.276 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:39:06.276 +03:00 [INF] Request finished in 1.1499ms 200 image/png +2018-09-21 10:39:06.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:39:06.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:06.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:06.278 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:39:06.279 +03:00 [INF] Request finished in 1.1368ms 200 image/png +2018-09-21 10:39:06.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:39:06.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:06.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:06.350 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:39:06.351 +03:00 [INF] Request finished in 3.8703ms 200 text/css +2018-09-21 10:39:06.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:39:06.540 +03:00 [INF] Request finished in 0.9559ms 404 +2018-09-21 10:39:18.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:39:18.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.092 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:39:18.097 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:39:18.137 +03:00 [INF] Executed action /Blog/Posts/Index in 45.1867ms +2018-09-21 10:39:18.137 +03:00 [INF] Request finished in 72.1984ms 200 text/html; charset=utf-8 +2018-09-21 10:39:18.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:39:18.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:39:18.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.190 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:39:18.190 +03:00 [INF] Request finished in 1.5861ms 200 text/css +2018-09-21 10:39:18.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:39:18.197 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:39:18.197 +03:00 [INF] Request finished in 9.4047ms 200 text/css +2018-09-21 10:39:18.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.198 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:39:18.198 +03:00 [INF] Request finished in 1.2354ms 200 text/css +2018-09-21 10:39:18.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:39:18.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.201 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:39:18.201 +03:00 [INF] Request finished in 2.2499ms 200 text/css +2018-09-21 10:39:18.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:39:18.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.205 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:39:18.205 +03:00 [INF] Request finished in 1.9676ms 200 text/css +2018-09-21 10:39:18.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:39:18.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.213 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:39:18.213 +03:00 [INF] Request finished in 1.1392ms 200 text/css +2018-09-21 10:39:18.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:39:18.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.216 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:39:18.216 +03:00 [INF] Request finished in 1.6599ms 200 text/css +2018-09-21 10:39:18.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:39:18.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.229 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:39:18.229 +03:00 [INF] Request finished in 1.3282ms 200 text/css +2018-09-21 10:39:18.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:39:18.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.242 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:39:18.242 +03:00 [INF] Request finished in 1.3006ms 200 text/css +2018-09-21 10:39:18.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:39:18.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.254 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:39:18.254 +03:00 [INF] Request finished in 1.2822ms 200 text/css +2018-09-21 10:39:18.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:39:18.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.258 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:39:18.258 +03:00 [INF] Request finished in 1.9134ms 200 text/css +2018-09-21 10:39:18.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:39:18.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:39:18.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.266 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:39:18.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.266 +03:00 [INF] Request finished in 1.4744ms 200 text/css +2018-09-21 10:39:18.266 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:39:18.266 +03:00 [INF] Request finished in 1.2565ms 200 application/javascript +2018-09-21 10:39:18.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:39:18.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:39:18.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:39:18.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.288 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:39:18.288 +03:00 [INF] Request finished in 3.8183ms 200 application/javascript +2018-09-21 10:39:18.288 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:39:18.288 +03:00 [INF] Request finished in 6.5803ms 200 application/javascript +2018-09-21 10:39:18.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:39:18.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.289 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:39:18.289 +03:00 [INF] Request finished in 1.0484ms 200 application/javascript +2018-09-21 10:39:18.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:39:18.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:39:18.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.314 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:39:18.315 +03:00 [INF] Request finished in 2.3364ms 200 application/javascript +2018-09-21 10:39:18.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:39:18.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.321 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:39:18.321 +03:00 [INF] Request finished in 2.2871ms 200 application/javascript +2018-09-21 10:39:18.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:39:18.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.345 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:39:18.345 +03:00 [INF] Request finished in 5.6008ms 200 application/javascript +2018-09-21 10:39:18.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:39:18.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:39:18.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:39:18.351 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:39:18.351 +03:00 [INF] Request finished in 1.5307ms 200 application/javascript +2018-09-21 10:39:18.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.356 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:39:18.356 +03:00 [INF] Request finished in 5.121ms 200 application/javascript +2018-09-21 10:39:18.364 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:39:18.364 +03:00 [INF] Request finished in 14.4038ms 200 application/javascript +2018-09-21 10:39:18.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:39:18.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.379 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:39:18.379 +03:00 [INF] Request finished in 1.2807ms 200 application/javascript +2018-09-21 10:39:18.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:39:18.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.386 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:39:18.386 +03:00 [INF] Request finished in 1.2255ms 200 application/javascript +2018-09-21 10:39:18.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:39:18.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.399 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:39:18.400 +03:00 [INF] Request finished in 2.4156ms 200 application/javascript +2018-09-21 10:39:18.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:39:18.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.406 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:39:18.406 +03:00 [INF] Request finished in 1.7487ms 200 application/javascript +2018-09-21 10:39:18.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:39:18.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:39:18.411 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:39:18.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.412 +03:00 [INF] Request finished in 2.2078ms 200 application/javascript +2018-09-21 10:39:18.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.413 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:39:18.413 +03:00 [INF] Request finished in 1.374ms 200 application/javascript +2018-09-21 10:39:18.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:39:18.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.418 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:39:18.418 +03:00 [INF] Request finished in 2.3823ms 200 application/javascript +2018-09-21 10:39:18.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:39:18.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.421 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:39:18.421 +03:00 [INF] Request finished in 1.2546ms 200 application/javascript +2018-09-21 10:39:18.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:39:18.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.424 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:39:18.425 +03:00 [INF] Request finished in 2.5865ms 200 application/javascript +2018-09-21 10:39:18.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:39:18.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:39:18.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.435 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:39:18.436 +03:00 [INF] Request finished in 1.8357ms 200 application/javascript +2018-09-21 10:39:18.436 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:39:18.436 +03:00 [INF] Request finished in 1.1018ms 200 application/javascript +2018-09-21 10:39:18.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:39:18.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:39:18.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:39:18.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.457 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:39:18.457 +03:00 [INF] Request finished in 1.39ms 200 application/javascript +2018-09-21 10:39:18.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:39:18.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.473 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:39:18.473 +03:00 [INF] Request finished in 3.0138ms 200 application/javascript +2018-09-21 10:39:18.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:39:18.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.478 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:39:18.478 +03:00 [INF] Request finished in 2.5558ms 200 application/javascript +2018-09-21 10:39:18.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:39:18.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.481 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:39:18.482 +03:00 [INF] Request finished in 2.6853ms 200 application/javascript +2018-09-21 10:39:18.483 +03:00 [INF] Request finished in 188.3314ms 404 +2018-09-21 10:39:18.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:39:18.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.493 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:39:18.493 +03:00 [INF] Request finished in 3.0566ms 200 font/woff2 +2018-09-21 10:39:18.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:39:18.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:39:18.499 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:39:18.499 +03:00 [INF] Request finished in 2.4966ms 200 application/javascript +2018-09-21 10:39:18.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.500 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:39:18.500 +03:00 [INF] Request finished in 1.0551ms 200 image/svg+xml +2018-09-21 10:39:18.502 +03:00 [INF] Request finished in 220.332ms 404 +2018-09-21 10:39:18.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:39:18.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.516 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:39:18.516 +03:00 [INF] Request finished in 7.7193ms 200 image/jpeg +2018-09-21 10:39:18.518 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:39:18.519 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:39:18.519 +03:00 [INF] Authorization failed. +2018-09-21 10:39:18.520 +03:00 [INF] Authorization failed. +2018-09-21 10:39:18.520 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.521 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.522 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.523 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:39:18.524 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.525 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.525 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:39:18.525 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.527 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.528 +03:00 [INF] Request finished in 4.6944ms 200 image/svg+xml +2018-09-21 10:39:18.529 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.529 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.530 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.531 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.532 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.533 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.533 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:39:18.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.534 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.535 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.536 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.536 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.536 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:39:18.537 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.537 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:39:18.537 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0889ms. +2018-09-21 10:39:18.537 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:39:18.537 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.079ms +2018-09-21 10:39:18.538 +03:00 [INF] Request finished in 83.2776ms 200 text/plain; charset=utf-8 +2018-09-21 10:39:18.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.539 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.540 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.541 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.542 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.542 +03:00 [INF] Authorization was successful. +2018-09-21 10:39:18.544 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 24.928700000000003ms. +2018-09-21 10:39:18.545 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:39:18.545 +03:00 [INF] Request finished in 11.3914ms 200 image/jpeg +2018-09-21 10:39:18.545 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:39:18.545 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 26.718300000000003ms +2018-09-21 10:39:18.546 +03:00 [INF] Request finished in 98.9362ms 200 text/plain; charset=utf-8 +2018-09-21 10:39:18.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:39:18.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.743 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:39:18.743 +03:00 [INF] Request finished in 1.2631ms 200 image/png +2018-09-21 10:39:18.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:39:18.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.748 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:39:18.748 +03:00 [INF] Request finished in 1.2102ms 200 image/png +2018-09-21 10:39:18.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:39:18.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:39:18.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:39:18.827 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:39:18.828 +03:00 [INF] Request finished in 1.5863ms 200 text/css +2018-09-21 10:39:18.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:39:18.948 +03:00 [INF] Request finished in 0.927ms 404 +2018-09-21 10:40:30.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:40:30.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.573 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:40:30.577 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:40:30.650 +03:00 [INF] Executed action /Blog/Posts/Index in 76.8809ms +2018-09-21 10:40:30.651 +03:00 [INF] Request finished in 450.8875ms 200 text/html; charset=utf-8 +2018-09-21 10:40:30.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:40:30.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.692 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:40:30.693 +03:00 [INF] Request finished in 4.9434ms 200 text/css +2018-09-21 10:40:30.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:40:30.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.697 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:40:30.697 +03:00 [INF] Request finished in 2.3546ms 200 text/css +2018-09-21 10:40:30.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:40:30.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.710 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:40:30.710 +03:00 [INF] Request finished in 1.8024ms 200 text/css +2018-09-21 10:40:30.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:40:30.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.723 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:40:30.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:40:30.723 +03:00 [INF] Request finished in 4.0648ms 200 text/css +2018-09-21 10:40:30.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.724 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:40:30.724 +03:00 [INF] Request finished in 1.1156ms 200 text/css +2018-09-21 10:40:30.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:40:30.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.740 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:40:30.740 +03:00 [INF] Request finished in 1.2921ms 200 text/css +2018-09-21 10:40:30.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:40:30.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:40:30.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.743 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:40:30.743 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:40:30.743 +03:00 [INF] Request finished in 0.9753ms 200 text/css +2018-09-21 10:40:30.743 +03:00 [INF] Request finished in 1.3484ms 200 text/css +2018-09-21 10:40:30.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:40:30.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.756 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:40:30.756 +03:00 [INF] Request finished in 2.5829ms 200 text/css +2018-09-21 10:40:30.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:40:30.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.773 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:40:30.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:40:30.774 +03:00 [INF] Request finished in 2.3548ms 200 text/css +2018-09-21 10:40:30.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.775 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:40:30.775 +03:00 [INF] Request finished in 2.0352ms 200 text/css +2018-09-21 10:40:30.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:40:30.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.790 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:40:30.791 +03:00 [INF] Request finished in 2.6794ms 200 text/css +2018-09-21 10:40:30.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:40:30.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:40:30.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.803 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:40:30.803 +03:00 [INF] Request finished in 4.0425ms 200 application/javascript +2018-09-21 10:40:30.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:40:30.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:40:30.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.812 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:40:30.813 +03:00 [INF] Request finished in 1.7333ms 200 application/javascript +2018-09-21 10:40:30.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:40:30.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.815 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:40:30.815 +03:00 [INF] Request finished in 8.5411ms 200 application/javascript +2018-09-21 10:40:30.820 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:40:30.821 +03:00 [INF] Request finished in 6.9647ms 200 application/javascript +2018-09-21 10:40:30.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:40:30.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.828 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:40:30.828 +03:00 [INF] Request finished in 2.2996ms 200 application/javascript +2018-09-21 10:40:30.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:40:30.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:40:30.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.845 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:40:30.846 +03:00 [INF] Request finished in 3.7443ms 200 application/javascript +2018-09-21 10:40:30.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:40:30.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.871 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:40:30.871 +03:00 [INF] Request finished in 1.9172ms 200 application/javascript +2018-09-21 10:40:30.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:40:30.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.877 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:40:30.878 +03:00 [INF] Request finished in 2.7724ms 200 application/javascript +2018-09-21 10:40:30.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:40:30.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.900 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:40:30.900 +03:00 [INF] Request finished in 14.082ms 200 application/javascript +2018-09-21 10:40:30.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:40:30.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.903 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:40:30.903 +03:00 [INF] Request finished in 3.7868ms 200 application/javascript +2018-09-21 10:40:30.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:40:30.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.910 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:40:30.911 +03:00 [INF] Request finished in 3.9851ms 200 application/javascript +2018-09-21 10:40:30.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:40:30.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:40:30.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.919 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:40:30.919 +03:00 [INF] Request finished in 2.6767ms 200 application/javascript +2018-09-21 10:40:30.919 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:40:30.919 +03:00 [INF] Request finished in 1.6456ms 200 application/javascript +2018-09-21 10:40:30.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:40:30.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.940 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:40:30.940 +03:00 [INF] Request finished in 3.7285ms 200 application/javascript +2018-09-21 10:40:30.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:40:30.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:40:30.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.945 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:40:30.945 +03:00 [INF] Request finished in 1.3207ms 200 application/javascript +2018-09-21 10:40:30.945 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:40:30.945 +03:00 [INF] Request finished in 1.5988ms 200 application/javascript +2018-09-21 10:40:30.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:40:30.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.959 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:40:30.959 +03:00 [INF] Request finished in 1.8363ms 200 application/javascript +2018-09-21 10:40:30.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:40:30.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.964 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:40:30.964 +03:00 [INF] Request finished in 2.1968ms 200 application/javascript +2018-09-21 10:40:30.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:40:30.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.972 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:40:30.972 +03:00 [INF] Request finished in 4.5159ms 200 application/javascript +2018-09-21 10:40:30.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:40:30.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:40:30.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:40:30.978 +03:00 [INF] Request finished in 1.1711ms 200 application/javascript +2018-09-21 10:40:30.978 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:40:30.978 +03:00 [INF] Request finished in 1.8283ms 200 application/javascript +2018-09-21 10:40:30.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:40:30.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:40:30.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.990 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:40:30.991 +03:00 [INF] Request finished in 1.0681ms 200 application/javascript +2018-09-21 10:40:30.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:40:30.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:40:30.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:30.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:30.999 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:40:31.000 +03:00 [INF] Request finished in 2.584ms 200 application/javascript +2018-09-21 10:40:31.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:40:31.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.012 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:40:31.012 +03:00 [INF] Request finished in 1.3823ms 200 application/javascript +2018-09-21 10:40:31.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:40:31.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.020 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:40:31.020 +03:00 [INF] Request finished in 3.0352ms 200 application/javascript +2018-09-21 10:40:31.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:40:31.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.031 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:40:31.031 +03:00 [INF] Request finished in 1.5095ms 200 application/javascript +2018-09-21 10:40:31.036 +03:00 [INF] Request finished in 239.2287ms 404 +2018-09-21 10:40:31.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:40:31.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.041 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:40:31.041 +03:00 [INF] Request finished in 1.6897ms 200 font/woff2 +2018-09-21 10:40:31.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:40:31.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.043 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:40:31.043 +03:00 [INF] Request finished in 1.3602ms 200 image/svg+xml +2018-09-21 10:40:31.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:40:31.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.053 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:40:31.053 +03:00 [INF] Request finished in 7.1356ms 200 image/jpeg +2018-09-21 10:40:31.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:40:31.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.054 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:40:31.054 +03:00 [INF] Request finished in 0.9991ms 200 image/svg+xml +2018-09-21 10:40:31.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:40:31.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.076 +03:00 [INF] Request finished in 246.7209ms 404 +2018-09-21 10:40:31.085 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:40:31.085 +03:00 [INF] Request finished in 13.1358ms 200 image/jpeg +2018-09-21 10:40:31.165 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:40:31.166 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:40:31.166 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:40:31.167 +03:00 [INF] Authorization failed. +2018-09-21 10:40:31.167 +03:00 [INF] Authorization failed. +2018-09-21 10:40:31.167 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:40:31.168 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1277ms. +2018-09-21 10:40:31.168 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.168 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:40:31.168 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1863ms +2018-09-21 10:40:31.168 +03:00 [INF] Request finished in 178.3755ms 200 text/plain; charset=utf-8 +2018-09-21 10:40:31.168 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.170 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.172 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.173 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.174 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.175 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.175 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.176 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.176 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.177 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.177 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.178 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.178 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.178 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.179 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.179 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.180 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.180 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.181 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.181 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.182 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.182 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.183 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.184 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.185 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.186 +03:00 [INF] Authorization was successful. +2018-09-21 10:40:31.188 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 21.4865ms. +2018-09-21 10:40:31.188 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:40:31.188 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.85ms +2018-09-21 10:40:31.188 +03:00 [INF] Request finished in 193.2924ms 200 text/plain; charset=utf-8 +2018-09-21 10:40:31.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:40:31.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.386 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:40:31.387 +03:00 [INF] Request finished in 2.2641ms 200 image/png +2018-09-21 10:40:31.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:40:31.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:40:31.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:40:31.389 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:40:31.389 +03:00 [INF] Request finished in 0.9869ms 200 image/png +2018-09-21 10:40:31.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:40:31.689 +03:00 [INF] Request finished in 0.7853ms 404 +2018-09-21 10:41:12.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:41:12.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.467 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:41:12.470 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:41:12.499 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.501 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.504 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.514 +03:00 [INF] Executed action /Blog/Posts/Detail in 46.7004ms +2018-09-21 10:41:12.514 +03:00 [INF] Request finished in 79.9224ms 200 text/html; charset=utf-8 +2018-09-21 10:41:12.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:41:12.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:41:12.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.556 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:41:12.556 +03:00 [INF] Request finished in 1.1966ms 200 text/css +2018-09-21 10:41:12.558 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:41:12.558 +03:00 [INF] Request finished in 3.4835ms 200 text/css +2018-09-21 10:41:12.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:41:12.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.569 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:41:12.569 +03:00 [INF] Request finished in 1.5831ms 200 text/css +2018-09-21 10:41:12.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:41:12.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:41:12.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.581 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:41:12.581 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:41:12.581 +03:00 [INF] Request finished in 1.443ms 200 text/css +2018-09-21 10:41:12.581 +03:00 [INF] Request finished in 1.48ms 200 text/css +2018-09-21 10:41:12.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:41:12.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.592 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:41:12.592 +03:00 [INF] Request finished in 2.8406ms 200 text/css +2018-09-21 10:41:12.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:12.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.593 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:12.593 +03:00 [INF] Request finished in 0.9177ms 200 text/css +2018-09-21 10:41:12.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:41:12.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.604 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:41:12.604 +03:00 [INF] Request finished in 1.8326ms 200 text/css +2018-09-21 10:41:12.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:41:12.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.606 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:41:12.607 +03:00 [INF] Request finished in 1.8286ms 200 text/css +2018-09-21 10:41:12.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:41:12.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.615 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:41:12.615 +03:00 [INF] Request finished in 1.9718ms 200 image/png +2018-09-21 10:41:12.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:41:12.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:41:12.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.629 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:41:12.629 +03:00 [INF] Request finished in 1.5035ms 200 application/javascript +2018-09-21 10:41:12.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:41:12.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:41:12.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.641 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:41:12.641 +03:00 [INF] Request finished in 1.7258ms 200 application/javascript +2018-09-21 10:41:12.642 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:41:12.642 +03:00 [INF] Request finished in 9.0674ms 200 application/javascript +2018-09-21 10:41:12.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:41:12.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:41:12.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:41:12.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.664 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:41:12.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.664 +03:00 [INF] Request finished in 7.36ms 200 application/javascript +2018-09-21 10:41:12.664 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:41:12.664 +03:00 [INF] Request finished in 1.124ms 200 application/javascript +2018-09-21 10:41:12.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:41:12.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.674 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:41:12.674 +03:00 [INF] Request finished in 1.4925ms 200 application/javascript +2018-09-21 10:41:12.682 +03:00 [INF] Request finished in 65.3827ms 404 +2018-09-21 10:41:12.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:41:12.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.694 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:41:12.694 +03:00 [INF] Request finished in 2.1286ms 200 application/javascript +2018-09-21 10:41:12.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:41:12.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.703 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:41:12.703 +03:00 [INF] Request finished in 2.8545ms 200 application/javascript +2018-09-21 10:41:12.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:41:12.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:41:12.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:41:12.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.713 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:41:12.714 +03:00 [INF] Request finished in 1.2397ms 200 application/javascript +2018-09-21 10:41:12.714 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:41:12.714 +03:00 [INF] Request finished in 3.4147ms 200 application/javascript +2018-09-21 10:41:12.720 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:41:12.720 +03:00 [INF] Request finished in 11.1028ms 200 application/javascript +2018-09-21 10:41:12.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:41:12.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:41:12.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.724 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:41:12.724 +03:00 [INF] Request finished in 1.5855ms 200 application/javascript +2018-09-21 10:41:12.724 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:41:12.725 +03:00 [INF] Request finished in 2.057ms 200 application/javascript +2018-09-21 10:41:12.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:41:12.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.732 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:41:12.732 +03:00 [INF] Request finished in 1.113ms 200 application/javascript +2018-09-21 10:41:12.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:41:12.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.738 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:41:12.739 +03:00 [INF] Request finished in 1.6552ms 200 application/javascript +2018-09-21 10:41:12.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:41:12.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.740 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:41:12.740 +03:00 [INF] Request finished in 1.4733ms 200 application/javascript +2018-09-21 10:41:12.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:41:12.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.742 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:41:12.742 +03:00 [INF] Request finished in 2.0304ms 200 application/javascript +2018-09-21 10:41:12.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:41:12.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.752 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:41:12.753 +03:00 [INF] Request finished in 2.0771ms 200 application/javascript +2018-09-21 10:41:12.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:41:12.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:41:12.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.754 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:41:12.754 +03:00 [INF] Request finished in 1.1643ms 200 application/javascript +2018-09-21 10:41:12.758 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:41:12.758 +03:00 [INF] Request finished in 4.5913ms 200 application/javascript +2018-09-21 10:41:12.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:41:12.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.762 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:41:12.762 +03:00 [INF] Request finished in 1.0596ms 200 application/javascript +2018-09-21 10:41:12.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:41:12.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.771 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:41:12.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:41:12.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.784 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:41:12.784 +03:00 [INF] Request finished in 2.8367ms 200 application/javascript +2018-09-21 10:41:12.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:41:12.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.787 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:41:12.787 +03:00 [INF] Request finished in 1.503ms 200 application/javascript +2018-09-21 10:41:12.787 +03:00 [INF] Request finished in 125.1456ms 404 +2018-09-21 10:41:12.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:41:12.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:41:12.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.803 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:41:12.803 +03:00 [INF] Request finished in 1.3513ms 200 application/javascript +2018-09-21 10:41:12.803 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:41:12.803 +03:00 [INF] Request finished in 1.6035ms 200 application/javascript +2018-09-21 10:41:12.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:41:12.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.816 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:41:12.817 +03:00 [INF] Request finished in 4.3723ms 200 image/svg+xml +2018-09-21 10:41:12.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:41:12.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.821 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:41:12.821 +03:00 [INF] Request finished in 1.0466ms 200 image/svg+xml +2018-09-21 10:41:12.842 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:12.843 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:41:12.843 +03:00 [INF] Authorization failed. +2018-09-21 10:41:12.843 +03:00 [INF] Authorization failed. +2018-09-21 10:41:12.844 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.845 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.845 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.846 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.846 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.847 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.847 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:12.848 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.848 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.849 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.849 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:41:12.849 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11860000000000001ms. +2018-09-21 10:41:12.849 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:12.849 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.849 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9958ms +2018-09-21 10:41:12.850 +03:00 [INF] Request finished in 71.0379ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:12.850 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.851 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.851 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.852 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.853 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.853 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.854 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.855 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.856 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.856 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.857 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.858 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.860 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.861 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.862 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.863 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.863 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:12.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 21.8715ms. +2018-09-21 10:41:12.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:12.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 23.419900000000002ms +2018-09-21 10:41:12.865 +03:00 [INF] Request finished in 94.5056ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:12.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:41:12.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.915 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:41:12.915 +03:00 [INF] Request finished in 1.5689ms 200 font/woff2 +2018-09-21 10:41:12.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:41:12.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:41:12.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:12.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:12.942 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:41:12.942 +03:00 [INF] Request finished in 7.9924ms 200 image/jpeg +2018-09-21 10:41:12.947 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:41:12.948 +03:00 [INF] Request finished in 7.7123ms 200 image/jpeg +2018-09-21 10:41:13.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:41:13.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:13.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:13.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:41:13.121 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:41:13.121 +03:00 [INF] Request finished in 3.3931ms 200 image/png +2018-09-21 10:41:13.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:13.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:13.123 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:41:13.123 +03:00 [INF] Request finished in 3.1058ms 200 image/png +2018-09-21 10:41:13.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:41:13.414 +03:00 [INF] Request finished in 0.9902ms 404 +2018-09-21 10:41:16.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:41:16.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.137 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:41:16.141 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:41:16.160 +03:00 [INF] Executed action /Blog/Posts/Index in 22.082800000000002ms +2018-09-21 10:41:16.160 +03:00 [INF] Request finished in 46.2878ms 200 text/html; charset=utf-8 +2018-09-21 10:41:16.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:41:16.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.200 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:41:16.200 +03:00 [INF] Request finished in 3.7357ms 200 text/css +2018-09-21 10:41:16.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:41:16.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.202 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:41:16.203 +03:00 [INF] Request finished in 1.4404ms 200 text/css +2018-09-21 10:41:16.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:41:16.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.207 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:41:16.208 +03:00 [INF] Request finished in 1.2099ms 200 text/css +2018-09-21 10:41:16.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:41:16.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:41:16.210 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:41:16.210 +03:00 [INF] Request finished in 1.3907ms 200 text/css +2018-09-21 10:41:16.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.211 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:41:16.211 +03:00 [INF] Request finished in 1.8252ms 200 text/css +2018-09-21 10:41:16.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:41:16.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.228 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:16.228 +03:00 [INF] Request finished in 1.7222ms 200 text/css +2018-09-21 10:41:16.228 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:41:16.228 +03:00 [INF] Request finished in 1.2394ms 200 text/css +2018-09-21 10:41:16.230 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:41:16.231 +03:00 [INF] Request finished in 4.5601ms 200 text/css +2018-09-21 10:41:16.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:41:16.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.239 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:41:16.239 +03:00 [INF] Request finished in 1.9208ms 200 text/css +2018-09-21 10:41:16.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:41:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:41:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.241 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:41:16.241 +03:00 [INF] Request finished in 1.2031ms 200 text/css +2018-09-21 10:41:16.242 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:41:16.243 +03:00 [INF] Request finished in 2.9869ms 200 text/css +2018-09-21 10:41:16.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:41:16.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.247 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:41:16.247 +03:00 [INF] Request finished in 1.6412ms 200 text/css +2018-09-21 10:41:16.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:41:16.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:41:16.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.257 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:41:16.257 +03:00 [INF] Request finished in 1.292ms 200 application/javascript +2018-09-21 10:41:16.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:41:16.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.272 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:41:16.272 +03:00 [INF] Request finished in 5.8886ms 200 application/javascript +2018-09-21 10:41:16.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:41:16.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.286 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:41:16.287 +03:00 [INF] Request finished in 1.4641ms 200 application/javascript +2018-09-21 10:41:16.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:41:16.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.294 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:41:16.295 +03:00 [INF] Request finished in 5.2149ms 200 application/javascript +2018-09-21 10:41:16.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:41:16.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:41:16.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.308 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:41:16.308 +03:00 [INF] Request finished in 2.8717ms 200 application/javascript +2018-09-21 10:41:16.315 +03:00 [INF] Request finished in 61.6666ms 404 +2018-09-21 10:41:16.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:41:16.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.317 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:41:16.317 +03:00 [INF] Request finished in 1.0895ms 200 application/javascript +2018-09-21 10:41:16.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:41:16.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.321 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:41:16.321 +03:00 [INF] Request finished in 2.7328ms 200 application/javascript +2018-09-21 10:41:16.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:41:16.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:41:16.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.337 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:41:16.337 +03:00 [INF] Request finished in 3.7311ms 200 application/javascript +2018-09-21 10:41:16.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:41:16.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:41:16.347 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:41:16.347 +03:00 [INF] Request finished in 12.7988ms 200 application/javascript +2018-09-21 10:41:16.348 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:41:16.348 +03:00 [INF] Request finished in 6.4027ms 200 image/jpeg +2018-09-21 10:41:16.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:41:16.351 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:41:16.351 +03:00 [INF] Request finished in 9.6374ms 200 image/svg+xml +2018-09-21 10:41:16.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.352 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:41:16.352 +03:00 [INF] Request finished in 1.6136ms 200 application/javascript +2018-09-21 10:41:16.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:41:16.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:41:16.362 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:41:16.362 +03:00 [INF] Request finished in 2.078ms 200 application/javascript +2018-09-21 10:41:16.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.364 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:41:16.364 +03:00 [INF] Request finished in 2.5712ms 200 application/javascript +2018-09-21 10:41:16.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:41:16.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.370 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:41:16.370 +03:00 [INF] Request finished in 5.3158ms 200 application/javascript +2018-09-21 10:41:16.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:41:16.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.376 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:41:16.377 +03:00 [INF] Request finished in 1.2921ms 200 application/javascript +2018-09-21 10:41:16.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:41:16.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:41:16.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.383 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:41:16.383 +03:00 [INF] Request finished in 1.211ms 200 application/javascript +2018-09-21 10:41:16.383 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:41:16.383 +03:00 [INF] Request finished in 1.4912ms 200 application/javascript +2018-09-21 10:41:16.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:41:16.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.393 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:41:16.393 +03:00 [INF] Request finished in 1.6896ms 200 application/javascript +2018-09-21 10:41:16.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:41:16.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:41:16.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.397 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:41:16.397 +03:00 [INF] Request finished in 1.7239ms 200 application/javascript +2018-09-21 10:41:16.401 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:41:16.401 +03:00 [INF] Request finished in 4.1787ms 200 application/javascript +2018-09-21 10:41:16.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:41:16.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.408 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:41:16.408 +03:00 [INF] Request finished in 1.6229ms 200 application/javascript +2018-09-21 10:41:16.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:41:16.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.410 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:41:16.410 +03:00 [INF] Request finished in 1.2562ms 200 image/svg+xml +2018-09-21 10:41:16.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:41:16.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.415 +03:00 [INF] Request finished in 116.1543ms 404 +2018-09-21 10:41:16.415 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:41:16.415 +03:00 [INF] Request finished in 4.0857ms 200 application/javascript +2018-09-21 10:41:16.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:41:16.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:41:16.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:41:16.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:41:16.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.463 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:41:16.463 +03:00 [INF] Request finished in 1.534ms 200 application/javascript +2018-09-21 10:41:16.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:41:16.466 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:41:16.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.466 +03:00 [INF] Request finished in 4.6069ms 200 font/woff2 +2018-09-21 10:41:16.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.467 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:41:16.467 +03:00 [INF] Request finished in 1.6268ms 200 application/javascript +2018-09-21 10:41:16.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:41:16.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.486 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:41:16.486 +03:00 [INF] Request finished in 1.9429ms 200 application/javascript +2018-09-21 10:41:16.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:41:16.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.497 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:41:16.497 +03:00 [INF] Request finished in 3.7752ms 200 application/javascript +2018-09-21 10:41:16.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:41:16.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:41:16.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.509 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:41:16.509 +03:00 [INF] Request finished in 1.774ms 200 application/javascript +2018-09-21 10:41:16.517 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:41:16.517 +03:00 [INF] Request finished in 9.7073ms 200 image/jpeg +2018-09-21 10:41:16.527 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:16.528 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:41:16.529 +03:00 [INF] Authorization failed. +2018-09-21 10:41:16.529 +03:00 [INF] Authorization failed. +2018-09-21 10:41:16.530 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.531 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.531 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.532 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.532 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.533 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.534 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.534 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.535 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.536 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.536 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.537 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.538 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.538 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:16.539 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.539 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:41:16.539 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1686ms. +2018-09-21 10:41:16.539 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:16.540 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1924000000000001ms +2018-09-21 10:41:16.540 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.540 +03:00 [INF] Request finished in 89.7674ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:16.540 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.541 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.542 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.543 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.544 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.545 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.547 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.547 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.548 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.549 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.549 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:16.551 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.357ms. +2018-09-21 10:41:16.551 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:16.551 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.2372ms +2018-09-21 10:41:16.551 +03:00 [INF] Request finished in 134.7392ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:16.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:41:16.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.733 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:41:16.733 +03:00 [INF] Request finished in 2.6973ms 200 image/png +2018-09-21 10:41:16.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:41:16.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.737 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:41:16.737 +03:00 [INF] Request finished in 1.0543ms 200 image/png +2018-09-21 10:41:16.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:41:16.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:16.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:16.772 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:41:16.772 +03:00 [INF] Request finished in 4.4911ms 200 text/css +2018-09-21 10:41:16.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:41:16.971 +03:00 [INF] Request finished in 0.8434ms 404 +2018-09-21 10:41:18.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:41:18.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.317 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:41:18.320 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:41:18.340 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.342 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.344 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.352 +03:00 [INF] Executed action /Blog/Posts/Detail in 34.9194ms +2018-09-21 10:41:18.352 +03:00 [INF] Request finished in 61.0181ms 200 text/html; charset=utf-8 +2018-09-21 10:41:18.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:41:18.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:41:18.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.399 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:41:18.399 +03:00 [INF] Request finished in 1.0905ms 200 text/css +2018-09-21 10:41:18.401 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:41:18.401 +03:00 [INF] Request finished in 2.8047ms 200 text/css +2018-09-21 10:41:18.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:41:18.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.417 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:41:18.417 +03:00 [INF] Request finished in 2.7737ms 200 text/css +2018-09-21 10:41:18.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:41:18.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.420 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:41:18.420 +03:00 [INF] Request finished in 1.2721ms 200 text/css +2018-09-21 10:41:18.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:41:18.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.421 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:41:18.421 +03:00 [INF] Request finished in 1.0274ms 200 text/css +2018-09-21 10:41:18.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:41:18.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.432 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:41:18.432 +03:00 [INF] Request finished in 4.4571ms 200 text/css +2018-09-21 10:41:18.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:41:18.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:18.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.435 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:41:18.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.435 +03:00 [INF] Request finished in 1.419ms 200 text/css +2018-09-21 10:41:18.436 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:18.437 +03:00 [INF] Request finished in 1.9609ms 200 text/css +2018-09-21 10:41:18.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:41:18.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.446 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:41:18.446 +03:00 [INF] Request finished in 1.4192ms 200 text/css +2018-09-21 10:41:18.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:41:18.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:41:18.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.457 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:41:18.457 +03:00 [INF] Request finished in 1.3142ms 200 application/javascript +2018-09-21 10:41:18.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:41:18.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.471 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:41:18.471 +03:00 [INF] Request finished in 4.3265ms 200 application/javascript +2018-09-21 10:41:18.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:41:18.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.481 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:41:18.481 +03:00 [INF] Request finished in 3.1576ms 200 application/javascript +2018-09-21 10:41:18.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:41:18.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.494 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:41:18.494 +03:00 [INF] Request finished in 5.3452ms 200 application/javascript +2018-09-21 10:41:18.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:41:18.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.503 +03:00 [INF] Request finished in 51.6282ms 404 +2018-09-21 10:41:18.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:41:18.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.512 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:41:18.512 +03:00 [INF] Request finished in 2.0215ms 200 application/javascript +2018-09-21 10:41:18.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:41:18.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.518 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:41:18.518 +03:00 [INF] Request finished in 2.2003ms 200 application/javascript +2018-09-21 10:41:18.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:41:18.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.531 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:41:18.533 +03:00 [INF] Request finished in 5.4309ms 200 application/javascript +2018-09-21 10:41:18.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:41:18.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:41:18.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.539 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:41:18.540 +03:00 [INF] Request finished in 3.434ms 200 application/javascript +2018-09-21 10:41:18.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:41:18.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.548 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:41:18.548 +03:00 [INF] Request finished in 2.331ms 200 application/javascript +2018-09-21 10:41:18.550 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:41:18.551 +03:00 [INF] Request finished in 14.648ms 200 application/javascript +2018-09-21 10:41:18.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:41:18.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.556 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:41:18.556 +03:00 [INF] Request finished in 2.9177ms 200 application/javascript +2018-09-21 10:41:18.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:41:18.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.564 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:41:18.564 +03:00 [INF] Request finished in 2.2339ms 200 application/javascript +2018-09-21 10:41:18.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:41:18.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:41:18.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.567 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:41:18.567 +03:00 [INF] Request finished in 2.2333ms 200 application/javascript +2018-09-21 10:41:18.568 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:41:18.569 +03:00 [INF] Request finished in 2.747ms 200 application/javascript +2018-09-21 10:41:18.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:41:18.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:41:18.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.574 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:41:18.574 +03:00 [INF] Request finished in 1.7475ms 200 application/javascript +2018-09-21 10:41:18.575 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:41:18.575 +03:00 [INF] Request finished in 1.1464ms 200 application/javascript +2018-09-21 10:41:18.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:41:18.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:41:18.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.577 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:41:18.577 +03:00 [INF] Request finished in 1.5054ms 200 application/javascript +2018-09-21 10:41:18.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.579 +03:00 [INF] Request finished in 77.4548ms 404 +2018-09-21 10:41:18.581 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:41:18.582 +03:00 [INF] Request finished in 5.0411ms 200 application/javascript +2018-09-21 10:41:18.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:41:18.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:41:18.586 +03:00 [INF] Request finished in 1.3799ms 200 application/javascript +2018-09-21 10:41:18.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:41:18.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.589 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:41:18.590 +03:00 [INF] Request finished in 1.5273ms 200 application/javascript +2018-09-21 10:41:18.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:41:18.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:41:18.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.596 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:41:18.597 +03:00 [INF] Request finished in 1.0308ms 200 application/javascript +2018-09-21 10:41:18.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:41:18.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:41:18.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:41:18.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.610 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:41:18.610 +03:00 [INF] Request finished in 1.5049ms 200 application/javascript +2018-09-21 10:41:18.611 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:41:18.611 +03:00 [INF] Request finished in 1.6411ms 200 application/javascript +2018-09-21 10:41:18.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:41:18.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.619 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:41:18.619 +03:00 [INF] Request finished in 1.8582ms 200 application/javascript +2018-09-21 10:41:18.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:41:18.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:41:18.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.632 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:41:18.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.632 +03:00 [INF] Request finished in 2.2482ms 200 image/svg+xml +2018-09-21 10:41:18.633 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:41:18.634 +03:00 [INF] Request finished in 2.3135ms 200 application/javascript +2018-09-21 10:41:18.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:41:18.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.651 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:41:18.652 +03:00 [INF] Request finished in 2.4393ms 200 image/png +2018-09-21 10:41:18.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:41:18.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.660 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:41:18.660 +03:00 [INF] Request finished in 1.6627ms 200 image/svg+xml +2018-09-21 10:41:18.664 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:18.665 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:41:18.665 +03:00 [INF] Authorization failed. +2018-09-21 10:41:18.665 +03:00 [INF] Authorization failed. +2018-09-21 10:41:18.667 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.668 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.669 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.669 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.670 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:18.670 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.671 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.671 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:41:18.671 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16140000000000002ms. +2018-09-21 10:41:18.671 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:18.671 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.671 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1872ms +2018-09-21 10:41:18.671 +03:00 [INF] Request finished in 68.2501ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:18.672 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.672 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.673 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.673 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.674 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.675 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.676 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.676 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.677 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.677 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.677 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.678 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.678 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.679 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.679 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.680 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.681 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.681 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.683 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.684 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:18.685 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.3263ms. +2018-09-21 10:41:18.686 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:18.686 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.727700000000002ms +2018-09-21 10:41:18.686 +03:00 [INF] Request finished in 90.1621ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:18.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:41:18.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.746 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:41:18.746 +03:00 [INF] Request finished in 2.7025ms 200 font/woff2 +2018-09-21 10:41:18.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:41:18.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:41:18.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.777 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:41:18.777 +03:00 [INF] Request finished in 5.4384ms 200 image/jpeg +2018-09-21 10:41:18.779 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:41:18.779 +03:00 [INF] Request finished in 8.0153ms 200 image/jpeg +2018-09-21 10:41:18.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:41:18.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.905 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:41:18.905 +03:00 [INF] Request finished in 1.2889ms 200 image/png +2018-09-21 10:41:18.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:41:18.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:18.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:18.915 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:41:18.915 +03:00 [INF] Request finished in 1.3811ms 200 image/png +2018-09-21 10:41:19.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:19.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:19.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:19.035 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:19.035 +03:00 [INF] Request finished in 1.306ms 200 text/css +2018-09-21 10:41:19.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:41:19.215 +03:00 [INF] Request finished in 0.9707ms 404 +2018-09-21 10:41:35.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:41:35.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:35.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.343 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:41:36.347 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:41:36.404 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.406 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.410 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.425 +03:00 [INF] Executed action /Blog/Posts/Detail in 82.5416ms +2018-09-21 10:41:36.426 +03:00 [INF] Request finished in 610.7367ms 200 text/html; charset=utf-8 +2018-09-21 10:41:36.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:41:36.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:41:36.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:41:36.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.475 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:41:36.475 +03:00 [INF] Request finished in 1.3495ms 200 text/css +2018-09-21 10:41:36.476 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:41:36.476 +03:00 [INF] Request finished in 1.3385ms 200 text/css +2018-09-21 10:41:36.478 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:41:36.478 +03:00 [INF] Request finished in 4.1062ms 200 text/css +2018-09-21 10:41:36.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:41:36.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.483 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:41:36.484 +03:00 [INF] Request finished in 3.0694ms 200 text/css +2018-09-21 10:41:36.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:41:36.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:41:36.504 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:41:36.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.504 +03:00 [INF] Request finished in 3.0105ms 200 text/css +2018-09-21 10:41:36.505 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:41:36.505 +03:00 [INF] Request finished in 1.072ms 200 text/css +2018-09-21 10:41:36.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:36.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.510 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:36.510 +03:00 [INF] Request finished in 1.0035ms 200 text/css +2018-09-21 10:41:36.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:41:36.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:41:36.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.518 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:41:36.521 +03:00 [INF] Request finished in 4.55ms 200 text/css +2018-09-21 10:41:36.522 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:41:36.522 +03:00 [INF] Request finished in 6.0004ms 200 text/css +2018-09-21 10:41:36.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:41:36.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.528 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:41:36.528 +03:00 [INF] Request finished in 1.4423ms 200 application/javascript +2018-09-21 10:41:36.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:41:36.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:41:36.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:41:36.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:41:36.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.548 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:41:36.549 +03:00 [INF] Request finished in 2.6899ms 200 application/javascript +2018-09-21 10:41:36.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:41:36.550 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.550 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.551 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:41:36.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:41:36.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.552 +03:00 [INF] Request finished in 7.2904ms 200 application/javascript +2018-09-21 10:41:36.553 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:41:36.553 +03:00 [INF] Request finished in 1.8081ms 200 application/javascript +2018-09-21 10:41:36.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:41:36.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.561 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:41:36.561 +03:00 [INF] Request finished in 1.8456ms 200 application/javascript +2018-09-21 10:41:36.563 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:41:36.563 +03:00 [INF] Request finished in 13.7769ms 200 application/javascript +2018-09-21 10:41:36.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:41:36.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.577 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:41:36.577 +03:00 [INF] Request finished in 1.1684ms 200 application/javascript +2018-09-21 10:41:36.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:41:36.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.590 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:41:36.591 +03:00 [INF] Request finished in 3.0593ms 200 application/javascript +2018-09-21 10:41:36.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:41:36.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:41:36.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.609 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:41:36.609 +03:00 [INF] Request finished in 6.3505ms 200 application/javascript +2018-09-21 10:41:36.612 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:41:36.612 +03:00 [INF] Request finished in 12.5363ms 200 application/javascript +2018-09-21 10:41:36.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:41:36.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.616 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:41:36.617 +03:00 [INF] Request finished in 2.625ms 200 application/javascript +2018-09-21 10:41:36.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:41:36.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.633 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:41:36.634 +03:00 [INF] Request finished in 5.4057ms 200 application/javascript +2018-09-21 10:41:36.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:41:36.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.640 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:41:36.640 +03:00 [INF] Request finished in 1.8064ms 200 application/javascript +2018-09-21 10:41:36.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:41:36.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.645 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:41:36.645 +03:00 [INF] Request finished in 2.1893ms 200 application/javascript +2018-09-21 10:41:36.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:41:36.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:41:36.653 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:41:36.653 +03:00 [INF] Request finished in 1.2788ms 200 application/javascript +2018-09-21 10:41:36.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.654 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:41:36.654 +03:00 [INF] Request finished in 1.5425ms 200 application/javascript +2018-09-21 10:41:36.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:41:36.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.656 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:41:36.656 +03:00 [INF] Request finished in 1.6977ms 200 application/javascript +2018-09-21 10:41:36.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:41:36.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.662 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:41:36.662 +03:00 [INF] Request finished in 2.1824ms 200 application/javascript +2018-09-21 10:41:36.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:41:36.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.664 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:41:36.664 +03:00 [INF] Request finished in 1.9978ms 200 application/javascript +2018-09-21 10:41:36.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:41:36.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.670 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:41:36.670 +03:00 [INF] Request finished in 5.0037ms 200 application/javascript +2018-09-21 10:41:36.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:41:36.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.679 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:41:36.679 +03:00 [INF] Request finished in 1.9972ms 200 application/javascript +2018-09-21 10:41:36.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:41:36.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:41:36.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:41:36.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.691 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:41:36.692 +03:00 [INF] Request finished in 1.197ms 200 application/javascript +2018-09-21 10:41:36.696 +03:00 [INF] Request finished in 150.9939ms 404 +2018-09-21 10:41:36.696 +03:00 [INF] Request finished in 151.6269ms 404 +2018-09-21 10:41:36.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:41:36.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.700 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:41:36.700 +03:00 [INF] Request finished in 2.8007ms 200 application/javascript +2018-09-21 10:41:36.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:41:36.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.708 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:41:36.708 +03:00 [INF] Request finished in 1.1339ms 200 application/javascript +2018-09-21 10:41:36.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:41:36.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:41:36.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.712 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:41:36.712 +03:00 [INF] Request finished in 1.1548ms 200 application/javascript +2018-09-21 10:41:36.712 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:41:36.712 +03:00 [INF] Request finished in 1.679ms 200 image/svg+xml +2018-09-21 10:41:36.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:41:36.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.718 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:41:36.718 +03:00 [INF] Request finished in 2.2234ms 200 image/png +2018-09-21 10:41:36.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:41:36.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.735 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:41:36.735 +03:00 [INF] Request finished in 1.2074ms 200 image/svg+xml +2018-09-21 10:41:36.758 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:36.759 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:41:36.759 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2262ms. +2018-09-21 10:41:36.760 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:36.760 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8827ms +2018-09-21 10:41:36.760 +03:00 [INF] Request finished in 80.8281ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:36.766 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:41:36.767 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:41:36.768 +03:00 [INF] Authorization failed. +2018-09-21 10:41:36.768 +03:00 [INF] Authorization failed. +2018-09-21 10:41:36.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.770 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.770 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.771 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.771 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.774 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.776 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.777 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.778 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.778 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.779 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.780 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.780 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.781 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.782 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.783 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.784 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.785 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.786 +03:00 [INF] Authorization was successful. +2018-09-21 10:41:36.787 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.7025ms. +2018-09-21 10:41:36.788 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:41:36.788 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.6108ms +2018-09-21 10:41:36.788 +03:00 [INF] Request finished in 108.9207ms 200 text/plain; charset=utf-8 +2018-09-21 10:41:36.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:41:36.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.799 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:41:36.799 +03:00 [INF] Request finished in 3.7673ms 200 font/woff2 +2018-09-21 10:41:36.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:41:36.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.837 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:41:36.837 +03:00 [INF] Request finished in 11.1722ms 200 image/jpeg +2018-09-21 10:41:36.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:41:36.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:36.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:36.843 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:41:36.843 +03:00 [INF] Request finished in 5.6623ms 200 image/jpeg +2018-09-21 10:41:37.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:41:37.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:37.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:37.071 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:41:37.071 +03:00 [INF] Request finished in 2.9255ms 200 image/png +2018-09-21 10:41:37.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:41:37.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:37.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:37.075 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:41:37.075 +03:00 [INF] Request finished in 2.4876ms 200 image/png +2018-09-21 10:41:37.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:41:37.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:41:37.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:41:37.197 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:41:37.197 +03:00 [INF] Request finished in 1.0629ms 200 text/css +2018-09-21 10:41:37.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:41:37.439 +03:00 [INF] Request finished in 0.7837ms 404 +2018-09-21 10:42:04.335 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 299 +2018-09-21 10:42:04.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.365 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:42:04.369 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:42:04.372 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.449 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.451 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.453 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.458 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.459 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.461 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.462 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.468 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.475 +03:00 [INF] Executed action /Blog/Posts/Detail in 109.9749ms +2018-09-21 10:42:04.475 +03:00 [INF] Request finished in 139.9684ms 200 text/html; charset=utf-8 +2018-09-21 10:42:04.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:42:04.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.518 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:42:04.518 +03:00 [INF] Request finished in 4.5505ms 200 text/css +2018-09-21 10:42:04.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:42:04.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:42:04.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.521 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:42:04.521 +03:00 [INF] Request finished in 1.0493ms 200 text/css +2018-09-21 10:42:04.521 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:42:04.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:42:04.522 +03:00 [INF] Request finished in 1.432ms 200 text/css +2018-09-21 10:42:04.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.523 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:42:04.523 +03:00 [INF] Request finished in 1.859ms 200 text/css +2018-09-21 10:42:04.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:42:04.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.532 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:42:04.532 +03:00 [INF] Request finished in 1.5889ms 200 text/css +2018-09-21 10:42:04.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:42:04.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.538 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:42:04.538 +03:00 [INF] Request finished in 3.6174ms 200 text/css +2018-09-21 10:42:04.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:42:04.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.547 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:42:04.547 +03:00 [INF] Request finished in 1.1207ms 200 text/css +2018-09-21 10:42:04.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:42:04.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:42:04.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.557 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:42:04.557 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:42:04.557 +03:00 [INF] Request finished in 2.761ms 200 text/css +2018-09-21 10:42:04.557 +03:00 [INF] Request finished in 1.4313ms 200 text/css +2018-09-21 10:42:04.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:42:04.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:42:04.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.569 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:42:04.570 +03:00 [INF] Request finished in 1.6455ms 200 application/javascript +2018-09-21 10:42:04.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:42:04.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:42:04.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.577 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:42:04.577 +03:00 [INF] Request finished in 1.8309ms 200 application/javascript +2018-09-21 10:42:04.577 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:42:04.577 +03:00 [INF] Request finished in 7.052ms 200 application/javascript +2018-09-21 10:42:04.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:42:04.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:42:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.588 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:42:04.588 +03:00 [INF] Request finished in 5.6983ms 200 application/javascript +2018-09-21 10:42:04.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:42:04.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.601 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:42:04.601 +03:00 [INF] Request finished in 3.9629ms 200 application/javascript +2018-09-21 10:42:04.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:42:04.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.603 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:42:04.603 +03:00 [INF] Request finished in 1.7793ms 200 application/javascript +2018-09-21 10:42:04.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:42:04.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.616 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:42:04.616 +03:00 [INF] Request finished in 2.5436ms 200 application/javascript +2018-09-21 10:42:04.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:42:04.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.625 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:42:04.625 +03:00 [INF] Request finished in 4.6742ms 200 application/javascript +2018-09-21 10:42:04.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:42:04.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.635 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:42:04.636 +03:00 [INF] Request finished in 9.4477ms 200 application/javascript +2018-09-21 10:42:04.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:42:04.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.637 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:42:04.637 +03:00 [INF] Request finished in 1.1757ms 200 application/javascript +2018-09-21 10:42:04.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:42:04.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.646 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:42:04.646 +03:00 [INF] Request finished in 1.4816ms 200 application/javascript +2018-09-21 10:42:04.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:42:04.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:42:04.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.666 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:42:04.666 +03:00 [INF] Request finished in 1.7974ms 200 application/javascript +2018-09-21 10:42:04.667 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:42:04.667 +03:00 [INF] Request finished in 3.0766ms 200 application/javascript +2018-09-21 10:42:04.671 +03:00 [INF] Request finished in 88.6866ms 404 +2018-09-21 10:42:04.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:42:04.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:42:04.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:42:04.680 +03:00 [INF] Request finished in 1.4079ms 200 application/javascript +2018-09-21 10:42:04.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.681 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:42:04.681 +03:00 [INF] Request finished in 2.7831ms 200 application/javascript +2018-09-21 10:42:04.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:42:04.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.690 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:42:04.690 +03:00 [INF] Request finished in 1.7951ms 200 application/javascript +2018-09-21 10:42:04.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:42:04.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.691 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:42:04.691 +03:00 [INF] Request finished in 1.2864ms 200 application/javascript +2018-09-21 10:42:04.692 +03:00 [INF] Request finished in 126.1324ms 404 +2018-09-21 10:42:04.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:42:04.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.699 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:42:04.700 +03:00 [INF] Request finished in 1.5968ms 200 application/javascript +2018-09-21 10:42:04.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:42:04.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.705 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:42:04.706 +03:00 [INF] Request finished in 2.1092ms 200 application/javascript +2018-09-21 10:42:04.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:42:04.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.711 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:42:04.711 +03:00 [INF] Request finished in 2.1248ms 200 application/javascript +2018-09-21 10:42:04.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:42:04.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.722 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:42:04.722 +03:00 [INF] Request finished in 1.0925ms 200 application/javascript +2018-09-21 10:42:04.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:42:04.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:42:04.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:42:04.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.743 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:42:04.743 +03:00 [INF] Request finished in 1.3323ms 200 application/javascript +2018-09-21 10:42:04.756 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:42:04.757 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:42:04.757 +03:00 [INF] Authorization failed. +2018-09-21 10:42:04.757 +03:00 [INF] Authorization failed. +2018-09-21 10:42:04.758 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.758 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.759 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.760 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.760 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.761 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.762 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.763 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.764 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.764 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.765 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.766 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.766 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:42:04.767 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.767 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.767 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.768 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:42:04.768 +03:00 [INF] Request finished in 1.1499ms 200 application/javascript +2018-09-21 10:42:04.768 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:42:04.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.769 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.770 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.770 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:42:04.770 +03:00 [INF] Request finished in 1.774ms 200 application/javascript +2018-09-21 10:42:04.771 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.771 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.772 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.773 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.773 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:42:04.774 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.774 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:42:04.775 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1107ms. +2018-09-21 10:42:04.775 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:42:04.775 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3782ms +2018-09-21 10:42:04.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.775 +03:00 [INF] Request finished in 40.1725ms 200 text/plain; charset=utf-8 +2018-09-21 10:42:04.775 +03:00 [INF] Authorization was successful. +2018-09-21 10:42:04.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:42:04.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.777 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.544900000000002ms. +2018-09-21 10:42:04.778 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:42:04.778 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.1755ms +2018-09-21 10:42:04.778 +03:00 [INF] Request finished in 56.1391ms 200 text/plain; charset=utf-8 +2018-09-21 10:42:04.779 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:42:04.779 +03:00 [INF] Request finished in 2.466ms 200 application/javascript +2018-09-21 10:42:04.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:42:04.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.783 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:42:04.784 +03:00 [INF] Request finished in 1.3176ms 200 image/svg+xml +2018-09-21 10:42:04.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:42:04.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.793 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:42:04.793 +03:00 [INF] Request finished in 4.9398ms 200 font/woff2 +2018-09-21 10:42:04.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:42:04.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.797 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:42:04.798 +03:00 [INF] Request finished in 1.6352ms 200 image/png +2018-09-21 10:42:04.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:42:04.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.809 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:42:04.809 +03:00 [INF] Request finished in 1.3139ms 200 image/svg+xml +2018-09-21 10:42:04.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:42:04.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:42:04.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:04.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:04.842 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:42:04.843 +03:00 [INF] Request finished in 5.982ms 200 image/jpeg +2018-09-21 10:42:04.845 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:42:04.846 +03:00 [INF] Request finished in 13.5135ms 200 image/jpeg +2018-09-21 10:42:05.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:42:05.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:05.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:05.015 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:42:05.015 +03:00 [INF] Request finished in 2.2314ms 200 image/png +2018-09-21 10:42:05.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:42:05.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:05.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:05.018 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:42:05.018 +03:00 [INF] Request finished in 2.0296ms 200 image/png +2018-09-21 10:42:05.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:42:05.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:05.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:05.399 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:42:05.400 +03:00 [INF] Request finished in 4.9622ms 200 text/css +2018-09-21 10:42:05.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:42:05.526 +03:00 [INF] Request finished in 0.8696ms 404 +2018-09-21 10:42:20.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Admin/Register +2018-09-21 10:42:20.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:20.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:20.062 +03:00 [INF] Request finished in 20.4907ms 404 +2018-09-21 10:42:20.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:42:20.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:42:20.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:42:20.121 +03:00 [INF] Request finished in 31.5524ms 404 +2018-09-21 10:44:29.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 10:44:29.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.526 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 10:44:29.531 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:44:29.609 +03:00 [INF] Executed action /Account/Register in 82.7398ms +2018-09-21 10:44:29.609 +03:00 [INF] Request finished in 349.1889ms 200 text/html; charset=utf-8 +2018-09-21 10:44:29.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:44:29.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:44:29.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.657 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:44:29.657 +03:00 [INF] Request finished in 1.6653ms 200 text/css +2018-09-21 10:44:29.657 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:44:29.657 +03:00 [INF] Request finished in 4.5943ms 200 text/css +2018-09-21 10:44:29.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:44:29.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:44:29.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.662 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:44:29.662 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:44:29.662 +03:00 [INF] Request finished in 0.9164ms 200 text/css +2018-09-21 10:44:29.662 +03:00 [INF] Request finished in 1.3267ms 200 text/css +2018-09-21 10:44:29.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:44:29.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:44:29.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.684 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:44:29.684 +03:00 [INF] Request finished in 1.2561ms 200 text/css +2018-09-21 10:44:29.684 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:44:29.684 +03:00 [INF] Request finished in 1.0798ms 200 text/css +2018-09-21 10:44:29.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:44:29.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.697 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:44:29.697 +03:00 [INF] Request finished in 2.4348ms 200 text/css +2018-09-21 10:44:29.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:44:29.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.698 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:44:29.698 +03:00 [INF] Request finished in 1.5502ms 200 text/css +2018-09-21 10:44:29.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:44:29.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:44:29.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:44:29.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.713 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:44:29.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.713 +03:00 [INF] Request finished in 1.9686ms 200 application/javascript +2018-09-21 10:44:29.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:44:29.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.718 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:44:29.718 +03:00 [INF] Request finished in 5.5815ms 200 application/javascript +2018-09-21 10:44:29.719 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:44:29.719 +03:00 [INF] Request finished in 2.4286ms 200 image/svg+xml +2018-09-21 10:44:29.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:44:29.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:44:29.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.723 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:44:29.723 +03:00 [INF] Request finished in 3.3489ms 200 image/svg+xml +2018-09-21 10:44:29.724 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:44:29.724 +03:00 [INF] Request finished in 3.8492ms 200 application/javascript +2018-09-21 10:44:29.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:44:29.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.732 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:44:29.732 +03:00 [INF] Request finished in 5.6922ms 200 application/javascript +2018-09-21 10:44:29.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:44:29.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:44:29.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.740 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:44:29.740 +03:00 [INF] Request finished in 3.1341ms 200 application/javascript +2018-09-21 10:44:29.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:44:29.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.750 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:44:29.750 +03:00 [INF] Request finished in 1.7433ms 200 application/javascript +2018-09-21 10:44:29.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:44:29.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.764 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:44:29.764 +03:00 [INF] Request finished in 1.3669ms 200 application/javascript +2018-09-21 10:44:29.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:44:29.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:44:29.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.783 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:44:29.783 +03:00 [INF] Request finished in 6.0566ms 200 application/javascript +2018-09-21 10:44:29.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:44:29.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.793 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:44:29.794 +03:00 [INF] Request finished in 6.917ms 200 application/javascript +2018-09-21 10:44:29.794 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:44:29.794 +03:00 [INF] Request finished in 12.8879ms 200 application/javascript +2018-09-21 10:44:29.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:44:29.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.801 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:44:29.801 +03:00 [INF] Request finished in 2.2229ms 200 application/javascript +2018-09-21 10:44:29.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:44:29.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.811 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:44:29.811 +03:00 [INF] Request finished in 1.7484ms 200 application/javascript +2018-09-21 10:44:29.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:44:29.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.816 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:44:29.816 +03:00 [INF] Request finished in 2.7718ms 200 application/javascript +2018-09-21 10:44:29.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:44:29.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.819 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:44:29.819 +03:00 [INF] Request finished in 1.4955ms 200 application/javascript +2018-09-21 10:44:29.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:44:29.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.823 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:44:29.824 +03:00 [INF] Request finished in 3.4183ms 200 application/javascript +2018-09-21 10:44:29.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:44:29.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:44:29.839 +03:00 [INF] Request finished in 4.1061ms 200 application/javascript +2018-09-21 10:44:29.847 +03:00 [INF] Request finished in 144.0056ms 404 +2018-09-21 10:44:29.847 +03:00 [INF] Request finished in 112.7224ms 404 +2018-09-21 10:44:29.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:44:29.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:44:29.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.849 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:44:29.850 +03:00 [INF] Request finished in 1.7269ms 200 application/javascript +2018-09-21 10:44:29.850 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:44:29.851 +03:00 [INF] Request finished in 1.7528ms 200 application/javascript +2018-09-21 10:44:29.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:44:29.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.861 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:44:29.862 +03:00 [INF] Request finished in 1.4038ms 200 application/javascript +2018-09-21 10:44:29.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:44:29.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.875 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:44:29.876 +03:00 [INF] Request finished in 1.8378ms 200 application/javascript +2018-09-21 10:44:29.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:44:29.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.882 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:44:29.882 +03:00 [INF] Request finished in 1.163ms 200 application/javascript +2018-09-21 10:44:29.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:44:29.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:44:29.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:44:29.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.918 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:44:29.918 +03:00 [INF] Request finished in 1.6194ms 200 application/javascript +2018-09-21 10:44:29.934 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:29.935 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:44:29.935 +03:00 [INF] Authorization failed. +2018-09-21 10:44:29.935 +03:00 [INF] Authorization failed. +2018-09-21 10:44:29.936 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.937 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.938 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.939 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.940 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.941 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.942 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.943 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.943 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:44:29.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.944 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.944 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.945 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:44:29.945 +03:00 [INF] Request finished in 1.0608ms 200 application/javascript +2018-09-21 10:44:29.945 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.946 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.946 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:29.946 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.946 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:44:29.947 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21380000000000002ms. +2018-09-21 10:44:29.947 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.947 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:29.947 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1945000000000001ms +2018-09-21 10:44:29.947 +03:00 [INF] Request finished in 42.5937ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:29.947 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.948 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.949 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.949 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.950 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.951 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:44:29.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.951 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.952 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.953 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.954 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.954 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:44:29.954 +03:00 [INF] Request finished in 3.1881ms 200 font/woff2 +2018-09-21 10:44:29.954 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.956 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:29.958 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 22.9268ms. +2018-09-21 10:44:29.958 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:29.959 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.1811ms +2018-09-21 10:44:29.959 +03:00 [INF] Request finished in 61.8358ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:29.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:44:29.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:29.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:29.992 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:44:29.992 +03:00 [INF] Request finished in 8.8901ms 200 image/jpeg +2018-09-21 10:44:30.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:44:30.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:30.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:30.196 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:44:30.196 +03:00 [INF] Request finished in 1.5611ms 200 image/png +2018-09-21 10:44:30.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:44:30.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:30.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:30.199 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:44:30.199 +03:00 [INF] Request finished in 1.499ms 200 image/png +2018-09-21 10:44:30.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:44:30.432 +03:00 [INF] Request finished in 0.9154ms 404 +2018-09-21 10:44:46.216 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 305 +2018-09-21 10:44:46.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:46.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:46.245 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 10:44:46.273 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:44:46.289 +03:00 [WRN] User 39c6fc9d-451a-a266-e605-39e90d436ec9 password validation failed: PasswordRequiresNonAlphanumeric;PasswordRequiresUpper. +2018-09-21 10:44:46.291 +03:00 [INF] Executed action /Account/Register in 45.7855ms +2018-09-21 10:44:46.295 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NotImplementedException: The method or operation is not implemented. + at Volo.Abp.Account.Web.Pages.Account.RegisterModel.OnPostAsync() in D:\Github\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Register.cshtml.cs:line 46 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 10:44:46.308 +03:00 [INF] Request finished in 92.228ms 500 text/html; charset=utf-8 +2018-09-21 10:44:46.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 10:44:46.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:46.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:46.370 +03:00 [INF] Request finished in 28.0281ms 404 +2018-09-21 10:44:51.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 10:44:51.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.038 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 10:44:51.039 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:44:51.095 +03:00 [INF] Executed action /Account/Register in 57.496700000000004ms +2018-09-21 10:44:51.096 +03:00 [INF] Request finished in 82.405ms 200 text/html; charset=utf-8 +2018-09-21 10:44:51.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:44:51.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:44:51.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:44:51.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.141 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:44:51.141 +03:00 [INF] Request finished in 2.4855ms 200 text/css +2018-09-21 10:44:51.141 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:44:51.142 +03:00 [INF] Request finished in 3.0524ms 200 text/css +2018-09-21 10:44:51.142 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:44:51.142 +03:00 [INF] Request finished in 3.4005ms 200 text/css +2018-09-21 10:44:51.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:44:51.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.146 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:44:51.146 +03:00 [INF] Request finished in 1.2633ms 200 text/css +2018-09-21 10:44:51.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:44:51.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.154 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:44:51.154 +03:00 [INF] Request finished in 1.1366ms 200 text/css +2018-09-21 10:44:51.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:44:51.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.160 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:44:51.160 +03:00 [INF] Request finished in 3.3135ms 200 text/css +2018-09-21 10:44:51.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:44:51.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.176 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:44:51.176 +03:00 [INF] Request finished in 2.0236ms 200 text/css +2018-09-21 10:44:51.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:44:51.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.185 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:44:51.185 +03:00 [INF] Request finished in 1.5869ms 200 text/css +2018-09-21 10:44:51.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:44:51.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:44:51.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.195 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:44:51.196 +03:00 [INF] Request finished in 1.3713ms 200 application/javascript +2018-09-21 10:44:51.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:44:51.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:44:51.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.201 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:44:51.202 +03:00 [INF] Request finished in 1.2444ms 200 application/javascript +2018-09-21 10:44:51.206 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:44:51.206 +03:00 [INF] Request finished in 5.868ms 200 application/javascript +2018-09-21 10:44:51.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:44:51.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:44:51.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:44:51.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.218 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:44:51.219 +03:00 [INF] Request finished in 1.1086ms 200 application/javascript +2018-09-21 10:44:51.219 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:44:51.219 +03:00 [INF] Request finished in 6.7165ms 200 application/javascript +2018-09-21 10:44:51.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:44:51.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.232 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:44:51.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:44:51.232 +03:00 [INF] Request finished in 1.9416ms 200 application/javascript +2018-09-21 10:44:51.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.233 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:44:51.234 +03:00 [INF] Request finished in 1.2149ms 200 application/javascript +2018-09-21 10:44:51.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:44:51.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:44:51.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.245 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:44:51.247 +03:00 [INF] Request finished in 3.1244ms 200 application/javascript +2018-09-21 10:44:51.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:44:51.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.249 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:44:51.250 +03:00 [INF] Request finished in 1.8585ms 200 application/javascript +2018-09-21 10:44:51.254 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:44:51.254 +03:00 [INF] Request finished in 10.7374ms 200 application/javascript +2018-09-21 10:44:51.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:44:51.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.260 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:44:51.261 +03:00 [INF] Request finished in 2.0309ms 200 application/javascript +2018-09-21 10:44:51.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:44:51.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.273 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:44:51.273 +03:00 [INF] Request finished in 1.0793ms 200 application/javascript +2018-09-21 10:44:51.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:44:51.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.277 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:44:51.278 +03:00 [INF] Request finished in 3.0788ms 200 image/svg+xml +2018-09-21 10:44:51.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:44:51.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.281 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:44:51.281 +03:00 [INF] Request finished in 1.6635ms 200 application/javascript +2018-09-21 10:44:51.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:44:51.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.284 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:44:51.285 +03:00 [INF] Request finished in 1.6408ms 200 application/javascript +2018-09-21 10:44:51.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:44:51.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:44:51.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.294 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:44:51.294 +03:00 [INF] Request finished in 3.8084ms 200 application/javascript +2018-09-21 10:44:51.295 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:44:51.295 +03:00 [INF] Request finished in 5.5212ms 200 application/javascript +2018-09-21 10:44:51.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:44:51.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.297 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:44:51.297 +03:00 [INF] Request finished in 1.3668ms 200 image/svg+xml +2018-09-21 10:44:51.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:44:51.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.300 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:44:51.300 +03:00 [INF] Request finished in 1.3142ms 200 application/javascript +2018-09-21 10:44:51.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:44:51.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.309 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:44:51.309 +03:00 [INF] Request finished in 1.2935ms 200 application/javascript +2018-09-21 10:44:51.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:44:51.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.311 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:44:51.312 +03:00 [INF] Request finished in 1.5421ms 200 application/javascript +2018-09-21 10:44:51.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:44:51.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.327 +03:00 [INF] Request finished in 135.6285ms 404 +2018-09-21 10:44:51.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.328 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:44:51.328 +03:00 [INF] Request finished in 2.589ms 200 application/javascript +2018-09-21 10:44:51.332 +03:00 [INF] Request finished in 115.9914ms 404 +2018-09-21 10:44:51.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:44:51.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.336 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:44:51.336 +03:00 [INF] Request finished in 1.0371ms 200 application/javascript +2018-09-21 10:44:51.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:44:51.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:44:51.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:44:51.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:44:51.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.362 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:44:51.362 +03:00 [INF] Request finished in 1.2017ms 200 application/javascript +2018-09-21 10:44:51.362 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:44:51.362 +03:00 [INF] Request finished in 0.8665ms 200 application/javascript +2018-09-21 10:44:51.383 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:51.385 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:44:51.385 +03:00 [INF] Authorization failed. +2018-09-21 10:44:51.385 +03:00 [INF] Authorization failed. +2018-09-21 10:44:51.386 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.387 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.388 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.388 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.389 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.389 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.390 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.391 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.391 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.392 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.392 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:51.392 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.393 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.393 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:44:51.394 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.36110000000000003ms. +2018-09-21 10:44:51.394 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.394 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:51.395 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9146ms +2018-09-21 10:44:51.395 +03:00 [INF] Request finished in 41.2675ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:51.395 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.397 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.397 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.398 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.399 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.399 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.399 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.400 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.400 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.400 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.401 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.403 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.403 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.404 +03:00 [INF] Authorization was successful. +2018-09-21 10:44:51.405 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.1171ms. +2018-09-21 10:44:51.405 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:51.405 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.572000000000003ms +2018-09-21 10:44:51.405 +03:00 [INF] Request finished in 55.6743ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:51.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:44:51.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.453 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:44:51.453 +03:00 [INF] Request finished in 2.3744ms 200 font/woff2 +2018-09-21 10:44:51.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:44:51.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.491 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:44:51.492 +03:00 [INF] Request finished in 4.9546ms 200 image/jpeg +2018-09-21 10:44:51.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:44:51.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.659 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:44:51.659 +03:00 [INF] Request finished in 1.0687ms 200 image/png +2018-09-21 10:44:51.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:44:51.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.681 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:44:51.681 +03:00 [INF] Request finished in 2.8898ms 200 text/css +2018-09-21 10:44:51.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:44:51.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:51.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:51.689 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:44:51.689 +03:00 [INF] Request finished in 1.1429ms 200 image/png +2018-09-21 10:44:51.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:44:51.896 +03:00 [INF] Request finished in 1.1132ms 404 +2018-09-21 10:44:57.867 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 306 +2018-09-21 10:44:57.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:57.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:57.891 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 10:44:57.915 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:44:58.005 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 10:44:58.007 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 10:44:58.007 +03:00 [INF] Executed action /Account/Register in 116.1688ms +2018-09-21 10:44:58.007 +03:00 [INF] Request finished in 140.6566ms 302 +2018-09-21 10:44:58.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:44:58.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.044 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:44:58.044 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:44:58.053 +03:00 [INF] Executed action /Index in 8.3583ms +2018-09-21 10:44:58.053 +03:00 [INF] Request finished in 36.1956ms 200 text/html; charset=utf-8 +2018-09-21 10:44:58.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:44:58.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.115 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:44:58.115 +03:00 [INF] Request finished in 4.4292ms 200 text/css +2018-09-21 10:44:58.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:44:58.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:44:58.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.119 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:44:58.119 +03:00 [INF] Request finished in 1.4001ms 200 text/css +2018-09-21 10:44:58.120 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:44:58.120 +03:00 [INF] Request finished in 1.7769ms 200 text/css +2018-09-21 10:44:58.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:44:58.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:44:58.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.140 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:44:58.140 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:44:58.140 +03:00 [INF] Request finished in 0.9246ms 200 text/css +2018-09-21 10:44:58.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:44:58.140 +03:00 [INF] Request finished in 1.1729ms 200 text/css +2018-09-21 10:44:58.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.141 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:44:58.141 +03:00 [INF] Request finished in 1.3305ms 200 text/css +2018-09-21 10:44:58.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:44:58.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.144 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:44:58.144 +03:00 [INF] Request finished in 1.7076ms 200 text/css +2018-09-21 10:44:58.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:44:58.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.149 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:44:58.149 +03:00 [INF] Request finished in 1.631ms 200 text/css +2018-09-21 10:44:58.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 10:44:58.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.159 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 10:44:58.159 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 10:44:58.159 +03:00 [INF] Request finished in 1.5944ms 200 image/png +2018-09-21 10:44:58.159 +03:00 [INF] Request finished in 0.8621ms 200 image/png +2018-09-21 10:44:58.159 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 10:44:58.159 +03:00 [INF] Request finished in 1.0225ms 200 image/png +2018-09-21 10:44:58.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 10:44:58.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.171 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 10:44:58.171 +03:00 [INF] Request finished in 1.6671ms 200 image/png +2018-09-21 10:44:58.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 10:44:58.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.178 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 10:44:58.179 +03:00 [INF] Request finished in 1.2724ms 200 image/png +2018-09-21 10:44:58.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 10:44:58.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.188 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 10:44:58.189 +03:00 [INF] Request finished in 1.2991ms 200 image/png +2018-09-21 10:44:58.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 10:44:58.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.205 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 10:44:58.205 +03:00 [INF] Request finished in 1.548ms 200 image/png +2018-09-21 10:44:58.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 10:44:58.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.215 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 10:44:58.215 +03:00 [INF] Request finished in 1.2339ms 200 image/png +2018-09-21 10:44:58.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 10:44:58.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.220 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 10:44:58.220 +03:00 [INF] Request finished in 1.5311ms 200 image/png +2018-09-21 10:44:58.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 10:44:58.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 10:44:58.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.230 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 10:44:58.230 +03:00 [INF] Request finished in 1.2728ms 200 image/png +2018-09-21 10:44:58.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:44:58.231 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 10:44:58.231 +03:00 [INF] Request finished in 1.3573ms 200 image/png +2018-09-21 10:44:58.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.232 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 10:44:58.232 +03:00 [INF] Request finished in 1.5641ms 200 image/png +2018-09-21 10:44:58.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:44:58.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.242 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 10:44:58.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 10:44:58.242 +03:00 [INF] Request finished in 3.4076ms 200 image/png +2018-09-21 10:44:58.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.243 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 10:44:58.243 +03:00 [INF] Request finished in 1.2667ms 200 image/png +2018-09-21 10:44:58.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:44:58.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 10:44:58.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 10:44:58.251 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 10:44:58.251 +03:00 [INF] Request finished in 4.1883ms 200 image/png +2018-09-21 10:44:58.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.251 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 10:44:58.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.251 +03:00 [INF] Request finished in 3.8633ms 200 image/png +2018-09-21 10:44:58.254 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 10:44:58.254 +03:00 [INF] Request finished in 3.3499ms 200 image/png +2018-09-21 10:44:58.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 10:44:58.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 10:44:58.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.257 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 10:44:58.257 +03:00 [INF] Request finished in 1.0981ms 200 image/png +2018-09-21 10:44:58.257 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 10:44:58.257 +03:00 [INF] Request finished in 1.1536ms 200 image/png +2018-09-21 10:44:58.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 10:44:58.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 10:44:58.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.263 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 10:44:58.264 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 10:44:58.264 +03:00 [INF] Request finished in 1.2673ms 200 image/png +2018-09-21 10:44:58.264 +03:00 [INF] Request finished in 0.877ms 200 image/png +2018-09-21 10:44:58.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 10:44:58.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 10:44:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.271 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 10:44:58.271 +03:00 [INF] Request finished in 0.9969ms 200 image/png +2018-09-21 10:44:58.272 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 10:44:58.272 +03:00 [INF] Request finished in 1.4151ms 200 image/png +2018-09-21 10:44:58.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:44:58.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.275 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 10:44:58.275 +03:00 [INF] Request finished in 1.5432ms 200 image/png +2018-09-21 10:44:58.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 10:44:58.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 10:44:58.276 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 10:44:58.277 +03:00 [INF] Request finished in 1.569ms 200 image/png +2018-09-21 10:44:58.277 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.277 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.279 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 10:44:58.279 +03:00 [INF] Request finished in 3.2593ms 200 image/png +2018-09-21 10:44:58.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 10:44:58.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.284 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 10:44:58.284 +03:00 [INF] Request finished in 2.2677ms 200 image/png +2018-09-21 10:44:58.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:44:58.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.289 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 10:44:58.289 +03:00 [INF] Request finished in 2.1731ms 200 image/png +2018-09-21 10:44:58.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 10:44:58.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.295 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 10:44:58.295 +03:00 [INF] Request finished in 1.2211ms 200 image/png +2018-09-21 10:44:58.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 10:44:58.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.297 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 10:44:58.298 +03:00 [INF] Request finished in 1.4491ms 200 image/png +2018-09-21 10:44:58.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 10:44:58.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.303 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 10:44:58.303 +03:00 [INF] Request finished in 1.1996ms 200 image/png +2018-09-21 10:44:58.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:44:58.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.316 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 10:44:58.317 +03:00 [INF] Request finished in 1.6596ms 200 image/png +2018-09-21 10:44:58.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 10:44:58.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.322 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 10:44:58.322 +03:00 [INF] Request finished in 1.6328ms 200 image/png +2018-09-21 10:44:58.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 10:44:58.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.332 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 10:44:58.332 +03:00 [INF] Request finished in 1.4639ms 200 image/png +2018-09-21 10:44:58.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 10:44:58.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.340 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 10:44:58.340 +03:00 [INF] Request finished in 1.3407ms 200 image/png +2018-09-21 10:44:58.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:44:58.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.349 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:44:58.350 +03:00 [INF] Request finished in 2.9348ms 200 application/javascript +2018-09-21 10:44:58.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:44:58.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:44:58.365 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:44:58.365 +03:00 [INF] Request finished in 10.3252ms 200 application/javascript +2018-09-21 10:44:58.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.370 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:44:58.370 +03:00 [INF] Request finished in 5.8411ms 200 application/javascript +2018-09-21 10:44:58.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:44:58.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.407 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:44:58.408 +03:00 [INF] Request finished in 4.1422ms 200 application/javascript +2018-09-21 10:44:58.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:44:58.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:44:58.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.424 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:44:58.424 +03:00 [INF] Request finished in 1.5431ms 200 application/javascript +2018-09-21 10:44:58.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:44:58.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.431 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:44:58.432 +03:00 [INF] Request finished in 1.531ms 200 application/javascript +2018-09-21 10:44:58.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:44:58.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.440 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:44:58.440 +03:00 [INF] Request finished in 1.6122ms 200 application/javascript +2018-09-21 10:44:58.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:44:58.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:44:58.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.444 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:44:58.444 +03:00 [INF] Request finished in 2.5195ms 200 font/woff2 +2018-09-21 10:44:58.445 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:44:58.445 +03:00 [INF] Request finished in 2.2043ms 200 application/javascript +2018-09-21 10:44:58.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:44:58.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:44:58.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.465 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:44:58.465 +03:00 [INF] Request finished in 1.1849ms 200 application/javascript +2018-09-21 10:44:58.470 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:44:58.470 +03:00 [INF] Request finished in 12.7383ms 200 application/javascript +2018-09-21 10:44:58.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:44:58.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.476 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:44:58.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:44:58.476 +03:00 [INF] Request finished in 1.2423ms 200 application/javascript +2018-09-21 10:44:58.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.477 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:44:58.477 +03:00 [INF] Request finished in 0.981ms 200 application/javascript +2018-09-21 10:44:58.479 +03:00 [INF] Request finished in 68.4909ms 404 +2018-09-21 10:44:58.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:44:58.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:44:58.481 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:44:58.481 +03:00 [INF] Request finished in 1.3573ms 200 application/javascript +2018-09-21 10:44:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.486 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:44:58.487 +03:00 [INF] Request finished in 5.4721ms 200 application/javascript +2018-09-21 10:44:58.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:44:58.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:44:58.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.490 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:44:58.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.490 +03:00 [INF] Request finished in 1.8963ms 200 application/javascript +2018-09-21 10:44:58.491 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:44:58.491 +03:00 [INF] Request finished in 2.6572ms 200 application/javascript +2018-09-21 10:44:58.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:44:58.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:44:58.495 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:44:58.495 +03:00 [INF] Request finished in 1.7153ms 200 application/javascript +2018-09-21 10:44:58.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.496 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:44:58.497 +03:00 [INF] Request finished in 1.8045ms 200 application/javascript +2018-09-21 10:44:58.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:44:58.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:44:58.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.501 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:44:58.501 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:44:58.501 +03:00 [INF] Request finished in 2.5709ms 200 application/javascript +2018-09-21 10:44:58.501 +03:00 [INF] Request finished in 1.9336ms 200 application/javascript +2018-09-21 10:44:58.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:44:58.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.505 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:44:58.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:44:58.505 +03:00 [INF] Request finished in 2.5866ms 200 application/javascript +2018-09-21 10:44:58.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:44:58.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:44:58.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:44:58.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:44:58.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.514 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:44:58.514 +03:00 [INF] Request finished in 1.8009ms 200 application/javascript +2018-09-21 10:44:58.514 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:44:58.514 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:44:58.514 +03:00 [INF] Request finished in 1.2481ms 200 application/javascript +2018-09-21 10:44:58.514 +03:00 [INF] Request finished in 0.942ms 200 image/svg+xml +2018-09-21 10:44:58.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:44:58.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:44:58.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.525 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:44:58.526 +03:00 [INF] Request finished in 1.2607ms 200 image/svg+xml +2018-09-21 10:44:58.535 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:44:58.535 +03:00 [INF] Request finished in 10.5899ms 200 image/jpeg +2018-09-21 10:44:58.565 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:58.565 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:44:58.566 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:44:58.566 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:44:58.566 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.566 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.566 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1484ms. +2018-09-21 10:44:58.566 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:58.567 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5614000000000001ms +2018-09-21 10:44:58.567 +03:00 [INF] Request finished in 62.1774ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:58.577 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.579 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.580 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.582 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.585 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.587 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.589 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.591 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.592 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.594 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.596 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.597 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.599 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.602 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.604 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.606 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.608 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.609 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.611 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.612 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.614 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.615 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.617 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.620 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.621 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.623 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.624 +03:00 [INF] Authorization failed. +2018-09-21 10:44:58.626 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 59.917100000000005ms. +2018-09-21 10:44:58.626 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:44:58.626 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 61.310300000000005ms +2018-09-21 10:44:58.627 +03:00 [INF] Request finished in 120.5809ms 200 text/plain; charset=utf-8 +2018-09-21 10:44:58.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:44:58.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.841 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:44:58.842 +03:00 [INF] Request finished in 1.455ms 200 image/png +2018-09-21 10:44:58.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:44:58.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.844 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:44:58.844 +03:00 [INF] Request finished in 1.2889ms 200 image/png +2018-09-21 10:44:58.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:44:58.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:44:58.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:44:58.980 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:44:58.980 +03:00 [INF] Request finished in 1.2822ms 200 text/css +2018-09-21 10:44:59.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:44:59.214 +03:00 [INF] Request finished in 1.1576ms 404 +2018-09-21 10:45:15.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 10:45:15.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:15.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:15.948 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 10:45:15.949 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 10:45:15.955 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 10:45:15.956 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 10:45:15.957 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 10:45:15.957 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 7.0821000000000005ms. +2018-09-21 10:45:15.958 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 10:45:15.958 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 10.3902ms +2018-09-21 10:45:15.959 +03:00 [INF] Request finished in 38.9992ms 302 +2018-09-21 10:45:15.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:45:15.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:15.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:15.979 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:45:16.003 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:45:16.048 +03:00 [INF] Executed action /Account/Login in 68.897100000000009ms +2018-09-21 10:45:16.049 +03:00 [INF] Request finished in 77.899ms 200 text/html; charset=utf-8 +2018-09-21 10:45:16.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:45:16.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:45:16.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:45:16.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.093 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:45:16.093 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:45:16.093 +03:00 [INF] Request finished in 1.2997ms 200 text/css +2018-09-21 10:45:16.093 +03:00 [INF] Request finished in 1.4956ms 200 text/css +2018-09-21 10:45:16.095 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:45:16.096 +03:00 [INF] Request finished in 5.2637ms 200 text/css +2018-09-21 10:45:16.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:45:16.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.097 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:45:16.097 +03:00 [INF] Request finished in 1.215ms 200 text/css +2018-09-21 10:45:16.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:45:16.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.100 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:45:16.101 +03:00 [INF] Request finished in 1.5245ms 200 text/css +2018-09-21 10:45:16.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:45:16.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:45:16.124 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:45:16.126 +03:00 [INF] Request finished in 3.0853ms 200 text/css +2018-09-21 10:45:16.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:45:16.129 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:45:16.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.129 +03:00 [INF] Request finished in 5.2457ms 200 text/css +2018-09-21 10:45:16.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.131 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:45:16.131 +03:00 [INF] Request finished in 1.6865ms 200 text/css +2018-09-21 10:45:16.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:45:16.138 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.138 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.139 +03:00 [INF] Request finished in 1.3635ms 404 +2018-09-21 10:45:16.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:45:16.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.143 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:45:16.143 +03:00 [INF] Request finished in 1.5894ms 200 application/javascript +2018-09-21 10:45:16.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:45:16.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:45:16.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.150 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:45:16.150 +03:00 [INF] Request finished in 1.8743ms 200 application/javascript +2018-09-21 10:45:16.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:45:16.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.152 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:45:16.152 +03:00 [INF] Request finished in 6.4688ms 200 application/javascript +2018-09-21 10:45:16.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:45:16.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:16.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.158 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:45:16.158 +03:00 [INF] Request finished in 1.3761ms 200 application/javascript +2018-09-21 10:45:16.158 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:45:16.158 +03:00 [INF] Request finished in 1.5618ms 200 application/javascript +2018-09-21 10:45:16.158 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:45:16.159 +03:00 [INF] Request finished in 6.9718ms 200 application/javascript +2018-09-21 10:45:16.159 +03:00 [INF] Request finished in 2.5917ms 404 +2018-09-21 10:45:16.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:45:16.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.164 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:45:16.164 +03:00 [INF] Request finished in 1.6271ms 200 application/javascript +2018-09-21 10:45:16.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:45:16.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:45:16.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.174 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:45:16.174 +03:00 [INF] Request finished in 3.7086ms 200 application/javascript +2018-09-21 10:45:16.174 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:45:16.174 +03:00 [INF] Request finished in 2.0594ms 200 image/svg+xml +2018-09-21 10:45:16.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:45:16.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.187 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:45:16.187 +03:00 [INF] Request finished in 5.568ms 200 image/svg+xml +2018-09-21 10:45:16.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:45:16.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.196 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:45:16.197 +03:00 [INF] Request finished in 7.7376ms 200 application/javascript +2018-09-21 10:45:16.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:45:16.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:45:16.211 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:45:16.211 +03:00 [INF] Request finished in 3.7748ms 200 application/javascript +2018-09-21 10:45:16.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.212 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:45:16.212 +03:00 [INF] Request finished in 1.431ms 200 application/javascript +2018-09-21 10:45:16.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:45:16.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.237 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:45:16.238 +03:00 [INF] Request finished in 1.9909ms 200 application/javascript +2018-09-21 10:45:16.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:45:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:45:16.241 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:45:16.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.241 +03:00 [INF] Request finished in 2.5199ms 200 application/javascript +2018-09-21 10:45:16.241 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:45:16.242 +03:00 [INF] Request finished in 1.2127ms 200 application/javascript +2018-09-21 10:45:16.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:45:16.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.253 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:45:16.253 +03:00 [INF] Request finished in 2.2827ms 200 application/javascript +2018-09-21 10:45:16.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:45:16.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.256 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:45:16.256 +03:00 [INF] Request finished in 1.2259ms 200 application/javascript +2018-09-21 10:45:16.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:45:16.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.260 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:45:16.260 +03:00 [INF] Request finished in 1.6004ms 200 application/javascript +2018-09-21 10:45:16.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:45:16.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.266 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:45:16.266 +03:00 [INF] Request finished in 2.1435ms 200 application/javascript +2018-09-21 10:45:16.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:45:16.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.272 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:45:16.272 +03:00 [INF] Request finished in 1.7674ms 200 application/javascript +2018-09-21 10:45:16.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:45:16.277 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.277 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.279 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:45:16.280 +03:00 [INF] Request finished in 2.947ms 200 application/javascript +2018-09-21 10:45:16.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:45:16.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.287 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:45:16.287 +03:00 [INF] Request finished in 1.7091ms 200 application/javascript +2018-09-21 10:45:16.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:45:16.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:45:16.293 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:16.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.294 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.294 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1033ms. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.295 +03:00 [INF] Request finished in 0.9557ms 200 application/javascript +2018-09-21 10:45:16.295 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3641ms +2018-09-21 10:45:16.295 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Request finished in 3.1838ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.296 +03:00 [INF] Authorization failed. +2018-09-21 10:45:16.298 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.2229ms. +2018-09-21 10:45:16.298 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:16.299 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.6694ms +2018-09-21 10:45:16.299 +03:00 [INF] Request finished in 7.4436ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:16.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:45:16.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.311 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:45:16.311 +03:00 [INF] Request finished in 1.1602ms 200 application/javascript +2018-09-21 10:45:16.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:45:16.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.367 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:45:16.367 +03:00 [INF] Request finished in 2.6202ms 200 font/woff2 +2018-09-21 10:45:16.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:45:16.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.387 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:45:16.387 +03:00 [INF] Request finished in 8.4743ms 200 image/jpeg +2018-09-21 10:45:16.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:16.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.403 +03:00 [INF] Request finished in 1.8142ms 404 +2018-09-21 10:45:16.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:45:16.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.583 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:45:16.584 +03:00 [INF] Request finished in 1.2257ms 200 image/png +2018-09-21 10:45:16.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:45:16.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.589 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:45:16.589 +03:00 [INF] Request finished in 2.68ms 200 image/png +2018-09-21 10:45:16.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:45:16.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:16.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:16.629 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:45:16.630 +03:00 [INF] Request finished in 1.0776ms 200 text/css +2018-09-21 10:45:16.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:45:16.829 +03:00 [INF] Request finished in 0.7159ms 404 +2018-09-21 10:45:19.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 10:45:19.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.016 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 10:45:19.019 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:45:19.051 +03:00 [INF] Executed action /Blog/Posts/Index in 35.0919ms +2018-09-21 10:45:19.051 +03:00 [INF] Request finished in 39.3644ms 200 text/html; charset=utf-8 +2018-09-21 10:45:19.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:45:19.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.089 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:45:19.089 +03:00 [INF] Request finished in 5.1431ms 200 text/css +2018-09-21 10:45:19.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:45:19.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.097 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:45:19.097 +03:00 [INF] Request finished in 2.2277ms 200 text/css +2018-09-21 10:45:19.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:45:19.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:45:19.106 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:45:19.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:45:19.106 +03:00 [INF] Request finished in 4.1062ms 200 text/css +2018-09-21 10:45:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.108 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:45:19.109 +03:00 [INF] Request finished in 2.9881ms 200 text/css +2018-09-21 10:45:19.110 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:45:19.110 +03:00 [INF] Request finished in 4.6211ms 200 text/css +2018-09-21 10:45:19.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:45:19.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.112 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:45:19.112 +03:00 [INF] Request finished in 1.2263ms 200 text/css +2018-09-21 10:45:19.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:45:19.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.125 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:45:19.125 +03:00 [INF] Request finished in 2.1454ms 200 text/css +2018-09-21 10:45:19.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:45:19.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.126 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:45:19.126 +03:00 [INF] Request finished in 1.291ms 200 text/css +2018-09-21 10:45:19.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 10:45:19.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.133 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 10:45:19.133 +03:00 [INF] Request finished in 1.5155ms 200 text/css +2018-09-21 10:45:19.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 10:45:19.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 10:45:19.142 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 10:45:19.142 +03:00 [INF] Request finished in 2.1013ms 200 text/css +2018-09-21 10:45:19.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.143 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 10:45:19.143 +03:00 [INF] Request finished in 1.2688ms 200 text/css +2018-09-21 10:45:19.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:45:19.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.159 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:45:19.159 +03:00 [INF] Request finished in 1.6608ms 200 text/css +2018-09-21 10:45:19.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:45:19.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:45:19.163 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:45:19.163 +03:00 [INF] Request finished in 1.6342ms 200 application/javascript +2018-09-21 10:45:19.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.166 +03:00 [INF] Request finished in 2.8319ms 404 +2018-09-21 10:45:19.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:45:19.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:45:19.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:45:19.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.176 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:45:19.176 +03:00 [INF] Request finished in 2.7598ms 200 application/javascript +2018-09-21 10:45:19.176 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:45:19.176 +03:00 [INF] Request finished in 3.2307ms 200 application/javascript +2018-09-21 10:45:19.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:19.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.180 +03:00 [INF] Request finished in 1.6762ms 404 +2018-09-21 10:45:19.181 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:45:19.181 +03:00 [INF] Request finished in 8.6588ms 200 application/javascript +2018-09-21 10:45:19.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:45:19.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.187 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:45:19.188 +03:00 [INF] Request finished in 2.8424ms 200 application/javascript +2018-09-21 10:45:19.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:45:19.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.190 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:45:19.191 +03:00 [INF] Request finished in 1.9773ms 200 application/javascript +2018-09-21 10:45:19.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:45:19.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:45:19.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.198 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:45:19.198 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:45:19.198 +03:00 [INF] Request finished in 1.5462ms 200 application/javascript +2018-09-21 10:45:19.198 +03:00 [INF] Request finished in 1.5684ms 200 application/javascript +2018-09-21 10:45:19.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:45:19.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:45:19.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.214 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:45:19.214 +03:00 [INF] Request finished in 4.7792ms 200 application/javascript +2018-09-21 10:45:19.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:45:19.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.217 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:45:19.218 +03:00 [INF] Request finished in 2.0473ms 200 application/javascript +2018-09-21 10:45:19.221 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:45:19.221 +03:00 [INF] Request finished in 14.3443ms 200 application/javascript +2018-09-21 10:45:19.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:45:19.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:45:19.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.235 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:45:19.235 +03:00 [INF] Request finished in 3.1284ms 200 application/javascript +2018-09-21 10:45:19.236 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:45:19.236 +03:00 [INF] Request finished in 1.3583ms 200 application/javascript +2018-09-21 10:45:19.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:45:19.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.242 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:45:19.242 +03:00 [INF] Request finished in 1.8171ms 200 application/javascript +2018-09-21 10:45:19.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:45:19.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.247 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:45:19.248 +03:00 [INF] Request finished in 1.2189ms 200 application/javascript +2018-09-21 10:45:19.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:45:19.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.255 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:45:19.255 +03:00 [INF] Request finished in 2.8172ms 200 application/javascript +2018-09-21 10:45:19.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:45:19.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:45:19.265 +03:00 [INF] Request finished in 1.4253ms 200 application/javascript +2018-09-21 10:45:19.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:45:19.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.274 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:45:19.274 +03:00 [INF] Request finished in 1.867ms 200 application/javascript +2018-09-21 10:45:19.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:45:19.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.277 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:45:19.277 +03:00 [INF] Request finished in 2.5412ms 200 application/javascript +2018-09-21 10:45:19.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:45:19.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.285 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:45:19.285 +03:00 [INF] Request finished in 3.7759ms 200 application/javascript +2018-09-21 10:45:19.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:45:19.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.293 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:45:19.293 +03:00 [INF] Request finished in 4.0683ms 200 application/javascript +2018-09-21 10:45:19.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:45:19.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.300 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:19.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:45:19.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.301 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.302 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:45:19.302 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11420000000000001ms. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.303 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8942ms +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Request finished in 3.6835ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.304 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.305 +03:00 [INF] Authorization failed. +2018-09-21 10:45:19.306 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:45:19.306 +03:00 [INF] Request finished in 4.5491ms 200 application/javascript +2018-09-21 10:45:19.309 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.1157ms. +2018-09-21 10:45:19.309 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:19.309 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.3122ms +2018-09-21 10:45:19.309 +03:00 [INF] Request finished in 13.936ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:19.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:45:19.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.326 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:45:19.326 +03:00 [INF] Request finished in 1.054ms 200 application/javascript +2018-09-21 10:45:19.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 10:45:19.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.331 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 10:45:19.331 +03:00 [INF] Request finished in 1.0021ms 200 application/javascript +2018-09-21 10:45:19.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:45:19.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.336 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:45:19.337 +03:00 [INF] Request finished in 2.5704ms 200 application/javascript +2018-09-21 10:45:19.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:45:19.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.339 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:45:19.340 +03:00 [INF] Request finished in 1.3822ms 200 application/javascript +2018-09-21 10:45:19.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:45:19.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.365 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:45:19.365 +03:00 [INF] Request finished in 2.6395ms 200 image/svg+xml +2018-09-21 10:45:19.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:45:19.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.372 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:45:19.372 +03:00 [INF] Request finished in 6.7067ms 200 image/jpeg +2018-09-21 10:45:19.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:45:19.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:45:19.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.382 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:45:19.382 +03:00 [INF] Request finished in 1.0048ms 200 image/svg+xml +2018-09-21 10:45:19.384 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:45:19.385 +03:00 [INF] Request finished in 3.1383ms 200 font/woff2 +2018-09-21 10:45:19.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:45:19.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.431 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:45:19.431 +03:00 [INF] Request finished in 11.2793ms 200 image/jpeg +2018-09-21 10:45:19.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:19.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.499 +03:00 [INF] Request finished in 0.973ms 404 +2018-09-21 10:45:19.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:45:19.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:45:19.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.699 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:45:19.700 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:45:19.700 +03:00 [INF] Request finished in 1.2395ms 200 image/png +2018-09-21 10:45:19.700 +03:00 [INF] Request finished in 1.6822ms 200 image/png +2018-09-21 10:45:19.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:45:19.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:19.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:19.780 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:45:19.780 +03:00 [INF] Request finished in 2.9615ms 200 text/css +2018-09-21 10:45:19.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:45:19.953 +03:00 [INF] Request finished in 0.8167ms 404 +2018-09-21 10:45:23.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 10:45:23.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.391 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 10:45:23.396 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:45:23.420 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.421 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.423 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.424 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.424 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.424 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.424 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.424 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.430 +03:00 [INF] Executed action /Blog/Posts/Detail in 38.6561ms +2018-09-21 10:45:23.430 +03:00 [INF] Request finished in 40.4472ms 200 text/html; charset=utf-8 +2018-09-21 10:45:23.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:45:23.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:45:23.470 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:45:23.471 +03:00 [INF] Request finished in 3.7555ms 200 text/css +2018-09-21 10:45:23.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.471 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:45:23.471 +03:00 [INF] Request finished in 1.9906ms 200 text/css +2018-09-21 10:45:23.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:45:23.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.475 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:45:23.475 +03:00 [INF] Request finished in 2.1371ms 200 text/css +2018-09-21 10:45:23.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:45:23.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.484 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:45:23.484 +03:00 [INF] Request finished in 2.6477ms 200 text/css +2018-09-21 10:45:23.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:45:23.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.489 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:45:23.489 +03:00 [INF] Request finished in 1.8211ms 200 text/css +2018-09-21 10:45:23.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:45:23.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.494 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:45:23.494 +03:00 [INF] Request finished in 4.3046ms 200 text/css +2018-09-21 10:45:23.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:45:23.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.500 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:45:23.500 +03:00 [INF] Request finished in 1.1721ms 200 text/css +2018-09-21 10:45:23.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:45:23.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.507 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:45:23.507 +03:00 [INF] Request finished in 1.8855ms 200 text/css +2018-09-21 10:45:23.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 10:45:23.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.521 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 10:45:23.521 +03:00 [INF] Request finished in 1.9084ms 200 text/css +2018-09-21 10:45:23.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:45:23.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 10:45:23.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.528 +03:00 [INF] Request finished in 1.1641ms 404 +2018-09-21 10:45:23.528 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:45:23.528 +03:00 [INF] Request finished in 1.4148ms 200 application/javascript +2018-09-21 10:45:23.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:45:23.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:45:23.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.540 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:45:23.540 +03:00 [INF] Request finished in 6.8624ms 200 application/javascript +2018-09-21 10:45:23.541 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:45:23.541 +03:00 [INF] Request finished in 2.6223ms 200 application/javascript +2018-09-21 10:45:23.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:45:23.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:23.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.549 +03:00 [INF] Request finished in 1.3513ms 404 +2018-09-21 10:45:23.550 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:45:23.550 +03:00 [INF] Request finished in 8.1943ms 200 application/javascript +2018-09-21 10:45:23.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:45:23.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.552 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:45:23.552 +03:00 [INF] Request finished in 1.5092ms 200 application/javascript +2018-09-21 10:45:23.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:45:23.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.558 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:45:23.558 +03:00 [INF] Request finished in 1.5722ms 200 application/javascript +2018-09-21 10:45:23.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:45:23.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.561 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:45:23.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:45:23.561 +03:00 [INF] Request finished in 2.5599ms 200 application/javascript +2018-09-21 10:45:23.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.564 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:45:23.564 +03:00 [INF] Request finished in 3.2895ms 200 application/javascript +2018-09-21 10:45:23.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:45:23.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:45:23.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.575 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:45:23.576 +03:00 [INF] Request finished in 1.6559ms 200 application/javascript +2018-09-21 10:45:23.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:45:23.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.580 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:45:23.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.580 +03:00 [INF] Request finished in 7.931ms 200 application/javascript +2018-09-21 10:45:23.581 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:45:23.581 +03:00 [INF] Request finished in 1.2177ms 200 application/javascript +2018-09-21 10:45:23.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:45:23.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.596 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:45:23.597 +03:00 [INF] Request finished in 3.3751ms 200 application/javascript +2018-09-21 10:45:23.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:45:23.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.607 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:45:23.607 +03:00 [INF] Request finished in 5.3356ms 200 application/javascript +2018-09-21 10:45:23.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:45:23.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:45:23.617 +03:00 [INF] Request finished in 1.9808ms 200 application/javascript +2018-09-21 10:45:23.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:45:23.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.623 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:45:23.624 +03:00 [INF] Request finished in 1.6722ms 200 application/javascript +2018-09-21 10:45:23.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:45:23.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:45:23.633 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:45:23.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.634 +03:00 [INF] Request finished in 2.193ms 200 application/javascript +2018-09-21 10:45:23.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.635 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:45:23.635 +03:00 [INF] Request finished in 1.8059ms 200 application/javascript +2018-09-21 10:45:23.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:45:23.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.647 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:45:23.647 +03:00 [INF] Request finished in 1.3842ms 200 application/javascript +2018-09-21 10:45:23.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:45:23.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.655 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:45:23.655 +03:00 [INF] Request finished in 1.474ms 200 application/javascript +2018-09-21 10:45:23.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:45:23.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.663 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:45:23.663 +03:00 [INF] Request finished in 2.2528ms 200 application/javascript +2018-09-21 10:45:23.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:45:23.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.670 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:45:23.670 +03:00 [INF] Request finished in 1.1134ms 200 application/javascript +2018-09-21 10:45:23.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:45:23.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.682 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:23.683 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:45:23.683 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.683 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.684 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.685 +03:00 [INF] Authorization failed. +2018-09-21 10:45:23.687 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.7591ms. +2018-09-21 10:45:23.687 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:23.687 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.0004ms +2018-09-21 10:45:23.687 +03:00 [INF] Request finished in 6.4954ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:23.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:45:23.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.690 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:45:23.691 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:45:23.691 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.16090000000000002ms. +2018-09-21 10:45:23.692 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:45:23.692 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1423ms +2018-09-21 10:45:23.693 +03:00 [INF] Request finished in 3.9182ms 200 text/plain; charset=utf-8 +2018-09-21 10:45:23.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:45:23.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.702 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:45:23.702 +03:00 [INF] Request finished in 1.2381ms 200 application/javascript +2018-09-21 10:45:23.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:45:23.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.707 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:45:23.707 +03:00 [INF] Request finished in 1.2402ms 200 application/javascript +2018-09-21 10:45:23.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 10:45:23.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 10:45:23.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.710 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 10:45:23.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:45:23.710 +03:00 [INF] Request finished in 2.8156ms 200 application/javascript +2018-09-21 10:45:23.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.711 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 10:45:23.711 +03:00 [INF] Request finished in 2.8505ms 200 application/javascript +2018-09-21 10:45:23.712 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:45:23.712 +03:00 [INF] Request finished in 1.9702ms 200 image/svg+xml +2018-09-21 10:45:23.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 10:45:23.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.719 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 10:45:23.719 +03:00 [INF] Request finished in 1.598ms 200 image/png +2018-09-21 10:45:23.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:45:23.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.722 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:45:23.722 +03:00 [INF] Request finished in 2.2609ms 200 font/woff2 +2018-09-21 10:45:23.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:45:23.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.744 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:45:23.744 +03:00 [INF] Request finished in 1.562ms 200 image/svg+xml +2018-09-21 10:45:23.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:45:23.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 10:45:23.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.764 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 10:45:23.764 +03:00 [INF] Request finished in 2.9206ms 200 image/jpeg +2018-09-21 10:45:23.766 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:45:23.766 +03:00 [INF] Request finished in 5.9973ms 200 image/jpeg +2018-09-21 10:45:23.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:45:23.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:23.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:23.838 +03:00 [INF] Request finished in 1.0477ms 404 +2018-09-21 10:45:24.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:45:24.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:24.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:24.096 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:45:24.097 +03:00 [INF] Request finished in 2.3536ms 200 image/png +2018-09-21 10:45:24.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:45:24.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:24.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:24.103 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:45:24.103 +03:00 [INF] Request finished in 1.1655ms 200 text/css +2018-09-21 10:45:24.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:45:24.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:45:24.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:45:24.116 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:45:24.116 +03:00 [INF] Request finished in 1.2017ms 200 image/png +2018-09-21 10:45:24.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:45:24.256 +03:00 [INF] Request finished in 0.8163ms 404 +2018-09-21 10:46:53.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:46:53.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:53.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:53.903 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:46:53.942 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:46:54.006 +03:00 [INF] Executed action /Account/Login in 102.40610000000001ms +2018-09-21 10:46:54.006 +03:00 [INF] Request finished in 104.8138ms 200 text/html; charset=utf-8 +2018-09-21 10:46:54.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:46:54.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.050 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:46:54.050 +03:00 [INF] Request finished in 5.1552ms 200 text/css +2018-09-21 10:46:54.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:46:54.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.059 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:46:54.060 +03:00 [INF] Request finished in 1.8095ms 200 text/css +2018-09-21 10:46:54.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:46:54.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.062 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:46:54.062 +03:00 [INF] Request finished in 1.4182ms 200 text/css +2018-09-21 10:46:54.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:46:54.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.066 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:46:54.066 +03:00 [INF] Request finished in 1.5601ms 200 text/css +2018-09-21 10:46:54.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:46:54.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.073 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:46:54.074 +03:00 [INF] Request finished in 2.233ms 200 text/css +2018-09-21 10:46:54.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:46:54.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.078 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:46:54.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:46:54.079 +03:00 [INF] Request finished in 1.4313ms 200 text/css +2018-09-21 10:46:54.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.079 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:46:54.080 +03:00 [INF] Request finished in 1.1141ms 200 text/css +2018-09-21 10:46:54.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:46:54.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:46:54.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.097 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:46:54.097 +03:00 [INF] Request finished in 1.2798ms 200 application/javascript +2018-09-21 10:46:54.097 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:46:54.097 +03:00 [INF] Request finished in 1.446ms 200 text/css +2018-09-21 10:46:54.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:46:54.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.105 +03:00 [INF] Request finished in 1.7855ms 404 +2018-09-21 10:46:54.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:46:54.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.114 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:46:54.114 +03:00 [INF] Request finished in 7.2706ms 200 application/javascript +2018-09-21 10:46:54.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:46:54.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.118 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:46:54.118 +03:00 [INF] Request finished in 3.3264ms 200 application/javascript +2018-09-21 10:46:54.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:46:54.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.129 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:46:54.129 +03:00 [INF] Request finished in 5.0648ms 200 application/javascript +2018-09-21 10:46:54.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:46:54.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.143 +03:00 [INF] Request finished in 1.5922ms 404 +2018-09-21 10:46:54.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:46:54.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.159 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:46:54.159 +03:00 [INF] Request finished in 1.731ms 200 application/javascript +2018-09-21 10:46:54.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:46:54.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.177 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:46:54.177 +03:00 [INF] Request finished in 1.121ms 200 application/javascript +2018-09-21 10:46:54.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:46:54.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.179 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:46:54.179 +03:00 [INF] Request finished in 1.4525ms 200 application/javascript +2018-09-21 10:46:54.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:46:54.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.190 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:46:54.191 +03:00 [INF] Request finished in 2.5023ms 200 application/javascript +2018-09-21 10:46:54.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:46:54.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.200 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:46:54.200 +03:00 [INF] Request finished in 9.6206ms 200 application/javascript +2018-09-21 10:46:54.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:46:54.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.208 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:46:54.208 +03:00 [INF] Request finished in 1.8124ms 200 application/javascript +2018-09-21 10:46:54.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:46:54.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.209 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:46:54.210 +03:00 [INF] Request finished in 1.0848ms 200 application/javascript +2018-09-21 10:46:54.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:46:54.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.212 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:46:54.212 +03:00 [INF] Request finished in 1.1835ms 200 application/javascript +2018-09-21 10:46:54.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:46:54.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.221 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:46:54.222 +03:00 [INF] Request finished in 1.3495ms 200 application/javascript +2018-09-21 10:46:54.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:46:54.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.224 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:46:54.224 +03:00 [INF] Request finished in 2.2803ms 200 application/javascript +2018-09-21 10:46:54.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:46:54.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.231 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:46:54.231 +03:00 [INF] Request finished in 2.164ms 200 application/javascript +2018-09-21 10:46:54.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:46:54.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.237 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:46:54.237 +03:00 [INF] Request finished in 2.3674ms 200 application/javascript +2018-09-21 10:46:54.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:46:54.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.238 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:46:54.239 +03:00 [INF] Request finished in 1.5737ms 200 application/javascript +2018-09-21 10:46:54.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:46:54.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.242 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:46:54.242 +03:00 [INF] Request finished in 1.4691ms 200 application/javascript +2018-09-21 10:46:54.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:46:54.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.244 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:46:54.244 +03:00 [INF] Request finished in 1.5397ms 200 application/javascript +2018-09-21 10:46:54.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:46:54.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:46:54.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.250 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:46:54.251 +03:00 [INF] Request finished in 3.7428ms 200 application/javascript +2018-09-21 10:46:54.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:46:54.251 +03:00 [INF] Request finished in 1.3291ms 200 application/javascript +2018-09-21 10:46:54.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:46:54.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.252 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:46:54.253 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.254 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.255 +03:00 [INF] Authorization failed. +2018-09-21 10:46:54.257 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.4463000000000004ms. +2018-09-21 10:46:54.257 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:46:54.258 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.9724ms +2018-09-21 10:46:54.258 +03:00 [INF] Request finished in 6.6195ms 200 text/plain; charset=utf-8 +2018-09-21 10:46:54.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:46:54.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:46:54.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.266 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:46:54.267 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:46:54.267 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1228ms. +2018-09-21 10:46:54.268 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:46:54.268 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3210000000000002ms +2018-09-21 10:46:54.268 +03:00 [INF] Request finished in 3.4376ms 200 text/plain; charset=utf-8 +2018-09-21 10:46:54.268 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:46:54.268 +03:00 [INF] Request finished in 4.0878ms 200 application/javascript +2018-09-21 10:46:54.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:46:54.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.269 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:46:54.269 +03:00 [INF] Request finished in 1.0217ms 200 application/javascript +2018-09-21 10:46:54.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:46:54.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.273 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:46:54.273 +03:00 [INF] Request finished in 1.1523ms 200 image/svg+xml +2018-09-21 10:46:54.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:46:54.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.280 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:46:54.281 +03:00 [INF] Request finished in 2.2731ms 200 image/svg+xml +2018-09-21 10:46:54.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:46:54.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.306 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:46:54.306 +03:00 [INF] Request finished in 3.1016ms 200 font/woff2 +2018-09-21 10:46:54.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:46:54.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.373 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:46:54.373 +03:00 [INF] Request finished in 8.9768ms 200 image/jpeg +2018-09-21 10:46:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:46:54.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:46:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.542 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:46:54.542 +03:00 [INF] Request finished in 1.015ms 200 image/png +2018-09-21 10:46:54.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.543 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:46:54.543 +03:00 [INF] Request finished in 2.2852ms 200 image/png +2018-09-21 10:46:54.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:46:54.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:46:54.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:46:54.585 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:46:54.585 +03:00 [INF] Request finished in 3.0206ms 200 text/css +2018-09-21 10:46:54.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:46:54.860 +03:00 [INF] Request finished in 1.0978ms 404 +2018-09-21 10:56:04.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:56:04.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.596 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:56:04.642 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:56:04.690 +03:00 [INF] Executed action /Account/Login in 94.22890000000001ms +2018-09-21 10:56:04.690 +03:00 [INF] Request finished in 96.3581ms 200 text/html; charset=utf-8 +2018-09-21 10:56:04.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:56:04.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:56:04.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.733 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:56:04.733 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:56:04.734 +03:00 [INF] Request finished in 1.5969ms 200 text/css +2018-09-21 10:56:04.734 +03:00 [INF] Request finished in 5.0457ms 200 text/css +2018-09-21 10:56:04.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:56:04.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:56:04.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.737 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:56:04.737 +03:00 [INF] Request finished in 1.8289ms 200 text/css +2018-09-21 10:56:04.738 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:56:04.738 +03:00 [INF] Request finished in 1.6019ms 200 text/css +2018-09-21 10:56:04.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:56:04.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.747 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:56:04.747 +03:00 [INF] Request finished in 2.3695ms 200 text/css +2018-09-21 10:56:04.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:56:04.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:56:04.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.774 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:56:04.774 +03:00 [INF] Request finished in 4.3629ms 200 text/css +2018-09-21 10:56:04.776 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:56:04.776 +03:00 [INF] Request finished in 6.4794ms 200 text/css +2018-09-21 10:56:04.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:56:04.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.785 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:56:04.785 +03:00 [INF] Request finished in 8.4176ms 200 text/css +2018-09-21 10:56:04.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:56:04.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:56:04.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.795 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:56:04.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.796 +03:00 [INF] Request finished in 2.0764ms 200 application/javascript +2018-09-21 10:56:04.796 +03:00 [INF] Request finished in 1.9534ms 404 +2018-09-21 10:56:04.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:56:04.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:56:04.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.805 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:56:04.805 +03:00 [INF] Request finished in 2.926ms 200 application/javascript +2018-09-21 10:56:04.807 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:56:04.807 +03:00 [INF] Request finished in 9.2791ms 200 application/javascript +2018-09-21 10:56:04.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:56:04.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:56:04.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.812 +03:00 [INF] Request finished in 3.1739ms 404 +2018-09-21 10:56:04.813 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:56:04.813 +03:00 [INF] Request finished in 5.2197ms 200 application/javascript +2018-09-21 10:56:04.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:56:04.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.820 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:56:04.820 +03:00 [INF] Request finished in 1.4206ms 200 application/javascript +2018-09-21 10:56:04.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:56:04.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.822 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:56:04.822 +03:00 [INF] Request finished in 2.6186ms 200 application/javascript +2018-09-21 10:56:04.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:56:04.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.827 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:56:04.827 +03:00 [INF] Request finished in 2.2964ms 200 application/javascript +2018-09-21 10:56:04.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:56:04.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.831 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:56:04.831 +03:00 [INF] Request finished in 2.9567ms 200 application/javascript +2018-09-21 10:56:04.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:56:04.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:56:04.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.843 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:56:04.843 +03:00 [INF] Request finished in 1.8402ms 200 application/javascript +2018-09-21 10:56:04.853 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:56:04.853 +03:00 [INF] Request finished in 14.5091ms 200 application/javascript +2018-09-21 10:56:04.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:56:04.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.871 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:56:04.871 +03:00 [INF] Request finished in 1.4776ms 200 application/javascript +2018-09-21 10:56:04.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:56:04.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.896 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:56:04.896 +03:00 [INF] Request finished in 8.0518ms 200 application/javascript +2018-09-21 10:56:04.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:56:04.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.901 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:56:04.901 +03:00 [INF] Request finished in 1.099ms 200 application/javascript +2018-09-21 10:56:04.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:56:04.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.916 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:56:04.916 +03:00 [INF] Request finished in 2.323ms 200 application/javascript +2018-09-21 10:56:04.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:56:04.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.921 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:56:04.921 +03:00 [INF] Request finished in 1.4299ms 200 application/javascript +2018-09-21 10:56:04.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:56:04.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.931 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:56:04.931 +03:00 [INF] Request finished in 1.564ms 200 application/javascript +2018-09-21 10:56:04.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:56:04.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.944 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:56:04.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:56:04.944 +03:00 [INF] Request finished in 2.035ms 200 application/javascript +2018-09-21 10:56:04.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.945 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:56:04.945 +03:00 [INF] Request finished in 1.3882ms 200 application/javascript +2018-09-21 10:56:04.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:56:04.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.956 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:56:04.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:56:04.956 +03:00 [INF] Request finished in 1.5797ms 200 application/javascript +2018-09-21 10:56:04.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.957 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:56:04.957 +03:00 [INF] Request finished in 1.1874ms 200 application/javascript +2018-09-21 10:56:04.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:56:04.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.969 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:56:04.969 +03:00 [INF] Request finished in 1.2974ms 200 application/javascript +2018-09-21 10:56:04.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:56:04.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.985 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:56:04.987 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:56:04.988 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.988 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.989 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.989 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.989 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.990 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.991 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.992 +03:00 [INF] Authorization failed. +2018-09-21 10:56:04.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:56:04.995 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.8494ms. +2018-09-21 10:56:04.996 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:56:04.996 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.4192ms +2018-09-21 10:56:04.996 +03:00 [INF] Request finished in 13.3746ms 200 text/plain; charset=utf-8 +2018-09-21 10:56:04.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:04.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:04.997 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:56:05.005 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:56:05.006 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.129ms. +2018-09-21 10:56:05.006 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:56:05.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:56:05.007 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 9.3281000000000009ms +2018-09-21 10:56:05.007 +03:00 [INF] Request finished in 11.452ms 200 text/plain; charset=utf-8 +2018-09-21 10:56:05.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.007 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:56:05.008 +03:00 [INF] Request finished in 1.0327ms 200 application/javascript +2018-09-21 10:56:05.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:56:05.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.029 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:56:05.029 +03:00 [INF] Request finished in 1.2414ms 200 application/javascript +2018-09-21 10:56:05.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:56:05.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.045 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:56:05.045 +03:00 [INF] Request finished in 1.3077ms 200 image/svg+xml +2018-09-21 10:56:05.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:56:05.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.052 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:56:05.052 +03:00 [INF] Request finished in 1.9509ms 200 image/svg+xml +2018-09-21 10:56:05.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:56:05.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.063 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:56:05.063 +03:00 [INF] Request finished in 2.6264ms 200 font/woff2 +2018-09-21 10:56:05.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:56:05.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.109 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:56:05.109 +03:00 [INF] Request finished in 10.4458ms 200 image/jpeg +2018-09-21 10:56:05.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:56:05.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.158 +03:00 [INF] Request finished in 2.4087ms 404 +2018-09-21 10:56:05.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:56:05.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.403 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:56:05.403 +03:00 [INF] Request finished in 1.4302ms 200 image/png +2018-09-21 10:56:05.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:56:05.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.405 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:56:05.405 +03:00 [INF] Request finished in 1.4725ms 200 image/png +2018-09-21 10:56:05.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:56:05.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:05.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:05.662 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:56:05.662 +03:00 [INF] Request finished in 1.3586ms 200 text/css +2018-09-21 10:56:06.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:56:06.026 +03:00 [INF] Request finished in 1.4555ms 404 +2018-09-21 10:56:18.510 +03:00 [INF] Loaded modules: +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:56:18.525 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:56:18.526 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:56:18.527 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:56:20.235 +03:00 [INF] Initialized all modules. +2018-09-21 10:56:20.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:56:20.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:20.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:23.142 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:56:23.203 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:56:24.676 +03:00 [INF] Executed action /Account/Login in 1529.0145ms +2018-09-21 10:56:24.695 +03:00 [INF] Request finished in 4254.8464ms 200 text/html; charset=utf-8 +2018-09-21 10:56:24.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:56:24.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:56:24.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:56:24.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.731 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:56:24.731 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:56:24.731 +03:00 [INF] Request finished in 3.2489ms 200 text/css +2018-09-21 10:56:24.731 +03:00 [INF] Request finished in 15.848ms 200 text/css +2018-09-21 10:56:24.740 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:56:24.741 +03:00 [INF] Request finished in 25.6836ms 200 text/css +2018-09-21 10:56:24.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:56:24.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:56:24.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.742 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:56:24.742 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:56:24.742 +03:00 [INF] Request finished in 1.1028ms 200 text/css +2018-09-21 10:56:24.742 +03:00 [INF] Request finished in 1.1641ms 200 text/css +2018-09-21 10:56:24.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:56:24.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:56:24.745 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:56:24.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:56:24.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.746 +03:00 [INF] Request finished in 1.3945ms 200 text/css +2018-09-21 10:56:24.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.747 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:56:24.747 +03:00 [INF] Request finished in 1.9412ms 200 text/css +2018-09-21 10:56:24.747 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:56:24.747 +03:00 [INF] Request finished in 1.9648ms 200 text/css +2018-09-21 10:56:24.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:56:24.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.759 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:56:24.759 +03:00 [INF] Request finished in 2.1457ms 200 application/javascript +2018-09-21 10:56:24.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:56:24.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.768 +03:00 [INF] Request finished in 5.5599ms 404 +2018-09-21 10:56:24.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:56:24.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:56:24.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.787 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:56:24.788 +03:00 [INF] Request finished in 3.0596ms 200 application/javascript +2018-09-21 10:56:24.789 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:56:24.789 +03:00 [INF] Request finished in 10.2536ms 200 application/javascript +2018-09-21 10:56:24.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:56:24.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:56:24.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.806 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:56:24.806 +03:00 [INF] Request finished in 3.4265ms 404 +2018-09-21 10:56:24.807 +03:00 [INF] Request finished in 9.692ms 200 application/javascript +2018-09-21 10:56:24.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:56:24.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.817 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:56:24.817 +03:00 [INF] Request finished in 2.413ms 200 application/javascript +2018-09-21 10:56:24.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:56:24.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.827 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:56:24.827 +03:00 [INF] Request finished in 1.7541ms 200 application/javascript +2018-09-21 10:56:24.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:56:24.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:56:24.853 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:56:24.854 +03:00 [INF] Request finished in 3.617ms 200 application/javascript +2018-09-21 10:56:24.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.857 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:56:24.857 +03:00 [INF] Request finished in 3.6889ms 200 application/javascript +2018-09-21 10:56:24.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:56:24.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:56:24.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:56:24.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.866 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:56:24.866 +03:00 [INF] Request finished in 1.4695ms 200 application/javascript +2018-09-21 10:56:24.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:56:24.869 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:56:24.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.869 +03:00 [INF] Request finished in 7.9247ms 200 application/javascript +2018-09-21 10:56:24.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.871 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:56:24.871 +03:00 [INF] Request finished in 2.2493ms 200 application/javascript +2018-09-21 10:56:24.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:56:24.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.874 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:56:24.874 +03:00 [INF] Request finished in 1.3132ms 200 application/javascript +2018-09-21 10:56:24.875 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:56:24.875 +03:00 [INF] Request finished in 15.3722ms 200 application/javascript +2018-09-21 10:56:24.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:56:24.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.884 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:56:24.884 +03:00 [INF] Request finished in 2.1218ms 200 application/javascript +2018-09-21 10:56:24.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:56:24.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.887 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:56:24.887 +03:00 [INF] Request finished in 1.6537ms 200 application/javascript +2018-09-21 10:56:24.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:56:24.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.893 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:56:24.893 +03:00 [INF] Request finished in 2.2486ms 200 application/javascript +2018-09-21 10:56:24.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:56:24.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.896 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:56:24.896 +03:00 [INF] Request finished in 1.3945ms 200 application/javascript +2018-09-21 10:56:24.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:56:24.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.906 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:56:24.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:56:24.906 +03:00 [INF] Request finished in 1.7888ms 200 application/javascript +2018-09-21 10:56:24.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.907 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:56:24.907 +03:00 [INF] Request finished in 1.5295ms 200 application/javascript +2018-09-21 10:56:24.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:56:24.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.911 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:56:24.911 +03:00 [INF] Request finished in 1.3436ms 200 application/javascript +2018-09-21 10:56:24.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:56:24.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.916 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:56:24.916 +03:00 [INF] Request finished in 1.81ms 200 application/javascript +2018-09-21 10:56:24.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:56:24.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:56:24.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:56:24.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.942 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:56:24.943 +03:00 [INF] Request finished in 1.801ms 200 application/javascript +2018-09-21 10:56:24.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:56:24.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.945 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:56:24.945 +03:00 [INF] Request finished in 1.579ms 200 application/javascript +2018-09-21 10:56:24.946 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:56:24.946 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:56:24.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:56:24.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.960 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:56:24.961 +03:00 [INF] Request finished in 1.1093ms 200 image/svg+xml +2018-09-21 10:56:24.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:56:24.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:24.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:24.962 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:56:24.962 +03:00 [INF] Request finished in 1.3206ms 200 image/svg+xml +2018-09-21 10:56:24.990 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:56:24.995 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:56:25.031 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.032 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:56:25.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.036 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:56:25.037 +03:00 [INF] Request finished in 4.0145ms 200 font/woff2 +2018-09-21 10:56:25.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:56:25.066 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.067 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.068 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.069 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.069 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.069 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.069 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.069 +03:00 [INF] Authorization failed. +2018-09-21 10:56:25.084 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:56:25.085 +03:00 [INF] Request finished in 18.9688ms 200 image/jpeg +2018-09-21 10:56:25.106 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 103.66890000000001ms. +2018-09-21 10:56:25.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:56:25.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.111 +03:00 [INF] Request finished in 1.7095ms 404 +2018-09-21 10:56:25.117 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:56:25.119 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 172.27020000000002ms +2018-09-21 10:56:25.119 +03:00 [INF] Request finished in 188.9099ms 200 text/plain; charset=utf-8 +2018-09-21 10:56:25.124 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 129.0933ms. +2018-09-21 10:56:25.125 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:56:25.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 179.0695ms +2018-09-21 10:56:25.126 +03:00 [INF] Request finished in 208.7415ms 200 text/plain; charset=utf-8 +2018-09-21 10:56:25.373 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:56:25.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.375 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:56:25.375 +03:00 [INF] Request finished in 2.1224ms 200 image/png +2018-09-21 10:56:25.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:56:25.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.380 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:56:25.380 +03:00 [INF] Request finished in 1.3008ms 200 image/png +2018-09-21 10:56:25.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:56:25.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:56:25.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:56:25.561 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:56:25.561 +03:00 [INF] Request finished in 3.7411ms 200 text/css +2018-09-21 10:56:25.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:56:25.907 +03:00 [INF] Request finished in 2.0631ms 404 +2018-09-21 10:57:12.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:57:12.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.805 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:57:12.834 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:57:12.887 +03:00 [INF] Executed action /Account/Login in 82.3455ms +2018-09-21 10:57:12.888 +03:00 [INF] Request finished in 85.4637ms 200 text/html; charset=utf-8 +2018-09-21 10:57:12.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:57:12.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.926 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:57:12.926 +03:00 [INF] Request finished in 3.9784ms 200 text/css +2018-09-21 10:57:12.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:57:12.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.932 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:57:12.932 +03:00 [INF] Request finished in 2.7938ms 200 text/css +2018-09-21 10:57:12.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:57:12.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.935 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:57:12.935 +03:00 [INF] Request finished in 1.9439ms 200 text/css +2018-09-21 10:57:12.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:57:12.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.938 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:57:12.939 +03:00 [INF] Request finished in 1.8901ms 200 text/css +2018-09-21 10:57:12.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:57:12.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.952 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:57:12.952 +03:00 [INF] Request finished in 3.4159ms 200 text/css +2018-09-21 10:57:12.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:57:12.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:57:12.961 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:57:12.961 +03:00 [INF] Request finished in 1.8041ms 200 text/css +2018-09-21 10:57:12.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.962 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:57:12.962 +03:00 [INF] Request finished in 1.2716ms 200 text/css +2018-09-21 10:57:12.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:57:12.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.970 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:57:12.970 +03:00 [INF] Request finished in 1.9853ms 200 text/css +2018-09-21 10:57:12.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:57:12.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.974 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:57:12.974 +03:00 [INF] Request finished in 1.357ms 200 application/javascript +2018-09-21 10:57:12.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:57:12.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.979 +03:00 [INF] Request finished in 1.321ms 404 +2018-09-21 10:57:12.980 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:57:12.980 +03:00 [INF] Request finished in 1.5194ms 200 application/javascript +2018-09-21 10:57:12.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:57:12.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:57:12.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.987 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:57:12.988 +03:00 [INF] Request finished in 9.4434ms 200 application/javascript +2018-09-21 10:57:12.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.989 +03:00 [INF] Request finished in 3.1938ms 404 +2018-09-21 10:57:12.993 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:57:12.993 +03:00 [INF] Request finished in 6.811ms 200 application/javascript +2018-09-21 10:57:12.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:57:12.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:57:12.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:12.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:12.996 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:57:12.996 +03:00 [INF] Request finished in 1.4228ms 200 application/javascript +2018-09-21 10:57:12.997 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:57:12.997 +03:00 [INF] Request finished in 2.4976ms 200 application/javascript +2018-09-21 10:57:13.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:57:13.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.006 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:57:13.006 +03:00 [INF] Request finished in 1.9331ms 200 application/javascript +2018-09-21 10:57:13.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:57:13.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.031 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:57:13.031 +03:00 [INF] Request finished in 3.0942ms 200 application/javascript +2018-09-21 10:57:13.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:57:13.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.052 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:57:13.053 +03:00 [INF] Request finished in 17.6922ms 200 application/javascript +2018-09-21 10:57:13.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:57:13.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.065 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:57:13.066 +03:00 [INF] Request finished in 1.5108ms 200 application/javascript +2018-09-21 10:57:13.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:57:13.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.073 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:57:13.073 +03:00 [INF] Request finished in 1.7997ms 200 application/javascript +2018-09-21 10:57:13.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:57:13.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.076 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:57:13.077 +03:00 [INF] Request finished in 1.4341ms 200 application/javascript +2018-09-21 10:57:13.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:57:13.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.088 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:57:13.088 +03:00 [INF] Request finished in 1.601ms 200 application/javascript +2018-09-21 10:57:13.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:57:13.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:57:13.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:57:13.096 +03:00 [INF] Request finished in 1.3708ms 200 application/javascript +2018-09-21 10:57:13.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:57:13.096 +03:00 [INF] Request finished in 1.3358ms 200 application/javascript +2018-09-21 10:57:13.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:57:13.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:57:13.119 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:57:13.119 +03:00 [INF] Request finished in 1.5592ms 200 application/javascript +2018-09-21 10:57:13.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.120 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:57:13.120 +03:00 [INF] Request finished in 1.2738ms 200 application/javascript +2018-09-21 10:57:13.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:57:13.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.124 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:57:13.124 +03:00 [INF] Request finished in 2.8084ms 200 application/javascript +2018-09-21 10:57:13.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:57:13.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.132 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:57:13.132 +03:00 [INF] Request finished in 1.5696ms 200 application/javascript +2018-09-21 10:57:13.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:57:13.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.135 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:57:13.135 +03:00 [INF] Request finished in 1.876ms 200 application/javascript +2018-09-21 10:57:13.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:57:13.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.147 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:57:13.147 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:57:13.147 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:57:13.147 +03:00 [INF] Request finished in 1.4911ms 200 application/javascript +2018-09-21 10:57:13.147 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:57:13.148 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.26630000000000004ms. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.148 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8971ms +2018-09-21 10:57:13.149 +03:00 [INF] Request finished in 3.0534ms 200 text/plain; charset=utf-8 +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.149 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.150 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.151 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.151 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.151 +03:00 [INF] Authorization failed. +2018-09-21 10:57:13.153 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4688ms. +2018-09-21 10:57:13.153 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:57:13.154 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.9723000000000006ms +2018-09-21 10:57:13.154 +03:00 [INF] Request finished in 8.5126ms 200 text/plain; charset=utf-8 +2018-09-21 10:57:13.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:57:13.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.155 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:57:13.156 +03:00 [INF] Request finished in 1.5772ms 200 application/javascript +2018-09-21 10:57:13.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:57:13.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:57:13.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.158 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:57:13.158 +03:00 [INF] Request finished in 1.5291ms 200 image/svg+xml +2018-09-21 10:57:13.159 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:57:13.159 +03:00 [INF] Request finished in 1.7227ms 200 application/javascript +2018-09-21 10:57:13.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:57:13.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.161 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:57:13.161 +03:00 [INF] Request finished in 1.1636ms 200 image/svg+xml +2018-09-21 10:57:13.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:57:13.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.221 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:57:13.221 +03:00 [INF] Request finished in 2.7513ms 200 font/woff2 +2018-09-21 10:57:13.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:57:13.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.249 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:57:13.249 +03:00 [INF] Request finished in 7.7678ms 200 image/jpeg +2018-09-21 10:57:13.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:57:13.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.262 +03:00 [INF] Request finished in 1.5349ms 404 +2018-09-21 10:57:13.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:57:13.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.471 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:57:13.472 +03:00 [INF] Request finished in 2.1099ms 200 image/png +2018-09-21 10:57:13.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:57:13.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.476 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:57:13.477 +03:00 [INF] Request finished in 1.1641ms 200 image/png +2018-09-21 10:57:13.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:57:13.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:13.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:13.652 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:57:13.653 +03:00 [INF] Request finished in 7.7133ms 200 text/css +2018-09-21 10:57:13.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:57:13.954 +03:00 [INF] Request finished in 1.5856ms 404 +2018-09-21 10:57:28.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:57:28.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:28.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:28.864 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:57:28.890 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:57:28.953 +03:00 [INF] Executed action /Account/Login in 89.6349ms +2018-09-21 10:57:28.954 +03:00 [INF] Request finished in 91.2582ms 200 text/html; charset=utf-8 +2018-09-21 10:57:28.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:57:28.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:28.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:28.994 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:57:28.994 +03:00 [INF] Request finished in 5.1071ms 200 text/css +2018-09-21 10:57:28.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:57:28.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:28.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:28.997 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:57:28.998 +03:00 [INF] Request finished in 1.6326ms 200 text/css +2018-09-21 10:57:29.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:57:29.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:57:29.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.004 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:57:29.004 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:57:29.004 +03:00 [INF] Request finished in 1.2748ms 200 text/css +2018-09-21 10:57:29.004 +03:00 [INF] Request finished in 1.2872ms 200 text/css +2018-09-21 10:57:29.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:57:29.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.021 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:57:29.021 +03:00 [INF] Request finished in 2.2132ms 200 text/css +2018-09-21 10:57:29.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:57:29.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.031 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:57:29.032 +03:00 [INF] Request finished in 2.8006ms 200 text/css +2018-09-21 10:57:29.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:57:29.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.034 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:57:29.034 +03:00 [INF] Request finished in 2.2804ms 200 text/css +2018-09-21 10:57:29.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:57:29.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.041 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:57:29.042 +03:00 [INF] Request finished in 1.762ms 200 text/css +2018-09-21 10:57:29.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:57:29.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:57:29.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.051 +03:00 [INF] Request finished in 1.2307ms 404 +2018-09-21 10:57:29.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:57:29.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:57:29.053 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:57:29.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.053 +03:00 [INF] Request finished in 1.6563ms 200 application/javascript +2018-09-21 10:57:29.055 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:57:29.055 +03:00 [INF] Request finished in 2.2011ms 200 application/javascript +2018-09-21 10:57:29.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:57:29.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.058 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:57:29.058 +03:00 [INF] Request finished in 7.9095ms 200 application/javascript +2018-09-21 10:57:29.064 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:57:29.064 +03:00 [INF] Request finished in 9.6933ms 200 application/javascript +2018-09-21 10:57:29.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:57:29.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:57:29.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.073 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:57:29.073 +03:00 [INF] Request finished in 1.0853ms 200 application/javascript +2018-09-21 10:57:29.074 +03:00 [INF] Request finished in 2.9721ms 404 +2018-09-21 10:57:29.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:57:29.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.090 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:57:29.090 +03:00 [INF] Request finished in 4.0598ms 200 application/javascript +2018-09-21 10:57:29.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:57:29.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:57:29.095 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:57:29.095 +03:00 [INF] Request finished in 3.6508ms 200 application/javascript +2018-09-21 10:57:29.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.098 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:57:29.098 +03:00 [INF] Request finished in 3.2495ms 200 application/javascript +2018-09-21 10:57:29.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:57:29.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:57:29.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.128 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:57:29.128 +03:00 [INF] Request finished in 1.3147ms 200 application/javascript +2018-09-21 10:57:29.134 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:57:29.135 +03:00 [INF] Request finished in 11.5488ms 200 application/javascript +2018-09-21 10:57:29.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:57:29.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:57:29.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.145 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:57:29.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.146 +03:00 [INF] Request finished in 2.0336ms 200 application/javascript +2018-09-21 10:57:29.147 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:57:29.147 +03:00 [INF] Request finished in 1.7637ms 200 application/javascript +2018-09-21 10:57:29.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:57:29.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.161 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:57:29.161 +03:00 [INF] Request finished in 1.5552ms 200 application/javascript +2018-09-21 10:57:29.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:57:29.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.163 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:57:29.163 +03:00 [INF] Request finished in 1.3713ms 200 application/javascript +2018-09-21 10:57:29.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:57:29.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.171 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:57:29.171 +03:00 [INF] Request finished in 2.037ms 200 application/javascript +2018-09-21 10:57:29.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:57:29.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.173 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:57:29.173 +03:00 [INF] Request finished in 1.6505ms 200 application/javascript +2018-09-21 10:57:29.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:57:29.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.177 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:57:29.177 +03:00 [INF] Request finished in 1.7802ms 200 application/javascript +2018-09-21 10:57:29.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:57:29.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:57:29.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.180 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:57:29.181 +03:00 [INF] Request finished in 1.9401ms 200 application/javascript +2018-09-21 10:57:29.181 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:57:29.182 +03:00 [INF] Request finished in 2.0189ms 200 application/javascript +2018-09-21 10:57:29.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:57:29.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.187 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:57:29.187 +03:00 [INF] Request finished in 2.1487ms 200 application/javascript +2018-09-21 10:57:29.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:57:29.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.193 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:57:29.193 +03:00 [INF] Request finished in 1.4893ms 200 application/javascript +2018-09-21 10:57:29.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:57:29.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.195 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:57:29.196 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:57:29.196 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.196 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.196 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.196 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.196 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.197 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.198 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.199 +03:00 [INF] Authorization failed. +2018-09-21 10:57:29.201 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.2867000000000006ms. +2018-09-21 10:57:29.202 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:57:29.202 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.6159ms +2018-09-21 10:57:29.202 +03:00 [INF] Request finished in 7.9857ms 200 text/plain; charset=utf-8 +2018-09-21 10:57:29.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:57:29.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.208 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:57:29.208 +03:00 [INF] Request finished in 1.1917ms 200 image/svg+xml +2018-09-21 10:57:29.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:57:29.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.212 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:57:29.212 +03:00 [INF] Request finished in 1.0462ms 200 image/svg+xml +2018-09-21 10:57:29.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:57:29.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.218 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:57:29.219 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:57:29.219 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1298ms. +2018-09-21 10:57:29.219 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:57:29.220 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3259ms +2018-09-21 10:57:29.220 +03:00 [INF] Request finished in 3.1343ms 200 text/plain; charset=utf-8 +2018-09-21 10:57:29.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:57:29.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.223 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:57:29.223 +03:00 [INF] Request finished in 1.5822ms 200 application/javascript +2018-09-21 10:57:29.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:57:29.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.225 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:57:29.225 +03:00 [INF] Request finished in 1.1557ms 200 application/javascript +2018-09-21 10:57:29.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:57:29.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.270 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:57:29.270 +03:00 [INF] Request finished in 3.1384ms 200 font/woff2 +2018-09-21 10:57:29.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:57:29.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.314 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:57:29.314 +03:00 [INF] Request finished in 10.249ms 200 image/jpeg +2018-09-21 10:57:29.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:57:29.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.345 +03:00 [INF] Request finished in 1.5606ms 404 +2018-09-21 10:57:29.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:57:29.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.673 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:57:29.674 +03:00 [INF] Request finished in 1.2326ms 200 image/png +2018-09-21 10:57:29.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:57:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.679 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:57:29.680 +03:00 [INF] Request finished in 1.6651ms 200 image/png +2018-09-21 10:57:29.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:57:29.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:57:29.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:57:29.804 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:57:29.805 +03:00 [INF] Request finished in 2.3225ms 200 text/css +2018-09-21 10:57:30.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:57:30.146 +03:00 [INF] Request finished in 0.9586ms 404 +2018-09-21 10:58:21.684 +03:00 [INF] Loaded modules: +2018-09-21 10:58:21.703 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:58:21.704 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:58:21.705 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:58:21.706 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:58:23.417 +03:00 [INF] Initialized all modules. +2018-09-21 10:58:23.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:58:23.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:23.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:25.914 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:58:25.934 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:58:27.351 +03:00 [INF] Executed action /Index in 1432.3915000000002ms +2018-09-21 10:58:27.371 +03:00 [INF] Request finished in 3707.8144ms 200 text/html; charset=utf-8 +2018-09-21 10:58:27.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:58:27.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:58:27.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:58:27.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:58:27.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:58:27.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:58:27.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.424 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:58:27.424 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:58:27.424 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:58:27.424 +03:00 [INF] Request finished in 24.866ms 200 text/css +2018-09-21 10:58:27.424 +03:00 [INF] Request finished in 10.5242ms 200 text/css +2018-09-21 10:58:27.424 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:58:27.425 +03:00 [INF] Request finished in 22.1641ms 200 text/css +2018-09-21 10:58:27.425 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:58:27.425 +03:00 [INF] Request finished in 11.8653ms 200 text/css +2018-09-21 10:58:27.424 +03:00 [INF] Request finished in 11.9308ms 200 text/css +2018-09-21 10:58:27.433 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:58:27.433 +03:00 [INF] Request finished in 34.1365ms 200 text/css +2018-09-21 10:58:27.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:58:27.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:58:27.444 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:58:27.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.444 +03:00 [INF] Request finished in 2.3702ms 200 text/css +2018-09-21 10:58:27.445 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:58:27.445 +03:00 [INF] Request finished in 1.4824ms 200 text/css +2018-09-21 10:58:27.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 10:58:27.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.537 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-09-21 10:58:27.540 +03:00 [INF] Request finished in 4.9653ms 304 image/png +2018-09-21 10:58:27.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 10:58:27.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.582 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-21 10:58:27.582 +03:00 [INF] Request finished in 1.0657ms 304 image/png +2018-09-21 10:58:27.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 10:58:27.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.586 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-21 10:58:27.586 +03:00 [INF] Request finished in 0.696ms 304 image/png +2018-09-21 10:58:27.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:58:27.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.595 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:58:27.595 +03:00 [INF] Request finished in 3.7192ms 200 application/javascript +2018-09-21 10:58:27.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:58:27.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.603 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:58:27.603 +03:00 [INF] Request finished in 7.3204ms 200 application/javascript +2018-09-21 10:58:27.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:58:27.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:58:27.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.607 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:58:27.607 +03:00 [INF] Request finished in 1.4275ms 200 application/javascript +2018-09-21 10:58:27.616 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:58:27.616 +03:00 [INF] Request finished in 9.9791ms 200 application/javascript +2018-09-21 10:58:27.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:27.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:58:27.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.619 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:58:27.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:58:27.619 +03:00 [INF] Request finished in 1.9471ms 200 application/javascript +2018-09-21 10:58:27.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.620 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:58:27.620 +03:00 [INF] Request finished in 1.2035ms 200 application/javascript +2018-09-21 10:58:27.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:58:27.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.624 +03:00 [INF] Request finished in 7.5322ms 404 +2018-09-21 10:58:27.629 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:58:27.630 +03:00 [INF] Request finished in 4.8765ms 200 application/javascript +2018-09-21 10:58:27.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:58:27.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:58:27.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:58:27.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:58:27.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.645 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:58:27.645 +03:00 [INF] Request finished in 1.9689ms 200 application/javascript +2018-09-21 10:58:27.645 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:58:27.645 +03:00 [INF] Request finished in 8.9751ms 200 application/javascript +2018-09-21 10:58:27.645 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:58:27.645 +03:00 [INF] Request finished in 1.96ms 200 application/javascript +2018-09-21 10:58:27.648 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:58:27.648 +03:00 [INF] Request finished in 14.2189ms 200 application/javascript +2018-09-21 10:58:27.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:58:27.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.657 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:58:27.658 +03:00 [INF] Request finished in 3.5535ms 200 application/javascript +2018-09-21 10:58:27.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:58:27.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.662 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:58:27.662 +03:00 [INF] Request finished in 3.4739ms 200 application/javascript +2018-09-21 10:58:27.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:58:27.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.664 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:58:27.665 +03:00 [INF] Request finished in 1.6996ms 200 application/javascript +2018-09-21 10:58:27.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:58:27.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.683 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:58:27.683 +03:00 [INF] Request finished in 1.5393ms 200 application/javascript +2018-09-21 10:58:27.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:58:27.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:58:27.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:58:27.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.684 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:58:27.684 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:58:27.684 +03:00 [INF] Request finished in 1.085ms 200 application/javascript +2018-09-21 10:58:27.684 +03:00 [INF] Request finished in 0.8982ms 200 application/javascript +2018-09-21 10:58:27.684 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:58:27.685 +03:00 [INF] Request finished in 1.4206ms 200 application/javascript +2018-09-21 10:58:27.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:58:27.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.688 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:58:27.688 +03:00 [INF] Request finished in 3.0787ms 200 application/javascript +2018-09-21 10:58:27.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:58:27.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:58:27.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:58:27.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.700 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:58:27.700 +03:00 [INF] Request finished in 1.4949ms 200 application/javascript +2018-09-21 10:58:27.702 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:58:27.702 +03:00 [INF] Request finished in 4.6279ms 200 application/javascript +2018-09-21 10:58:27.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:58:27.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.706 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:58:27.706 +03:00 [INF] Request finished in 2.3518ms 200 application/javascript +2018-09-21 10:58:27.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:58:27.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 10:58:27.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.722 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-09-21 10:58:27.722 +03:00 [INF] Request finished in 1.1556ms 304 image/png +2018-09-21 10:58:27.728 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:27.729 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:27.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:58:27.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.731 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:58:27.731 +03:00 [INF] Request finished in 1.7201ms 200 application/javascript +2018-09-21 10:58:27.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 10:58:27.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 10:58:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.740 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-09-21 10:58:27.740 +03:00 [INF] Request finished in 0.5923ms 304 image/png +2018-09-21 10:58:27.741 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-21 10:58:27.741 +03:00 [INF] Request finished in 1.5563ms 304 image/png +2018-09-21 10:58:27.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:58:27.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:27.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:27.782 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:58:27.782 +03:00 [INF] Request finished in 2.4994ms 200 font/woff2 +2018-09-21 10:58:27.795 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:58:27.800 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:58:27.839 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.840 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.882 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.883 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.884 +03:00 [INF] Authorization failed. +2018-09-21 10:58:27.933 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 131.453ms. +2018-09-21 10:58:27.933 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 128.91840000000002ms. +2018-09-21 10:58:27.950 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:27.950 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:27.951 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 223.2509ms +2018-09-21 10:58:27.952 +03:00 [INF] Request finished in 255.0459ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:27.951 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 221.60750000000002ms +2018-09-21 10:58:27.952 +03:00 [INF] Request finished in 239.8901ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:28.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:28.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:28.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:28.003 +03:00 [INF] Request finished in 1.397ms 404 +2018-09-21 10:58:28.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:58:28.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:28.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:28.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:58:28.362 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:58:28.363 +03:00 [INF] Request finished in 3.9856ms 200 image/png +2018-09-21 10:58:28.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:28.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:28.363 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:58:28.364 +03:00 [INF] Request finished in 1.3494ms 200 image/png +2018-09-21 10:58:28.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:58:28.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:28.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:28.710 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:58:28.711 +03:00 [INF] Request finished in 1.8021ms 200 text/css +2018-09-21 10:58:29.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:58:29.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:29.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:29.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:58:29.051 +03:00 [INF] Request finished in 0.7723ms 404 +2018-09-21 10:58:29.686 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:58:29.730 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:58:30.120 +03:00 [INF] Executed action /Account/Login in 434.3604ms +2018-09-21 10:58:30.121 +03:00 [INF] Request finished in 1111.6222ms 200 text/html; charset=utf-8 +2018-09-21 10:58:30.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:58:30.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:58:30.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.159 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:58:30.160 +03:00 [INF] Request finished in 3.4995ms 200 text/css +2018-09-21 10:58:30.160 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:58:30.161 +03:00 [INF] Request finished in 4.6696ms 200 text/css +2018-09-21 10:58:30.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:58:30.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:58:30.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.162 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:58:30.162 +03:00 [INF] Request finished in 1.2043ms 200 text/css +2018-09-21 10:58:30.163 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:58:30.163 +03:00 [INF] Request finished in 1.2723ms 200 text/css +2018-09-21 10:58:30.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:58:30.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.178 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:58:30.178 +03:00 [INF] Request finished in 2.5159ms 200 text/css +2018-09-21 10:58:30.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:58:30.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.183 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:58:30.183 +03:00 [INF] Request finished in 1.8685ms 200 text/css +2018-09-21 10:58:30.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:58:30.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:58:30.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.193 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:58:30.193 +03:00 [INF] Request finished in 1.063ms 200 text/css +2018-09-21 10:58:30.193 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:58:30.193 +03:00 [INF] Request finished in 1.126ms 200 text/css +2018-09-21 10:58:30.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:58:30.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.205 +03:00 [INF] Request finished in 2.0365ms 404 +2018-09-21 10:58:30.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:58:30.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.210 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:58:30.210 +03:00 [INF] Request finished in 1.5564ms 200 application/javascript +2018-09-21 10:58:30.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:58:30.210 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.217 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:58:30.217 +03:00 [INF] Request finished in 7.3973ms 200 application/javascript +2018-09-21 10:58:30.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:58:30.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:58:30.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.220 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:58:30.220 +03:00 [INF] Request finished in 2.2424ms 200 application/javascript +2018-09-21 10:58:30.223 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:58:30.224 +03:00 [INF] Request finished in 4.8155ms 200 application/javascript +2018-09-21 10:58:30.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:30.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.229 +03:00 [INF] Request finished in 2.836ms 404 +2018-09-21 10:58:30.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:58:30.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:58:30.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.238 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:58:30.238 +03:00 [INF] Request finished in 1.4089ms 200 application/javascript +2018-09-21 10:58:30.238 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:58:30.238 +03:00 [INF] Request finished in 2.0699ms 200 application/javascript +2018-09-21 10:58:30.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:58:30.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.241 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:58:30.242 +03:00 [INF] Request finished in 2.2547ms 200 application/javascript +2018-09-21 10:58:30.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:58:30.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.245 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:58:30.246 +03:00 [INF] Request finished in 3.2335ms 200 application/javascript +2018-09-21 10:58:30.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:58:30.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:58:30.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.262 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:58:30.262 +03:00 [INF] Request finished in 4.0516ms 200 application/javascript +2018-09-21 10:58:30.266 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:58:30.268 +03:00 [INF] Request finished in 15.032ms 200 application/javascript +2018-09-21 10:58:30.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:58:30.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.270 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:58:30.271 +03:00 [INF] Request finished in 1.1082ms 200 application/javascript +2018-09-21 10:58:30.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:58:30.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.280 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:58:30.280 +03:00 [INF] Request finished in 4.604ms 200 application/javascript +2018-09-21 10:58:30.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:58:30.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:58:30.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.291 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:58:30.291 +03:00 [INF] Request finished in 1.2178ms 200 application/javascript +2018-09-21 10:58:30.292 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:58:30.292 +03:00 [INF] Request finished in 1.9015ms 200 application/javascript +2018-09-21 10:58:30.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:58:30.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.307 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:58:30.308 +03:00 [INF] Request finished in 1.7751ms 200 application/javascript +2018-09-21 10:58:30.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:58:30.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.321 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:58:30.321 +03:00 [INF] Request finished in 1.4083ms 200 application/javascript +2018-09-21 10:58:30.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:58:30.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.323 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:58:30.324 +03:00 [INF] Request finished in 2.1932ms 200 application/javascript +2018-09-21 10:58:30.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:58:30.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.329 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:58:30.330 +03:00 [INF] Request finished in 1.9234ms 200 application/javascript +2018-09-21 10:58:30.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:58:30.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.336 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:58:30.336 +03:00 [INF] Request finished in 1.485ms 200 application/javascript +2018-09-21 10:58:30.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:58:30.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:58:30.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:58:30.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.348 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:58:30.348 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:58:30.348 +03:00 [INF] Request finished in 3.6963ms 200 application/javascript +2018-09-21 10:58:30.348 +03:00 [INF] Request finished in 1.3156ms 200 application/javascript +2018-09-21 10:58:30.348 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:30.350 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:58:30.350 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.352 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.353 +03:00 [INF] Authorization failed. +2018-09-21 10:58:30.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.355 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:30.355 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.9334000000000007ms. +2018-09-21 10:58:30.356 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:30.356 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.6875ms +2018-09-21 10:58:30.356 +03:00 [INF] Request finished in 9.675ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:30.357 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:58:30.357 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.27690000000000003ms. +2018-09-21 10:58:30.357 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:30.357 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3384ms +2018-09-21 10:58:30.357 +03:00 [INF] Request finished in 5.9994ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:30.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:58:30.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.360 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:58:30.360 +03:00 [INF] Request finished in 2.1532ms 200 application/javascript +2018-09-21 10:58:30.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:58:30.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.368 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:58:30.368 +03:00 [INF] Request finished in 1.1437ms 200 application/javascript +2018-09-21 10:58:30.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:58:30.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.378 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:58:30.378 +03:00 [INF] Request finished in 1.5911ms 200 image/svg+xml +2018-09-21 10:58:30.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:58:30.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.385 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:58:30.385 +03:00 [INF] Request finished in 1.3123ms 200 image/svg+xml +2018-09-21 10:58:30.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:58:30.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.422 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:58:30.422 +03:00 [INF] Request finished in 2.4477ms 200 font/woff2 +2018-09-21 10:58:30.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:58:30.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.444 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:58:30.445 +03:00 [INF] Request finished in 7.271ms 200 image/jpeg +2018-09-21 10:58:30.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:30.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.473 +03:00 [INF] Request finished in 2.0739ms 404 +2018-09-21 10:58:30.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:58:30.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.644 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:58:30.644 +03:00 [INF] Request finished in 2.9618ms 200 image/png +2018-09-21 10:58:30.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:58:30.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.648 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:58:30.648 +03:00 [INF] Request finished in 1.45ms 200 image/png +2018-09-21 10:58:30.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:58:30.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:30.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:30.716 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:58:30.716 +03:00 [INF] Request finished in 4.3262ms 200 text/css +2018-09-21 10:58:30.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:58:30.909 +03:00 [INF] Request finished in 0.8964ms 404 +2018-09-21 10:58:38.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:58:38.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.521 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:58:38.550 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:58:38.607 +03:00 [INF] Executed action /Account/Login in 86.195000000000007ms +2018-09-21 10:58:38.607 +03:00 [INF] Request finished in 87.7036ms 200 text/html; charset=utf-8 +2018-09-21 10:58:38.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:58:38.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.642 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:58:38.643 +03:00 [INF] Request finished in 4.031ms 200 text/css +2018-09-21 10:58:38.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:58:38.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.648 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:58:38.649 +03:00 [INF] Request finished in 1.8459ms 200 text/css +2018-09-21 10:58:38.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:58:38.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.655 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:58:38.655 +03:00 [INF] Request finished in 1.608ms 200 text/css +2018-09-21 10:58:38.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:58:38.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.666 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:58:38.666 +03:00 [INF] Request finished in 1.4972ms 200 text/css +2018-09-21 10:58:38.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:58:38.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.674 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:58:38.675 +03:00 [INF] Request finished in 2.4023ms 200 text/css +2018-09-21 10:58:38.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:58:38.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:58:38.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.681 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:58:38.682 +03:00 [INF] Request finished in 1.0549ms 200 text/css +2018-09-21 10:58:38.682 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:58:38.682 +03:00 [INF] Request finished in 1.4362ms 200 text/css +2018-09-21 10:58:38.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:58:38.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.694 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:58:38.694 +03:00 [INF] Request finished in 1.3696ms 200 text/css +2018-09-21 10:58:38.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:58:38.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:58:38.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.699 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:58:38.699 +03:00 [INF] Request finished in 1.1913ms 200 application/javascript +2018-09-21 10:58:38.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.701 +03:00 [INF] Request finished in 2.9244ms 404 +2018-09-21 10:58:38.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:58:38.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:58:38.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:58:38.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:38.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.709 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:58:38.709 +03:00 [INF] Request finished in 1.3803ms 200 application/javascript +2018-09-21 10:58:38.710 +03:00 [INF] Request finished in 1.0473ms 404 +2018-09-21 10:58:38.712 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:58:38.713 +03:00 [INF] Request finished in 10.0345ms 200 application/javascript +2018-09-21 10:58:38.713 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:58:38.714 +03:00 [INF] Request finished in 5.8998ms 200 application/javascript +2018-09-21 10:58:38.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:58:38.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.720 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:58:38.720 +03:00 [INF] Request finished in 1.9196ms 200 application/javascript +2018-09-21 10:58:38.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:58:38.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.724 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:58:38.724 +03:00 [INF] Request finished in 1.5656ms 200 application/javascript +2018-09-21 10:58:38.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:58:38.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:58:38.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.732 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:58:38.732 +03:00 [INF] Request finished in 2.3464ms 200 application/javascript +2018-09-21 10:58:38.732 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:58:38.733 +03:00 [INF] Request finished in 4.2502ms 200 application/javascript +2018-09-21 10:58:38.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:58:38.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:58:38.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.752 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:58:38.752 +03:00 [INF] Request finished in 2.0829ms 200 application/javascript +2018-09-21 10:58:38.761 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:58:38.761 +03:00 [INF] Request finished in 11.7977ms 200 application/javascript +2018-09-21 10:58:38.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:58:38.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.765 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:58:38.766 +03:00 [INF] Request finished in 1.5708ms 200 application/javascript +2018-09-21 10:58:38.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:58:38.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.787 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:58:38.787 +03:00 [INF] Request finished in 2.465ms 200 application/javascript +2018-09-21 10:58:38.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:58:38.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.790 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:58:38.791 +03:00 [INF] Request finished in 3.0692ms 200 application/javascript +2018-09-21 10:58:38.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:58:38.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.796 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:58:38.797 +03:00 [INF] Request finished in 1.5903ms 200 application/javascript +2018-09-21 10:58:38.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:58:38.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.802 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:58:38.802 +03:00 [INF] Request finished in 2.1541ms 200 application/javascript +2018-09-21 10:58:38.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:58:38.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.809 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:58:38.809 +03:00 [INF] Request finished in 1.4635ms 200 application/javascript +2018-09-21 10:58:38.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:58:38.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.816 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:58:38.816 +03:00 [INF] Request finished in 1.4545ms 200 application/javascript +2018-09-21 10:58:38.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:58:38.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.825 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:58:38.825 +03:00 [INF] Request finished in 1.6373ms 200 application/javascript +2018-09-21 10:58:38.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:58:38.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:58:38.839 +03:00 [INF] Request finished in 1.6494ms 200 application/javascript +2018-09-21 10:58:38.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:58:38.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.845 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:58:38.845 +03:00 [INF] Request finished in 1.9764ms 200 application/javascript +2018-09-21 10:58:38.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:58:38.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.854 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:58:38.854 +03:00 [INF] Request finished in 2.5106ms 200 application/javascript +2018-09-21 10:58:38.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:58:38.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.859 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:38.860 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.861 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.862 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.863 +03:00 [INF] Authorization failed. +2018-09-21 10:58:38.864 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:58:38.865 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:58:38.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.093ms. +2018-09-21 10:58:38.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.311ms. +2018-09-21 10:58:38.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:38.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:58:38.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.9106000000000005ms +2018-09-21 10:58:38.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3583ms +2018-09-21 10:58:38.865 +03:00 [INF] Request finished in 7.4425ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:38.866 +03:00 [INF] Request finished in 2.7796ms 200 text/plain; charset=utf-8 +2018-09-21 10:58:38.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:58:38.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.875 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:58:38.875 +03:00 [INF] Request finished in 1.2261ms 200 application/javascript +2018-09-21 10:58:38.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:58:38.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.885 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:58:38.886 +03:00 [INF] Request finished in 2.652ms 200 application/javascript +2018-09-21 10:58:38.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:58:38.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:58:38.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.891 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:58:38.891 +03:00 [INF] Request finished in 1.2194ms 200 image/svg+xml +2018-09-21 10:58:38.891 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:58:38.892 +03:00 [INF] Request finished in 2.5328ms 200 image/svg+xml +2018-09-21 10:58:38.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:58:38.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:38.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:38.975 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:58:38.975 +03:00 [INF] Request finished in 2.8866ms 200 font/woff2 +2018-09-21 10:58:39.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:58:39.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:39.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:39.010 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:58:39.011 +03:00 [INF] Request finished in 11.0153ms 200 image/jpeg +2018-09-21 10:58:39.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:58:39.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:39.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:39.034 +03:00 [INF] Request finished in 2.0509ms 404 +2018-09-21 10:58:39.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:58:39.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:39.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:39.562 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:58:39.562 +03:00 [INF] Request finished in 1.4191ms 200 image/png +2018-09-21 10:58:39.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:58:39.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:39.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:39.564 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:58:39.564 +03:00 [INF] Request finished in 1.3167ms 200 image/png +2018-09-21 10:58:39.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:58:39.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:58:39.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:58:39.643 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:58:39.643 +03:00 [INF] Request finished in 6.4515ms 200 text/css +2018-09-21 10:58:39.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:58:39.845 +03:00 [INF] Request finished in 0.9127ms 404 +2018-09-21 10:59:14.427 +03:00 [INF] Loaded modules: +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 10:59:14.444 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 10:59:14.445 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 10:59:14.446 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 10:59:16.234 +03:00 [INF] Initialized all modules. +2018-09-21 10:59:16.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 10:59:16.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:16.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:18.724 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 10:59:18.743 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 10:59:20.241 +03:00 [INF] Executed action /Index in 1512.8604ms +2018-09-21 10:59:20.258 +03:00 [INF] Request finished in 3683.5878ms 200 text/html; charset=utf-8 +2018-09-21 10:59:20.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:20.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:59:20.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:59:20.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:59:20.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.290 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:59:20.290 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:20.290 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:59:20.290 +03:00 [INF] Request finished in 27.1425ms 200 text/css +2018-09-21 10:59:20.290 +03:00 [INF] Request finished in 5.2602ms 200 text/css +2018-09-21 10:59:20.290 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:59:20.290 +03:00 [INF] Request finished in 8.9984ms 200 text/css +2018-09-21 10:59:20.291 +03:00 [INF] Request finished in 10.993ms 200 text/css +2018-09-21 10:59:20.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:59:20.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.305 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:59:20.305 +03:00 [INF] Request finished in 2.3046ms 200 text/css +2018-09-21 10:59:20.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:59:20.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.309 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:59:20.309 +03:00 [INF] Request finished in 2.3101ms 200 text/css +2018-09-21 10:59:20.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:20.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.314 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:20.314 +03:00 [INF] Request finished in 1.4722ms 200 text/css +2018-09-21 10:59:20.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:59:20.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.323 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:59:20.323 +03:00 [INF] Request finished in 1.6136ms 200 text/css +2018-09-21 10:59:20.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:59:20.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.465 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:59:20.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:59:20.465 +03:00 [INF] Request finished in 1.5356ms 200 application/javascript +2018-09-21 10:59:20.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.471 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:59:20.471 +03:00 [INF] Request finished in 6.228ms 200 application/javascript +2018-09-21 10:59:20.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:59:20.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.475 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:59:20.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:59:20.475 +03:00 [INF] Request finished in 1.4844ms 200 application/javascript +2018-09-21 10:59:20.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:20.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.482 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:59:20.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:59:20.482 +03:00 [INF] Request finished in 6.8831ms 200 application/javascript +2018-09-21 10:59:20.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.483 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:59:20.483 +03:00 [INF] Request finished in 1.7707ms 200 application/javascript +2018-09-21 10:59:20.488 +03:00 [INF] Request finished in 8.1341ms 404 +2018-09-21 10:59:20.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:59:20.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.492 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:59:20.492 +03:00 [INF] Request finished in 1.5183ms 200 application/javascript +2018-09-21 10:59:20.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:59:20.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.498 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:59:20.498 +03:00 [INF] Request finished in 1.501ms 200 application/javascript +2018-09-21 10:59:20.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:59:20.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.506 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:59:20.506 +03:00 [INF] Request finished in 3.92ms 200 application/javascript +2018-09-21 10:59:20.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:59:20.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:59:20.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.510 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:59:20.510 +03:00 [INF] Request finished in 1.2673ms 200 application/javascript +2018-09-21 10:59:20.520 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:59:20.520 +03:00 [INF] Request finished in 13.5045ms 200 application/javascript +2018-09-21 10:59:20.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:59:20.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.535 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:59:20.535 +03:00 [INF] Request finished in 1.7659ms 200 application/javascript +2018-09-21 10:59:20.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:59:20.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:59:20.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.540 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:59:20.540 +03:00 [INF] Request finished in 1.1908ms 200 application/javascript +2018-09-21 10:59:20.541 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:59:20.541 +03:00 [INF] Request finished in 1.4637ms 200 application/javascript +2018-09-21 10:59:20.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:59:20.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.553 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:59:20.553 +03:00 [INF] Request finished in 1.7612ms 200 application/javascript +2018-09-21 10:59:20.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:59:20.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.558 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:59:20.558 +03:00 [INF] Request finished in 1.6398ms 200 application/javascript +2018-09-21 10:59:20.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:59:20.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.570 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:59:20.570 +03:00 [INF] Request finished in 1.4321ms 200 application/javascript +2018-09-21 10:59:20.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:59:20.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:59:20.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.581 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:59:20.582 +03:00 [INF] Request finished in 2.3337ms 200 application/javascript +2018-09-21 10:59:20.583 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:59:20.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:59:20.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:59:20.583 +03:00 [INF] Request finished in 4.9915ms 200 application/javascript +2018-09-21 10:59:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:59:20.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:59:20.585 +03:00 [INF] Request finished in 1.8349ms 200 application/javascript +2018-09-21 10:59:20.585 +03:00 [INF] Request finished in 2.062ms 200 application/javascript +2018-09-21 10:59:20.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:59:20.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.587 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:59:20.589 +03:00 [INF] Request finished in 1.7886ms 200 application/javascript +2018-09-21 10:59:20.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:59:20.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:59:20.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:59:20.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.597 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:59:20.597 +03:00 [INF] Request finished in 2.8118ms 200 application/javascript +2018-09-21 10:59:20.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:59:20.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.600 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:59:20.600 +03:00 [INF] Request finished in 1.7137ms 200 application/javascript +2018-09-21 10:59:20.612 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:20.614 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:20.670 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:59:20.676 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:59:20.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:59:20.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.718 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.718 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:59:20.718 +03:00 [INF] Request finished in 2.6318ms 200 font/woff2 +2018-09-21 10:59:20.719 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.750 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.751 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.751 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.752 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.753 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.754 +03:00 [INF] Authorization failed. +2018-09-21 10:59:20.775 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 99.3532ms. +2018-09-21 10:59:20.784 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:20.785 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 173.25750000000002ms +2018-09-21 10:59:20.786 +03:00 [INF] Request finished in 192.7482ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:20.792 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 116.40190000000001ms. +2018-09-21 10:59:20.793 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:20.793 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 178.99620000000002ms +2018-09-21 10:59:20.793 +03:00 [INF] Request finished in 203.6516ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:20.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:20.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:20.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:20.838 +03:00 [INF] Request finished in 1.4031ms 404 +2018-09-21 10:59:21.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:59:21.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:21.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:21.043 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:59:21.043 +03:00 [INF] Request finished in 1.4653ms 200 image/png +2018-09-21 10:59:21.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:59:21.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:21.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:21.045 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:59:21.046 +03:00 [INF] Request finished in 2.0636ms 200 image/png +2018-09-21 10:59:21.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:21.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:21.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:21.396 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:21.396 +03:00 [INF] Request finished in 1.7293ms 200 text/css +2018-09-21 10:59:21.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:59:21.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:21.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:21.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:59:21.744 +03:00 [INF] Request finished in 0.8716ms 404 +2018-09-21 10:59:22.321 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:59:22.367 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:59:22.987 +03:00 [INF] Executed action /Account/Login in 665.77230000000009ms +2018-09-21 10:59:22.987 +03:00 [INF] Request finished in 1307.7451ms 200 text/html; charset=utf-8 +2018-09-21 10:59:23.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:23.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.026 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:23.026 +03:00 [INF] Request finished in 3.8348ms 200 text/css +2018-09-21 10:59:23.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:59:23.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.029 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:59:23.029 +03:00 [INF] Request finished in 1.5984ms 200 text/css +2018-09-21 10:59:23.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:59:23.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:59:23.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.036 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:59:23.036 +03:00 [INF] Request finished in 1.6151ms 200 text/css +2018-09-21 10:59:23.037 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:59:23.037 +03:00 [INF] Request finished in 2.3939ms 200 text/css +2018-09-21 10:59:23.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:59:23.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.053 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:59:23.053 +03:00 [INF] Request finished in 2.1292ms 200 text/css +2018-09-21 10:59:23.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:59:23.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.057 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:59:23.057 +03:00 [INF] Request finished in 1.8496ms 200 text/css +2018-09-21 10:59:23.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:23.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.061 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:23.061 +03:00 [INF] Request finished in 1.6521ms 200 text/css +2018-09-21 10:59:23.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:59:23.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.065 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:59:23.066 +03:00 [INF] Request finished in 4.3424ms 200 text/css +2018-09-21 10:59:23.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:59:23.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:59:23.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.074 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:59:23.074 +03:00 [INF] Request finished in 1.4972ms 200 application/javascript +2018-09-21 10:59:23.074 +03:00 [INF] Request finished in 1.5972ms 404 +2018-09-21 10:59:23.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:59:23.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.082 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.089 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:59:23.090 +03:00 [INF] Request finished in 8.712ms 200 application/javascript +2018-09-21 10:59:23.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:59:23.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.093 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:59:23.093 +03:00 [INF] Request finished in 2.2629ms 200 application/javascript +2018-09-21 10:59:23.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:59:23.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:23.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.107 +03:00 [INF] Request finished in 3.6819ms 404 +2018-09-21 10:59:23.109 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:59:23.109 +03:00 [INF] Request finished in 6.803ms 200 application/javascript +2018-09-21 10:59:23.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:59:23.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.117 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:59:23.118 +03:00 [INF] Request finished in 3.9575ms 200 application/javascript +2018-09-21 10:59:23.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:59:23.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.125 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:59:23.126 +03:00 [INF] Request finished in 3.5192ms 200 application/javascript +2018-09-21 10:59:23.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:59:23.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:59:23.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.133 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:59:23.133 +03:00 [INF] Request finished in 4.2466ms 200 application/javascript +2018-09-21 10:59:23.134 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:59:23.134 +03:00 [INF] Request finished in 4.939ms 200 application/javascript +2018-09-21 10:59:23.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:59:23.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:59:23.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.158 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:59:23.158 +03:00 [INF] Request finished in 2.3618ms 200 application/javascript +2018-09-21 10:59:23.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:59:23.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.165 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:59:23.166 +03:00 [INF] Request finished in 13.8097ms 200 application/javascript +2018-09-21 10:59:23.166 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:59:23.166 +03:00 [INF] Request finished in 2.6269ms 200 application/javascript +2018-09-21 10:59:23.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:59:23.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:59:23.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.177 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:59:23.178 +03:00 [INF] Request finished in 2.9716ms 200 application/javascript +2018-09-21 10:59:23.178 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:59:23.178 +03:00 [INF] Request finished in 5.3954ms 200 application/javascript +2018-09-21 10:59:23.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:59:23.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:59:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:59:23.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.189 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.189 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:59:23.189 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:59:23.189 +03:00 [INF] Request finished in 1.3578ms 200 application/javascript +2018-09-21 10:59:23.189 +03:00 [INF] Request finished in 1.4557ms 200 application/javascript +2018-09-21 10:59:23.190 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:59:23.190 +03:00 [INF] Request finished in 2.4738ms 200 application/javascript +2018-09-21 10:59:23.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:59:23.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.193 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:59:23.193 +03:00 [INF] Request finished in 1.3326ms 200 application/javascript +2018-09-21 10:59:23.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:59:23.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:59:23.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:59:23.203 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:59:23.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.203 +03:00 [INF] Request finished in 4.4217ms 200 application/javascript +2018-09-21 10:59:23.203 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:59:23.203 +03:00 [INF] Request finished in 1.2391ms 200 application/javascript +2018-09-21 10:59:23.204 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:59:23.204 +03:00 [INF] Request finished in 1.3606ms 200 application/javascript +2018-09-21 10:59:23.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:59:23.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.207 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:59:23.208 +03:00 [INF] Request finished in 1.7985ms 200 application/javascript +2018-09-21 10:59:23.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:59:23.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:59:23.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.218 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:23.219 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:59:23.220 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.38020000000000004ms. +2018-09-21 10:59:23.220 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:23.220 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7261ms +2018-09-21 10:59:23.221 +03:00 [INF] Request finished in 4.5813ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:23.226 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:23.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:59:23.229 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:59:23.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.229 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.229 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.229 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.229 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.229 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.230 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:59:23.230 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.230 +03:00 [INF] Request finished in 1.7354ms 200 application/javascript +2018-09-21 10:59:23.230 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.231 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.232 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.233 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.235 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.235 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.235 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.235 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:59:23.236 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.237 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:59:23.237 +03:00 [INF] Request finished in 1.3288ms 200 application/javascript +2018-09-21 10:59:23.237 +03:00 [INF] Authorization failed. +2018-09-21 10:59:23.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:59:23.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.241 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 11.8312ms. +2018-09-21 10:59:23.241 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:23.241 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.707600000000001ms +2018-09-21 10:59:23.241 +03:00 [INF] Request finished in 25.9462ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:23.242 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:59:23.242 +03:00 [INF] Request finished in 2.3541ms 200 image/svg+xml +2018-09-21 10:59:23.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:59:23.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.251 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:59:23.252 +03:00 [INF] Request finished in 2.3544ms 200 image/svg+xml +2018-09-21 10:59:23.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:59:23.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.268 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:59:23.268 +03:00 [INF] Request finished in 2.3798ms 200 font/woff2 +2018-09-21 10:59:23.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:59:23.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.321 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:59:23.321 +03:00 [INF] Request finished in 11.2915ms 200 image/jpeg +2018-09-21 10:59:23.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:23.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.352 +03:00 [INF] Request finished in 1.6368ms 404 +2018-09-21 10:59:23.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:59:23.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:59:23.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.561 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:59:23.561 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:59:23.561 +03:00 [INF] Request finished in 1.1428ms 200 image/png +2018-09-21 10:59:23.561 +03:00 [INF] Request finished in 1.1793ms 200 image/png +2018-09-21 10:59:23.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:23.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:23.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:23.603 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:23.603 +03:00 [INF] Request finished in 3.4677ms 200 text/css +2018-09-21 10:59:23.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:59:23.841 +03:00 [INF] Request finished in 1.4355ms 404 +2018-09-21 10:59:29.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:59:29.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.352 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:59:29.378 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:59:29.441 +03:00 [INF] Executed action /Account/Login in 88.548ms +2018-09-21 10:59:29.441 +03:00 [INF] Request finished in 437.3801ms 200 text/html; charset=utf-8 +2018-09-21 10:59:29.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:29.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:59:29.482 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:29.482 +03:00 [INF] Request finished in 4.1755ms 200 text/css +2018-09-21 10:59:29.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.483 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:59:29.483 +03:00 [INF] Request finished in 1.4038ms 200 text/css +2018-09-21 10:59:29.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:59:29.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:59:29.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.488 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:59:29.488 +03:00 [INF] Request finished in 1.81ms 200 text/css +2018-09-21 10:59:29.489 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:59:29.489 +03:00 [INF] Request finished in 3.0703ms 200 text/css +2018-09-21 10:59:29.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:59:29.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.496 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:59:29.496 +03:00 [INF] Request finished in 1.3676ms 200 text/css +2018-09-21 10:59:29.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:59:29.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.507 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:59:29.508 +03:00 [INF] Request finished in 1.4259ms 200 text/css +2018-09-21 10:59:29.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:29.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.510 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:29.510 +03:00 [INF] Request finished in 1.9647ms 200 text/css +2018-09-21 10:59:29.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:59:29.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.517 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:59:29.518 +03:00 [INF] Request finished in 2.0509ms 200 text/css +2018-09-21 10:59:29.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:59:29.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.528 +03:00 [INF] Request finished in 3.0601ms 404 +2018-09-21 10:59:29.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:59:29.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.533 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:59:29.533 +03:00 [INF] Request finished in 2.7661ms 200 application/javascript +2018-09-21 10:59:29.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:59:29.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:59:29.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.550 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:59:29.550 +03:00 [INF] Request finished in 1.6189ms 200 application/javascript +2018-09-21 10:59:29.554 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:59:29.554 +03:00 [INF] Request finished in 11.4185ms 200 application/javascript +2018-09-21 10:59:29.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:59:29.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.565 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:59:29.565 +03:00 [INF] Request finished in 7.7915ms 200 application/javascript +2018-09-21 10:59:29.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:29.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.567 +03:00 [INF] Request finished in 1.7757ms 404 +2018-09-21 10:59:29.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:59:29.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.591 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:59:29.591 +03:00 [INF] Request finished in 6.254ms 200 application/javascript +2018-09-21 10:59:29.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:59:29.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:59:29.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:59:29.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.598 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:59:29.598 +03:00 [INF] Request finished in 1.4709ms 200 application/javascript +2018-09-21 10:59:29.598 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:59:29.598 +03:00 [INF] Request finished in 1.0468ms 200 application/javascript +2018-09-21 10:59:29.599 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:59:29.599 +03:00 [INF] Request finished in 1.8958ms 200 application/javascript +2018-09-21 10:59:29.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:59:29.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:59:29.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.617 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:59:29.617 +03:00 [INF] Request finished in 1.3252ms 200 application/javascript +2018-09-21 10:59:29.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:59:29.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.628 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:59:29.628 +03:00 [INF] Request finished in 2.07ms 200 application/javascript +2018-09-21 10:59:29.628 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:59:29.628 +03:00 [INF] Request finished in 13.2743ms 200 application/javascript +2018-09-21 10:59:29.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:59:29.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.636 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:59:29.636 +03:00 [INF] Request finished in 2.002ms 200 application/javascript +2018-09-21 10:59:29.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:59:29.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.642 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:59:29.642 +03:00 [INF] Request finished in 2.5484ms 200 application/javascript +2018-09-21 10:59:29.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:59:29.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.646 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:59:29.646 +03:00 [INF] Request finished in 1.9475ms 200 application/javascript +2018-09-21 10:59:29.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:59:29.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.660 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:59:29.660 +03:00 [INF] Request finished in 1.6209ms 200 application/javascript +2018-09-21 10:59:29.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:59:29.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.668 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:59:29.668 +03:00 [INF] Request finished in 2.4821ms 200 application/javascript +2018-09-21 10:59:29.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:59:29.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.674 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:59:29.674 +03:00 [INF] Request finished in 4.0423ms 200 application/javascript +2018-09-21 10:59:29.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:59:29.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.682 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:59:29.682 +03:00 [INF] Request finished in 1.2322ms 200 application/javascript +2018-09-21 10:59:29.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:59:29.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.691 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:59:29.692 +03:00 [INF] Request finished in 3.2765ms 200 application/javascript +2018-09-21 10:59:29.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:59:29.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.702 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:59:29.702 +03:00 [INF] Request finished in 1.6469ms 200 application/javascript +2018-09-21 10:59:29.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:59:29.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.712 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:59:29.713 +03:00 [INF] Request finished in 1.2103ms 200 application/javascript +2018-09-21 10:59:29.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:59:29.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:59:29.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.724 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:59:29.724 +03:00 [INF] Request finished in 2.3872ms 200 font/woff2 +2018-09-21 10:59:29.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:59:29.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.726 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:29.727 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:59:29.727 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.728 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.729 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.729 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.729 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.729 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:59:29.730 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1612ms. +2018-09-21 10:59:29.730 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:29.730 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4832ms +2018-09-21 10:59:29.730 +03:00 [INF] Request finished in 5.4232ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:29.730 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.731 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.732 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.732 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.732 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.733 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.734 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.734 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.734 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.734 +03:00 [INF] Authorization failed. +2018-09-21 10:59:29.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:59:29.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.736 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.9791ms. +2018-09-21 10:59:29.737 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:29.737 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.537700000000001ms +2018-09-21 10:59:29.737 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:59:29.737 +03:00 [INF] Request finished in 19.6192ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:29.737 +03:00 [INF] Request finished in 1.6667ms 200 application/javascript +2018-09-21 10:59:29.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:59:29.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.744 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:59:29.744 +03:00 [INF] Request finished in 1.2311ms 200 application/javascript +2018-09-21 10:59:29.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:59:29.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.745 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:59:29.746 +03:00 [INF] Request finished in 1.0304ms 200 image/svg+xml +2018-09-21 10:59:29.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:59:29.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.757 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:59:29.757 +03:00 [INF] Request finished in 5.0743ms 200 image/svg+xml +2018-09-21 10:59:29.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:59:29.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.777 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:59:29.777 +03:00 [INF] Request finished in 10.8064ms 200 image/jpeg +2018-09-21 10:59:29.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:29.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:29.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:29.856 +03:00 [INF] Request finished in 4.5042ms 404 +2018-09-21 10:59:30.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:59:30.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:30.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:30.145 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:59:30.145 +03:00 [INF] Request finished in 2.1641ms 200 image/png +2018-09-21 10:59:30.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:59:30.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:30.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:30.149 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:59:30.149 +03:00 [INF] Request finished in 1.4228ms 200 image/png +2018-09-21 10:59:30.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:30.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:30.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:30.375 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:30.376 +03:00 [INF] Request finished in 1.3719ms 200 text/css +2018-09-21 10:59:30.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:59:30.566 +03:00 [INF] Request finished in 1.0332ms 404 +2018-09-21 10:59:34.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 10:59:34.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:34.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:34.937 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 10:59:34.958 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 10:59:35.014 +03:00 [INF] Executed action /Account/Login in 76.8561ms +2018-09-21 10:59:35.014 +03:00 [INF] Request finished in 404.991ms 200 text/html; charset=utf-8 +2018-09-21 10:59:35.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:35.053 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 10:59:35.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.053 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 10:59:35.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.054 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 10:59:35.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.054 +03:00 [INF] Request finished in 2.1556ms 200 text/css +2018-09-21 10:59:35.055 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 10:59:35.055 +03:00 [INF] Request finished in 1.4065ms 200 text/css +2018-09-21 10:59:35.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 10:59:35.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.056 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:35.056 +03:00 [INF] Request finished in 4.4369ms 200 text/css +2018-09-21 10:59:35.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 10:59:35.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.057 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 10:59:35.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.057 +03:00 [INF] Request finished in 1.4488ms 200 text/css +2018-09-21 10:59:35.058 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 10:59:35.058 +03:00 [INF] Request finished in 1.1674ms 200 text/css +2018-09-21 10:59:35.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 10:59:35.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.076 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 10:59:35.077 +03:00 [INF] Request finished in 5.5627ms 200 text/css +2018-09-21 10:59:35.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731123576111753 +2018-09-21 10:59:35.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.097 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 10:59:35.097 +03:00 [INF] Request finished in 1.3018ms 200 text/css +2018-09-21 10:59:35.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 10:59:35.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.106 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 10:59:35.106 +03:00 [INF] Request finished in 1.2373ms 200 text/css +2018-09-21 10:59:35.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 10:59:35.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.116 +03:00 [INF] Request finished in 1.4194ms 404 +2018-09-21 10:59:35.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 10:59:35.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 10:59:35.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 10:59:35.124 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 10:59:35.124 +03:00 [INF] Request finished in 1.5717ms 200 application/javascript +2018-09-21 10:59:35.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.125 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 10:59:35.125 +03:00 [INF] Request finished in 1.1854ms 200 application/javascript +2018-09-21 10:59:35.130 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 10:59:35.130 +03:00 [INF] Request finished in 7.5355ms 200 application/javascript +2018-09-21 10:59:35.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:35.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.132 +03:00 [INF] Request finished in 1.9041ms 404 +2018-09-21 10:59:35.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 10:59:35.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 10:59:35.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.138 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 10:59:35.138 +03:00 [INF] Request finished in 1.6902ms 200 application/javascript +2018-09-21 10:59:35.138 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 10:59:35.138 +03:00 [INF] Request finished in 5.773ms 200 application/javascript +2018-09-21 10:59:35.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 10:59:35.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.143 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 10:59:35.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 10:59:35.143 +03:00 [INF] Request finished in 3.1684ms 200 application/javascript +2018-09-21 10:59:35.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.145 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 10:59:35.146 +03:00 [INF] Request finished in 2.4244ms 200 application/javascript +2018-09-21 10:59:35.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 10:59:35.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.150 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 10:59:35.150 +03:00 [INF] Request finished in 2.965ms 200 application/javascript +2018-09-21 10:59:35.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 10:59:35.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 10:59:35.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 10:59:35.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.170 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 10:59:35.170 +03:00 [INF] Request finished in 2.9263ms 200 application/javascript +2018-09-21 10:59:35.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 10:59:35.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.171 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 10:59:35.171 +03:00 [INF] Request finished in 2.3738ms 200 application/javascript +2018-09-21 10:59:35.171 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 10:59:35.172 +03:00 [INF] Request finished in 1.6352ms 200 application/javascript +2018-09-21 10:59:35.173 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 10:59:35.173 +03:00 [INF] Request finished in 18.1486ms 200 application/javascript +2018-09-21 10:59:35.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 10:59:35.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.185 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.186 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 10:59:35.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 10:59:35.186 +03:00 [INF] Request finished in 2.6565ms 200 application/javascript +2018-09-21 10:59:35.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.190 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 10:59:35.190 +03:00 [INF] Request finished in 6.4884ms 200 application/javascript +2018-09-21 10:59:35.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 10:59:35.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.203 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 10:59:35.203 +03:00 [INF] Request finished in 2.4863ms 200 application/javascript +2018-09-21 10:59:35.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 10:59:35.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 10:59:35.206 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 10:59:35.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.206 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 10:59:35.206 +03:00 [INF] Request finished in 1.1528ms 200 image/svg+xml +2018-09-21 10:59:35.207 +03:00 [INF] Request finished in 2.6038ms 200 image/svg+xml +2018-09-21 10:59:35.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 10:59:35.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.216 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.217 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 10:59:35.217 +03:00 [INF] Request finished in 1.4326ms 200 application/javascript +2018-09-21 10:59:35.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 10:59:35.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.223 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 10:59:35.223 +03:00 [INF] Request finished in 2.4537ms 200 application/javascript +2018-09-21 10:59:35.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 10:59:35.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.255 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 10:59:35.256 +03:00 [INF] Request finished in 1.6133ms 200 application/javascript +2018-09-21 10:59:35.259 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 10:59:35.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.262 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 10:59:35.262 +03:00 [INF] Request finished in 3.9031ms 200 application/javascript +2018-09-21 10:59:35.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 10:59:35.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.267 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 10:59:35.268 +03:00 [INF] Request finished in 1.5879ms 200 application/javascript +2018-09-21 10:59:35.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 10:59:35.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.272 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 10:59:35.272 +03:00 [INF] Request finished in 1.0673ms 200 application/javascript +2018-09-21 10:59:35.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 10:59:35.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.291 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:35.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 10:59:35.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.291 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.292 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.293 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.293 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.293 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.293 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.294 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.295 +03:00 [INF] Authorization failed. +2018-09-21 10:59:35.296 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 10:59:35.296 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1291ms. +2018-09-21 10:59:35.296 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:35.296 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8246ms +2018-09-21 10:59:35.296 +03:00 [INF] Request finished in 5.529ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:35.297 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.6563ms. +2018-09-21 10:59:35.298 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 10:59:35.298 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.0425ms +2018-09-21 10:59:35.298 +03:00 [INF] Request finished in 12.3946ms 200 text/plain; charset=utf-8 +2018-09-21 10:59:35.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 10:59:35.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.306 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 10:59:35.306 +03:00 [INF] Request finished in 1.2923ms 200 application/javascript +2018-09-21 10:59:35.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 10:59:35.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.319 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 10:59:35.319 +03:00 [INF] Request finished in 1.2325ms 200 application/javascript +2018-09-21 10:59:35.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 10:59:35.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.397 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 10:59:35.397 +03:00 [INF] Request finished in 4.2034ms 200 font/woff2 +2018-09-21 10:59:35.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 10:59:35.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.423 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 10:59:35.424 +03:00 [INF] Request finished in 9.825ms 200 image/jpeg +2018-09-21 10:59:35.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 10:59:35.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.439 +03:00 [INF] Request finished in 1.0366ms 404 +2018-09-21 10:59:35.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 10:59:35.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 10:59:35.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.643 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 10:59:35.643 +03:00 [INF] Request finished in 3.1603ms 200 image/png +2018-09-21 10:59:35.643 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 10:59:35.643 +03:00 [INF] Request finished in 2.4495ms 200 image/png +2018-09-21 10:59:35.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 10:59:35.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 10:59:35.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 10:59:35.771 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 10:59:35.771 +03:00 [INF] Request finished in 3.3598ms 200 text/css +2018-09-21 10:59:35.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 10:59:35.942 +03:00 [INF] Request finished in 0.9537ms 404 +2018-09-21 11:01:20.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:01:20.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.052 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:01:20.083 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:01:20.508 +03:00 [INF] Executed action /Account/Login in 456.00820000000004ms +2018-09-21 11:01:20.509 +03:00 [INF] Request finished in 469.8483ms 200 text/html; charset=utf-8 +2018-09-21 11:01:20.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:01:20.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:01:20.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.546 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:01:20.546 +03:00 [INF] Request finished in 2.0768ms 200 text/css +2018-09-21 11:01:20.550 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:01:20.550 +03:00 [INF] Request finished in 5.2578ms 200 text/css +2018-09-21 11:01:20.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:01:20.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.561 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:01:20.562 +03:00 [INF] Request finished in 2.1172ms 200 text/css +2018-09-21 11:01:20.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:01:20.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.570 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:01:20.570 +03:00 [INF] Request finished in 1.3504ms 200 text/css +2018-09-21 11:01:20.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:01:20.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.575 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:01:20.575 +03:00 [INF] Request finished in 3.3936ms 200 text/css +2018-09-21 11:01:20.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731136793191251 +2018-09-21 11:01:20.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:01:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:01:20.585 +03:00 [INF] Request finished in 1.2754ms 200 text/css +2018-09-21 11:01:20.585 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:20.585 +03:00 [INF] Request finished in 2.5223ms 200 text/css +2018-09-21 11:01:20.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:01:20.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.591 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:01:20.591 +03:00 [INF] Request finished in 4.9356ms 200 text/css +2018-09-21 11:01:20.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:01:20.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:01:20.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.601 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:01:20.601 +03:00 [INF] Request finished in 4.864ms 200 application/javascript +2018-09-21 11:01:20.604 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:01:20.604 +03:00 [INF] Request finished in 4.8382ms 200 application/javascript +2018-09-21 11:01:20.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:01:20.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:01:20.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.606 +03:00 [INF] Request finished in 1.2106ms 404 +2018-09-21 11:01:20.607 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:01:20.607 +03:00 [INF] Request finished in 1.1704ms 200 application/javascript +2018-09-21 11:01:20.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:01:20.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:20.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.617 +03:00 [INF] Request finished in 4.8317ms 404 +2018-09-21 11:01:20.620 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:01:20.620 +03:00 [INF] Request finished in 8.5311ms 200 application/javascript +2018-09-21 11:01:20.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:01:20.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.634 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:01:20.634 +03:00 [INF] Request finished in 4.5332ms 200 application/javascript +2018-09-21 11:01:20.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:01:20.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.638 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:01:20.639 +03:00 [INF] Request finished in 1.5375ms 200 application/javascript +2018-09-21 11:01:20.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:01:20.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.645 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:01:20.645 +03:00 [INF] Request finished in 1.4768ms 200 application/javascript +2018-09-21 11:01:20.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:01:20.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.675 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:01:20.676 +03:00 [INF] Request finished in 4.4457ms 200 application/javascript +2018-09-21 11:01:20.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:01:20.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:01:20.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.692 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:01:20.692 +03:00 [INF] Request finished in 1.8149ms 200 application/javascript +2018-09-21 11:01:20.696 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:01:20.696 +03:00 [INF] Request finished in 9.3119ms 200 application/javascript +2018-09-21 11:01:20.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:01:20.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.697 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:01:20.698 +03:00 [INF] Request finished in 1.3878ms 200 application/javascript +2018-09-21 11:01:20.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:01:20.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.710 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:01:20.710 +03:00 [INF] Request finished in 1.3395ms 200 application/javascript +2018-09-21 11:01:20.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:01:20.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.716 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:01:20.716 +03:00 [INF] Request finished in 2.7257ms 200 application/javascript +2018-09-21 11:01:20.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:01:20.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.722 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:01:20.723 +03:00 [INF] Request finished in 2.8654ms 200 application/javascript +2018-09-21 11:01:20.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:01:20.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:01:20.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.730 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:01:20.730 +03:00 [INF] Request finished in 1.3213ms 200 application/javascript +2018-09-21 11:01:20.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:01:20.730 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:01:20.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.730 +03:00 [INF] Request finished in 2.1403ms 200 application/javascript +2018-09-21 11:01:20.732 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:01:20.732 +03:00 [INF] Request finished in 1.9607ms 200 application/javascript +2018-09-21 11:01:20.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:01:20.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:01:20.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.741 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:01:20.741 +03:00 [INF] Request finished in 1.8252ms 200 application/javascript +2018-09-21 11:01:20.742 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:01:20.743 +03:00 [INF] Request finished in 3.1044ms 200 application/javascript +2018-09-21 11:01:20.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:01:20.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.750 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:01:20.750 +03:00 [INF] Request finished in 4.9661ms 200 application/javascript +2018-09-21 11:01:20.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:01:20.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.754 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:01:20.754 +03:00 [INF] Request finished in 1.2992ms 200 application/javascript +2018-09-21 11:01:20.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:01:20.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:01:20.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:01:20.760 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:20.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.761 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:20.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.761 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:01:20.762 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:01:20.762 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1077ms. +2018-09-21 11:01:20.762 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4140000000000001ms +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Request finished in 4.9653ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.762 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:01:20.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.763 +03:00 [INF] Request finished in 2.1501ms 200 application/javascript +2018-09-21 11:01:20.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.762 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.763 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.764 +03:00 [INF] Authorization failed. +2018-09-21 11:01:20.765 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:01:20.765 +03:00 [INF] Request finished in 2.9393ms 200 image/svg+xml +2018-09-21 11:01:20.767 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0324ms. +2018-09-21 11:01:20.767 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:20.767 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.081ms +2018-09-21 11:01:20.767 +03:00 [INF] Request finished in 12.9622ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:20.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:01:20.767 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.768 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:01:20.768 +03:00 [INF] Request finished in 1.0029ms 200 application/javascript +2018-09-21 11:01:20.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:01:20.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.771 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:01:20.771 +03:00 [INF] Request finished in 1.354ms 200 image/svg+xml +2018-09-21 11:01:20.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:01:20.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.817 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:01:20.817 +03:00 [INF] Request finished in 3.3791ms 200 font/woff2 +2018-09-21 11:01:20.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:01:20.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.848 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:01:20.848 +03:00 [INF] Request finished in 6.7903ms 200 image/jpeg +2018-09-21 11:01:20.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:20.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:20.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:20.890 +03:00 [INF] Request finished in 2.7542ms 404 +2018-09-21 11:01:21.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:01:21.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:21.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:01:21.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:21.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:21.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:21.105 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:01:21.105 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:01:21.105 +03:00 [INF] Request finished in 1.2974ms 200 image/png +2018-09-21 11:01:21.105 +03:00 [INF] Request finished in 0.8584ms 200 image/png +2018-09-21 11:01:21.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731136793191251 +2018-09-21 11:01:21.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:21.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:21.168 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:21.168 +03:00 [INF] Request finished in 1.2915ms 200 text/css +2018-09-21 11:01:21.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:01:21.419 +03:00 [INF] Request finished in 1.771ms 404 +2018-09-21 11:01:40.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:01:40.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.333 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:01:40.356 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:01:40.402 +03:00 [INF] Executed action /Account/Login in 69.1447ms +2018-09-21 11:01:40.402 +03:00 [INF] Request finished in 70.6776ms 200 text/html; charset=utf-8 +2018-09-21 11:01:40.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:01:40.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.439 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:01:40.439 +03:00 [INF] Request finished in 4.3861ms 200 text/css +2018-09-21 11:01:40.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:01:40.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.445 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:01:40.445 +03:00 [INF] Request finished in 1.5151ms 200 text/css +2018-09-21 11:01:40.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:01:40.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.452 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:01:40.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:01:40.452 +03:00 [INF] Request finished in 2.1089ms 200 text/css +2018-09-21 11:01:40.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.453 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:01:40.453 +03:00 [INF] Request finished in 1.254ms 200 text/css +2018-09-21 11:01:40.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:01:40.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.464 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:01:40.465 +03:00 [INF] Request finished in 1.9434ms 200 text/css +2018-09-21 11:01:40.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:01:40.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137000800001 +2018-09-21 11:01:40.470 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:01:40.470 +03:00 [INF] Request finished in 1.8364ms 200 text/css +2018-09-21 11:01:40.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.470 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:40.470 +03:00 [INF] Request finished in 0.9312ms 200 text/css +2018-09-21 11:01:40.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:01:40.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.475 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:01:40.475 +03:00 [INF] Request finished in 1.4161ms 200 text/css +2018-09-21 11:01:40.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:01:40.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.484 +03:00 [INF] Request finished in 2.3581ms 404 +2018-09-21 11:01:40.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:01:40.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.489 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:01:40.489 +03:00 [INF] Request finished in 2.1741ms 200 application/javascript +2018-09-21 11:01:40.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:01:40.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.499 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:01:40.499 +03:00 [INF] Request finished in 6.955ms 200 application/javascript +2018-09-21 11:01:40.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:01:40.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.508 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:01:40.509 +03:00 [INF] Request finished in 2.6734ms 200 application/javascript +2018-09-21 11:01:40.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:01:40.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:40.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.542 +03:00 [INF] Request finished in 1.047ms 404 +2018-09-21 11:01:40.548 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:01:40.549 +03:00 [INF] Request finished in 8.0629ms 200 application/javascript +2018-09-21 11:01:40.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:01:40.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.553 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:01:40.553 +03:00 [INF] Request finished in 2.9995ms 200 application/javascript +2018-09-21 11:01:40.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:01:40.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:01:40.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:01:40.560 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:01:40.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.560 +03:00 [INF] Request finished in 1.7313ms 200 application/javascript +2018-09-21 11:01:40.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.561 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:01:40.561 +03:00 [INF] Request finished in 0.9891ms 200 application/javascript +2018-09-21 11:01:40.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.565 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:01:40.565 +03:00 [INF] Request finished in 5.2943ms 200 application/javascript +2018-09-21 11:01:40.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:01:40.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:01:40.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.572 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:01:40.573 +03:00 [INF] Request finished in 1.2976ms 200 application/javascript +2018-09-21 11:01:40.579 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:01:40.579 +03:00 [INF] Request finished in 11.6618ms 200 application/javascript +2018-09-21 11:01:40.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:01:40.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.582 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:01:40.582 +03:00 [INF] Request finished in 1.9987ms 200 application/javascript +2018-09-21 11:01:40.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:01:40.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.585 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:01:40.585 +03:00 [INF] Request finished in 1.929ms 200 application/javascript +2018-09-21 11:01:40.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:01:40.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.592 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:01:40.592 +03:00 [INF] Request finished in 1.596ms 200 application/javascript +2018-09-21 11:01:40.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:01:40.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.595 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:01:40.595 +03:00 [INF] Request finished in 1.771ms 200 application/javascript +2018-09-21 11:01:40.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:01:40.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:01:40.597 +03:00 [INF] Request finished in 1.3928ms 200 application/javascript +2018-09-21 11:01:40.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:01:40.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:01:40.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:01:40.608 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:01:40.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.608 +03:00 [INF] Request finished in 1.3168ms 200 application/javascript +2018-09-21 11:01:40.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.608 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:01:40.608 +03:00 [INF] Request finished in 1.1793ms 200 application/javascript +2018-09-21 11:01:40.609 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:01:40.609 +03:00 [INF] Request finished in 1.6391ms 200 application/javascript +2018-09-21 11:01:40.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:01:40.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:01:40.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.616 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:01:40.616 +03:00 [INF] Request finished in 1.3096ms 200 application/javascript +2018-09-21 11:01:40.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:01:40.617 +03:00 [INF] Request finished in 3.4089ms 200 application/javascript +2018-09-21 11:01:40.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:01:40.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.622 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:01:40.622 +03:00 [INF] Request finished in 2.3062ms 200 application/javascript +2018-09-21 11:01:40.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:01:40.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.623 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:40.624 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.625 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.626 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:01:40.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.628 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.628 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.628 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.628 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.628 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:40.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Authorization failed. +2018-09-21 11:01:40.629 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:01:40.630 +03:00 [INF] Request finished in 1.0943ms 200 application/javascript +2018-09-21 11:01:40.630 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:01:40.630 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12610000000000002ms. +2018-09-21 11:01:40.630 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:40.630 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5837ms +2018-09-21 11:01:40.630 +03:00 [INF] Request finished in 2.8138ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:40.631 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.9658000000000007ms. +2018-09-21 11:01:40.631 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:40.632 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.210700000000001ms +2018-09-21 11:01:40.632 +03:00 [INF] Request finished in 9.4543ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:40.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:01:40.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:01:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.638 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:01:40.639 +03:00 [INF] Request finished in 2.8783ms 200 image/svg+xml +2018-09-21 11:01:40.638 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:01:40.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:01:40.639 +03:00 [INF] Request finished in 3.9921ms 200 application/javascript +2018-09-21 11:01:40.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.640 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:01:40.640 +03:00 [INF] Request finished in 1.5749ms 200 image/svg+xml +2018-09-21 11:01:40.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:01:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.693 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:01:40.693 +03:00 [INF] Request finished in 3.9563ms 200 font/woff2 +2018-09-21 11:01:40.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:01:40.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.753 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:01:40.753 +03:00 [INF] Request finished in 10.6886ms 200 image/jpeg +2018-09-21 11:01:40.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:40.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.804 +03:00 [INF] Request finished in 3.8699ms 404 +2018-09-21 11:01:40.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:01:40.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:40.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:40.998 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:01:40.999 +03:00 [INF] Request finished in 2.3708ms 200 image/png +2018-09-21 11:01:41.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:01:41.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:41.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:41.006 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:01:41.006 +03:00 [INF] Request finished in 2.0979ms 200 image/png +2018-09-21 11:01:41.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:01:41.300 +03:00 [INF] Request finished in 0.8581ms 404 +2018-09-21 11:01:52.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:01:52.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.704 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:01:52.727 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:01:52.776 +03:00 [INF] Executed action /Account/Login in 71.6198ms +2018-09-21 11:01:52.776 +03:00 [INF] Request finished in 73.2048ms 200 text/html; charset=utf-8 +2018-09-21 11:01:52.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:01:52.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.811 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:01:52.811 +03:00 [INF] Request finished in 1.4725ms 200 text/css +2018-09-21 11:01:52.811 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:01:52.811 +03:00 [INF] Request finished in 1.6241ms 200 text/css +2018-09-21 11:01:52.813 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:01:52.814 +03:00 [INF] Request finished in 4.4052ms 200 text/css +2018-09-21 11:01:52.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:01:52.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:01:52.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.835 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:01:52.835 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:01:52.835 +03:00 [INF] Request finished in 1.7471ms 200 text/css +2018-09-21 11:01:52.835 +03:00 [INF] Request finished in 1.2113ms 200 text/css +2018-09-21 11:01:52.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137119579348 +2018-09-21 11:01:52.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:01:52.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.844 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:01:52.845 +03:00 [INF] Request finished in 1.6686ms 200 text/css +2018-09-21 11:01:52.845 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:52.845 +03:00 [INF] Request finished in 2.349ms 200 text/css +2018-09-21 11:01:52.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:01:52.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:01:52.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.851 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:01:52.851 +03:00 [INF] Request finished in 1.4256ms 200 text/css +2018-09-21 11:01:52.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:01:52.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.854 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:01:52.854 +03:00 [INF] Request finished in 1.782ms 200 application/javascript +2018-09-21 11:01:52.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:01:52.858 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:01:52.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:01:52.858 +03:00 [INF] Request finished in 7.909ms 200 application/javascript +2018-09-21 11:01:52.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.859 +03:00 [INF] Request finished in 1.1552ms 404 +2018-09-21 11:01:52.860 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:01:52.860 +03:00 [INF] Request finished in 1.8486ms 200 application/javascript +2018-09-21 11:01:52.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:01:52.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.869 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:01:52.869 +03:00 [INF] Request finished in 5.8436ms 200 application/javascript +2018-09-21 11:01:52.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:52.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.871 +03:00 [INF] Request finished in 1.8749ms 404 +2018-09-21 11:01:52.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:01:52.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.882 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:01:52.882 +03:00 [INF] Request finished in 1.9207ms 200 application/javascript +2018-09-21 11:01:52.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:01:52.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.904 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:01:52.904 +03:00 [INF] Request finished in 1.8073ms 200 application/javascript +2018-09-21 11:01:52.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:01:52.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.912 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:01:52.913 +03:00 [INF] Request finished in 3.9498ms 200 application/javascript +2018-09-21 11:01:52.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:01:52.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.929 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:01:52.930 +03:00 [INF] Request finished in 2.9862ms 200 application/javascript +2018-09-21 11:01:52.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:01:52.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.950 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:01:52.951 +03:00 [INF] Request finished in 9.0088ms 200 application/javascript +2018-09-21 11:01:52.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:01:52.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.952 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:01:52.952 +03:00 [INF] Request finished in 1.2351ms 200 application/javascript +2018-09-21 11:01:52.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:01:52.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.960 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:01:52.960 +03:00 [INF] Request finished in 1.1913ms 200 application/javascript +2018-09-21 11:01:52.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:01:52.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.965 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:01:52.966 +03:00 [INF] Request finished in 3.9966ms 200 application/javascript +2018-09-21 11:01:52.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:01:52.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:01:52.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.973 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:01:52.973 +03:00 [INF] Request finished in 1.166ms 200 application/javascript +2018-09-21 11:01:52.974 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:01:52.974 +03:00 [INF] Request finished in 1.2618ms 200 application/javascript +2018-09-21 11:01:52.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:01:52.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.976 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:01:52.976 +03:00 [INF] Request finished in 1.46ms 200 image/svg+xml +2018-09-21 11:01:52.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:01:52.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.982 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:01:52.982 +03:00 [INF] Request finished in 3.3327ms 200 image/svg+xml +2018-09-21 11:01:52.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:01:52.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:01:52.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:01:52.986 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:01:52.987 +03:00 [INF] Request finished in 1.9763ms 200 application/javascript +2018-09-21 11:01:52.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:01:52.987 +03:00 [INF] Request finished in 1.3136ms 200 application/javascript +2018-09-21 11:01:52.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.989 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:01:52.989 +03:00 [INF] Request finished in 2.6839ms 200 application/javascript +2018-09-21 11:01:52.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:01:52.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:01:52.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.992 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:01:52.992 +03:00 [INF] Request finished in 3.2681ms 200 application/javascript +2018-09-21 11:01:52.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:01:52.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:52.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:52.993 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:01:52.993 +03:00 [INF] Request finished in 2.7648ms 200 application/javascript +2018-09-21 11:01:52.994 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:01:52.994 +03:00 [INF] Request finished in 1.7208ms 200 application/javascript +2018-09-21 11:01:53.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:01:53.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:01:53.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.005 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:01:53.005 +03:00 [INF] Request finished in 3.432ms 200 application/javascript +2018-09-21 11:01:53.005 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:53.006 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.007 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.008 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Authorization failed. +2018-09-21 11:01:53.009 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:53.010 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:01:53.011 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1085ms. +2018-09-21 11:01:53.011 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3525ms. +2018-09-21 11:01:53.011 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:53.011 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:53.011 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7327000000000001ms +2018-09-21 11:01:53.011 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.9551000000000007ms +2018-09-21 11:01:53.011 +03:00 [INF] Request finished in 2.922ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:53.011 +03:00 [INF] Request finished in 10.145ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:53.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:01:53.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.018 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:01:53.019 +03:00 [INF] Request finished in 1.4959ms 200 application/javascript +2018-09-21 11:01:53.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:01:53.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.025 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.026 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:01:53.026 +03:00 [INF] Request finished in 1.4833ms 200 application/javascript +2018-09-21 11:01:53.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:01:53.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.081 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:01:53.081 +03:00 [INF] Request finished in 3.0991ms 200 font/woff2 +2018-09-21 11:01:53.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:01:53.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.111 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:01:53.111 +03:00 [INF] Request finished in 7.3467ms 200 image/jpeg +2018-09-21 11:01:53.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:53.138 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.138 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.138 +03:00 [INF] Request finished in 1.0307ms 404 +2018-09-21 11:01:53.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:01:53.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:01:53.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.313 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:01:53.314 +03:00 [INF] Request finished in 1.4499ms 200 image/png +2018-09-21 11:01:53.314 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:01:53.315 +03:00 [INF] Request finished in 2.502ms 200 image/png +2018-09-21 11:01:53.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137119579348 +2018-09-21 11:01:53.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:53.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:53.337 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:53.337 +03:00 [INF] Request finished in 1.4736ms 200 text/css +2018-09-21 11:01:53.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:01:53.577 +03:00 [INF] Request finished in 0.7776ms 404 +2018-09-21 11:01:56.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:01:56.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.031 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:01:56.052 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:01:56.103 +03:00 [INF] Executed action /Account/Login in 71.2577ms +2018-09-21 11:01:56.103 +03:00 [INF] Request finished in 72.4614ms 200 text/html; charset=utf-8 +2018-09-21 11:01:56.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:01:56.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.138 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:01:56.139 +03:00 [INF] Request finished in 4.4569ms 200 text/css +2018-09-21 11:01:56.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:01:56.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.143 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:01:56.144 +03:00 [INF] Request finished in 2.2626ms 200 text/css +2018-09-21 11:01:56.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:01:56.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.147 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:01:56.147 +03:00 [INF] Request finished in 2.5915ms 200 text/css +2018-09-21 11:01:56.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:01:56.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.151 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:01:56.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:01:56.151 +03:00 [INF] Request finished in 4.0799ms 200 text/css +2018-09-21 11:01:56.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.152 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:01:56.152 +03:00 [INF] Request finished in 1.1126ms 200 text/css +2018-09-21 11:01:56.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:01:56.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:01:56.161 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:01:56.161 +03:00 [INF] Request finished in 2.1259ms 200 text/css +2018-09-21 11:01:56.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.162 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:56.162 +03:00 [INF] Request finished in 1.2007ms 200 text/css +2018-09-21 11:01:56.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:01:56.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.173 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:01:56.173 +03:00 [INF] Request finished in 1.7496ms 200 text/css +2018-09-21 11:01:56.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:01:56.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.179 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:01:56.179 +03:00 [INF] Request finished in 1.3745ms 200 application/javascript +2018-09-21 11:01:56.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:01:56.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:01:56.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.182 +03:00 [INF] Request finished in 1.4123ms 404 +2018-09-21 11:01:56.187 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:01:56.187 +03:00 [INF] Request finished in 7.4144ms 200 application/javascript +2018-09-21 11:01:56.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:01:56.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.196 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:01:56.196 +03:00 [INF] Request finished in 2.8715ms 200 application/javascript +2018-09-21 11:01:56.206 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:01:56.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.212 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:01:56.212 +03:00 [INF] Request finished in 6.5851ms 200 application/javascript +2018-09-21 11:01:56.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:56.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.215 +03:00 [INF] Request finished in 1.1299ms 404 +2018-09-21 11:01:56.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:01:56.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.222 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:01:56.222 +03:00 [INF] Request finished in 1.8181ms 200 application/javascript +2018-09-21 11:01:56.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:01:56.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.236 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:01:56.237 +03:00 [INF] Request finished in 2.9587ms 200 application/javascript +2018-09-21 11:01:56.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:01:56.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.242 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:01:56.243 +03:00 [INF] Request finished in 2.0975ms 200 application/javascript +2018-09-21 11:01:56.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:01:56.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.258 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:01:56.259 +03:00 [INF] Request finished in 5.9179ms 200 application/javascript +2018-09-21 11:01:56.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:01:56.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:01:56.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:01:56.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.273 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:01:56.273 +03:00 [INF] Request finished in 2.3194ms 200 application/javascript +2018-09-21 11:01:56.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:01:56.273 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:01:56.273 +03:00 [INF] Request finished in 1.2441ms 200 application/javascript +2018-09-21 11:01:56.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.276 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:01:56.276 +03:00 [INF] Request finished in 3.2114ms 200 application/javascript +2018-09-21 11:01:56.276 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:01:56.277 +03:00 [INF] Request finished in 4.7948ms 200 application/javascript +2018-09-21 11:01:56.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:01:56.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:01:56.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:01:56.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.291 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:01:56.291 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:01:56.291 +03:00 [INF] Request finished in 2.6632ms 200 application/javascript +2018-09-21 11:01:56.291 +03:00 [INF] Request finished in 1.1941ms 200 application/javascript +2018-09-21 11:01:56.291 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:01:56.291 +03:00 [INF] Request finished in 1.2469ms 200 application/javascript +2018-09-21 11:01:56.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:01:56.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:01:56.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.296 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:01:56.296 +03:00 [INF] Request finished in 3.2847ms 200 application/javascript +2018-09-21 11:01:56.297 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:01:56.297 +03:00 [INF] Request finished in 1.576ms 200 application/javascript +2018-09-21 11:01:56.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:01:56.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:01:56.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.302 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:01:56.302 +03:00 [INF] Request finished in 1.4324ms 200 application/javascript +2018-09-21 11:01:56.302 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:01:56.302 +03:00 [INF] Request finished in 1.9375ms 200 application/javascript +2018-09-21 11:01:56.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:01:56.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:01:56.312 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:01:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.312 +03:00 [INF] Request finished in 2.4126ms 200 application/javascript +2018-09-21 11:01:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:01:56.313 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:01:56.313 +03:00 [INF] Request finished in 1.2315ms 200 application/javascript +2018-09-21 11:01:56.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.314 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:56.314 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.315 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.316 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.316 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.317 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.318 +03:00 [INF] Authorization failed. +2018-09-21 11:01:56.320 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.5303ms. +2018-09-21 11:01:56.320 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:56.321 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.8489ms +2018-09-21 11:01:56.321 +03:00 [INF] Request finished in 8.268ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:56.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:01:56.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:01:56.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.323 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:01:56.324 +03:00 [INF] Request finished in 1.1121ms 200 application/javascript +2018-09-21 11:01:56.324 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:56.325 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:01:56.325 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1449ms. +2018-09-21 11:01:56.326 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:56.326 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6107ms +2018-09-21 11:01:56.326 +03:00 [INF] Request finished in 3.8789ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:56.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:01:56.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.339 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:01:56.339 +03:00 [INF] Request finished in 2.5561ms 200 font/woff2 +2018-09-21 11:01:56.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:01:56.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:01:56.348 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:01:56.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.348 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.348 +03:00 [INF] Request finished in 1.4928ms 200 application/javascript +2018-09-21 11:01:56.350 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:01:56.351 +03:00 [INF] Request finished in 2.0714ms 200 image/svg+xml +2018-09-21 11:01:56.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:01:56.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.357 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:01:56.357 +03:00 [INF] Request finished in 1.2384ms 200 image/svg+xml +2018-09-21 11:01:56.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:01:56.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.394 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:01:56.394 +03:00 [INF] Request finished in 8.166ms 200 image/jpeg +2018-09-21 11:01:56.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:56.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.461 +03:00 [INF] Request finished in 1.5647ms 404 +2018-09-21 11:01:56.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:01:56.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.666 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:01:56.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:01:56.666 +03:00 [INF] Request finished in 2.8261ms 200 image/png +2018-09-21 11:01:56.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.668 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:01:56.668 +03:00 [INF] Request finished in 1.8509ms 200 image/png +2018-09-21 11:01:56.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:01:56.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:56.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:56.733 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:56.733 +03:00 [INF] Request finished in 1.1354ms 200 text/css +2018-09-21 11:01:56.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:01:56.920 +03:00 [INF] Request finished in 0.7637ms 404 +2018-09-21 11:01:57.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:01:57.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:57.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:57.473 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:01:57.663 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:01:58.230 +03:00 [INF] Executed action /Blog/Posts/Index in 757.29360000000008ms +2018-09-21 11:01:58.230 +03:00 [INF] Request finished in 1149.6641ms 200 text/html; charset=utf-8 +2018-09-21 11:01:58.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 11:01:58.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:01:58.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.296 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 11:01:58.296 +03:00 [INF] Request finished in 1.7493ms 200 text/css +2018-09-21 11:01:58.297 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:01:58.297 +03:00 [INF] Request finished in 1.9605ms 200 text/css +2018-09-21 11:01:58.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:01:58.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.312 +03:00 [INF] Request finished in 1.5268ms 404 +2018-09-21 11:01:58.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:01:58.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.370 +03:00 [INF] Request finished in 10.0586ms 404 +2018-09-21 11:01:58.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:01:58.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.415 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:58.415 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:01:58.416 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1125ms. +2018-09-21 11:01:58.416 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:58.416 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2659ms +2018-09-21 11:01:58.416 +03:00 [INF] Request finished in 3.5727ms 200 text/plain; charset=utf-8 +2018-09-21 11:01:58.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:01:58.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.419 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:01:58.419 +03:00 [INF] Request finished in 3.1062ms 200 application/javascript +2018-09-21 11:01:58.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:01:58.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:01:58.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:01:58.424 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:01:58.425 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:01:58.425 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.425 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.426 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.427 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.428 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.428 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.428 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.428 +03:00 [INF] Authorization failed. +2018-09-21 11:01:58.431 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.9379ms. +2018-09-21 11:01:58.431 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:01:58.432 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.7650000000000006ms +2018-09-21 11:01:58.432 +03:00 [INF] Request finished in 11.1544ms 200 text/plain; charset=utf-8 +2018-09-21 11:03:36.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:03:36.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.771 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:03:36.802 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:03:36.885 +03:00 [INF] Executed action /Account/Register in 113.67540000000001ms +2018-09-21 11:03:36.885 +03:00 [INF] Request finished in 370.3728ms 200 text/html; charset=utf-8 +2018-09-21 11:03:36.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:03:36.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:03:36.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:03:36.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.934 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:03:36.934 +03:00 [INF] Request finished in 1.9468ms 200 text/css +2018-09-21 11:03:36.935 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:03:36.935 +03:00 [INF] Request finished in 2.4969ms 200 text/css +2018-09-21 11:03:36.935 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:03:36.936 +03:00 [INF] Request finished in 4.8763ms 200 text/css +2018-09-21 11:03:36.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:03:36.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.940 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:03:36.940 +03:00 [INF] Request finished in 2.059ms 200 text/css +2018-09-21 11:03:36.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:03:36.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.949 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:03:36.949 +03:00 [INF] Request finished in 1.6517ms 200 text/css +2018-09-21 11:03:36.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:03:36.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:03:36.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.965 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:03:36.965 +03:00 [INF] Request finished in 1.9525ms 200 text/css +2018-09-21 11:03:36.965 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:03:36.965 +03:00 [INF] Request finished in 2.0888ms 200 text/css +2018-09-21 11:03:36.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:03:36.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.973 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:03:36.973 +03:00 [INF] Request finished in 1.7445ms 200 text/css +2018-09-21 11:03:36.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:03:36.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.979 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:03:36.980 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:03:36.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:03:36.980 +03:00 [INF] Request finished in 1.6318ms 200 application/javascript +2018-09-21 11:03:36.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.981 +03:00 [INF] Request finished in 1.0973ms 404 +2018-09-21 11:03:36.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:03:36.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:03:36.990 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:03:36.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:36.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.990 +03:00 [INF] Request finished in 9.7044ms 200 application/javascript +2018-09-21 11:03:36.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:36.990 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:03:36.991 +03:00 [INF] Request finished in 1.1574ms 200 application/javascript +2018-09-21 11:03:36.996 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:03:36.997 +03:00 [INF] Request finished in 7.6519ms 200 application/javascript +2018-09-21 11:03:37.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:03:37.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.002 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:03:37.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:03:37.003 +03:00 [INF] Request finished in 2.258ms 200 application/javascript +2018-09-21 11:03:37.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.004 +03:00 [INF] Request finished in 2.2699ms 404 +2018-09-21 11:03:37.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:03:37.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:03:37.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.018 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:03:37.018 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:03:37.018 +03:00 [INF] Request finished in 2.3747ms 200 application/javascript +2018-09-21 11:03:37.019 +03:00 [INF] Request finished in 3.083ms 200 application/javascript +2018-09-21 11:03:37.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:03:37.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.031 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:03:37.032 +03:00 [INF] Request finished in 3.46ms 200 application/javascript +2018-09-21 11:03:37.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:03:37.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.056 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:03:37.057 +03:00 [INF] Request finished in 17.3332ms 200 application/javascript +2018-09-21 11:03:37.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:03:37.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.063 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:03:37.063 +03:00 [INF] Request finished in 1.3076ms 200 application/javascript +2018-09-21 11:03:37.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:03:37.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.073 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:03:37.073 +03:00 [INF] Request finished in 1.5603ms 200 application/javascript +2018-09-21 11:03:37.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:03:37.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.086 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:03:37.086 +03:00 [INF] Request finished in 2.6073ms 200 application/javascript +2018-09-21 11:03:37.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:03:37.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.089 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:03:37.089 +03:00 [INF] Request finished in 1.3141ms 200 application/javascript +2018-09-21 11:03:37.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:03:37.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.099 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:03:37.099 +03:00 [INF] Request finished in 1.3514ms 200 application/javascript +2018-09-21 11:03:37.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:03:37.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.113 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:03:37.113 +03:00 [INF] Request finished in 2.0975ms 200 application/javascript +2018-09-21 11:03:37.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:03:37.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.115 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:03:37.115 +03:00 [INF] Request finished in 1.684ms 200 application/javascript +2018-09-21 11:03:37.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:03:37.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:03:37.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.126 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:03:37.126 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:03:37.126 +03:00 [INF] Request finished in 1.7412ms 200 application/javascript +2018-09-21 11:03:37.126 +03:00 [INF] Request finished in 1.8518ms 200 application/javascript +2018-09-21 11:03:37.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:03:37.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.133 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:03:37.133 +03:00 [INF] Request finished in 1.54ms 200 application/javascript +2018-09-21 11:03:37.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:03:37.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.138 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:03:37.138 +03:00 [INF] Request finished in 1.6267ms 200 application/javascript +2018-09-21 11:03:37.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:03:37.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:03:37.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.143 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:03:37.143 +03:00 [INF] Request finished in 1.0728ms 200 application/javascript +2018-09-21 11:03:37.144 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:03:37.145 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.145 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:03:37.146 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.147 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.148 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.148 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.148 +03:00 [INF] Authorization failed. +2018-09-21 11:03:37.148 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:03:37.149 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.45ms. +2018-09-21 11:03:37.149 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:03:37.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:03:37.150 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1442ms. +2018-09-21 11:03:37.150 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.1107000000000005ms +2018-09-21 11:03:37.150 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:03:37.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:03:37.150 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0418000000000003ms +2018-09-21 11:03:37.150 +03:00 [INF] Request finished in 8.2414ms 200 text/plain; charset=utf-8 +2018-09-21 11:03:37.150 +03:00 [INF] Request finished in 3.8219ms 200 text/plain; charset=utf-8 +2018-09-21 11:03:37.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.151 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.153 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:03:37.153 +03:00 [INF] Request finished in 2.8657ms 200 application/javascript +2018-09-21 11:03:37.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:03:37.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.162 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:03:37.162 +03:00 [INF] Request finished in 1.1248ms 200 application/javascript +2018-09-21 11:03:37.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:03:37.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.170 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:03:37.170 +03:00 [INF] Request finished in 3.8647ms 200 image/svg+xml +2018-09-21 11:03:37.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:03:37.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.171 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:03:37.171 +03:00 [INF] Request finished in 1.0877ms 200 image/svg+xml +2018-09-21 11:03:37.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:03:37.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.220 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:03:37.221 +03:00 [INF] Request finished in 3.4395ms 200 font/woff2 +2018-09-21 11:03:37.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:03:37.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.254 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:03:37.254 +03:00 [INF] Request finished in 6.8658ms 200 image/jpeg +2018-09-21 11:03:37.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:03:37.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.413 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:03:37.413 +03:00 [INF] Request finished in 1.064ms 200 text/css +2018-09-21 11:03:37.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:03:37.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:03:37.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:37.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:37.667 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:03:37.667 +03:00 [INF] Request finished in 1.0669ms 200 image/png +2018-09-21 11:03:37.667 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:03:37.667 +03:00 [INF] Request finished in 0.941ms 200 image/png +2018-09-21 11:03:37.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:03:37.742 +03:00 [INF] Request finished in 1.1072ms 404 +2018-09-21 11:03:38.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:03:38.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:38.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:38.976 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:03:39.003 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:03:39.055 +03:00 [INF] Executed action /Account/Login in 79.2971ms +2018-09-21 11:03:39.055 +03:00 [INF] Request finished in 81.0589ms 200 text/html; charset=utf-8 +2018-09-21 11:03:39.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:03:39.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:03:39.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:03:39.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.106 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:03:39.106 +03:00 [INF] Request finished in 2.3578ms 200 text/css +2018-09-21 11:03:39.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.107 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:03:39.107 +03:00 [INF] Request finished in 2.7446ms 200 text/css +2018-09-21 11:03:39.109 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:03:39.109 +03:00 [INF] Request finished in 5.427ms 200 text/css +2018-09-21 11:03:39.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:03:39.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.118 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:03:39.119 +03:00 [INF] Request finished in 1.6477ms 200 text/css +2018-09-21 11:03:39.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:03:39.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:03:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.125 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:03:39.125 +03:00 [INF] Request finished in 1.1704ms 200 text/css +2018-09-21 11:03:39.127 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:03:39.127 +03:00 [INF] Request finished in 3.0194ms 200 text/css +2018-09-21 11:03:39.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:03:39.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.130 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:03:39.130 +03:00 [INF] Request finished in 1.4199ms 200 text/css +2018-09-21 11:03:39.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:03:39.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.132 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:03:39.132 +03:00 [INF] Request finished in 1.2544ms 200 text/css +2018-09-21 11:03:39.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:03:39.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.142 +03:00 [INF] Request finished in 2.477ms 404 +2018-09-21 11:03:39.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:03:39.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.144 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:03:39.145 +03:00 [INF] Request finished in 1.4125ms 200 application/javascript +2018-09-21 11:03:39.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:03:39.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:03:39.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.155 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:03:39.156 +03:00 [INF] Request finished in 1.9475ms 200 application/javascript +2018-09-21 11:03:39.157 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:03:39.158 +03:00 [INF] Request finished in 8.0545ms 200 application/javascript +2018-09-21 11:03:39.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:03:39.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.166 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:03:39.166 +03:00 [INF] Request finished in 5.7113ms 200 application/javascript +2018-09-21 11:03:39.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:03:39.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.172 +03:00 [INF] Request finished in 3.5643ms 404 +2018-09-21 11:03:39.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:03:39.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.192 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:03:39.193 +03:00 [INF] Request finished in 5.5813ms 200 application/javascript +2018-09-21 11:03:39.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:03:39.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.198 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:03:39.199 +03:00 [INF] Request finished in 2.7214ms 200 application/javascript +2018-09-21 11:03:39.208 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:03:39.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.209 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:03:39.209 +03:00 [INF] Request finished in 1.9113ms 200 application/javascript +2018-09-21 11:03:39.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:03:39.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.224 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:03:39.224 +03:00 [INF] Request finished in 5.8874ms 200 application/javascript +2018-09-21 11:03:39.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:03:39.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.240 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:03:39.240 +03:00 [INF] Request finished in 8.9751ms 200 application/javascript +2018-09-21 11:03:39.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:03:39.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.245 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:03:39.245 +03:00 [INF] Request finished in 2.06ms 200 application/javascript +2018-09-21 11:03:39.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:03:39.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:03:39.250 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:03:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.250 +03:00 [INF] Request finished in 2.2493ms 200 application/javascript +2018-09-21 11:03:39.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.251 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:03:39.252 +03:00 [INF] Request finished in 1.4151ms 200 application/javascript +2018-09-21 11:03:39.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:03:39.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.255 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:03:39.255 +03:00 [INF] Request finished in 3.2205ms 200 application/javascript +2018-09-21 11:03:39.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:03:39.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.261 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:03:39.261 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:03:39.261 +03:00 [INF] Request finished in 1.5581ms 200 application/javascript +2018-09-21 11:03:39.261 +03:00 [INF] Request finished in 1.5868ms 200 application/javascript +2018-09-21 11:03:39.261 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:03:39.261 +03:00 [INF] Request finished in 1.7136ms 200 application/javascript +2018-09-21 11:03:39.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:03:39.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.268 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:03:39.268 +03:00 [INF] Request finished in 1.3322ms 200 application/javascript +2018-09-21 11:03:39.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:03:39.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:03:39.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.270 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:03:39.270 +03:00 [INF] Request finished in 1.2426ms 200 application/javascript +2018-09-21 11:03:39.270 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:03:39.270 +03:00 [INF] Request finished in 1.6605ms 200 application/javascript +2018-09-21 11:03:39.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:03:39.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:03:39.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.273 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:03:39.273 +03:00 [INF] Request finished in 1.4933ms 200 application/javascript +2018-09-21 11:03:39.274 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:03:39.274 +03:00 [INF] Request finished in 1.3269ms 200 application/javascript +2018-09-21 11:03:39.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:03:39.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.283 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:03:39.284 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:03:39.284 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.284 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.284 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.284 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.284 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.285 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.286 +03:00 [INF] Authorization failed. +2018-09-21 11:03:39.287 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:03:39.287 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1316ms. +2018-09-21 11:03:39.288 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:03:39.288 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7043000000000001ms +2018-09-21 11:03:39.288 +03:00 [INF] Request finished in 3.1991ms 200 text/plain; charset=utf-8 +2018-09-21 11:03:39.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:03:39.288 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.4413ms. +2018-09-21 11:03:39.289 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:03:39.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.289 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.7395000000000005ms +2018-09-21 11:03:39.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.289 +03:00 [INF] Request finished in 7.017ms 200 text/plain; charset=utf-8 +2018-09-21 11:03:39.291 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:03:39.291 +03:00 [INF] Request finished in 2.9711ms 200 font/woff2 +2018-09-21 11:03:39.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:03:39.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.293 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:03:39.294 +03:00 [INF] Request finished in 1.4587ms 200 application/javascript +2018-09-21 11:03:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:03:39.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.302 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:03:39.303 +03:00 [INF] Request finished in 1.7168ms 200 application/javascript +2018-09-21 11:03:39.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:03:39.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.305 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:03:39.305 +03:00 [INF] Request finished in 1.0351ms 200 image/svg+xml +2018-09-21 11:03:39.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:03:39.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.310 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:03:39.310 +03:00 [INF] Request finished in 1.6235ms 200 image/svg+xml +2018-09-21 11:03:39.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:03:39.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.329 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:03:39.329 +03:00 [INF] Request finished in 5.3857ms 200 image/jpeg +2018-09-21 11:03:39.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:03:39.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.432 +03:00 [INF] Request finished in 1.7413ms 404 +2018-09-21 11:03:39.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:03:39.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.667 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:03:39.667 +03:00 [INF] Request finished in 1.1821ms 200 text/css +2018-09-21 11:03:39.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:03:39.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.694 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:03:39.695 +03:00 [INF] Request finished in 1.2985ms 200 image/png +2018-09-21 11:03:39.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:03:39.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:03:39.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:03:39.696 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:03:39.696 +03:00 [INF] Request finished in 1.0426ms 200 image/png +2018-09-21 11:03:39.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:03:39.845 +03:00 [INF] Request finished in 1.7912ms 404 +2018-09-21 11:04:03.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 11:04:03.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:03.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.124 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 11:04:04.152 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:04:04.183 +03:00 [INF] Executed action /Templates in 58.8755ms +2018-09-21 11:04:04.183 +03:00 [INF] Request finished in 346.6754ms 200 text/html; charset=utf-8 +2018-09-21 11:04:04.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:04:04.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.234 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:04:04.234 +03:00 [INF] Request finished in 5.8554ms 200 text/css +2018-09-21 11:04:04.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:04:04.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.244 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:04:04.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:04:04.245 +03:00 [INF] Request finished in 1.9826ms 200 text/css +2018-09-21 11:04:04.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.247 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:04:04.248 +03:00 [INF] Request finished in 2.71ms 200 text/css +2018-09-21 11:04:04.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:04:04.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:04:04.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.254 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:04:04.255 +03:00 [INF] Request finished in 1.0709ms 200 text/css +2018-09-21 11:04:04.255 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:04:04.255 +03:00 [INF] Request finished in 1.6188ms 200 text/css +2018-09-21 11:04:04.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:04:04.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:04:04.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.267 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:04:04.267 +03:00 [INF] Request finished in 1.3154ms 200 text/css +2018-09-21 11:04:04.267 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:04:04.268 +03:00 [INF] Request finished in 2.5042ms 200 text/css +2018-09-21 11:04:04.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:04:04.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.290 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:04:04.290 +03:00 [INF] Request finished in 1.2547ms 200 text/css +2018-09-21 11:04:04.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:04:04.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.299 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:04:04.299 +03:00 [INF] Request finished in 1.5749ms 200 application/javascript +2018-09-21 11:04:04.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:04:04.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:04:04.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.315 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:04:04.316 +03:00 [INF] Request finished in 1.1885ms 200 application/javascript +2018-09-21 11:04:04.317 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:04:04.318 +03:00 [INF] Request finished in 3.1332ms 200 application/javascript +2018-09-21 11:04:04.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:04:04.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.331 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:04:04.332 +03:00 [INF] Request finished in 9.4055ms 200 application/javascript +2018-09-21 11:04:04.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:04:04.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:04:04.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.341 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:04:04.341 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:04:04.341 +03:00 [INF] Request finished in 1.2331ms 200 application/javascript +2018-09-21 11:04:04.341 +03:00 [INF] Request finished in 3.0952ms 200 application/javascript +2018-09-21 11:04:04.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:04.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.350 +03:00 [INF] Request finished in 1.7347ms 404 +2018-09-21 11:04:04.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:04:04.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.350 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.351 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:04:04.351 +03:00 [INF] Request finished in 1.1755ms 200 application/javascript +2018-09-21 11:04:04.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:04:04.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:04:04.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.380 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:04:04.380 +03:00 [INF] Request finished in 3.4448ms 200 application/javascript +2018-09-21 11:04:04.380 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:04:04.380 +03:00 [INF] Request finished in 5.5408ms 200 application/javascript +2018-09-21 11:04:04.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:04:04.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:04:04.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.405 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:04:04.405 +03:00 [INF] Request finished in 1.855ms 200 application/javascript +2018-09-21 11:04:04.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:04:04.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.413 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:04:04.413 +03:00 [INF] Request finished in 3.881ms 200 application/javascript +2018-09-21 11:04:04.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:04:04.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.419 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:04:04.419 +03:00 [INF] Request finished in 20.0174ms 200 application/javascript +2018-09-21 11:04:04.420 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:04:04.420 +03:00 [INF] Request finished in 6.7204ms 200 application/javascript +2018-09-21 11:04:04.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:04:04.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:04:04.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.426 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:04:04.426 +03:00 [INF] Request finished in 1.3915ms 200 application/javascript +2018-09-21 11:04:04.426 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:04:04.426 +03:00 [INF] Request finished in 1.0315ms 200 application/javascript +2018-09-21 11:04:04.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:04:04.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:04:04.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.441 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:04:04.441 +03:00 [INF] Request finished in 1.5806ms 200 application/javascript +2018-09-21 11:04:04.441 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:04:04.442 +03:00 [INF] Request finished in 2.4631ms 200 application/javascript +2018-09-21 11:04:04.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:04:04.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:04:04.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:04:04.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:04:04.453 +03:00 [INF] Request finished in 2.8218ms 200 application/javascript +2018-09-21 11:04:04.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:04:04.453 +03:00 [INF] Request finished in 1.164ms 200 application/javascript +2018-09-21 11:04:04.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.454 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:04:04.454 +03:00 [INF] Request finished in 2.8762ms 200 application/javascript +2018-09-21 11:04:04.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:04:04.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:04:04.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.459 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:04.460 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.460 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Request finished in 5.9511ms 200 application/javascript +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.461 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.462 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.463 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.463 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.463 +03:00 [INF] Authorization failed. +2018-09-21 11:04:04.465 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.9859ms. +2018-09-21 11:04:04.465 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:04.465 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.2237ms +2018-09-21 11:04:04.465 +03:00 [INF] Request finished in 8.9866ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:04.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:04:04.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.468 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:04:04.468 +03:00 [INF] Request finished in 1.0381ms 200 application/javascript +2018-09-21 11:04:04.468 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:04:04.468 +03:00 [INF] Request finished in 1.0434ms 200 application/javascript +2018-09-21 11:04:04.469 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:04.470 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:04:04.471 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21380000000000002ms. +2018-09-21 11:04:04.471 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:04.471 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8165ms +2018-09-21 11:04:04.471 +03:00 [INF] Request finished in 4.4206ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:04.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-09-21 11:04:04.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.481 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-09-21 11:04:04.481 +03:00 [INF] Request finished in 1.6507ms 200 application/javascript +2018-09-21 11:04:04.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:04:04.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.485 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:04:04.485 +03:00 [INF] Request finished in 2.0205ms 200 image/svg+xml +2018-09-21 11:04:04.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:04:04.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.487 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:04:04.487 +03:00 [INF] Request finished in 1.7072ms 200 image/png +2018-09-21 11:04:04.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:04:04.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.501 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:04:04.501 +03:00 [INF] Request finished in 7.641ms 200 image/svg+xml +2018-09-21 11:04:04.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:04:04.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.581 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:04:04.581 +03:00 [INF] Request finished in 5.0449ms 200 font/woff2 +2018-09-21 11:04:04.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:04:04.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.615 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:04:04.616 +03:00 [INF] Request finished in 9.3289ms 200 image/jpeg +2018-09-21 11:04:04.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:04.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.647 +03:00 [INF] Request finished in 1.1502ms 404 +2018-09-21 11:04:04.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:04:04.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.837 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:04:04.837 +03:00 [INF] Request finished in 1.3068ms 200 image/png +2018-09-21 11:04:04.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:04:04.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.838 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:04:04.839 +03:00 [INF] Request finished in 1.1476ms 200 image/png +2018-09-21 11:04:04.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:04:04.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:04.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:04.938 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:04:04.938 +03:00 [INF] Request finished in 1.0564ms 200 text/css +2018-09-21 11:04:05.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:04:05.176 +03:00 [INF] Request finished in 0.982ms 404 +2018-09-21 11:04:06.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 11:04:06.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.148 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 11:04:06.149 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:04:06.155 +03:00 [INF] Executed action /Templates in 7.4699ms +2018-09-21 11:04:06.155 +03:00 [INF] Request finished in 8.9124ms 200 text/html; charset=utf-8 +2018-09-21 11:04:06.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:04:06.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:04:06.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.189 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:04:06.189 +03:00 [INF] Request finished in 1.3565ms 200 text/css +2018-09-21 11:04:06.189 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:04:06.190 +03:00 [INF] Request finished in 3.6183ms 200 text/css +2018-09-21 11:04:06.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:04:06.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.191 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:04:06.192 +03:00 [INF] Request finished in 1.7433ms 200 text/css +2018-09-21 11:04:06.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:04:06.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.207 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:04:06.207 +03:00 [INF] Request finished in 1.6121ms 200 text/css +2018-09-21 11:04:06.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:04:06.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.208 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:04:06.209 +03:00 [INF] Request finished in 1.2668ms 200 text/css +2018-09-21 11:04:06.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:04:06.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.216 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:04:06.216 +03:00 [INF] Request finished in 1.7605ms 200 text/css +2018-09-21 11:04:06.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:04:06.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.221 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:04:06.221 +03:00 [INF] Request finished in 1.2542ms 200 text/css +2018-09-21 11:04:06.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:04:06.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.227 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:04:06.228 +03:00 [INF] Request finished in 1.8732ms 200 text/css +2018-09-21 11:04:06.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:04:06.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:04:06.236 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:04:06.236 +03:00 [INF] Request finished in 1.5247ms 200 application/javascript +2018-09-21 11:04:06.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:04:06.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.238 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:04:06.238 +03:00 [INF] Request finished in 1.2547ms 200 application/javascript +2018-09-21 11:04:06.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:04:06.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:06.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.245 +03:00 [INF] Request finished in 1.2721ms 404 +2018-09-21 11:04:06.245 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:04:06.247 +03:00 [INF] Request finished in 10.6448ms 200 application/javascript +2018-09-21 11:04:06.248 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:04:06.248 +03:00 [INF] Request finished in 5.7984ms 200 application/javascript +2018-09-21 11:04:06.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:04:06.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.260 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:04:06.260 +03:00 [INF] Request finished in 1.7834ms 200 application/javascript +2018-09-21 11:04:06.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:04:06.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.266 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:04:06.266 +03:00 [INF] Request finished in 2.8564ms 200 application/javascript +2018-09-21 11:04:06.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:04:06.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.270 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:04:06.270 +03:00 [INF] Request finished in 1.6508ms 200 application/javascript +2018-09-21 11:04:06.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:04:06.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.285 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.287 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:04:06.288 +03:00 [INF] Request finished in 3.1613ms 200 application/javascript +2018-09-21 11:04:06.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:04:06.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:04:06.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.301 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:04:06.301 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:04:06.301 +03:00 [INF] Request finished in 4.1372ms 200 application/javascript +2018-09-21 11:04:06.301 +03:00 [INF] Request finished in 9.4739ms 200 application/javascript +2018-09-21 11:04:06.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:04:06.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.307 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:04:06.307 +03:00 [INF] Request finished in 1.5348ms 200 application/javascript +2018-09-21 11:04:06.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:04:06.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.322 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:04:06.322 +03:00 [INF] Request finished in 1.5815ms 200 application/javascript +2018-09-21 11:04:06.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:04:06.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.329 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:04:06.329 +03:00 [INF] Request finished in 1.2189ms 200 application/javascript +2018-09-21 11:04:06.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:04:06.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:04:06.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.338 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:04:06.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.338 +03:00 [INF] Request finished in 2.7819ms 200 application/javascript +2018-09-21 11:04:06.339 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:04:06.339 +03:00 [INF] Request finished in 1.5235ms 200 application/javascript +2018-09-21 11:04:06.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:04:06.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.342 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:04:06.342 +03:00 [INF] Request finished in 2.7912ms 200 application/javascript +2018-09-21 11:04:06.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:04:06.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.347 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:04:06.348 +03:00 [INF] Request finished in 3.6233ms 200 application/javascript +2018-09-21 11:04:06.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:04:06.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.358 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:04:06.358 +03:00 [INF] Request finished in 3.1892ms 200 application/javascript +2018-09-21 11:04:06.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:04:06.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.360 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:04:06.360 +03:00 [INF] Request finished in 1.4434ms 200 application/javascript +2018-09-21 11:04:06.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:04:06.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.365 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:04:06.365 +03:00 [INF] Request finished in 2.5091ms 200 application/javascript +2018-09-21 11:04:06.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:04:06.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:04:06.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.372 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:04:06.372 +03:00 [INF] Request finished in 1.5405ms 200 application/javascript +2018-09-21 11:04:06.372 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:06.373 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:04:06.373 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.373 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.374 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.375 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.376 +03:00 [INF] Authorization failed. +2018-09-21 11:04:06.377 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1149000000000004ms. +2018-09-21 11:04:06.378 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:06.378 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.9379ms +2018-09-21 11:04:06.378 +03:00 [INF] Request finished in 7.4734ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:06.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:04:06.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.384 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:06.385 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:04:06.386 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1194ms. +2018-09-21 11:04:06.386 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:06.386 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3846ms +2018-09-21 11:04:06.386 +03:00 [INF] Request finished in 2.6133ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:06.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:04:06.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.399 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:04:06.399 +03:00 [INF] Request finished in 1.7162ms 200 application/javascript +2018-09-21 11:04:06.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:04:06.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:04:06.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.402 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:04:06.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.402 +03:00 [INF] Request finished in 2.3818ms 200 application/javascript +2018-09-21 11:04:06.404 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:04:06.404 +03:00 [INF] Request finished in 3.8518ms 200 font/woff2 +2018-09-21 11:04:06.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-09-21 11:04:06.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.410 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-09-21 11:04:06.410 +03:00 [INF] Request finished in 1.1165ms 200 application/javascript +2018-09-21 11:04:06.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:04:06.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.418 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:04:06.418 +03:00 [INF] Request finished in 1.471ms 200 image/svg+xml +2018-09-21 11:04:06.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:04:06.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.420 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:04:06.421 +03:00 [INF] Request finished in 1.31ms 200 image/png +2018-09-21 11:04:06.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:04:06.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.425 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:04:06.425 +03:00 [INF] Request finished in 1.1655ms 200 image/svg+xml +2018-09-21 11:04:06.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:04:06.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.452 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:04:06.453 +03:00 [INF] Request finished in 9.0579ms 200 image/jpeg +2018-09-21 11:04:06.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:06.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.518 +03:00 [INF] Request finished in 2.7302ms 404 +2018-09-21 11:04:06.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:04:06.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.685 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:04:06.685 +03:00 [INF] Request finished in 0.9802ms 200 text/css +2018-09-21 11:04:06.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:04:06.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:04:06.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:06.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:06.819 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:04:06.819 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:04:06.819 +03:00 [INF] Request finished in 1.0565ms 200 image/png +2018-09-21 11:04:06.819 +03:00 [INF] Request finished in 1.2413ms 200 image/png +2018-09-21 11:04:06.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:04:06.915 +03:00 [INF] Request finished in 1.4473ms 404 +2018-09-21 11:04:07.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:04:07.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.393 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:04:07.393 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:04:07.401 +03:00 [INF] Executed action /Index in 7.6841ms +2018-09-21 11:04:07.401 +03:00 [INF] Request finished in 11.9754ms 200 text/html; charset=utf-8 +2018-09-21 11:04:07.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:04:07.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:04:07.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.443 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:04:07.443 +03:00 [INF] Request finished in 2.1089ms 200 text/css +2018-09-21 11:04:07.444 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:04:07.444 +03:00 [INF] Request finished in 4.6282ms 200 text/css +2018-09-21 11:04:07.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:04:07.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.446 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:04:07.446 +03:00 [INF] Request finished in 1.4907ms 200 text/css +2018-09-21 11:04:07.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:04:07.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.459 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:04:07.460 +03:00 [INF] Request finished in 2.3112ms 200 text/css +2018-09-21 11:04:07.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:04:07.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.462 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:04:07.462 +03:00 [INF] Request finished in 2.1593ms 200 text/css +2018-09-21 11:04:07.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:04:07.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:04:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.467 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:04:07.467 +03:00 [INF] Request finished in 1.3034ms 200 text/css +2018-09-21 11:04:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.472 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:04:07.472 +03:00 [INF] Request finished in 6.3569ms 200 text/css +2018-09-21 11:04:07.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:04:07.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.477 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:04:07.477 +03:00 [INF] Request finished in 1.3474ms 200 application/javascript +2018-09-21 11:04:07.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:04:07.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.483 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:04:07.483 +03:00 [INF] Request finished in 4.3725ms 200 text/css +2018-09-21 11:04:07.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:04:07.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:04:07.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.491 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:04:07.491 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:04:07.491 +03:00 [INF] Request finished in 1.1305ms 200 image/svg+xml +2018-09-21 11:04:07.491 +03:00 [INF] Request finished in 0.9054ms 200 image/png +2018-09-21 11:04:07.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:04:07.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.495 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:04:07.496 +03:00 [INF] Request finished in 1.1227ms 200 image/png +2018-09-21 11:04:07.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:04:07.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.525 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:04:07.525 +03:00 [INF] Request finished in 1.5995ms 200 image/png +2018-09-21 11:04:07.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:04:07.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.536 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:04:07.537 +03:00 [INF] Request finished in 2.1908ms 200 image/png +2018-09-21 11:04:07.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:04:07.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.549 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:04:07.549 +03:00 [INF] Request finished in 4.0724ms 200 image/png +2018-09-21 11:04:07.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:04:07.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.553 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:04:07.554 +03:00 [INF] Request finished in 2.4082ms 200 image/png +2018-09-21 11:04:07.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:04:07.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.558 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:04:07.558 +03:00 [INF] Request finished in 2.2806ms 200 image/png +2018-09-21 11:04:07.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:04:07.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:04:07.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.565 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:04:07.565 +03:00 [INF] Request finished in 2.2996ms 200 image/png +2018-09-21 11:04:07.565 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:04:07.566 +03:00 [INF] Request finished in 2.4415ms 200 image/png +2018-09-21 11:04:07.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:04:07.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.569 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:04:07.570 +03:00 [INF] Request finished in 3.6998ms 200 image/png +2018-09-21 11:04:07.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:04:07.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:04:07.578 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:04:07.578 +03:00 [INF] Request finished in 1.0623ms 200 image/png +2018-09-21 11:04:07.578 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.578 +03:00 [INF] Request finished in 0.8925ms 200 image/png +2018-09-21 11:04:07.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.579 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:04:07.579 +03:00 [INF] Request finished in 1.3286ms 200 image/png +2018-09-21 11:04:07.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:04:07.579 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:04:07.580 +03:00 [INF] Request finished in 2.1417ms 200 image/png +2018-09-21 11:04:07.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:04:07.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.581 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:04:07.582 +03:00 [INF] Request finished in 1.0758ms 200 image/png +2018-09-21 11:04:07.584 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:04:07.585 +03:00 [INF] Request finished in 5.5825ms 200 image/png +2018-09-21 11:04:07.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:04:07.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.588 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:04:07.588 +03:00 [INF] Request finished in 1.1728ms 200 image/png +2018-09-21 11:04:07.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:04:07.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:04:07.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.597 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:04:07.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.597 +03:00 [INF] Request finished in 5.2248ms 200 image/png +2018-09-21 11:04:07.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:04:07.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.598 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:04:07.598 +03:00 [INF] Request finished in 2.5725ms 200 image/png +2018-09-21 11:04:07.599 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:04:07.599 +03:00 [INF] Request finished in 2.5937ms 200 image/png +2018-09-21 11:04:07.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:04:07.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.604 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:04:07.604 +03:00 [INF] Request finished in 1.5224ms 200 image/png +2018-09-21 11:04:07.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:04:07.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.612 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:04:07.612 +03:00 [INF] Request finished in 1.6725ms 200 image/png +2018-09-21 11:04:07.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:04:07.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.618 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:04:07.618 +03:00 [INF] Request finished in 3.7584ms 200 image/png +2018-09-21 11:04:07.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:04:07.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.629 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:04:07.629 +03:00 [INF] Request finished in 2.0601ms 200 image/png +2018-09-21 11:04:07.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:04:07.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:04:07.635 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:04:07.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.635 +03:00 [INF] Request finished in 3.9285ms 200 image/png +2018-09-21 11:04:07.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.636 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:04:07.636 +03:00 [INF] Request finished in 1.5144ms 200 image/png +2018-09-21 11:04:07.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:04:07.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.642 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:04:07.642 +03:00 [INF] Request finished in 2.3187ms 200 image/png +2018-09-21 11:04:07.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:04:07.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.657 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:04:07.657 +03:00 [INF] Request finished in 1.2774ms 200 image/png +2018-09-21 11:04:07.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:04:07.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.665 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:04:07.666 +03:00 [INF] Request finished in 3.5384ms 200 image/png +2018-09-21 11:04:07.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:04:07.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.672 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:04:07.673 +03:00 [INF] Request finished in 2.3357ms 200 image/png +2018-09-21 11:04:07.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:04:07.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.685 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:04:07.685 +03:00 [INF] Request finished in 1.5049ms 200 image/png +2018-09-21 11:04:07.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:04:07.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.696 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:04:07.696 +03:00 [INF] Request finished in 3.2005ms 200 image/png +2018-09-21 11:04:07.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:04:07.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.719 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:04:07.719 +03:00 [INF] Request finished in 1.3101ms 200 image/png +2018-09-21 11:04:07.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:04:07.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.731 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:04:07.731 +03:00 [INF] Request finished in 1.5283ms 200 image/png +2018-09-21 11:04:07.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:04:07.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.736 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:04:07.736 +03:00 [INF] Request finished in 1.226ms 200 image/png +2018-09-21 11:04:07.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:04:07.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.740 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:04:07.740 +03:00 [INF] Request finished in 1.0927ms 200 image/svg+xml +2018-09-21 11:04:07.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:04:07.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.746 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:04:07.747 +03:00 [INF] Request finished in 4.0498ms 200 application/javascript +2018-09-21 11:04:07.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:04:07.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.751 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:04:07.751 +03:00 [INF] Request finished in 1.6173ms 200 application/javascript +2018-09-21 11:04:07.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:04:07.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.757 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:04:07.757 +03:00 [INF] Request finished in 2.8471ms 200 font/woff2 +2018-09-21 11:04:07.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:04:07.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.766 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:04:07.766 +03:00 [INF] Request finished in 5.7438ms 200 application/javascript +2018-09-21 11:04:07.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:07.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.773 +03:00 [INF] Request finished in 1.2556ms 404 +2018-09-21 11:04:07.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:04:07.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.778 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:04:07.778 +03:00 [INF] Request finished in 1.3974ms 200 application/javascript +2018-09-21 11:04:07.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:04:07.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:04:07.784 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:04:07.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:04:07.784 +03:00 [INF] Request finished in 2.9952ms 200 application/javascript +2018-09-21 11:04:07.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.785 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:04:07.786 +03:00 [INF] Request finished in 1.3766ms 200 application/javascript +2018-09-21 11:04:07.787 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:04:07.787 +03:00 [INF] Request finished in 2.6892ms 200 application/javascript +2018-09-21 11:04:07.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:04:07.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:04:07.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:04:07.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:04:07.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.799 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:04:07.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.799 +03:00 [INF] Request finished in 2.1655ms 200 application/javascript +2018-09-21 11:04:07.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.800 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:04:07.800 +03:00 [INF] Request finished in 1.3914ms 200 application/javascript +2018-09-21 11:04:07.800 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:04:07.800 +03:00 [INF] Request finished in 1.5213ms 200 application/javascript +2018-09-21 11:04:07.803 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:04:07.804 +03:00 [INF] Request finished in 14.1208ms 200 application/javascript +2018-09-21 11:04:07.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:04:07.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.807 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:04:07.807 +03:00 [INF] Request finished in 1.5825ms 200 application/javascript +2018-09-21 11:04:07.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:04:07.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:04:07.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.813 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:04:07.813 +03:00 [INF] Request finished in 2.7537ms 200 application/javascript +2018-09-21 11:04:07.820 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:04:07.820 +03:00 [INF] Request finished in 10.4079ms 200 application/javascript +2018-09-21 11:04:07.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:04:07.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.822 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:04:07.822 +03:00 [INF] Request finished in 1.3293ms 200 application/javascript +2018-09-21 11:04:07.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:04:07.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:04:07.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:04:07.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.827 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:04:07.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:04:07.827 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:04:07.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.827 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:04:07.827 +03:00 [INF] Request finished in 0.9546ms 200 application/javascript +2018-09-21 11:04:07.827 +03:00 [INF] Request finished in 1.3642ms 200 application/javascript +2018-09-21 11:04:07.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.827 +03:00 [INF] Request finished in 1.457ms 200 application/javascript +2018-09-21 11:04:07.827 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:04:07.827 +03:00 [INF] Request finished in 1.1ms 200 application/javascript +2018-09-21 11:04:07.829 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:04:07.829 +03:00 [INF] Request finished in 1.8782ms 200 application/javascript +2018-09-21 11:04:07.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:04:07.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:04:07.834 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:07.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.835 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:04:07.835 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:04:07.835 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:04:07.835 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.835 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.835 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.835 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11660000000000001ms. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:04:07.836 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Request finished in 1.1476ms 200 application/javascript +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.836 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2461ms +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Request finished in 2.6329ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.837 +03:00 [INF] Authorization failed. +2018-09-21 11:04:07.839 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.9595000000000002ms. +2018-09-21 11:04:07.839 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:04:07.839 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.1661ms +2018-09-21 11:04:07.840 +03:00 [INF] Request finished in 6.4006ms 200 text/plain; charset=utf-8 +2018-09-21 11:04:07.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:04:07.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.853 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:04:07.853 +03:00 [INF] Request finished in 1.6251ms 200 application/javascript +2018-09-21 11:04:07.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:04:07.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.867 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:04:07.867 +03:00 [INF] Request finished in 10.0029ms 200 image/jpeg +2018-09-21 11:04:07.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:04:07.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:07.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:07.994 +03:00 [INF] Request finished in 1.2871ms 404 +2018-09-21 11:04:08.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:04:08.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:08.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:08.175 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:04:08.175 +03:00 [INF] Request finished in 1.9593ms 200 image/png +2018-09-21 11:04:08.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:04:08.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:08.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:08.176 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:04:08.177 +03:00 [INF] Request finished in 1.4523ms 200 image/png +2018-09-21 11:04:08.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:04:08.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:04:08.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:04:08.302 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:04:08.302 +03:00 [INF] Request finished in 3.9689ms 200 text/css +2018-09-21 11:04:08.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:04:08.481 +03:00 [INF] Request finished in 1.0813ms 404 +2018-09-21 11:05:04.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:05:04.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:04.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:04.802 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:05:04.803 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:05:05.180 +03:00 [INF] Executed action /Index in 377.111ms +2018-09-21 11:05:05.180 +03:00 [INF] Request finished in 384.2253ms 200 text/html; charset=utf-8 +2018-09-21 11:05:05.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:05:05.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.226 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:05:05.226 +03:00 [INF] Request finished in 6.9641ms 200 text/css +2018-09-21 11:05:05.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:05:05.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:05:05.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.232 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:05:05.232 +03:00 [INF] Request finished in 1.1466ms 200 text/css +2018-09-21 11:05:05.232 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:05:05.232 +03:00 [INF] Request finished in 1.1405ms 200 text/css +2018-09-21 11:05:05.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:05:05.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.241 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:05:05.242 +03:00 [INF] Request finished in 4.1779ms 200 text/css +2018-09-21 11:05:05.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:05:05.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.251 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:05:05.251 +03:00 [INF] Request finished in 1.7419ms 200 text/css +2018-09-21 11:05:05.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:05:05.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:05:05.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.266 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:05:05.266 +03:00 [INF] Request finished in 1.3096ms 200 text/css +2018-09-21 11:05:05.266 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:05:05.266 +03:00 [INF] Request finished in 1.5106ms 200 text/css +2018-09-21 11:05:05.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:05:05.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.283 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:05:05.283 +03:00 [INF] Request finished in 1.2396ms 200 text/css +2018-09-21 11:05:05.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:05:05.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.293 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:05:05.293 +03:00 [INF] Request finished in 3.0311ms 200 application/javascript +2018-09-21 11:05:05.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:05:05.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:05:05.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.313 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:05:05.313 +03:00 [INF] Request finished in 2.036ms 200 application/javascript +2018-09-21 11:05:05.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:05:05.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.317 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:05:05.317 +03:00 [INF] Request finished in 8.3823ms 200 application/javascript +2018-09-21 11:05:05.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:05:05.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:05:05.322 +03:00 [INF] Request finished in 1.8302ms 404 +2018-09-21 11:05:05.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.324 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:05:05.325 +03:00 [INF] Request finished in 4.4635ms 200 application/javascript +2018-09-21 11:05:05.326 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:05:05.326 +03:00 [INF] Request finished in 11.3969ms 200 application/javascript +2018-09-21 11:05:05.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:05:05.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:05:05.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:05:05.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.332 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:05:05.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.332 +03:00 [INF] Request finished in 1.6705ms 200 application/javascript +2018-09-21 11:05:05.333 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:05:05.334 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:05:05.334 +03:00 [INF] Request finished in 2.0713ms 200 application/javascript +2018-09-21 11:05:05.334 +03:00 [INF] Request finished in 2.5528ms 200 application/javascript +2018-09-21 11:05:05.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:05:05.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:05:05.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.358 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:05:05.358 +03:00 [INF] Request finished in 1.7182ms 200 application/javascript +2018-09-21 11:05:05.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:05:05.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.366 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:05:05.366 +03:00 [INF] Request finished in 1.5412ms 200 application/javascript +2018-09-21 11:05:05.367 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:05:05.368 +03:00 [INF] Request finished in 14.9043ms 200 application/javascript +2018-09-21 11:05:05.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:05:05.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.381 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:05:05.382 +03:00 [INF] Request finished in 2.0897ms 200 application/javascript +2018-09-21 11:05:05.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:05:05.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:05:05.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.413 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:05:05.413 +03:00 [INF] Request finished in 1.1596ms 200 application/javascript +2018-09-21 11:05:05.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:05:05.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.414 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:05:05.414 +03:00 [INF] Request finished in 1.3245ms 200 application/javascript +2018-09-21 11:05:05.414 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:05:05.414 +03:00 [INF] Request finished in 2.6002ms 200 application/javascript +2018-09-21 11:05:05.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:05:05.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.430 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:05:05.430 +03:00 [INF] Request finished in 4.2058ms 200 application/javascript +2018-09-21 11:05:05.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:05:05.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:05:05.442 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:05:05.442 +03:00 [INF] Request finished in 2.411ms 200 application/javascript +2018-09-21 11:05:05.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.444 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:05:05.445 +03:00 [INF] Request finished in 2.9608ms 200 application/javascript +2018-09-21 11:05:05.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:05:05.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.453 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:05:05.453 +03:00 [INF] Request finished in 1.5967ms 200 application/javascript +2018-09-21 11:05:05.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:05:05.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.458 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:05:05.458 +03:00 [INF] Request finished in 2.457ms 200 application/javascript +2018-09-21 11:05:05.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:05:05.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.468 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:05:05.469 +03:00 [INF] Request finished in 1.7665ms 200 application/javascript +2018-09-21 11:05:05.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:05:05.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.485 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:05:05.486 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.486 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.487 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.488 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.488 +03:00 [INF] Authorization failed. +2018-09-21 11:05:05.491 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4722ms. +2018-09-21 11:05:05.491 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:05:05.492 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.8101ms +2018-09-21 11:05:05.492 +03:00 [INF] Request finished in 15.0391ms 200 text/plain; charset=utf-8 +2018-09-21 11:05:05.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:05:05.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.496 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:05:05.498 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:05:05.498 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1076ms. +2018-09-21 11:05:05.498 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:05:05.498 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6628ms +2018-09-21 11:05:05.498 +03:00 [INF] Request finished in 4.865ms 200 text/plain; charset=utf-8 +2018-09-21 11:05:05.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:05:05.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.513 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:05:05.513 +03:00 [INF] Request finished in 2.1219ms 200 application/javascript +2018-09-21 11:05:05.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:05:05.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.523 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:05:05.523 +03:00 [INF] Request finished in 2.1673ms 200 application/javascript +2018-09-21 11:05:05.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:05:05.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.545 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:05:05.545 +03:00 [INF] Request finished in 1.3464ms 200 image/svg+xml +2018-09-21 11:05:05.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:05:05.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.556 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:05:05.556 +03:00 [INF] Request finished in 2.4899ms 200 image/png +2018-09-21 11:05:05.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:05:05.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:05:05.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.560 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:05:05.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.560 +03:00 [INF] Request finished in 1.3277ms 200 image/png +2018-09-21 11:05:05.561 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:05:05.561 +03:00 [INF] Request finished in 1.0359ms 200 image/png +2018-09-21 11:05:05.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:05:05.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.568 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:05:05.568 +03:00 [INF] Request finished in 1.0529ms 200 image/png +2018-09-21 11:05:05.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:05:05.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.570 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:05:05.570 +03:00 [INF] Request finished in 1.1291ms 200 image/png +2018-09-21 11:05:05.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:05:05.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:05:05.580 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:05:05.580 +03:00 [INF] Request finished in 1.037ms 200 image/png +2018-09-21 11:05:05.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:05:05.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.581 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:05:05.581 +03:00 [INF] Request finished in 0.8598ms 200 image/png +2018-09-21 11:05:05.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:05:05.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.581 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:05:05.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.581 +03:00 [INF] Request finished in 1.4898ms 200 image/png +2018-09-21 11:05:05.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:05:05.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.582 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:05:05.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:05:05.583 +03:00 [INF] Request finished in 1.1263ms 200 image/png +2018-09-21 11:05:05.583 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:05:05.583 +03:00 [INF] Request finished in 1.5727ms 200 image/png +2018-09-21 11:05:05.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.584 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:05:05.584 +03:00 [INF] Request finished in 1.541ms 200 image/png +2018-09-21 11:05:05.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:05:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:05:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:05:05.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.595 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:05:05.595 +03:00 [INF] Request finished in 2.2028ms 200 image/png +2018-09-21 11:05:05.595 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:05:05.595 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:05:05.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:05:05.595 +03:00 [INF] Request finished in 2.4479ms 200 image/png +2018-09-21 11:05:05.595 +03:00 [INF] Request finished in 0.9446ms 200 image/png +2018-09-21 11:05:05.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.597 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:05:05.597 +03:00 [INF] Request finished in 1.7118ms 200 image/png +2018-09-21 11:05:05.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:05:05.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.608 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:05:05.608 +03:00 [INF] Request finished in 2.1065ms 200 image/png +2018-09-21 11:05:05.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:05:05.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.616 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:05:05.617 +03:00 [INF] Request finished in 6.7806ms 200 image/png +2018-09-21 11:05:05.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:05:05.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:05:05.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.620 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:05:05.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:05:05.620 +03:00 [INF] Request finished in 2.692ms 200 image/png +2018-09-21 11:05:05.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.622 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:05:05.622 +03:00 [INF] Request finished in 2.2178ms 200 image/png +2018-09-21 11:05:05.623 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:05:05.623 +03:00 [INF] Request finished in 6.009ms 200 image/png +2018-09-21 11:05:05.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:05:05.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.631 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:05:05.631 +03:00 [INF] Request finished in 5.8973ms 200 image/png +2018-09-21 11:05:05.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:05:05.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.644 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:05:05.644 +03:00 [INF] Request finished in 3.1496ms 200 image/png +2018-09-21 11:05:05.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:05:05.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:05:05.650 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:05:05.651 +03:00 [INF] Request finished in 2.1775ms 200 image/png +2018-09-21 11:05:05.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.653 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:05:05.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:05:05.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.656 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:05:05.656 +03:00 [INF] Request finished in 2.8302ms 200 image/png +2018-09-21 11:05:05.657 +03:00 [INF] Request finished in 6.6293ms 200 image/png +2018-09-21 11:05:05.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:05:05.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.660 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:05:05.660 +03:00 [INF] Request finished in 1.6222ms 200 image/png +2018-09-21 11:05:05.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:05:05.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.662 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:05:05.663 +03:00 [INF] Request finished in 1.2784ms 200 image/png +2018-09-21 11:05:05.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:05:05.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.668 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:05:05.668 +03:00 [INF] Request finished in 4.2729ms 200 image/png +2018-09-21 11:05:05.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:05:05.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:05:05.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.673 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:05:05.673 +03:00 [INF] Request finished in 1.6524ms 200 image/png +2018-09-21 11:05:05.674 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:05:05.674 +03:00 [INF] Request finished in 4.503ms 200 font/woff2 +2018-09-21 11:05:05.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:05:05.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.679 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:05:05.680 +03:00 [INF] Request finished in 2.3963ms 200 image/png +2018-09-21 11:05:05.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:05:05.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.682 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:05:05.683 +03:00 [INF] Request finished in 1.5112ms 200 image/png +2018-09-21 11:05:05.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:05:05.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.694 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:05:05.695 +03:00 [INF] Request finished in 1.4959ms 200 image/png +2018-09-21 11:05:05.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:05:05.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.696 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:05:05.696 +03:00 [INF] Request finished in 1.207ms 200 image/png +2018-09-21 11:05:05.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:05:05.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.708 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:05:05.708 +03:00 [INF] Request finished in 2.9113ms 200 image/png +2018-09-21 11:05:05.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:05:05.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.732 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:05:05.732 +03:00 [INF] Request finished in 1.1655ms 200 image/png +2018-09-21 11:05:05.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:05:05.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.741 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:05:05.741 +03:00 [INF] Request finished in 1.8175ms 200 image/svg+xml +2018-09-21 11:05:05.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:05:05.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.756 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:05:05.756 +03:00 [INF] Request finished in 9.2596ms 200 image/jpeg +2018-09-21 11:05:05.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:05:05.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:05.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:05.781 +03:00 [INF] Request finished in 1.4087ms 404 +2018-09-21 11:05:06.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:05:06.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:06.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:06.014 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:05:06.014 +03:00 [INF] Request finished in 1.2532ms 200 image/png +2018-09-21 11:05:06.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:05:06.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:06.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:06.017 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:05:06.017 +03:00 [INF] Request finished in 1.3941ms 200 image/png +2018-09-21 11:05:06.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:05:06.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:06.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:06.260 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:05:06.260 +03:00 [INF] Request finished in 4.2579ms 200 text/css +2018-09-21 11:05:06.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:05:06.488 +03:00 [INF] Request finished in 1.2828ms 404 +2018-09-21 11:05:20.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:05:20.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.343 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:05:20.343 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:05:20.591 +03:00 [INF] Executed action /Index in 247.7037ms +2018-09-21 11:05:20.591 +03:00 [INF] Request finished in 257.1985ms 200 text/html; charset=utf-8 +2018-09-21 11:05:20.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:05:20.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:05:20.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.631 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:05:20.631 +03:00 [INF] Request finished in 2.7981ms 200 text/css +2018-09-21 11:05:20.631 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:05:20.631 +03:00 [INF] Request finished in 4.5154ms 200 text/css +2018-09-21 11:05:20.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:05:20.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.643 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:05:20.644 +03:00 [INF] Request finished in 1.6706ms 200 text/css +2018-09-21 11:05:20.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:05:20.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.650 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:05:20.650 +03:00 [INF] Request finished in 1.8981ms 200 text/css +2018-09-21 11:05:20.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:05:20.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.653 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:05:20.653 +03:00 [INF] Request finished in 1.6769ms 200 text/css +2018-09-21 11:05:20.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:05:20.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.659 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:05:20.660 +03:00 [INF] Request finished in 1.6037ms 200 text/css +2018-09-21 11:05:20.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:05:20.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.675 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:05:20.676 +03:00 [INF] Request finished in 1.9908ms 200 text/css +2018-09-21 11:05:20.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:05:20.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:05:20.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.677 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:05:20.677 +03:00 [INF] Request finished in 1.0332ms 200 application/javascript +2018-09-21 11:05:20.678 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:05:20.678 +03:00 [INF] Request finished in 1.9568ms 200 text/css +2018-09-21 11:05:20.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:05:20.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.692 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:05:20.692 +03:00 [INF] Request finished in 9.0966ms 200 application/javascript +2018-09-21 11:05:20.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:05:20.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.699 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:05:20.700 +03:00 [INF] Request finished in 1.819ms 200 application/javascript +2018-09-21 11:05:20.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:05:20.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.710 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:05:20.710 +03:00 [INF] Request finished in 7.715ms 200 application/javascript +2018-09-21 11:05:20.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:05:20.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:05:20.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.728 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:05:20.729 +03:00 [INF] Request finished in 0.8731ms 200 application/javascript +2018-09-21 11:05:20.729 +03:00 [INF] Request finished in 1.4906ms 404 +2018-09-21 11:05:20.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:05:20.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:05:20.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.736 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:05:20.736 +03:00 [INF] Request finished in 1.0957ms 200 application/javascript +2018-09-21 11:05:20.736 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:05:20.736 +03:00 [INF] Request finished in 1.3467ms 200 application/javascript +2018-09-21 11:05:20.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:05:20.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.747 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:05:20.747 +03:00 [INF] Request finished in 2.743ms 200 application/javascript +2018-09-21 11:05:20.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:05:20.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:05:20.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.764 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:05:20.764 +03:00 [INF] Request finished in 6.3554ms 200 application/javascript +2018-09-21 11:05:20.770 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:05:20.770 +03:00 [INF] Request finished in 18.0858ms 200 application/javascript +2018-09-21 11:05:20.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:05:20.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.773 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:05:20.774 +03:00 [INF] Request finished in 2.1163ms 200 application/javascript +2018-09-21 11:05:20.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:05:20.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.783 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:05:20.783 +03:00 [INF] Request finished in 3.0841ms 200 application/javascript +2018-09-21 11:05:20.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:05:20.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:05:20.793 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:05:20.794 +03:00 [INF] Request finished in 1.7853ms 200 application/javascript +2018-09-21 11:05:20.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:05:20.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.795 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:05:20.795 +03:00 [INF] Request finished in 1.5744ms 200 application/javascript +2018-09-21 11:05:20.795 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:05:20.795 +03:00 [INF] Request finished in 1.3214ms 200 application/javascript +2018-09-21 11:05:20.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:05:20.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.802 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:05:20.802 +03:00 [INF] Request finished in 1.8932ms 200 application/javascript +2018-09-21 11:05:20.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:05:20.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.812 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:05:20.812 +03:00 [INF] Request finished in 2.0823ms 200 application/javascript +2018-09-21 11:05:20.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:05:20.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.824 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:05:20.824 +03:00 [INF] Request finished in 1.2947ms 200 application/javascript +2018-09-21 11:05:20.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:05:20.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.829 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:05:20.829 +03:00 [INF] Request finished in 0.7887ms 200 application/javascript +2018-09-21 11:05:20.829 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:05:20.829 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:05:20.829 +03:00 [INF] Request finished in 1.2516ms 200 application/javascript +2018-09-21 11:05:20.829 +03:00 [INF] Request finished in 2.0461ms 200 application/javascript +2018-09-21 11:05:20.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:05:20.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:05:20.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:05:20.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.842 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:05:20.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.844 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:05:20.844 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:05:20.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:05:20.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.845 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:05:20.845 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1252ms. +2018-09-21 11:05:20.845 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:05:20.845 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5832000000000002ms +2018-09-21 11:05:20.845 +03:00 [INF] Request finished in 4.2787ms 200 text/plain; charset=utf-8 +2018-09-21 11:05:20.845 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:05:20.846 +03:00 [INF] Request finished in 1.61ms 200 application/javascript +2018-09-21 11:05:20.846 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:05:20.846 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.846 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.846 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.846 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Request finished in 5.3739ms 200 image/svg+xml +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.847 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.848 +03:00 [INF] Authorization failed. +2018-09-21 11:05:20.851 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.9313ms. +2018-09-21 11:05:20.852 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:05:20.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:05:20.852 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.7217ms +2018-09-21 11:05:20.852 +03:00 [INF] Request finished in 20.7526ms 200 text/plain; charset=utf-8 +2018-09-21 11:05:20.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.856 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:05:20.857 +03:00 [INF] Request finished in 4.9615ms 200 image/png +2018-09-21 11:05:20.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:05:20.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.868 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:05:20.869 +03:00 [INF] Request finished in 2.7035ms 200 image/png +2018-09-21 11:05:20.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:05:20.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:05:20.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.872 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:05:20.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.872 +03:00 [INF] Request finished in 3.8875ms 200 image/png +2018-09-21 11:05:20.873 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:05:20.873 +03:00 [INF] Request finished in 2.383ms 200 image/png +2018-09-21 11:05:20.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:05:20.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.882 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:05:20.883 +03:00 [INF] Request finished in 1.8604ms 200 image/png +2018-09-21 11:05:20.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:05:20.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.897 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:05:20.897 +03:00 [INF] Request finished in 1.5247ms 200 image/png +2018-09-21 11:05:20.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:05:20.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.910 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.911 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:05:20.911 +03:00 [INF] Request finished in 2.1397ms 200 image/png +2018-09-21 11:05:20.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:05:20.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.913 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:05:20.913 +03:00 [INF] Request finished in 1.2676ms 200 image/png +2018-09-21 11:05:20.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:05:20.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:05:20.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.922 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:05:20.922 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:05:20.922 +03:00 [INF] Request finished in 1.5849ms 200 image/png +2018-09-21 11:05:20.922 +03:00 [INF] Request finished in 1.6033ms 200 image/png +2018-09-21 11:05:20.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:05:20.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.941 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:05:20.942 +03:00 [INF] Request finished in 1.1142ms 200 image/png +2018-09-21 11:05:20.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:05:20.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.949 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:05:20.949 +03:00 [INF] Request finished in 1.071ms 200 image/png +2018-09-21 11:05:20.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:05:20.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.964 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:05:20.964 +03:00 [INF] Request finished in 1.3405ms 200 image/png +2018-09-21 11:05:20.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:05:20.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:05:20.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:20.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:20.968 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:05:20.968 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:05:20.968 +03:00 [INF] Request finished in 1.0778ms 200 image/png +2018-09-21 11:05:20.968 +03:00 [INF] Request finished in 1.0766ms 200 image/png +2018-09-21 11:05:21.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:05:21.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:05:21.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:05:21.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.003 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:05:21.003 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:05:21.003 +03:00 [INF] Request finished in 1.6903ms 200 image/png +2018-09-21 11:05:21.003 +03:00 [INF] Request finished in 2.6769ms 200 image/png +2018-09-21 11:05:21.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:05:21.011 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:05:21.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.011 +03:00 [INF] Request finished in 10.1081ms 200 image/png +2018-09-21 11:05:21.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.012 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:05:21.012 +03:00 [INF] Request finished in 1.3864ms 200 image/png +2018-09-21 11:05:21.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:05:21.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.028 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:05:21.028 +03:00 [INF] Request finished in 1.3481ms 200 image/png +2018-09-21 11:05:21.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:05:21.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.050 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:05:21.050 +03:00 [INF] Request finished in 2.3141ms 200 font/woff2 +2018-09-21 11:05:21.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:05:21.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.051 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:05:21.051 +03:00 [INF] Request finished in 1.4535ms 200 image/png +2018-09-21 11:05:21.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:05:21.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.054 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:05:21.055 +03:00 [INF] Request finished in 3.3567ms 200 image/png +2018-09-21 11:05:21.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:05:21.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.061 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:05:21.061 +03:00 [INF] Request finished in 4.9838ms 200 image/png +2018-09-21 11:05:21.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:05:21.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:05:21.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.063 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:05:21.064 +03:00 [INF] Request finished in 1.6089ms 200 image/png +2018-09-21 11:05:21.064 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:05:21.064 +03:00 [INF] Request finished in 1.5869ms 200 image/png +2018-09-21 11:05:21.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:05:21.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:05:21.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:05:21.070 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:05:21.070 +03:00 [INF] Request finished in 1.714ms 200 image/png +2018-09-21 11:05:21.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.072 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:05:21.073 +03:00 [INF] Request finished in 2.8079ms 200 image/png +2018-09-21 11:05:21.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.074 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:05:21.075 +03:00 [INF] Request finished in 5.1855ms 200 image/png +2018-09-21 11:05:21.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:05:21.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:05:21.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.077 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.078 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:05:21.078 +03:00 [INF] Request finished in 1.0579ms 200 image/png +2018-09-21 11:05:21.078 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:05:21.078 +03:00 [INF] Request finished in 2.0096ms 200 image/png +2018-09-21 11:05:21.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:05:21.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.123 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:05:21.123 +03:00 [INF] Request finished in 2.1296ms 200 image/png +2018-09-21 11:05:21.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:05:21.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.125 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:05:21.126 +03:00 [INF] Request finished in 1.5281ms 200 image/png +2018-09-21 11:05:21.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:05:21.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.128 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:05:21.128 +03:00 [INF] Request finished in 1.0887ms 200 image/png +2018-09-21 11:05:21.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:05:21.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:05:21.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.133 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:05:21.134 +03:00 [INF] Request finished in 0.971ms 200 image/png +2018-09-21 11:05:21.134 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:05:21.134 +03:00 [INF] Request finished in 1.1211ms 200 image/png +2018-09-21 11:05:21.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:05:21.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.136 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:05:21.136 +03:00 [INF] Request finished in 1.4098ms 200 image/svg+xml +2018-09-21 11:05:21.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:05:21.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:05:21.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.150 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:05:21.150 +03:00 [INF] Request finished in 1.9057ms 200 application/javascript +2018-09-21 11:05:21.155 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:05:21.155 +03:00 [INF] Request finished in 8.5977ms 200 image/jpeg +2018-09-21 11:05:21.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:05:21.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.228 +03:00 [INF] Request finished in 2.05ms 404 +2018-09-21 11:05:21.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:05:21.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.494 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:05:21.494 +03:00 [INF] Request finished in 1.3776ms 200 image/png +2018-09-21 11:05:21.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:05:21.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.495 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:05:21.495 +03:00 [INF] Request finished in 0.9759ms 200 image/png +2018-09-21 11:05:21.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:05:21.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:05:21.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:05:21.728 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:05:21.728 +03:00 [INF] Request finished in 1.0385ms 200 text/css +2018-09-21 11:05:21.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:05:21.982 +03:00 [INF] Request finished in 1.4167ms 404 +2018-09-21 11:07:08.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:07:08.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.244 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:07:08.244 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:07:08.475 +03:00 [INF] Executed action /Index in 231.14620000000002ms +2018-09-21 11:07:08.476 +03:00 [INF] Request finished in 238.3082ms 200 text/html; charset=utf-8 +2018-09-21 11:07:08.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:07:08.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.513 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:07:08.514 +03:00 [INF] Request finished in 4.9686ms 200 text/css +2018-09-21 11:07:08.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:07:08.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.520 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:07:08.520 +03:00 [INF] Request finished in 1.7421ms 200 text/css +2018-09-21 11:07:08.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:07:08.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.526 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:07:08.527 +03:00 [INF] Request finished in 3.4941ms 200 text/css +2018-09-21 11:07:08.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:07:08.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.536 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:07:08.536 +03:00 [INF] Request finished in 2.1244ms 200 text/css +2018-09-21 11:07:08.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:07:08.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.543 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:07:08.543 +03:00 [INF] Request finished in 2.3119ms 200 text/css +2018-09-21 11:07:08.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:07:08.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.554 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:07:08.555 +03:00 [INF] Request finished in 2.1848ms 200 text/css +2018-09-21 11:07:08.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:07:08.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.559 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:07:08.559 +03:00 [INF] Request finished in 1.5922ms 200 text/css +2018-09-21 11:07:08.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:07:08.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.566 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:07:08.566 +03:00 [INF] Request finished in 1.2368ms 200 text/css +2018-09-21 11:07:08.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:07:08.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.583 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:07:08.583 +03:00 [INF] Request finished in 1.7668ms 200 application/javascript +2018-09-21 11:07:08.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:07:08.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:07:08.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:07:08.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.591 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:07:08.591 +03:00 [INF] Request finished in 1.558ms 200 application/javascript +2018-09-21 11:07:08.597 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:07:08.598 +03:00 [INF] Request finished in 10.4378ms 200 application/javascript +2018-09-21 11:07:08.600 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:07:08.600 +03:00 [INF] Request finished in 10.5272ms 200 application/javascript +2018-09-21 11:07:08.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:08.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.606 +03:00 [INF] Request finished in 1.3222ms 404 +2018-09-21 11:07:08.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:07:08.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.612 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:07:08.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:07:08.613 +03:00 [INF] Request finished in 4.9335ms 200 application/javascript +2018-09-21 11:07:08.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.615 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:07:08.615 +03:00 [INF] Request finished in 2.6126ms 200 application/javascript +2018-09-21 11:07:08.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:07:08.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:07:08.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.622 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:07:08.623 +03:00 [INF] Request finished in 3.2574ms 200 application/javascript +2018-09-21 11:07:08.624 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:07:08.624 +03:00 [INF] Request finished in 3.1619ms 200 application/javascript +2018-09-21 11:07:08.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:07:08.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.637 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:07:08.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:07:08.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.638 +03:00 [INF] Request finished in 10.8238ms 200 application/javascript +2018-09-21 11:07:08.638 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:07:08.639 +03:00 [INF] Request finished in 2.4955ms 200 application/javascript +2018-09-21 11:07:08.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:07:08.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.647 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:07:08.647 +03:00 [INF] Request finished in 2.1973ms 200 application/javascript +2018-09-21 11:07:08.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:07:08.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.662 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:07:08.662 +03:00 [INF] Request finished in 1.2651ms 200 application/javascript +2018-09-21 11:07:08.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:07:08.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.669 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:07:08.669 +03:00 [INF] Request finished in 3.1413ms 200 application/javascript +2018-09-21 11:07:08.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:07:08.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.678 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:07:08.678 +03:00 [INF] Request finished in 1.9716ms 200 application/javascript +2018-09-21 11:07:08.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:07:08.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:07:08.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.682 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:07:08.682 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:07:08.682 +03:00 [INF] Request finished in 3.5888ms 200 application/javascript +2018-09-21 11:07:08.682 +03:00 [INF] Request finished in 3.6113ms 200 application/javascript +2018-09-21 11:07:08.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:07:08.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.685 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:07:08.685 +03:00 [INF] Request finished in 1.237ms 200 application/javascript +2018-09-21 11:07:08.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:07:08.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:07:08.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.692 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:07:08.692 +03:00 [INF] Request finished in 1.6528ms 200 application/javascript +2018-09-21 11:07:08.692 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:07:08.693 +03:00 [INF] Request finished in 3.4076ms 200 application/javascript +2018-09-21 11:07:08.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:07:08.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.697 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:07:08.697 +03:00 [INF] Request finished in 4.5459ms 200 application/javascript +2018-09-21 11:07:08.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:07:08.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.704 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:07:08.704 +03:00 [INF] Request finished in 2.7659ms 200 application/javascript +2018-09-21 11:07:08.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:07:08.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:07:08.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.720 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:08.721 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:07:08.721 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.722 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.723 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1312ms. +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8383ms +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.724 +03:00 [INF] Request finished in 8.7885ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:08.724 +03:00 [INF] Authorization failed. +2018-09-21 11:07:08.726 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0390000000000006ms. +2018-09-21 11:07:08.727 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:08.727 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.6848ms +2018-09-21 11:07:08.727 +03:00 [INF] Request finished in 16.7403ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:08.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:07:08.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.732 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:07:08.732 +03:00 [INF] Request finished in 1.199ms 200 application/javascript +2018-09-21 11:07:08.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:07:08.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.744 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:07:08.745 +03:00 [INF] Request finished in 1.7066ms 200 application/javascript +2018-09-21 11:07:08.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:07:08.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.752 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:07:08.752 +03:00 [INF] Request finished in 1.42ms 200 image/svg+xml +2018-09-21 11:07:08.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:07:08.767 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.768 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:07:08.768 +03:00 [INF] Request finished in 1.4155ms 200 image/png +2018-09-21 11:07:08.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:07:08.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.784 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:07:08.784 +03:00 [INF] Request finished in 1.0614ms 200 image/png +2018-09-21 11:07:08.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:07:08.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.792 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:07:08.792 +03:00 [INF] Request finished in 1.3122ms 200 image/png +2018-09-21 11:07:08.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:07:08.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.799 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:07:08.799 +03:00 [INF] Request finished in 1.6282ms 200 image/png +2018-09-21 11:07:08.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:07:08.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.804 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:07:08.804 +03:00 [INF] Request finished in 1.0574ms 200 image/png +2018-09-21 11:07:08.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:07:08.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.817 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:07:08.817 +03:00 [INF] Request finished in 2.0104ms 200 image/png +2018-09-21 11:07:08.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:07:08.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.827 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.828 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:07:08.828 +03:00 [INF] Request finished in 1.2319ms 200 image/png +2018-09-21 11:07:08.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:07:08.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.834 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:07:08.834 +03:00 [INF] Request finished in 1.4424ms 200 image/png +2018-09-21 11:07:08.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:07:08.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.840 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:07:08.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:07:08.840 +03:00 [INF] Request finished in 1.1224ms 200 image/png +2018-09-21 11:07:08.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.841 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:07:08.842 +03:00 [INF] Request finished in 2.0378ms 200 image/png +2018-09-21 11:07:08.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:07:08.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.845 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:07:08.845 +03:00 [INF] Request finished in 1.127ms 200 image/png +2018-09-21 11:07:08.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:07:08.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.852 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:07:08.852 +03:00 [INF] Request finished in 1.4652ms 200 image/png +2018-09-21 11:07:08.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:07:08.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.856 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:07:08.856 +03:00 [INF] Request finished in 1.0701ms 200 image/png +2018-09-21 11:07:08.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:07:08.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.860 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:07:08.860 +03:00 [INF] Request finished in 1.0944ms 200 image/png +2018-09-21 11:07:08.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:07:08.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.866 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:07:08.866 +03:00 [INF] Request finished in 1.225ms 200 image/png +2018-09-21 11:07:08.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:07:08.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.877 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:07:08.877 +03:00 [INF] Request finished in 5.6049ms 200 image/png +2018-09-21 11:07:08.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:07:08.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:07:08.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.887 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:07:08.887 +03:00 [INF] Request finished in 2.5033ms 200 font/woff2 +2018-09-21 11:07:08.888 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:07:08.888 +03:00 [INF] Request finished in 7.6483ms 200 image/png +2018-09-21 11:07:08.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:07:08.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.903 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:07:08.903 +03:00 [INF] Request finished in 5.357ms 200 image/png +2018-09-21 11:07:08.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:07:08.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.912 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:07:08.913 +03:00 [INF] Request finished in 2.23ms 200 image/png +2018-09-21 11:07:08.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:07:08.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.918 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:07:08.918 +03:00 [INF] Request finished in 1.6909ms 200 image/png +2018-09-21 11:07:08.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:07:08.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:07:08.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.923 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:07:08.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.923 +03:00 [INF] Request finished in 1.2303ms 200 image/png +2018-09-21 11:07:08.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.924 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:07:08.924 +03:00 [INF] Request finished in 4.0244ms 200 image/png +2018-09-21 11:07:08.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:07:08.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.927 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:07:08.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:07:08.927 +03:00 [INF] Request finished in 2.4646ms 200 image/png +2018-09-21 11:07:08.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.930 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:07:08.930 +03:00 [INF] Request finished in 3.3224ms 200 image/png +2018-09-21 11:07:08.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:07:08.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.935 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:07:08.935 +03:00 [INF] Request finished in 1.8213ms 200 image/png +2018-09-21 11:07:08.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:07:08.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:07:08.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.937 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:07:08.937 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:07:08.937 +03:00 [INF] Request finished in 0.9305ms 200 image/png +2018-09-21 11:07:08.937 +03:00 [INF] Request finished in 1.0278ms 200 image/png +2018-09-21 11:07:08.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:07:08.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:07:08.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.943 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:07:08.943 +03:00 [INF] Request finished in 0.8934ms 200 image/png +2018-09-21 11:07:08.943 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:07:08.943 +03:00 [INF] Request finished in 1.2077ms 200 image/png +2018-09-21 11:07:08.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:07:08.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.950 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:07:08.951 +03:00 [INF] Request finished in 1.1988ms 200 image/png +2018-09-21 11:07:08.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:07:08.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.955 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:07:08.955 +03:00 [INF] Request finished in 1.5072ms 200 image/png +2018-09-21 11:07:08.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:07:08.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.956 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:07:08.956 +03:00 [INF] Request finished in 1.0415ms 200 image/png +2018-09-21 11:07:08.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:07:08.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.959 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:07:08.959 +03:00 [INF] Request finished in 1.057ms 200 image/png +2018-09-21 11:07:08.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:07:08.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.967 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:07:08.967 +03:00 [INF] Request finished in 1.8072ms 200 image/png +2018-09-21 11:07:08.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:07:08.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.971 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:07:08.971 +03:00 [INF] Request finished in 1.3863ms 200 image/png +2018-09-21 11:07:08.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:07:08.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.973 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:07:08.973 +03:00 [INF] Request finished in 0.9992ms 200 image/svg+xml +2018-09-21 11:07:08.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:07:08.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:08.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:08.992 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:07:08.993 +03:00 [INF] Request finished in 10.1868ms 200 image/jpeg +2018-09-21 11:07:09.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:09.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:09.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:09.127 +03:00 [INF] Request finished in 1.2336ms 404 +2018-09-21 11:07:09.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:07:09.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:09.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:09.325 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:07:09.325 +03:00 [INF] Request finished in 1.0612ms 200 image/png +2018-09-21 11:07:09.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:07:09.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:09.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:09.328 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:07:09.328 +03:00 [INF] Request finished in 1.1973ms 200 image/png +2018-09-21 11:07:09.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:07:09.741 +03:00 [INF] Request finished in 0.914ms 404 +2018-09-21 11:07:20.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:07:20.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:20.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:20.937 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:07:20.937 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:07:21.287 +03:00 [INF] Executed action /Index in 350.4096ms +2018-09-21 11:07:21.287 +03:00 [INF] Request finished in 358.8122ms 200 text/html; charset=utf-8 +2018-09-21 11:07:21.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:07:21.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.332 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:07:21.332 +03:00 [INF] Request finished in 5.9836ms 200 text/css +2018-09-21 11:07:21.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:07:21.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.338 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:07:21.338 +03:00 [INF] Request finished in 1.9088ms 200 text/css +2018-09-21 11:07:21.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:07:21.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.342 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:07:21.343 +03:00 [INF] Request finished in 3.4455ms 200 text/css +2018-09-21 11:07:21.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:07:21.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.348 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:07:21.348 +03:00 [INF] Request finished in 1.6787ms 200 text/css +2018-09-21 11:07:21.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:07:21.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.362 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:07:21.363 +03:00 [INF] Request finished in 2.2211ms 200 text/css +2018-09-21 11:07:21.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:07:21.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.378 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:07:21.378 +03:00 [INF] Request finished in 2.6305ms 200 text/css +2018-09-21 11:07:21.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:07:21.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.381 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:07:21.381 +03:00 [INF] Request finished in 2.2393ms 200 text/css +2018-09-21 11:07:21.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:07:21.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.399 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:07:21.399 +03:00 [INF] Request finished in 2.9797ms 200 text/css +2018-09-21 11:07:21.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:07:21.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:07:21.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.412 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:07:21.412 +03:00 [INF] Request finished in 1.2313ms 200 application/javascript +2018-09-21 11:07:21.417 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:07:21.418 +03:00 [INF] Request finished in 6.2629ms 200 application/javascript +2018-09-21 11:07:21.419 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:07:21.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.420 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:07:21.420 +03:00 [INF] Request finished in 1.0856ms 200 image/svg+xml +2018-09-21 11:07:21.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:07:21.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.427 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:07:21.427 +03:00 [INF] Request finished in 1.249ms 200 image/png +2018-09-21 11:07:21.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:07:21.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.439 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:07:21.439 +03:00 [INF] Request finished in 1.3977ms 200 image/png +2018-09-21 11:07:21.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:07:21.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:07:21.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.445 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:07:21.446 +03:00 [INF] Request finished in 2.9298ms 200 image/png +2018-09-21 11:07:21.446 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:07:21.446 +03:00 [INF] Request finished in 2.3793ms 200 image/png +2018-09-21 11:07:21.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:07:21.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.450 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:07:21.450 +03:00 [INF] Request finished in 1.9523ms 200 image/png +2018-09-21 11:07:21.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:07:21.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.454 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:07:21.454 +03:00 [INF] Request finished in 2.0071ms 200 image/png +2018-09-21 11:07:21.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:07:21.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:07:21.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.459 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:07:21.459 +03:00 [INF] Request finished in 1.5811ms 200 image/png +2018-09-21 11:07:21.460 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:07:21.460 +03:00 [INF] Request finished in 1.1749ms 200 image/png +2018-09-21 11:07:21.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:07:21.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.467 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:07:21.468 +03:00 [INF] Request finished in 1.3909ms 200 image/png +2018-09-21 11:07:21.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:07:21.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:07:21.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.472 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:07:21.472 +03:00 [INF] Request finished in 1.97ms 200 image/png +2018-09-21 11:07:21.473 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:07:21.473 +03:00 [INF] Request finished in 1.5776ms 200 image/png +2018-09-21 11:07:21.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:07:21.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.488 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:07:21.488 +03:00 [INF] Request finished in 2.7654ms 200 image/png +2018-09-21 11:07:21.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:07:21.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.498 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:07:21.498 +03:00 [INF] Request finished in 1.2386ms 200 image/png +2018-09-21 11:07:21.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:07:21.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.507 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:07:21.507 +03:00 [INF] Request finished in 1.2016ms 200 image/png +2018-09-21 11:07:21.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:07:21.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.536 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:07:21.536 +03:00 [INF] Request finished in 1.2466ms 200 image/png +2018-09-21 11:07:21.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:07:21.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.549 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:07:21.549 +03:00 [INF] Request finished in 1.1983ms 200 image/png +2018-09-21 11:07:21.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:07:21.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:07:21.565 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:07:21.565 +03:00 [INF] Request finished in 10.461ms 200 image/png +2018-09-21 11:07:21.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.569 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:07:21.569 +03:00 [INF] Request finished in 4.995ms 200 image/png +2018-09-21 11:07:21.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:07:21.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:07:21.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.588 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:07:21.588 +03:00 [INF] Request finished in 1.2147ms 200 image/png +2018-09-21 11:07:21.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.591 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:07:21.592 +03:00 [INF] Request finished in 4.9762ms 200 image/png +2018-09-21 11:07:21.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:07:21.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.601 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:07:21.601 +03:00 [INF] Request finished in 1.0603ms 200 image/png +2018-09-21 11:07:21.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:07:21.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.617 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:07:21.617 +03:00 [INF] Request finished in 1.774ms 200 image/png +2018-09-21 11:07:21.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:07:21.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.622 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:07:21.623 +03:00 [INF] Request finished in 3.0351ms 200 image/png +2018-09-21 11:07:21.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:07:21.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.644 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:07:21.644 +03:00 [INF] Request finished in 4.2269ms 200 image/png +2018-09-21 11:07:21.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:07:21.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.649 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:07:21.649 +03:00 [INF] Request finished in 1.3293ms 200 image/png +2018-09-21 11:07:21.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:07:21.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:07:21.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.654 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:07:21.654 +03:00 [INF] Request finished in 1.0517ms 200 image/png +2018-09-21 11:07:21.654 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:07:21.654 +03:00 [INF] Request finished in 0.8975ms 200 image/png +2018-09-21 11:07:21.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:07:21.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.655 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:07:21.655 +03:00 [INF] Request finished in 1.1395ms 200 image/png +2018-09-21 11:07:21.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:07:21.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.660 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:07:21.660 +03:00 [INF] Request finished in 3.4083ms 200 image/png +2018-09-21 11:07:21.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:07:21.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:07:21.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.665 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:07:21.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.665 +03:00 [INF] Request finished in 1.1714ms 200 image/png +2018-09-21 11:07:21.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:07:21.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.665 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:07:21.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.665 +03:00 [INF] Request finished in 1.3625ms 200 image/png +2018-09-21 11:07:21.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:07:21.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.666 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:07:21.666 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:07:21.666 +03:00 [INF] Request finished in 0.756ms 200 image/png +2018-09-21 11:07:21.666 +03:00 [INF] Request finished in 1.2025ms 200 image/png +2018-09-21 11:07:21.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:07:21.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.667 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:07:21.667 +03:00 [INF] Request finished in 0.9649ms 200 image/png +2018-09-21 11:07:21.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:21.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:07:21.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.679 +03:00 [INF] Request finished in 1.1687ms 404 +2018-09-21 11:07:21.680 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:07:21.680 +03:00 [INF] Request finished in 2.2081ms 200 application/javascript +2018-09-21 11:07:21.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:07:21.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:07:21.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.685 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.685 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:07:21.685 +03:00 [INF] Request finished in 4.876ms 200 application/javascript +2018-09-21 11:07:21.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:07:21.686 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:07:21.686 +03:00 [INF] Request finished in 2.5944ms 200 application/javascript +2018-09-21 11:07:21.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:07:21.687 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.688 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:07:21.688 +03:00 [INF] Request finished in 2.2081ms 200 image/png +2018-09-21 11:07:21.689 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:07:21.689 +03:00 [INF] Request finished in 1.4666ms 200 image/svg+xml +2018-09-21 11:07:21.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:07:21.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:07:21.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.695 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:07:21.695 +03:00 [INF] Request finished in 1.7097ms 200 application/javascript +2018-09-21 11:07:21.695 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:07:21.695 +03:00 [INF] Request finished in 1.7871ms 200 application/javascript +2018-09-21 11:07:21.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:07:21.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.702 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:07:21.702 +03:00 [INF] Request finished in 3.2331ms 200 application/javascript +2018-09-21 11:07:21.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:07:21.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:07:21.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.712 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:07:21.712 +03:00 [INF] Request finished in 1.7917ms 200 application/javascript +2018-09-21 11:07:21.716 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:07:21.716 +03:00 [INF] Request finished in 11.1282ms 200 application/javascript +2018-09-21 11:07:21.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:07:21.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.722 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:07:21.722 +03:00 [INF] Request finished in 1.1178ms 200 application/javascript +2018-09-21 11:07:21.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:07:21.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.744 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:07:21.744 +03:00 [INF] Request finished in 1.0493ms 200 application/javascript +2018-09-21 11:07:21.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:07:21.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:07:21.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.746 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:07:21.746 +03:00 [INF] Request finished in 1.2498ms 200 application/javascript +2018-09-21 11:07:21.747 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:07:21.747 +03:00 [INF] Request finished in 1.6944ms 200 application/javascript +2018-09-21 11:07:21.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:07:21.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.770 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:07:21.770 +03:00 [INF] Request finished in 1.4336ms 200 application/javascript +2018-09-21 11:07:21.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:07:21.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:07:21.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:07:21.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.777 +03:00 [INF] Request finished in 3.3793ms 200 application/javascript +2018-09-21 11:07:21.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:07:21.779 +03:00 [INF] Request finished in 4.6834ms 200 application/javascript +2018-09-21 11:07:21.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:07:21.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.786 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:07:21.786 +03:00 [INF] Request finished in 1.3141ms 200 application/javascript +2018-09-21 11:07:21.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:07:21.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.800 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:07:21.800 +03:00 [INF] Request finished in 1.8884ms 200 application/javascript +2018-09-21 11:07:21.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:07:21.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:07:21.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.809 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:07:21.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.809 +03:00 [INF] Request finished in 3.6118ms 200 font/woff2 +2018-09-21 11:07:21.810 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:07:21.811 +03:00 [INF] Request finished in 2.476ms 200 application/javascript +2018-09-21 11:07:21.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:07:21.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.814 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:07:21.814 +03:00 [INF] Request finished in 1.2584ms 200 application/javascript +2018-09-21 11:07:21.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:07:21.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.831 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:21.831 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.832 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.833 +03:00 [INF] Authorization failed. +2018-09-21 11:07:21.835 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.3577000000000004ms. +2018-09-21 11:07:21.835 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:21.835 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.5572ms +2018-09-21 11:07:21.835 +03:00 [INF] Request finished in 13.8875ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:21.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:07:21.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.844 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:21.846 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:07:21.846 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12340000000000001ms. +2018-09-21 11:07:21.847 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:21.847 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0206ms +2018-09-21 11:07:21.847 +03:00 [INF] Request finished in 6.7564ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:21.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:07:21.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.858 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:07:21.858 +03:00 [INF] Request finished in 1.4153ms 200 application/javascript +2018-09-21 11:07:21.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:07:21.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.871 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.872 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:07:21.872 +03:00 [INF] Request finished in 1.1213ms 200 application/javascript +2018-09-21 11:07:21.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:07:21.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.912 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:07:21.912 +03:00 [INF] Request finished in 8.7813ms 200 image/jpeg +2018-09-21 11:07:21.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:21.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:21.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:21.984 +03:00 [INF] Request finished in 1.0571ms 404 +2018-09-21 11:07:22.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:07:22.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:22.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:22.195 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:07:22.196 +03:00 [INF] Request finished in 3.2962ms 200 image/png +2018-09-21 11:07:22.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:07:22.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:22.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:22.198 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:07:22.198 +03:00 [INF] Request finished in 0.9141ms 200 image/png +2018-09-21 11:07:22.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:07:22.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:22.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:22.324 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:07:22.324 +03:00 [INF] Request finished in 3.5941ms 200 text/css +2018-09-21 11:07:22.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:07:22.609 +03:00 [INF] Request finished in 0.9009ms 404 +2018-09-21 11:07:57.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:07:57.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.211 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:07:57.211 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:07:57.485 +03:00 [INF] Executed action /Index in 274.28110000000004ms +2018-09-21 11:07:57.486 +03:00 [INF] Request finished in 283.6495ms 200 text/html; charset=utf-8 +2018-09-21 11:07:57.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:07:57.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.534 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:07:57.534 +03:00 [INF] Request finished in 5.0051ms 200 text/css +2018-09-21 11:07:57.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:07:57.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.544 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:07:57.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:07:57.545 +03:00 [INF] Request finished in 3.5274ms 200 text/css +2018-09-21 11:07:57.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.547 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:07:57.548 +03:00 [INF] Request finished in 3.0812ms 200 text/css +2018-09-21 11:07:57.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:07:57.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.553 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:07:57.553 +03:00 [INF] Request finished in 3.2486ms 200 text/css +2018-09-21 11:07:57.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:07:57.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.559 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:07:57.560 +03:00 [INF] Request finished in 4.798ms 200 text/css +2018-09-21 11:07:57.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:07:57.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.567 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:07:57.567 +03:00 [INF] Request finished in 2.0715ms 200 text/css +2018-09-21 11:07:57.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:07:57.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:07:57.572 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.572 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.572 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:07:57.572 +03:00 [INF] Request finished in 1.4919ms 200 text/css +2018-09-21 11:07:57.573 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:07:57.573 +03:00 [INF] Request finished in 1.0642ms 200 text/css +2018-09-21 11:07:57.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:07:57.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.576 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:07:57.576 +03:00 [INF] Request finished in 1.6978ms 200 application/javascript +2018-09-21 11:07:57.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:07:57.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:07:57.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.613 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:07:57.613 +03:00 [INF] Request finished in 1.8538ms 200 application/javascript +2018-09-21 11:07:57.615 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:07:57.615 +03:00 [INF] Request finished in 7.4142ms 200 application/javascript +2018-09-21 11:07:57.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:57.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:07:57.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.652 +03:00 [INF] Request finished in 2.0537ms 404 +2018-09-21 11:07:57.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:07:57.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.656 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:07:57.657 +03:00 [INF] Request finished in 2.2098ms 200 application/javascript +2018-09-21 11:07:57.658 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:07:57.658 +03:00 [INF] Request finished in 6.615ms 200 application/javascript +2018-09-21 11:07:57.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:07:57.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.665 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:07:57.665 +03:00 [INF] Request finished in 2.3278ms 200 application/javascript +2018-09-21 11:07:57.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:07:57.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:07:57.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:07:57.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.692 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:07:57.692 +03:00 [INF] Request finished in 20.6918ms 200 application/javascript +2018-09-21 11:07:57.692 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:07:57.692 +03:00 [INF] Request finished in 4.6552ms 200 application/javascript +2018-09-21 11:07:57.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:07:57.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.698 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:07:57.698 +03:00 [INF] Request finished in 12.1006ms 200 application/javascript +2018-09-21 11:07:57.708 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:07:57.709 +03:00 [INF] Request finished in 10.724ms 200 application/javascript +2018-09-21 11:07:57.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:07:57.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.713 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:07:57.713 +03:00 [INF] Request finished in 2.6507ms 200 application/javascript +2018-09-21 11:07:57.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:07:57.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.715 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:07:57.716 +03:00 [INF] Request finished in 1.7989ms 200 application/javascript +2018-09-21 11:07:57.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:07:57.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.717 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:07:57.717 +03:00 [INF] Request finished in 1.2287ms 200 application/javascript +2018-09-21 11:07:57.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:07:57.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.725 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:07:57.726 +03:00 [INF] Request finished in 1.5796ms 200 application/javascript +2018-09-21 11:07:57.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:07:57.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:07:57.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.737 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:07:57.737 +03:00 [INF] Request finished in 1.5658ms 200 application/javascript +2018-09-21 11:07:57.737 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:07:57.737 +03:00 [INF] Request finished in 3.8285ms 200 application/javascript +2018-09-21 11:07:57.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:07:57.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.748 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:07:57.749 +03:00 [INF] Request finished in 2.2182ms 200 application/javascript +2018-09-21 11:07:57.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:07:57.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.752 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:07:57.752 +03:00 [INF] Request finished in 1.9748ms 200 application/javascript +2018-09-21 11:07:57.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:07:57.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.759 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:07:57.759 +03:00 [INF] Request finished in 2.0594ms 200 application/javascript +2018-09-21 11:07:57.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:07:57.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.763 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:07:57.764 +03:00 [INF] Request finished in 4.2088ms 200 application/javascript +2018-09-21 11:07:57.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:07:57.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.785 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:07:57.785 +03:00 [INF] Request finished in 3.714ms 200 application/javascript +2018-09-21 11:07:57.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:07:57.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:07:57.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.800 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:57.801 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:07:57.801 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.802 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:07:57.802 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.803 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.803 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.803 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.803 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:07:57.803 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11610000000000001ms. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:07:57.804 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4746000000000001ms +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.804 +03:00 [INF] Request finished in 5.5057ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:57.804 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.805 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.805 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.805 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.805 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.805 +03:00 [INF] Authorization failed. +2018-09-21 11:07:57.806 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:07:57.806 +03:00 [INF] Request finished in 1.6727ms 200 application/javascript +2018-09-21 11:07:57.807 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.1931ms. +2018-09-21 11:07:57.807 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:07:57.807 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.3878ms +2018-09-21 11:07:57.807 +03:00 [INF] Request finished in 15.4637ms 200 text/plain; charset=utf-8 +2018-09-21 11:07:57.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:07:57.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.815 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:07:57.815 +03:00 [INF] Request finished in 1.3238ms 200 image/svg+xml +2018-09-21 11:07:57.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:07:57.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.820 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:07:57.821 +03:00 [INF] Request finished in 1.5725ms 200 application/javascript +2018-09-21 11:07:57.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:07:57.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.826 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:07:57.826 +03:00 [INF] Request finished in 1.0176ms 200 image/png +2018-09-21 11:07:57.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:07:57.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.830 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:07:57.831 +03:00 [INF] Request finished in 0.9299ms 200 image/png +2018-09-21 11:07:57.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:07:57.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.837 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:07:57.837 +03:00 [INF] Request finished in 2.1616ms 200 image/png +2018-09-21 11:07:57.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:07:57.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:07:57.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.838 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:07:57.838 +03:00 [INF] Request finished in 1.2715ms 200 image/png +2018-09-21 11:07:57.838 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:07:57.839 +03:00 [INF] Request finished in 1.2153ms 200 image/png +2018-09-21 11:07:57.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:07:57.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.849 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:07:57.849 +03:00 [INF] Request finished in 3.0513ms 200 image/png +2018-09-21 11:07:57.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:07:57.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.857 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:07:57.857 +03:00 [INF] Request finished in 1.447ms 200 image/png +2018-09-21 11:07:57.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:07:57.898 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:07:57.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.899 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:07:57.899 +03:00 [INF] Request finished in 1.7304ms 200 image/png +2018-09-21 11:07:57.900 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:07:57.900 +03:00 [INF] Request finished in 1.6155ms 200 image/png +2018-09-21 11:07:57.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:07:57.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.910 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:07:57.910 +03:00 [INF] Request finished in 1.1258ms 200 image/png +2018-09-21 11:07:57.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:07:57.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.926 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:07:57.928 +03:00 [INF] Request finished in 3.4976ms 200 image/png +2018-09-21 11:07:57.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:07:57.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:07:57.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.944 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:07:57.945 +03:00 [INF] Request finished in 4.2989ms 200 image/png +2018-09-21 11:07:57.945 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:07:57.946 +03:00 [INF] Request finished in 2.1649ms 200 image/png +2018-09-21 11:07:57.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:07:57.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:07:57.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.949 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:07:57.949 +03:00 [INF] Request finished in 3.651ms 200 image/png +2018-09-21 11:07:57.950 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:07:57.950 +03:00 [INF] Request finished in 4.4097ms 200 image/png +2018-09-21 11:07:57.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:07:57.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.955 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:07:57.955 +03:00 [INF] Request finished in 1.7275ms 200 image/png +2018-09-21 11:07:57.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:07:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:07:57.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.963 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:07:57.963 +03:00 [INF] Request finished in 3.4903ms 200 font/woff2 +2018-09-21 11:07:57.965 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:07:57.966 +03:00 [INF] Request finished in 6.7394ms 200 image/png +2018-09-21 11:07:57.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:07:57.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:07:57.972 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:07:57.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.972 +03:00 [INF] Request finished in 4.9611ms 200 image/png +2018-09-21 11:07:57.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.972 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:07:57.973 +03:00 [INF] Request finished in 3.2277ms 200 image/png +2018-09-21 11:07:57.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:07:57.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.981 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:07:57.981 +03:00 [INF] Request finished in 1.7248ms 200 image/png +2018-09-21 11:07:57.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:07:57.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.984 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:07:57.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:07:57.984 +03:00 [INF] Request finished in 2.4392ms 200 image/png +2018-09-21 11:07:57.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.985 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:07:57.985 +03:00 [INF] Request finished in 2.6251ms 200 image/png +2018-09-21 11:07:57.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:07:57.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.993 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:07:57.995 +03:00 [INF] Request finished in 2.8961ms 200 image/png +2018-09-21 11:07:57.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:07:57.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.997 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:07:57.997 +03:00 [INF] Request finished in 1.1939ms 200 image/png +2018-09-21 11:07:57.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:07:57.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:07:57.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:57.999 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:07:57.999 +03:00 [INF] Request finished in 1.3295ms 200 image/png +2018-09-21 11:07:57.999 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:07:57.999 +03:00 [INF] Request finished in 1.4544ms 200 image/png +2018-09-21 11:07:57.999 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:07:57.999 +03:00 [INF] Request finished in 3.0411ms 200 image/png +2018-09-21 11:07:58.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:07:58.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.005 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.006 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:07:58.006 +03:00 [INF] Request finished in 1.1805ms 200 image/png +2018-09-21 11:07:58.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:07:58.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:07:58.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.012 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:07:58.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.012 +03:00 [INF] Request finished in 1.9915ms 200 image/png +2018-09-21 11:07:58.013 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:07:58.013 +03:00 [INF] Request finished in 1.6996ms 200 image/png +2018-09-21 11:07:58.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:07:58.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.018 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:07:58.018 +03:00 [INF] Request finished in 4.6214ms 200 image/png +2018-09-21 11:07:58.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:07:58.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:07:58.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:07:58.022 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:07:58.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.022 +03:00 [INF] Request finished in 1.263ms 200 image/png +2018-09-21 11:07:58.022 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:07:58.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.022 +03:00 [INF] Request finished in 1.882ms 200 image/png +2018-09-21 11:07:58.023 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:07:58.023 +03:00 [INF] Request finished in 1.4694ms 200 image/png +2018-09-21 11:07:58.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:07:58.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:07:58.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.041 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:07:58.041 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:07:58.041 +03:00 [INF] Request finished in 1.4648ms 200 image/png +2018-09-21 11:07:58.041 +03:00 [INF] Request finished in 0.9869ms 200 image/svg+xml +2018-09-21 11:07:58.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:07:58.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.055 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:07:58.056 +03:00 [INF] Request finished in 12.9243ms 200 image/jpeg +2018-09-21 11:07:58.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:07:58.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.177 +03:00 [INF] Request finished in 2.344ms 404 +2018-09-21 11:07:58.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:07:58.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.432 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:07:58.433 +03:00 [INF] Request finished in 1.2416ms 200 image/png +2018-09-21 11:07:58.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:07:58.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.438 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:07:58.438 +03:00 [INF] Request finished in 2.8ms 200 image/png +2018-09-21 11:07:58.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:07:58.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:07:58.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:07:58.666 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:07:58.666 +03:00 [INF] Request finished in 1.1981ms 200 text/css +2018-09-21 11:07:58.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:07:58.889 +03:00 [INF] Request finished in 0.9136ms 404 +2018-09-21 11:08:06.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:08:06.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.640 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:08:06.668 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:08:06.676 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:08:06.677 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:08:06.677 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:08:06.677 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 9.4184ms. +2018-09-21 11:08:06.679 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:08:06.679 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 38.8477ms +2018-09-21 11:08:06.679 +03:00 [INF] Request finished in 46.2903ms 302 +2018-09-21 11:08:06.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:08:06.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.702 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:08:06.726 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:06.774 +03:00 [INF] Executed action /Account/Login in 71.9256ms +2018-09-21 11:08:06.775 +03:00 [INF] Request finished in 78.907ms 200 text/html; charset=utf-8 +2018-09-21 11:08:06.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:06.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.828 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:06.828 +03:00 [INF] Request finished in 5.5547ms 200 text/css +2018-09-21 11:08:06.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:06.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.831 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:06.831 +03:00 [INF] Request finished in 1.3645ms 200 text/css +2018-09-21 11:08:06.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:06.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.848 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:06.848 +03:00 [INF] Request finished in 2.5408ms 200 text/css +2018-09-21 11:08:06.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:06.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:06.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:06.862 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:06.863 +03:00 [INF] Request finished in 1.3052ms 200 text/css +2018-09-21 11:08:06.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.863 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:06.863 +03:00 [INF] Request finished in 2.7644ms 200 text/css +2018-09-21 11:08:06.864 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:06.864 +03:00 [INF] Request finished in 2.978ms 200 text/css +2018-09-21 11:08:06.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:06.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.868 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:06.868 +03:00 [INF] Request finished in 1.6245ms 200 text/css +2018-09-21 11:08:06.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:06.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.869 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:06.869 +03:00 [INF] Request finished in 0.9431ms 200 text/css +2018-09-21 11:08:06.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:06.878 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:06.880 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:06.880 +03:00 [INF] Request finished in 2.0921ms 200 application/javascript +2018-09-21 11:08:06.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:06.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:08:06.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.885 +03:00 [INF] Request finished in 1.9355ms 404 +2018-09-21 11:08:06.888 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:06.888 +03:00 [INF] Request finished in 8.5854ms 200 application/javascript +2018-09-21 11:08:06.888 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:06.889 +03:00 [INF] Request finished in 5.7886ms 200 application/javascript +2018-09-21 11:08:06.889 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:06.890 +03:00 [INF] Request finished in 5.8672ms 200 application/javascript +2018-09-21 11:08:06.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:06.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.905 +03:00 [INF] Request finished in 3.2524ms 404 +2018-09-21 11:08:06.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:06.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.917 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.918 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:06.918 +03:00 [INF] Request finished in 1.4138ms 200 application/javascript +2018-09-21 11:08:06.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:06.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:06.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:06.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.937 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:06.937 +03:00 [INF] Request finished in 1.3729ms 200 application/javascript +2018-09-21 11:08:06.939 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:06.940 +03:00 [INF] Request finished in 4.1264ms 200 application/javascript +2018-09-21 11:08:06.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.940 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:06.941 +03:00 [INF] Request finished in 5.3438ms 200 application/javascript +2018-09-21 11:08:06.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:06.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.959 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:06.959 +03:00 [INF] Request finished in 9.9773ms 200 application/javascript +2018-09-21 11:08:06.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:06.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.974 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:06.974 +03:00 [INF] Request finished in 3.143ms 200 application/javascript +2018-09-21 11:08:06.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:06.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.984 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:06.984 +03:00 [INF] Request finished in 1.5897ms 200 application/javascript +2018-09-21 11:08:06.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:06.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.991 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:06.993 +03:00 [INF] Request finished in 1.7865ms 200 application/javascript +2018-09-21 11:08:06.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:06.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:06.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:06.997 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:06.997 +03:00 [INF] Request finished in 1.6719ms 200 application/javascript +2018-09-21 11:08:07.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:07.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.004 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:07.004 +03:00 [INF] Request finished in 2.3308ms 200 application/javascript +2018-09-21 11:08:07.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.019 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:07.019 +03:00 [INF] Request finished in 1.9059ms 200 application/javascript +2018-09-21 11:08:07.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:07.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:07.031 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:07.031 +03:00 [INF] Request finished in 1.6481ms 200 application/javascript +2018-09-21 11:08:07.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.031 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.032 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:07.032 +03:00 [INF] Request finished in 1.2231ms 200 application/javascript +2018-09-21 11:08:07.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:07.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.040 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:07.041 +03:00 [INF] Request finished in 2.4773ms 200 application/javascript +2018-09-21 11:08:07.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:07.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.043 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:07.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:07.044 +03:00 [INF] Request finished in 1.7789ms 200 application/javascript +2018-09-21 11:08:07.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:07.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:07.045 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:07.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:07.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.045 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:07.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.045 +03:00 [INF] Request finished in 1.1709ms 200 application/javascript +2018-09-21 11:08:07.046 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:07.046 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:07.046 +03:00 [INF] Request finished in 0.9408ms 200 application/javascript +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.046 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.125ms. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0521ms +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.047 +03:00 [INF] Request finished in 2.3675ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:07.047 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.048 +03:00 [INF] Authorization failed. +2018-09-21 11:08:07.050 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.4503ms. +2018-09-21 11:08:07.051 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:07.051 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.6997ms +2018-09-21 11:08:07.051 +03:00 [INF] Request finished in 7.138ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:07.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:07.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:07.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:07.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.064 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:07.064 +03:00 [INF] Request finished in 0.9655ms 200 image/svg+xml +2018-09-21 11:08:07.064 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:07.064 +03:00 [INF] Request finished in 1.1583ms 200 application/javascript +2018-09-21 11:08:07.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:07.064 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:07.065 +03:00 [INF] Request finished in 1.9521ms 200 application/javascript +2018-09-21 11:08:07.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.066 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:07.066 +03:00 [INF] Request finished in 2.8187ms 200 image/svg+xml +2018-09-21 11:08:07.163 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:07.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.165 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:07.165 +03:00 [INF] Request finished in 2.3858ms 200 font/woff2 +2018-09-21 11:08:07.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.191 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:07.192 +03:00 [INF] Request finished in 9.6641ms 200 image/jpeg +2018-09-21 11:08:07.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:07.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:08:07.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.350 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:07.350 +03:00 [INF] Request finished in 4.5212ms 200 image/png +2018-09-21 11:08:07.350 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:08:07.350 +03:00 [INF] Request finished in 4.117ms 200 image/png +2018-09-21 11:08:07.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:07.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:07.467 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:07.467 +03:00 [INF] Request finished in 1.0827ms 200 text/css +2018-09-21 11:08:07.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:07.705 +03:00 [INF] Request finished in 1.5436ms 404 +2018-09-21 11:08:13.876 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-21 11:08:13.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:13.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:13.877 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:08:13.952 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:14.175 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 11:08:14.183 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 11:08:14.183 +03:00 [INF] Executed action /Account/Login in 305.6821ms +2018-09-21 11:08:14.183 +03:00 [INF] Request finished in 307.6463ms 302 +2018-09-21 11:08:14.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:08:14.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.225 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:08:14.225 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:14.233 +03:00 [INF] Executed action /Index in 8.3127ms +2018-09-21 11:08:14.233 +03:00 [INF] Request finished in 36.6441ms 200 text/html; charset=utf-8 +2018-09-21 11:08:14.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:14.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:14.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:14.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.301 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:14.301 +03:00 [INF] Request finished in 1.2574ms 200 text/css +2018-09-21 11:08:14.301 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:14.301 +03:00 [INF] Request finished in 2.1925ms 200 text/css +2018-09-21 11:08:14.304 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:14.304 +03:00 [INF] Request finished in 5.2239ms 200 text/css +2018-09-21 11:08:14.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:14.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:14.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.314 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:14.315 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:14.315 +03:00 [INF] Request finished in 1.3813ms 200 text/css +2018-09-21 11:08:14.314 +03:00 [INF] Request finished in 3.4791ms 200 text/css +2018-09-21 11:08:14.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:14.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:14.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:14.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.330 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:14.330 +03:00 [INF] Request finished in 2.4027ms 200 text/css +2018-09-21 11:08:14.331 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:14.331 +03:00 [INF] Request finished in 2.2585ms 200 text/css +2018-09-21 11:08:14.331 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:14.332 +03:00 [INF] Request finished in 4.9439ms 200 text/css +2018-09-21 11:08:14.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:14.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.334 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:14.334 +03:00 [INF] Request finished in 1.3848ms 200 application/javascript +2018-09-21 11:08:14.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:14.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:14.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.369 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:14.369 +03:00 [INF] Request finished in 5.1582ms 200 application/javascript +2018-09-21 11:08:14.369 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:14.370 +03:00 [INF] Request finished in 6.5614ms 200 application/javascript +2018-09-21 11:08:14.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:14.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.376 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:14.376 +03:00 [INF] Request finished in 5.6534ms 200 application/javascript +2018-09-21 11:08:14.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:14.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:14.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.390 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:14.390 +03:00 [INF] Request finished in 4.0161ms 200 application/javascript +2018-09-21 11:08:14.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:14.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.394 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:14.394 +03:00 [INF] Request finished in 1.9904ms 200 image/svg+xml +2018-09-21 11:08:14.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:08:14.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.399 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:08:14.400 +03:00 [INF] Request finished in 4.9337ms 200 image/png +2018-09-21 11:08:14.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:08:14.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.426 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:08:14.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:08:14.427 +03:00 [INF] Request finished in 2.4136ms 200 image/png +2018-09-21 11:08:14.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.433 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:08:14.433 +03:00 [INF] Request finished in 7.3981ms 200 image/png +2018-09-21 11:08:14.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:08:14.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:08:14.437 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:08:14.437 +03:00 [INF] Request finished in 2.4677ms 200 image/png +2018-09-21 11:08:14.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.438 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:08:14.438 +03:00 [INF] Request finished in 1.3479ms 200 image/png +2018-09-21 11:08:14.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:08:14.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.449 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:08:14.450 +03:00 [INF] Request finished in 9.1891ms 200 image/png +2018-09-21 11:08:14.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:08:14.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:08:14.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.455 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:08:14.455 +03:00 [INF] Request finished in 3.3019ms 200 image/png +2018-09-21 11:08:14.455 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:08:14.455 +03:00 [INF] Request finished in 0.8305ms 200 image/png +2018-09-21 11:08:14.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:08:14.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:08:14.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.458 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.459 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:08:14.459 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:08:14.459 +03:00 [INF] Request finished in 0.7397ms 200 image/png +2018-09-21 11:08:14.459 +03:00 [INF] Request finished in 1.9854ms 200 image/png +2018-09-21 11:08:14.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:08:14.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.469 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:08:14.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:08:14.470 +03:00 [INF] Request finished in 1.371ms 200 image/png +2018-09-21 11:08:14.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.471 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:08:14.471 +03:00 [INF] Request finished in 1.5885ms 200 image/png +2018-09-21 11:08:14.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:08:14.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:08:14.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.480 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:08:14.481 +03:00 [INF] Request finished in 5.8605ms 200 image/png +2018-09-21 11:08:14.481 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:08:14.481 +03:00 [INF] Request finished in 1.9124ms 200 image/png +2018-09-21 11:08:14.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:08:14.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.498 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:08:14.498 +03:00 [INF] Request finished in 1.9829ms 200 image/png +2018-09-21 11:08:14.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:08:14.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.508 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:08:14.511 +03:00 [INF] Request finished in 1.3764ms 200 image/png +2018-09-21 11:08:14.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:08:14.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.520 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:08:14.520 +03:00 [INF] Request finished in 7.3556ms 200 image/png +2018-09-21 11:08:14.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:08:14.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.522 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:08:14.522 +03:00 [INF] Request finished in 1.4375ms 200 image/png +2018-09-21 11:08:14.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:08:14.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:08:14.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.527 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:08:14.527 +03:00 [INF] Request finished in 1.1306ms 200 image/png +2018-09-21 11:08:14.527 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:08:14.527 +03:00 [INF] Request finished in 1.5084ms 200 image/png +2018-09-21 11:08:14.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:08:14.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.537 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:08:14.539 +03:00 [INF] Request finished in 5.6785ms 200 image/png +2018-09-21 11:08:14.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:08:14.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.549 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:08:14.549 +03:00 [INF] Request finished in 1.0864ms 200 image/png +2018-09-21 11:08:14.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:08:14.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.555 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:08:14.555 +03:00 [INF] Request finished in 3.4522ms 200 image/png +2018-09-21 11:08:14.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:08:14.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.578 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:08:14.578 +03:00 [INF] Request finished in 4.0636ms 200 image/png +2018-09-21 11:08:14.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:08:14.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.601 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:08:14.601 +03:00 [INF] Request finished in 2.1598ms 200 image/png +2018-09-21 11:08:14.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:08:14.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.622 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:08:14.623 +03:00 [INF] Request finished in 1.0975ms 200 image/png +2018-09-21 11:08:14.624 +03:00 [INF] Request finished in 244.6277ms 404 +2018-09-21 11:08:14.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:08:14.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.649 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:08:14.649 +03:00 [INF] Request finished in 1.5446ms 200 image/png +2018-09-21 11:08:14.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:08:14.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.657 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:08:14.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:08:14.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.657 +03:00 [INF] Request finished in 2.5725ms 200 image/png +2018-09-21 11:08:14.658 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:08:14.659 +03:00 [INF] Request finished in 1.878ms 200 image/png +2018-09-21 11:08:14.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:08:14.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.661 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:08:14.661 +03:00 [INF] Request finished in 1.9224ms 200 image/png +2018-09-21 11:08:14.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:08:14.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:08:14.668 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:08:14.668 +03:00 [INF] Request finished in 1.1281ms 200 image/png +2018-09-21 11:08:14.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:08:14.669 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:08:14.669 +03:00 [INF] Request finished in 1.0446ms 200 image/png +2018-09-21 11:08:14.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.670 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:08:14.670 +03:00 [INF] Request finished in 1.3628ms 200 image/png +2018-09-21 11:08:14.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:08:14.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.675 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:08:14.675 +03:00 [INF] Request finished in 1.2795ms 200 image/png +2018-09-21 11:08:14.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:08:14.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:14.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.681 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:14.681 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:08:14.681 +03:00 [INF] Request finished in 1.1486ms 200 image/svg+xml +2018-09-21 11:08:14.681 +03:00 [INF] Request finished in 1.4095ms 200 image/png +2018-09-21 11:08:14.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:14.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.689 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:14.689 +03:00 [INF] Request finished in 1.5632ms 200 application/javascript +2018-09-21 11:08:14.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:14.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.701 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:14.701 +03:00 [INF] Request finished in 1.7448ms 200 application/javascript +2018-09-21 11:08:14.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:14.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.704 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:14.704 +03:00 [INF] Request finished in 2.5198ms 200 application/javascript +2018-09-21 11:08:14.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:14.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.724 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:14.724 +03:00 [INF] Request finished in 4.6346ms 200 application/javascript +2018-09-21 11:08:14.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:14.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.735 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:14.735 +03:00 [INF] Request finished in 1.6258ms 200 application/javascript +2018-09-21 11:08:14.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:14.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.737 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:14.738 +03:00 [INF] Request finished in 2.6582ms 200 font/woff2 +2018-09-21 11:08:14.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:14.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.745 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:14.745 +03:00 [INF] Request finished in 1.9453ms 200 application/javascript +2018-09-21 11:08:14.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:14.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:14.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:14.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.766 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:14.766 +03:00 [INF] Request finished in 5.3722ms 200 application/javascript +2018-09-21 11:08:14.767 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:14.767 +03:00 [INF] Request finished in 1.7265ms 200 application/javascript +2018-09-21 11:08:14.767 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:14.767 +03:00 [INF] Request finished in 2.1639ms 200 application/javascript +2018-09-21 11:08:14.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:14.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:14.777 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:14.777 +03:00 [INF] Request finished in 1.8284ms 200 application/javascript +2018-09-21 11:08:14.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:14.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:14.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:14.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:14.779 +03:00 [INF] Request finished in 1.7349ms 200 application/javascript +2018-09-21 11:08:14.779 +03:00 [INF] Request finished in 2.3284ms 200 application/javascript +2018-09-21 11:08:14.793 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:14.796 +03:00 [INF] Request finished in 14.9777ms 200 application/javascript +2018-09-21 11:08:14.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:14.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:14.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:14.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:14.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.807 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:14.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.807 +03:00 [INF] Request finished in 3.1678ms 200 application/javascript +2018-09-21 11:08:14.809 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:14.809 +03:00 [INF] Request finished in 4.5935ms 200 application/javascript +2018-09-21 11:08:14.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:14.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.816 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:14.816 +03:00 [INF] Request finished in 0.993ms 200 application/javascript +2018-09-21 11:08:14.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:14.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:14.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.822 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:14.822 +03:00 [INF] Request finished in 2.0247ms 200 application/javascript +2018-09-21 11:08:14.823 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:14.823 +03:00 [INF] Request finished in 1.4843ms 200 application/javascript +2018-09-21 11:08:14.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:14.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:14.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:14.836 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:14.836 +03:00 [INF] Request finished in 12.2395ms 200 image/jpeg +2018-09-21 11:08:14.891 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:14.891 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:14.892 +03:00 [INF] Authorization failed. +2018-09-21 11:08:14.892 +03:00 [INF] Authorization failed. +2018-09-21 11:08:14.948 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:14.948 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:14.949 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0879ms. +2018-09-21 11:08:14.949 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:14.949 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1039ms +2018-09-21 11:08:14.949 +03:00 [INF] Request finished in 144.8038ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:15.005 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.023 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.031 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.036 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.039 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.043 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.048 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.052 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.057 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.062 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.065 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.068 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.073 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.076 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.080 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.082 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.085 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.087 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.090 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.092 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.095 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.098 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.100 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.103 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.105 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.108 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.112 +03:00 [INF] Authorization was successful. +2018-09-21 11:08:15.117 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 225.11780000000002ms. +2018-09-21 11:08:15.125 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:15.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 234.8664ms +2018-09-21 11:08:15.126 +03:00 [INF] Request finished in 329.3818ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:15.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:15.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:15.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:15.254 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:15.254 +03:00 [INF] Request finished in 3.1334ms 200 image/png +2018-09-21 11:08:15.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:08:15.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:15.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:15.258 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:08:15.258 +03:00 [INF] Request finished in 2.8904ms 200 image/png +2018-09-21 11:08:15.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:15.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:15.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:15.550 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:15.551 +03:00 [INF] Request finished in 4.0708ms 200 text/css +2018-09-21 11:08:15.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:15.799 +03:00 [INF] Request finished in 1.5674ms 404 +2018-09-21 11:08:19.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:08:19.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.406 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:08:19.406 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:08:19.407 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:08:19.407 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:08:19.407 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:08:19.407 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 0.5382ms. +2018-09-21 11:08:19.407 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:08:19.407 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 1.4438ms +2018-09-21 11:08:19.408 +03:00 [INF] Request finished in 27.7335ms 302 +2018-09-21 11:08:19.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:08:19.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.419 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:08:19.443 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:19.494 +03:00 [INF] Executed action /Account/Login in 74.799900000000008ms +2018-09-21 11:08:19.494 +03:00 [INF] Request finished in 76.3246ms 200 text/html; charset=utf-8 +2018-09-21 11:08:19.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:19.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:19.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.536 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:19.537 +03:00 [INF] Request finished in 6.9019ms 200 text/css +2018-09-21 11:08:19.537 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:19.537 +03:00 [INF] Request finished in 2.9293ms 200 text/css +2018-09-21 11:08:19.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:19.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:19.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.545 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:19.545 +03:00 [INF] Request finished in 1.3433ms 200 text/css +2018-09-21 11:08:19.545 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:19.546 +03:00 [INF] Request finished in 1.4639ms 200 text/css +2018-09-21 11:08:19.557 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:19.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.558 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:19.558 +03:00 [INF] Request finished in 1.2581ms 200 text/css +2018-09-21 11:08:19.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:19.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:19.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.563 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:19.563 +03:00 [INF] Request finished in 1.4382ms 200 text/css +2018-09-21 11:08:19.564 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:19.564 +03:00 [INF] Request finished in 1.6561ms 200 text/css +2018-09-21 11:08:19.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:19.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.572 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:19.572 +03:00 [INF] Request finished in 2.5952ms 200 text/css +2018-09-21 11:08:19.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:19.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:08:19.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.585 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:19.585 +03:00 [INF] Request finished in 1.4243ms 200 application/javascript +2018-09-21 11:08:19.585 +03:00 [INF] Request finished in 1.4954ms 404 +2018-09-21 11:08:19.590 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:19.590 +03:00 [INF] Request finished in 6.8859ms 200 application/javascript +2018-09-21 11:08:19.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:19.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:19.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.592 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:19.592 +03:00 [INF] Request finished in 1.2548ms 200 application/javascript +2018-09-21 11:08:19.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:19.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.598 +03:00 [INF] Request finished in 2.4846ms 404 +2018-09-21 11:08:19.602 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:19.602 +03:00 [INF] Request finished in 11.7436ms 200 application/javascript +2018-09-21 11:08:19.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:19.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.607 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:19.607 +03:00 [INF] Request finished in 1.9006ms 200 application/javascript +2018-09-21 11:08:19.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:19.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:19.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.619 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:19.619 +03:00 [INF] Request finished in 2.3233ms 200 application/javascript +2018-09-21 11:08:19.619 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:19.619 +03:00 [INF] Request finished in 1.0932ms 200 application/javascript +2018-09-21 11:08:19.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:19.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.629 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:19.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:19.629 +03:00 [INF] Request finished in 4.9646ms 200 application/javascript +2018-09-21 11:08:19.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.641 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:19.641 +03:00 [INF] Request finished in 12.3517ms 200 application/javascript +2018-09-21 11:08:19.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:19.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:19.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.650 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:19.650 +03:00 [INF] Request finished in 1.3506ms 200 application/javascript +2018-09-21 11:08:19.652 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:19.652 +03:00 [INF] Request finished in 6.0894ms 200 application/javascript +2018-09-21 11:08:19.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:19.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.662 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:19.662 +03:00 [INF] Request finished in 1.5013ms 200 application/javascript +2018-09-21 11:08:19.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:19.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.668 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:19.669 +03:00 [INF] Request finished in 4.4285ms 200 application/javascript +2018-09-21 11:08:19.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:19.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.679 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:19.679 +03:00 [INF] Request finished in 1.2025ms 200 application/javascript +2018-09-21 11:08:19.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:19.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.683 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:19.683 +03:00 [INF] Request finished in 1.6804ms 200 application/javascript +2018-09-21 11:08:19.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:19.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.689 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:19.689 +03:00 [INF] Request finished in 1.8712ms 200 application/javascript +2018-09-21 11:08:19.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:19.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:19.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.697 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:19.697 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:19.698 +03:00 [INF] Request finished in 1.382ms 200 application/javascript +2018-09-21 11:08:19.698 +03:00 [INF] Request finished in 2.2072ms 200 application/javascript +2018-09-21 11:08:19.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:19.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:19.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:19.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.703 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:19.703 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:19.704 +03:00 [INF] Request finished in 2.5584ms 200 application/javascript +2018-09-21 11:08:19.704 +03:00 [INF] Request finished in 1.7667ms 200 application/javascript +2018-09-21 11:08:19.705 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:19.705 +03:00 [INF] Request finished in 3.3171ms 200 application/javascript +2018-09-21 11:08:19.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:19.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.718 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:19.720 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:19.720 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.721 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.722 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.723 +03:00 [INF] Authorization failed. +2018-09-21 11:08:19.724 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:19.725 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:19.725 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0857ms. +2018-09-21 11:08:19.725 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:19.725 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0131000000000006ms. +2018-09-21 11:08:19.725 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:19.726 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4008ms +2018-09-21 11:08:19.726 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.4993000000000007ms +2018-09-21 11:08:19.726 +03:00 [INF] Request finished in 2.9136ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:19.726 +03:00 [INF] Request finished in 9.4375ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:19.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:19.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.743 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:19.744 +03:00 [INF] Request finished in 2.7806ms 200 font/woff2 +2018-09-21 11:08:19.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:19.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.748 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:19.748 +03:00 [INF] Request finished in 1.276ms 200 application/javascript +2018-09-21 11:08:19.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:19.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.755 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:19.756 +03:00 [INF] Request finished in 2.0422ms 200 application/javascript +2018-09-21 11:08:19.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:19.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:19.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:19.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.763 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:19.763 +03:00 [INF] Request finished in 1.1297ms 200 image/svg+xml +2018-09-21 11:08:19.763 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:19.763 +03:00 [INF] Request finished in 1.1882ms 200 image/svg+xml +2018-09-21 11:08:19.768 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:19.768 +03:00 [INF] Request finished in 5.7293ms 200 image/jpeg +2018-09-21 11:08:19.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:19.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:19.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:19.823 +03:00 [INF] Request finished in 4.0142ms 404 +2018-09-21 11:08:20.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:20.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.055 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:20.055 +03:00 [INF] Request finished in 1.2902ms 200 text/css +2018-09-21 11:08:20.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:20.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.237 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:20.237 +03:00 [INF] Request finished in 1.3442ms 200 image/png +2018-09-21 11:08:20.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:08:20.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.240 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:08:20.240 +03:00 [INF] Request finished in 1.0643ms 200 image/png +2018-09-21 11:08:20.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:20.292 +03:00 [INF] Request finished in 0.9601ms 404 +2018-09-21 11:08:20.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:08:20.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.660 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:08:20.694 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:20.760 +03:00 [INF] Executed action /Account/Register in 99.6511ms +2018-09-21 11:08:20.760 +03:00 [INF] Request finished in 109.5175ms 200 text/html; charset=utf-8 +2018-09-21 11:08:20.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:20.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:20.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.805 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:20.806 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:20.806 +03:00 [INF] Request finished in 2.4342ms 200 text/css +2018-09-21 11:08:20.807 +03:00 [INF] Request finished in 6.7013ms 200 text/css +2018-09-21 11:08:20.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:20.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.813 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:20.814 +03:00 [INF] Request finished in 1.6943ms 200 text/css +2018-09-21 11:08:20.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:20.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.821 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:20.821 +03:00 [INF] Request finished in 1.4026ms 200 text/css +2018-09-21 11:08:20.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:20.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.825 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:20.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:20.825 +03:00 [INF] Request finished in 2.1467ms 200 text/css +2018-09-21 11:08:20.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.827 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:20.827 +03:00 [INF] Request finished in 2.3006ms 200 text/css +2018-09-21 11:08:20.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:20.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.833 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:20.834 +03:00 [INF] Request finished in 2.3483ms 200 text/css +2018-09-21 11:08:20.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:20.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.835 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:20.836 +03:00 [INF] Request finished in 1.9182ms 200 text/css +2018-09-21 11:08:20.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:20.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:08:20.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.851 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:20.852 +03:00 [INF] Request finished in 4.0273ms 200 application/javascript +2018-09-21 11:08:20.853 +03:00 [INF] Request finished in 4.1127ms 404 +2018-09-21 11:08:20.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:20.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.868 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:20.868 +03:00 [INF] Request finished in 6.8621ms 200 application/javascript +2018-09-21 11:08:20.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:20.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:20.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.876 +03:00 [INF] Request finished in 1.5129ms 404 +2018-09-21 11:08:20.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:20.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.878 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:20.878 +03:00 [INF] Request finished in 1.4681ms 200 application/javascript +2018-09-21 11:08:20.878 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:20.878 +03:00 [INF] Request finished in 4.1121ms 200 application/javascript +2018-09-21 11:08:20.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:20.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:20.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.882 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:20.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.882 +03:00 [INF] Request finished in 1.8065ms 200 application/javascript +2018-09-21 11:08:20.888 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:20.888 +03:00 [INF] Request finished in 6.033ms 200 application/javascript +2018-09-21 11:08:20.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:20.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.889 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:20.890 +03:00 [INF] Request finished in 1.8705ms 200 application/javascript +2018-09-21 11:08:20.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:20.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.903 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:20.903 +03:00 [INF] Request finished in 4.2745ms 200 application/javascript +2018-09-21 11:08:20.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:20.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.905 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:20.905 +03:00 [INF] Request finished in 2.3566ms 200 application/javascript +2018-09-21 11:08:20.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:20.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:20.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.914 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:20.914 +03:00 [INF] Request finished in 1.6073ms 200 application/javascript +2018-09-21 11:08:20.926 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:20.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:20.926 +03:00 [INF] Request finished in 15.6215ms 200 application/javascript +2018-09-21 11:08:20.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.927 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:20.927 +03:00 [INF] Request finished in 1.3221ms 200 application/javascript +2018-09-21 11:08:20.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:20.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.940 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:20.940 +03:00 [INF] Request finished in 2.1176ms 200 application/javascript +2018-09-21 11:08:20.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:20.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.946 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:20.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:20.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.947 +03:00 [INF] Request finished in 1.7195ms 200 application/javascript +2018-09-21 11:08:20.950 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:20.950 +03:00 [INF] Request finished in 2.4906ms 200 application/javascript +2018-09-21 11:08:20.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:20.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:20.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.953 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:20.953 +03:00 [INF] Request finished in 1.5322ms 200 application/javascript +2018-09-21 11:08:20.953 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:20.953 +03:00 [INF] Request finished in 1.4066ms 200 application/javascript +2018-09-21 11:08:20.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:20.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.965 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:20.965 +03:00 [INF] Request finished in 1.5549ms 200 application/javascript +2018-09-21 11:08:20.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:20.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.975 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:20.975 +03:00 [INF] Request finished in 1.7586ms 200 application/javascript +2018-09-21 11:08:20.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:20.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:20.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.978 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:20.978 +03:00 [INF] Request finished in 2.1108ms 200 application/javascript +2018-09-21 11:08:20.979 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:20.980 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:20.980 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.981 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.981 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:20.981 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.982 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.982 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:20.982 +03:00 [INF] Request finished in 1.4563ms 200 application/javascript +2018-09-21 11:08:20.983 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.984 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.985 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:20.986 +03:00 [INF] Request finished in 1.089ms 200 application/javascript +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.986 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.987 +03:00 [INF] Authorization failed. +2018-09-21 11:08:20.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:20.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.988 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:20.988 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:20.989 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0926ms. +2018-09-21 11:08:20.989 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.495000000000001ms. +2018-09-21 11:08:20.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:20.989 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:20.989 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:20.989 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1879ms +2018-09-21 11:08:20.989 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.023100000000001ms +2018-09-21 11:08:20.989 +03:00 [INF] Request finished in 2.2871ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:20.989 +03:00 [INF] Request finished in 12.2389ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:20.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.990 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:20.990 +03:00 [INF] Request finished in 1.6709ms 200 application/javascript +2018-09-21 11:08:20.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:20.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:20.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:20.996 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:20.997 +03:00 [INF] Request finished in 3.1805ms 200 image/svg+xml +2018-09-21 11:08:20.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:21.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.000 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:21.001 +03:00 [INF] Request finished in 1.6016ms 200 image/svg+xml +2018-09-21 11:08:21.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:21.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.005 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:21.005 +03:00 [INF] Request finished in 2.4544ms 200 font/woff2 +2018-09-21 11:08:21.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:21.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.020 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:21.020 +03:00 [INF] Request finished in 10.0335ms 200 image/jpeg +2018-09-21 11:08:21.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:21.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.084 +03:00 [INF] Request finished in 1.2821ms 404 +2018-09-21 11:08:21.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:21.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.312 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:21.312 +03:00 [INF] Request finished in 1.2947ms 200 text/css +2018-09-21 11:08:21.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:08:21.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:21.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:21.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:21.356 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:08:21.356 +03:00 [INF] Request finished in 1.0145ms 200 image/png +2018-09-21 11:08:21.357 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:21.357 +03:00 [INF] Request finished in 2.5615ms 200 image/png +2018-09-21 11:08:21.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:21.562 +03:00 [INF] Request finished in 0.8232ms 404 +2018-09-21 11:08:49.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:08:49.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.471 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:08:49.501 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:49.898 +03:00 [INF] Executed action /Account/Register in 427.4205ms +2018-09-21 11:08:49.899 +03:00 [INF] Request finished in 436.1202ms 200 text/html; charset=utf-8 +2018-09-21 11:08:49.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:49.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.935 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:49.936 +03:00 [INF] Request finished in 4.4429ms 200 text/css +2018-09-21 11:08:49.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:49.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.940 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:49.941 +03:00 [INF] Request finished in 1.7169ms 200 text/css +2018-09-21 11:08:49.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:49.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.951 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:49.951 +03:00 [INF] Request finished in 2.0512ms 200 text/css +2018-09-21 11:08:49.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:49.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.953 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:49.953 +03:00 [INF] Request finished in 1.6501ms 200 text/css +2018-09-21 11:08:49.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:49.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.960 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:49.961 +03:00 [INF] Request finished in 2.2816ms 200 text/css +2018-09-21 11:08:49.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:49.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.966 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:49.966 +03:00 [INF] Request finished in 4.7198ms 200 text/css +2018-09-21 11:08:49.978 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:49.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:49.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.982 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:49.982 +03:00 [INF] Request finished in 2.0537ms 200 text/css +2018-09-21 11:08:49.982 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:49.983 +03:00 [INF] Request finished in 4.578ms 200 text/css +2018-09-21 11:08:49.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:49.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:49.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:49.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:49.992 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:49.993 +03:00 [INF] Request finished in 1.6877ms 200 application/javascript +2018-09-21 11:08:49.998 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:49.999 +03:00 [INF] Request finished in 9.3902ms 200 application/javascript +2018-09-21 11:08:49.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:08:50.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.003 +03:00 [INF] Request finished in 3.2715ms 404 +2018-09-21 11:08:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:50.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:50.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:50.008 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:50.008 +03:00 [INF] Request finished in 0.7797ms 200 application/javascript +2018-09-21 11:08:50.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.009 +03:00 [INF] Request finished in 1.0604ms 404 +2018-09-21 11:08:50.017 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:50.017 +03:00 [INF] Request finished in 10.4972ms 200 application/javascript +2018-09-21 11:08:50.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:50.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.022 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:50.022 +03:00 [INF] Request finished in 1.8087ms 200 application/javascript +2018-09-21 11:08:50.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:50.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.036 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:50.037 +03:00 [INF] Request finished in 3.1413ms 200 application/javascript +2018-09-21 11:08:50.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:50.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.046 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:50.046 +03:00 [INF] Request finished in 2.8625ms 200 application/javascript +2018-09-21 11:08:50.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:50.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:50.090 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.090 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.091 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:50.091 +03:00 [INF] Request finished in 2.792ms 200 application/javascript +2018-09-21 11:08:50.094 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:50.094 +03:00 [INF] Request finished in 3.9851ms 200 application/javascript +2018-09-21 11:08:50.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:50.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.103 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:50.104 +03:00 [INF] Request finished in 1.6266ms 200 application/javascript +2018-09-21 11:08:50.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:50.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.107 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:50.107 +03:00 [INF] Request finished in 3.0414ms 200 application/javascript +2018-09-21 11:08:50.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:50.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.116 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:50.116 +03:00 [INF] Request finished in 5.8899ms 200 application/javascript +2018-09-21 11:08:50.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:50.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:50.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.125 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:50.125 +03:00 [INF] Request finished in 0.8661ms 200 application/javascript +2018-09-21 11:08:50.125 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:50.125 +03:00 [INF] Request finished in 1.322ms 200 application/javascript +2018-09-21 11:08:50.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:50.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:50.132 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:50.132 +03:00 [INF] Request finished in 1.9634ms 200 application/javascript +2018-09-21 11:08:50.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.133 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:50.133 +03:00 [INF] Request finished in 1.2553ms 200 application/javascript +2018-09-21 11:08:50.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:50.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.139 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:50.139 +03:00 [INF] Request finished in 2.3598ms 200 application/javascript +2018-09-21 11:08:50.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:50.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.145 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:50.145 +03:00 [INF] Request finished in 2.8609ms 200 application/javascript +2018-09-21 11:08:50.148 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:50.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:50.149 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:50.150 +03:00 [INF] Request finished in 1.7022ms 200 application/javascript +2018-09-21 11:08:50.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.150 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:50.150 +03:00 [INF] Request finished in 1.2579ms 200 application/javascript +2018-09-21 11:08:50.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:50.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:50.152 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:50.152 +03:00 [INF] Request finished in 1.068ms 200 application/javascript +2018-09-21 11:08:50.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.153 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:50.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.161 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:50.162 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:50.162 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:50.162 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.162 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.163 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4913ms. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.164 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.165 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.165 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.165 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.165 +03:00 [INF] Authorization failed. +2018-09-21 11:08:50.165 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:50.165 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.1726ms +2018-09-21 11:08:50.165 +03:00 [INF] Request finished in 5.9567ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:50.166 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1545000000000005ms. +2018-09-21 11:08:50.167 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:50.167 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.5348000000000006ms +2018-09-21 11:08:50.167 +03:00 [INF] Request finished in 14.7354ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:50.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:50.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:50.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.170 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:50.170 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:50.170 +03:00 [INF] Request finished in 1.2042ms 200 application/javascript +2018-09-21 11:08:50.170 +03:00 [INF] Request finished in 1.2371ms 200 application/javascript +2018-09-21 11:08:50.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:50.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.178 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:50.178 +03:00 [INF] Request finished in 1.4698ms 200 image/svg+xml +2018-09-21 11:08:50.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:50.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.189 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:50.189 +03:00 [INF] Request finished in 2.4396ms 200 font/woff2 +2018-09-21 11:08:50.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:50.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.201 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:50.201 +03:00 [INF] Request finished in 1.4036ms 200 image/svg+xml +2018-09-21 11:08:50.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:50.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.244 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:50.244 +03:00 [INF] Request finished in 8.1278ms 200 image/jpeg +2018-09-21 11:08:50.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:50.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.290 +03:00 [INF] Request finished in 1.0292ms 404 +2018-09-21 11:08:50.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:50.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.489 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:50.489 +03:00 [INF] Request finished in 1.7552ms 200 image/png +2018-09-21 11:08:50.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:08:50.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.490 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:08:50.490 +03:00 [INF] Request finished in 0.9367ms 200 image/png +2018-09-21 11:08:50.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:50.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:50.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:50.521 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:50.521 +03:00 [INF] Request finished in 1.2763ms 200 text/css +2018-09-21 11:08:50.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:50.669 +03:00 [INF] Request finished in 0.7328ms 404 +2018-09-21 11:08:56.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:08:56.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.345 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:08:56.372 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:08:56.840 +03:00 [INF] Executed action /Account/Register in 494.8915ms +2018-09-21 11:08:56.840 +03:00 [INF] Request finished in 506.466ms 200 text/html; charset=utf-8 +2018-09-21 11:08:56.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:08:56.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.886 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:08:56.887 +03:00 [INF] Request finished in 5.4638ms 200 text/css +2018-09-21 11:08:56.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:08:56.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.890 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:08:56.891 +03:00 [INF] Request finished in 2.4704ms 200 text/css +2018-09-21 11:08:56.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:08:56.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:08:56.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.897 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:08:56.897 +03:00 [INF] Request finished in 1.2276ms 200 text/css +2018-09-21 11:08:56.897 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:08:56.897 +03:00 [INF] Request finished in 1.5119ms 200 text/css +2018-09-21 11:08:56.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:08:56.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.912 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:08:56.913 +03:00 [INF] Request finished in 1.2263ms 200 text/css +2018-09-21 11:08:56.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:08:56.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.925 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:08:56.925 +03:00 [INF] Request finished in 4.1387ms 200 text/css +2018-09-21 11:08:56.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:08:56.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:56.934 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:08:56.934 +03:00 [INF] Request finished in 1.2613ms 200 text/css +2018-09-21 11:08:56.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:08:56.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.935 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:56.935 +03:00 [INF] Request finished in 1.4798ms 200 text/css +2018-09-21 11:08:56.936 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:08:56.936 +03:00 [INF] Request finished in 1.7685ms 200 application/javascript +2018-09-21 11:08:56.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:08:56.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.956 +03:00 [INF] Request finished in 1.8325ms 404 +2018-09-21 11:08:56.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:08:56.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.960 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:08:56.960 +03:00 [INF] Request finished in 2.6378ms 200 application/javascript +2018-09-21 11:08:56.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:08:56.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:08:56.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.967 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:08:56.967 +03:00 [INF] Request finished in 6.3493ms 200 application/javascript +2018-09-21 11:08:56.968 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:08:56.968 +03:00 [INF] Request finished in 4.5924ms 200 application/javascript +2018-09-21 11:08:56.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:56.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.976 +03:00 [INF] Request finished in 1.0326ms 404 +2018-09-21 11:08:56.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:08:56.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:56.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:56.998 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:08:56.998 +03:00 [INF] Request finished in 3.5938ms 200 application/javascript +2018-09-21 11:08:57.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:08:57.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.009 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:08:57.009 +03:00 [INF] Request finished in 2.0979ms 200 application/javascript +2018-09-21 11:08:57.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:08:57.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:08:57.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.101 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:08:57.101 +03:00 [INF] Request finished in 3.2763ms 200 application/javascript +2018-09-21 11:08:57.105 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:08:57.106 +03:00 [INF] Request finished in 8.9479ms 200 application/javascript +2018-09-21 11:08:57.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:08:57.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.115 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:08:57.115 +03:00 [INF] Request finished in 0.9247ms 200 application/javascript +2018-09-21 11:08:57.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:08:57.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.133 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:08:57.133 +03:00 [INF] Request finished in 8.1452ms 200 application/javascript +2018-09-21 11:08:57.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:08:57.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.142 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:08:57.142 +03:00 [INF] Request finished in 0.9077ms 200 application/javascript +2018-09-21 11:08:57.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:08:57.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.176 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:08:57.176 +03:00 [INF] Request finished in 1.1656ms 200 application/javascript +2018-09-21 11:08:57.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:08:57.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:08:57.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:08:57.224 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:08:57.226 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:08:57.226 +03:00 [INF] Request finished in 3.8927ms 200 application/javascript +2018-09-21 11:08:57.226 +03:00 [INF] Request finished in 9.3931ms 200 application/javascript +2018-09-21 11:08:57.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.227 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:08:57.227 +03:00 [INF] Request finished in 3.7881ms 200 application/javascript +2018-09-21 11:08:57.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:08:57.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:08:57.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.249 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.250 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:08:57.250 +03:00 [INF] Request finished in 1.1196ms 200 application/javascript +2018-09-21 11:08:57.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:08:57.251 +03:00 [INF] Request finished in 7.7174ms 200 application/javascript +2018-09-21 11:08:57.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:08:57.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.263 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:08:57.263 +03:00 [INF] Request finished in 3.0654ms 200 application/javascript +2018-09-21 11:08:57.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:08:57.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.269 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:08:57.269 +03:00 [INF] Request finished in 2.9879ms 200 application/javascript +2018-09-21 11:08:57.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:08:57.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:08:57.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.279 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:08:57.279 +03:00 [INF] Request finished in 0.9433ms 200 application/javascript +2018-09-21 11:08:57.279 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:08:57.279 +03:00 [INF] Request finished in 1.2999ms 200 application/javascript +2018-09-21 11:08:57.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:08:57.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:08:57.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.300 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:57.301 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:08:57.301 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10940000000000001ms. +2018-09-21 11:08:57.302 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:57.302 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9082000000000001ms +2018-09-21 11:08:57.302 +03:00 [INF] Request finished in 5.2863ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:57.303 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:08:57.305 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:08:57.305 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.305 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.306 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.306 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.306 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.306 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.306 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.307 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.308 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.309 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.309 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.309 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:08:57.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.313 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:08:57.313 +03:00 [INF] Request finished in 1.423ms 200 application/javascript +2018-09-21 11:08:57.314 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.315 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.315 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.315 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.315 +03:00 [INF] Authorization failed. +2018-09-21 11:08:57.318 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.0379ms. +2018-09-21 11:08:57.319 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:08:57.319 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.473700000000001ms +2018-09-21 11:08:57.319 +03:00 [INF] Request finished in 24.049ms 200 text/plain; charset=utf-8 +2018-09-21 11:08:57.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:08:57.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:08:57.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.327 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:08:57.327 +03:00 [INF] Request finished in 1.2995ms 200 application/javascript +2018-09-21 11:08:57.332 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:08:57.332 +03:00 [INF] Request finished in 7.5253ms 200 image/svg+xml +2018-09-21 11:08:57.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:08:57.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:08:57.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:08:57.341 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:08:57.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.341 +03:00 [INF] Request finished in 2.0234ms 200 image/svg+xml +2018-09-21 11:08:57.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.342 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:08:57.342 +03:00 [INF] Request finished in 3.4054ms 200 font/woff2 +2018-09-21 11:08:57.351 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:08:57.351 +03:00 [INF] Request finished in 10.7529ms 200 image/jpeg +2018-09-21 11:08:57.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:08:57.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.359 +03:00 [INF] Request finished in 1.3633ms 404 +2018-09-21 11:08:57.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:08:57.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.625 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:08:57.625 +03:00 [INF] Request finished in 3.6335ms 200 image/png +2018-09-21 11:08:57.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:08:57.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.629 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:08:57.629 +03:00 [INF] Request finished in 1.6553ms 200 image/png +2018-09-21 11:08:57.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:08:57.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:08:57.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:08:57.664 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:08:57.664 +03:00 [INF] Request finished in 1.0879ms 200 text/css +2018-09-21 11:08:57.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:08:57.957 +03:00 [INF] Request finished in 1.1408ms 404 +2018-09-21 11:09:01.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:09:01.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.348 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:09:01.375 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:09:01.737 +03:00 [INF] Executed action /Account/Register in 389.1243ms +2018-09-21 11:09:01.738 +03:00 [INF] Request finished in 398.1917ms 200 text/html; charset=utf-8 +2018-09-21 11:09:01.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:09:01.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.804 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:09:01.804 +03:00 [INF] Request finished in 1.3077ms 200 text/css +2018-09-21 11:09:01.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:09:01.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:09:01.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.806 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:09:01.806 +03:00 [INF] Request finished in 1.1585ms 200 text/css +2018-09-21 11:09:01.806 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:09:01.807 +03:00 [INF] Request finished in 1.3535ms 200 text/css +2018-09-21 11:09:01.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:09:01.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:09:01.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.813 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:09:01.813 +03:00 [INF] Request finished in 1.5403ms 200 text/css +2018-09-21 11:09:01.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:09:01.816 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:09:01.816 +03:00 [INF] Request finished in 5.871ms 200 text/css +2018-09-21 11:09:01.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.817 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:09:01.817 +03:00 [INF] Request finished in 1.3505ms 200 text/css +2018-09-21 11:09:01.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:09:01.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.820 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:09:01.821 +03:00 [INF] Request finished in 2.3212ms 200 text/css +2018-09-21 11:09:01.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:09:01.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.843 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:09:01.843 +03:00 [INF] Request finished in 1.7076ms 200 text/css +2018-09-21 11:09:01.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:09:01.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.862 +03:00 [INF] Request finished in 1.4065ms 404 +2018-09-21 11:09:01.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:09:01.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.867 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.870 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:09:01.870 +03:00 [INF] Request finished in 4.1853ms 200 application/javascript +2018-09-21 11:09:01.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:09:01.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:09:01.878 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:09:01.878 +03:00 [INF] Request finished in 8.0872ms 200 application/javascript +2018-09-21 11:09:01.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.880 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:09:01.880 +03:00 [INF] Request finished in 1.6036ms 200 application/javascript +2018-09-21 11:09:01.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:09:01.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:09:01.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.888 +03:00 [INF] Request finished in 1.5575ms 404 +2018-09-21 11:09:01.893 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:09:01.893 +03:00 [INF] Request finished in 8.7429ms 200 application/javascript +2018-09-21 11:09:01.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:09:01.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:09:01.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.900 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:09:01.900 +03:00 [INF] Request finished in 1.2557ms 200 application/javascript +2018-09-21 11:09:01.903 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:09:01.903 +03:00 [INF] Request finished in 4.7096ms 200 application/javascript +2018-09-21 11:09:01.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:09:01.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.907 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.907 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:09:01.907 +03:00 [INF] Request finished in 1.1309ms 200 application/javascript +2018-09-21 11:09:01.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:09:01.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.922 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:09:01.922 +03:00 [INF] Request finished in 2.9306ms 200 application/javascript +2018-09-21 11:09:01.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:09:01.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.940 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:09:01.940 +03:00 [INF] Request finished in 10.2251ms 200 application/javascript +2018-09-21 11:09:01.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:09:01.951 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.953 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:09:01.953 +03:00 [INF] Request finished in 2.0687ms 200 application/javascript +2018-09-21 11:09:01.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:09:01.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.955 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:09:01.958 +03:00 [INF] Request finished in 4.1681ms 200 application/javascript +2018-09-21 11:09:01.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:09:01.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.965 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:09:01.965 +03:00 [INF] Request finished in 1.57ms 200 application/javascript +2018-09-21 11:09:01.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:09:01.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.979 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:09:01.980 +03:00 [INF] Request finished in 3.1382ms 200 application/javascript +2018-09-21 11:09:01.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:09:01.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.982 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:09:01.982 +03:00 [INF] Request finished in 1.2392ms 200 application/javascript +2018-09-21 11:09:01.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:09:01.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:01.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:09:01.987 +03:00 [INF] Request finished in 2.3939ms 200 application/javascript +2018-09-21 11:09:01.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:09:01.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:01.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.000 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:09:02.000 +03:00 [INF] Request finished in 1.2163ms 200 application/javascript +2018-09-21 11:09:02.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:09:02.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.013 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:09:02.014 +03:00 [INF] Request finished in 2.047ms 200 application/javascript +2018-09-21 11:09:02.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:09:02.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.028 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:09:02.028 +03:00 [INF] Request finished in 1.6559ms 200 application/javascript +2018-09-21 11:09:02.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:09:02.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.035 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:09:02.035 +03:00 [INF] Request finished in 1.2873ms 200 application/javascript +2018-09-21 11:09:02.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:09:02.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.043 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:09:02.043 +03:00 [INF] Request finished in 2.2611ms 200 application/javascript +2018-09-21 11:09:02.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:09:02.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:09:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.046 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:09:02.046 +03:00 [INF] Request finished in 1.7317ms 200 application/javascript +2018-09-21 11:09:02.049 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:09:02.049 +03:00 [INF] Request finished in 5.0133ms 200 font/woff2 +2018-09-21 11:09:02.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:09:02.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:09:02.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.054 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:09:02.057 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:09:02.057 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:09:02.058 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:09:02.058 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.058 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.059 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.059 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.059 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.059 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.059 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.060 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.060 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.060 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.060 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.060 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.061 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.058 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.18510000000000001ms. +2018-09-21 11:09:02.061 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.061 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.061 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 7.3807ms +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Request finished in 10.1675ms 200 text/plain; charset=utf-8 +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.062 +03:00 [INF] Authorization failed. +2018-09-21 11:09:02.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.064 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:09:02.064 +03:00 [INF] Request finished in 1.9338ms 200 application/javascript +2018-09-21 11:09:02.064 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.2977000000000007ms. +2018-09-21 11:09:02.064 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:09:02.065 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.4512ms +2018-09-21 11:09:02.065 +03:00 [INF] Request finished in 13.0455ms 200 text/plain; charset=utf-8 +2018-09-21 11:09:02.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:09:02.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.068 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:09:02.068 +03:00 [INF] Request finished in 2.3162ms 200 image/svg+xml +2018-09-21 11:09:02.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:09:02.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.073 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:09:02.073 +03:00 [INF] Request finished in 3.2129ms 200 application/javascript +2018-09-21 11:09:02.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:09:02.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.077 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:09:02.077 +03:00 [INF] Request finished in 1.8513ms 200 image/svg+xml +2018-09-21 11:09:02.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:09:02.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.090 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:09:02.090 +03:00 [INF] Request finished in 9.9983ms 200 image/jpeg +2018-09-21 11:09:02.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:09:02.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.168 +03:00 [INF] Request finished in 1.3299ms 404 +2018-09-21 11:09:02.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:09:02.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.389 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:09:02.389 +03:00 [INF] Request finished in 1.6189ms 200 image/png +2018-09-21 11:09:02.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:09:02.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.391 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:09:02.392 +03:00 [INF] Request finished in 1.5463ms 200 image/png +2018-09-21 11:09:02.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:09:02.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:02.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:02.476 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:09:02.476 +03:00 [INF] Request finished in 1.5947ms 200 text/css +2018-09-21 11:09:02.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:09:02.721 +03:00 [INF] Request finished in 1.0051ms 404 +2018-09-21 11:09:48.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:09:48.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.463 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:09:48.492 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:09:48.823 +03:00 [INF] Executed action /Account/Register in 359.39500000000004ms +2018-09-21 11:09:48.823 +03:00 [INF] Request finished in 368.3004ms 200 text/html; charset=utf-8 +2018-09-21 11:09:48.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:09:48.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.863 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:09:48.863 +03:00 [INF] Request finished in 3.7654ms 200 text/css +2018-09-21 11:09:48.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:09:48.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:09:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.870 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:09:48.870 +03:00 [INF] Request finished in 1.6736ms 200 text/css +2018-09-21 11:09:48.871 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:09:48.871 +03:00 [INF] Request finished in 2.1222ms 200 text/css +2018-09-21 11:09:48.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:09:48.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.876 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:09:48.876 +03:00 [INF] Request finished in 1.9006ms 200 text/css +2018-09-21 11:09:48.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:09:48.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:09:48.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.927 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:09:48.928 +03:00 [INF] Request finished in 3.9868ms 200 text/css +2018-09-21 11:09:48.928 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:09:48.928 +03:00 [INF] Request finished in 1.5209ms 200 text/css +2018-09-21 11:09:48.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:09:48.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.929 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:09:48.929 +03:00 [INF] Request finished in 1.2253ms 200 text/css +2018-09-21 11:09:48.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:09:48.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.933 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:09:48.933 +03:00 [INF] Request finished in 1.4717ms 200 text/css +2018-09-21 11:09:48.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:09:48.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:09:48.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:09:48.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.960 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:09:48.960 +03:00 [INF] Request finished in 1.0282ms 200 application/javascript +2018-09-21 11:09:48.960 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:09:48.961 +03:00 [INF] Request finished in 1.1727ms 200 application/javascript +2018-09-21 11:09:48.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:09:48.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.968 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:09:48.969 +03:00 [INF] Request finished in 9.5787ms 200 application/javascript +2018-09-21 11:09:48.970 +03:00 [INF] Request finished in 2.1285ms 404 +2018-09-21 11:09:48.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:09:48.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:48.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:48.985 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:09:48.985 +03:00 [INF] Request finished in 13.5322ms 200 application/javascript +2018-09-21 11:09:49.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:09:49.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.029 +03:00 [INF] Request finished in 13.3918ms 404 +2018-09-21 11:09:49.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:09:49.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.035 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:09:49.035 +03:00 [INF] Request finished in 3.4475ms 200 application/javascript +2018-09-21 11:09:49.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:09:49.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:09:49.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.043 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:09:49.044 +03:00 [INF] Request finished in 2.188ms 200 application/javascript +2018-09-21 11:09:49.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:09:49.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.048 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:09:49.049 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:09:49.049 +03:00 [INF] Request finished in 4.2454ms 200 application/javascript +2018-09-21 11:09:49.051 +03:00 [INF] Request finished in 8.5716ms 200 application/javascript +2018-09-21 11:09:49.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:09:49.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.075 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:09:49.076 +03:00 [INF] Request finished in 15.0086ms 200 application/javascript +2018-09-21 11:09:49.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:09:49.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.086 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:09:49.086 +03:00 [INF] Request finished in 1.257ms 200 application/javascript +2018-09-21 11:09:49.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:09:49.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:09:49.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.113 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:09:49.113 +03:00 [INF] Request finished in 1.5698ms 200 application/javascript +2018-09-21 11:09:49.115 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:09:49.115 +03:00 [INF] Request finished in 3.8854ms 200 application/javascript +2018-09-21 11:09:49.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:09:49.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:09:49.130 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:09:49.130 +03:00 [INF] Request finished in 1.718ms 200 application/javascript +2018-09-21 11:09:49.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:09:49.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.132 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:09:49.132 +03:00 [INF] Request finished in 1.4538ms 200 application/javascript +2018-09-21 11:09:49.132 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:09:49.132 +03:00 [INF] Request finished in 1.5327ms 200 application/javascript +2018-09-21 11:09:49.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:09:49.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:09:49.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.149 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.150 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:09:49.150 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:09:49.150 +03:00 [INF] Request finished in 1.2855ms 200 application/javascript +2018-09-21 11:09:49.150 +03:00 [INF] Request finished in 1.1487ms 200 application/javascript +2018-09-21 11:09:49.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:09:49.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:09:49.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.170 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:09:49.171 +03:00 [INF] Request finished in 1.4635ms 200 application/javascript +2018-09-21 11:09:49.171 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:09:49.171 +03:00 [INF] Request finished in 1.144ms 200 application/javascript +2018-09-21 11:09:49.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:09:49.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.177 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:09:49.177 +03:00 [INF] Request finished in 1.3134ms 200 application/javascript +2018-09-21 11:09:49.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:09:49.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:09:49.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.179 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:09:49.179 +03:00 [INF] Request finished in 0.9038ms 200 application/javascript +2018-09-21 11:09:49.184 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:09:49.185 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.187 +03:00 [INF] Authorization failed. +2018-09-21 11:09:49.191 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:09:49.192 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.9989ms. +2018-09-21 11:09:49.192 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:09:49.192 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.5727ms +2018-09-21 11:09:49.192 +03:00 [INF] Request finished in 14.1455ms 200 text/plain; charset=utf-8 +2018-09-21 11:09:49.194 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:09:49.195 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1326ms. +2018-09-21 11:09:49.195 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:09:49.196 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.7312ms +2018-09-21 11:09:49.196 +03:00 [INF] Request finished in 10.2384ms 200 text/plain; charset=utf-8 +2018-09-21 11:09:49.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:09:49.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.214 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:09:49.214 +03:00 [INF] Request finished in 1.1123ms 200 application/javascript +2018-09-21 11:09:49.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:09:49.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:09:49.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.225 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:09:49.226 +03:00 [INF] Request finished in 1.9325ms 200 image/svg+xml +2018-09-21 11:09:49.226 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:09:49.226 +03:00 [INF] Request finished in 1.4701ms 200 application/javascript +2018-09-21 11:09:49.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:09:49.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.230 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:09:49.231 +03:00 [INF] Request finished in 1.283ms 200 image/svg+xml +2018-09-21 11:09:49.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:09:49.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.254 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:09:49.254 +03:00 [INF] Request finished in 9.5104ms 200 font/woff2 +2018-09-21 11:09:49.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:09:49.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:09:49.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.273 +03:00 [INF] Request finished in 0.9466ms 404 +2018-09-21 11:09:49.284 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:09:49.284 +03:00 [INF] Request finished in 12.1424ms 200 image/jpeg +2018-09-21 11:09:49.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:09:49.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:09:49.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.640 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:09:49.640 +03:00 [INF] Request finished in 2.4926ms 200 image/png +2018-09-21 11:09:49.641 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:09:49.642 +03:00 [INF] Request finished in 3.1388ms 200 image/png +2018-09-21 11:09:49.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:09:49.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:09:49.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:09:49.779 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:09:49.779 +03:00 [INF] Request finished in 4.4574ms 200 text/css +2018-09-21 11:09:49.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:09:49.984 +03:00 [INF] Request finished in 1.0175ms 404 +2018-09-21 11:10:27.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:10:27.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.609 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:10:27.641 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:10:27.945 +03:00 [INF] Executed action /Account/Register in 336.19870000000003ms +2018-09-21 11:10:27.945 +03:00 [INF] Request finished in 344.4843ms 200 text/html; charset=utf-8 +2018-09-21 11:10:27.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:10:27.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.981 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:10:27.981 +03:00 [INF] Request finished in 4.7424ms 200 text/css +2018-09-21 11:10:27.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:10:27.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:10:27.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.993 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:10:27.993 +03:00 [INF] Request finished in 2.1567ms 200 text/css +2018-09-21 11:10:27.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.995 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:10:27.996 +03:00 [INF] Request finished in 4.67ms 200 text/css +2018-09-21 11:10:27.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:10:27.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:10:27.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:27.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:27.999 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:10:28.000 +03:00 [INF] Request finished in 2.2195ms 200 text/css +2018-09-21 11:10:28.003 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:10:28.003 +03:00 [INF] Request finished in 5.4169ms 200 text/css +2018-09-21 11:10:28.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:10:28.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:10:28.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.015 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:10:28.016 +03:00 [INF] Request finished in 1.6448ms 200 text/css +2018-09-21 11:10:28.016 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:10:28.016 +03:00 [INF] Request finished in 1.2972ms 200 text/css +2018-09-21 11:10:28.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:10:28.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.022 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:10:28.022 +03:00 [INF] Request finished in 1.3531ms 200 text/css +2018-09-21 11:10:28.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:10:28.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.031 +03:00 [INF] Request finished in 1.6658ms 404 +2018-09-21 11:10:28.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:10:28.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.033 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:10:28.033 +03:00 [INF] Request finished in 1.5774ms 200 application/javascript +2018-09-21 11:10:28.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:10:28.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.040 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:10:28.041 +03:00 [INF] Request finished in 6.4346ms 200 application/javascript +2018-09-21 11:10:28.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:10:28.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:10:28.059 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:10:28.059 +03:00 [INF] Request finished in 1.1821ms 200 application/javascript +2018-09-21 11:10:28.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.060 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.066 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:10:28.066 +03:00 [INF] Request finished in 6.5021ms 200 application/javascript +2018-09-21 11:10:28.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:10:28.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.068 +03:00 [INF] Request finished in 1.8256ms 404 +2018-09-21 11:10:28.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:10:28.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.072 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:10:28.072 +03:00 [INF] Request finished in 1.3084ms 200 application/javascript +2018-09-21 11:10:28.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:10:28.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:10:28.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.093 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:10:28.093 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:10:28.093 +03:00 [INF] Request finished in 1.1419ms 200 application/javascript +2018-09-21 11:10:28.093 +03:00 [INF] Request finished in 1.1714ms 200 application/javascript +2018-09-21 11:10:28.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:10:28.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:10:28.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.105 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:10:28.105 +03:00 [INF] Request finished in 5.1649ms 200 application/javascript +2018-09-21 11:10:28.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:10:28.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.109 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:10:28.109 +03:00 [INF] Request finished in 1.3877ms 200 application/javascript +2018-09-21 11:10:28.116 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:10:28.117 +03:00 [INF] Request finished in 13.2924ms 200 application/javascript +2018-09-21 11:10:28.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:10:28.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.122 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:10:28.122 +03:00 [INF] Request finished in 1.2819ms 200 application/javascript +2018-09-21 11:10:28.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:10:28.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.133 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:10:28.133 +03:00 [INF] Request finished in 3.4745ms 200 application/javascript +2018-09-21 11:10:28.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:10:28.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:10:28.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.137 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:10:28.137 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:10:28.137 +03:00 [INF] Request finished in 1.169ms 200 application/javascript +2018-09-21 11:10:28.137 +03:00 [INF] Request finished in 1.1767ms 200 application/javascript +2018-09-21 11:10:28.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:10:28.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.150 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.151 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:10:28.151 +03:00 [INF] Request finished in 1.4798ms 200 application/javascript +2018-09-21 11:10:28.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:10:28.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.155 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:10:28.155 +03:00 [INF] Request finished in 1.4923ms 200 application/javascript +2018-09-21 11:10:28.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:10:28.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.166 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:10:28.166 +03:00 [INF] Request finished in 3.9791ms 200 application/javascript +2018-09-21 11:10:28.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:10:28.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:10:28.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.169 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:10:28.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.169 +03:00 [INF] Request finished in 2.3647ms 200 application/javascript +2018-09-21 11:10:28.170 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:10:28.170 +03:00 [INF] Request finished in 1.5516ms 200 application/javascript +2018-09-21 11:10:28.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:10:28.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.173 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:10:28.173 +03:00 [INF] Request finished in 1.7181ms 200 application/javascript +2018-09-21 11:10:28.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:10:28.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.174 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:10:28.174 +03:00 [INF] Request finished in 1.4602ms 200 application/javascript +2018-09-21 11:10:28.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:10:28.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:10:28.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.188 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:10:28.189 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:10:28.189 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.190 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:10:28.191 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:10:28.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.191 +03:00 [INF] Request finished in 0.976ms 200 application/javascript +2018-09-21 11:10:28.191 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:10:28.192 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1476ms. +2018-09-21 11:10:28.192 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.192 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:10:28.193 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.193 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.193 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0936ms +2018-09-21 11:10:28.193 +03:00 [INF] Authorization failed. +2018-09-21 11:10:28.193 +03:00 [INF] Request finished in 6.2973ms 200 text/plain; charset=utf-8 +2018-09-21 11:10:28.196 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.1192ms. +2018-09-21 11:10:28.196 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:10:28.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:10:28.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:10:28.196 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.3362ms +2018-09-21 11:10:28.196 +03:00 [INF] Request finished in 16.732ms 200 text/plain; charset=utf-8 +2018-09-21 11:10:28.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.197 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:10:28.198 +03:00 [INF] Request finished in 1.6383ms 200 application/javascript +2018-09-21 11:10:28.198 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:10:28.198 +03:00 [INF] Request finished in 2.1491ms 200 image/svg+xml +2018-09-21 11:10:28.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:10:28.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.201 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:10:28.201 +03:00 [INF] Request finished in 1.3891ms 200 image/svg+xml +2018-09-21 11:10:28.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:10:28.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.271 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:10:28.271 +03:00 [INF] Request finished in 2.5986ms 200 font/woff2 +2018-09-21 11:10:28.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:10:28.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.294 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:10:28.294 +03:00 [INF] Request finished in 7.0549ms 200 image/jpeg +2018-09-21 11:10:28.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:10:28.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.322 +03:00 [INF] Request finished in 1.8837ms 404 +2018-09-21 11:10:28.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:10:28.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.510 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:10:28.510 +03:00 [INF] Request finished in 1.1845ms 200 image/png +2018-09-21 11:10:28.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:10:28.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.514 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:10:28.514 +03:00 [INF] Request finished in 2.6442ms 200 image/png +2018-09-21 11:10:28.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:10:28.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:28.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:28.544 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:10:28.544 +03:00 [INF] Request finished in 1.378ms 200 text/css +2018-09-21 11:10:28.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:10:28.790 +03:00 [INF] Request finished in 1.0434ms 404 +2018-09-21 11:10:38.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:10:38.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.046 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:10:38.073 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:10:38.403 +03:00 [INF] Executed action /Account/Register in 357.127ms +2018-09-21 11:10:38.403 +03:00 [INF] Request finished in 365.5999ms 200 text/html; charset=utf-8 +2018-09-21 11:10:38.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:10:38.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:10:38.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.439 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:10:38.439 +03:00 [INF] Request finished in 1.8901ms 200 text/css +2018-09-21 11:10:38.440 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:10:38.440 +03:00 [INF] Request finished in 2.9235ms 200 text/css +2018-09-21 11:10:38.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:10:38.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.461 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:10:38.461 +03:00 [INF] Request finished in 1.6644ms 200 text/css +2018-09-21 11:10:38.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:10:38.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:10:38.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.464 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:10:38.464 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:10:38.464 +03:00 [INF] Request finished in 2.2111ms 200 text/css +2018-09-21 11:10:38.464 +03:00 [INF] Request finished in 1.2996ms 200 text/css +2018-09-21 11:10:38.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731137159080072 +2018-09-21 11:10:38.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:10:38.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.472 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:10:38.472 +03:00 [INF] Request finished in 1.7038ms 200 text/css +2018-09-21 11:10:38.474 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:10:38.474 +03:00 [INF] Request finished in 2.0665ms 200 text/css +2018-09-21 11:10:38.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:10:38.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.479 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:10:38.479 +03:00 [INF] Request finished in 1.6972ms 200 text/css +2018-09-21 11:10:38.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:10:38.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.483 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:10:38.483 +03:00 [INF] Request finished in 1.4441ms 200 application/javascript +2018-09-21 11:10:38.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:10:38.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.486 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:10:38.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.489 +03:00 [INF] Request finished in 2.082ms 404 +2018-09-21 11:10:38.492 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:10:38.492 +03:00 [INF] Request finished in 8.6427ms 200 application/javascript +2018-09-21 11:10:38.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:10:38.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.497 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:10:38.497 +03:00 [INF] Request finished in 1.6546ms 200 application/javascript +2018-09-21 11:10:38.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:10:38.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.509 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:10:38.509 +03:00 [INF] Request finished in 7.7482ms 200 application/javascript +2018-09-21 11:10:38.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:10:38.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.517 +03:00 [INF] Request finished in 1.1875ms 404 +2018-09-21 11:10:38.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:10:38.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.544 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:10:38.545 +03:00 [INF] Request finished in 1.8982ms 200 application/javascript +2018-09-21 11:10:38.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:10:38.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.561 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:10:38.561 +03:00 [INF] Request finished in 1.7997ms 200 application/javascript +2018-09-21 11:10:38.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:10:38.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.574 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:10:38.575 +03:00 [INF] Request finished in 2.2953ms 200 application/javascript +2018-09-21 11:10:38.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:10:38.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.579 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:10:38.580 +03:00 [INF] Request finished in 2.3686ms 200 application/javascript +2018-09-21 11:10:38.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:10:38.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.601 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:10:38.601 +03:00 [INF] Request finished in 5.8704ms 200 application/javascript +2018-09-21 11:10:38.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:10:38.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.605 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:10:38.605 +03:00 [INF] Request finished in 1.6723ms 200 application/javascript +2018-09-21 11:10:38.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:10:38.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.611 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:10:38.612 +03:00 [INF] Request finished in 1.6546ms 200 application/javascript +2018-09-21 11:10:38.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:10:38.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:10:38.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.616 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:10:38.616 +03:00 [INF] Request finished in 1.3806ms 200 application/javascript +2018-09-21 11:10:38.616 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:10:38.616 +03:00 [INF] Request finished in 1.6808ms 200 application/javascript +2018-09-21 11:10:38.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:10:38.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.621 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:10:38.622 +03:00 [INF] Request finished in 2.6173ms 200 application/javascript +2018-09-21 11:10:38.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:10:38.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:10:38.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:10:38.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:10:38.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:10:38.629 +03:00 [INF] Request finished in 1.3159ms 200 application/javascript +2018-09-21 11:10:38.629 +03:00 [INF] Request finished in 1.4627ms 200 application/javascript +2018-09-21 11:10:38.630 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:10:38.630 +03:00 [INF] Request finished in 2.129ms 200 application/javascript +2018-09-21 11:10:38.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:10:38.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:10:38.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.631 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:10:38.631 +03:00 [INF] Request finished in 1.0867ms 200 application/javascript +2018-09-21 11:10:38.632 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:10:38.633 +03:00 [INF] Request finished in 1.5949ms 200 application/javascript +2018-09-21 11:10:38.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:10:38.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.638 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:10:38.638 +03:00 [INF] Request finished in 2.705ms 200 application/javascript +2018-09-21 11:10:38.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:10:38.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.648 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:10:38.648 +03:00 [INF] Request finished in 1.7924ms 200 application/javascript +2018-09-21 11:10:38.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:10:38.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:10:38.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.653 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:10:38.657 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:10:38.657 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:10:38.658 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2781ms. +2018-09-21 11:10:38.658 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:10:38.659 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.3462000000000005ms +2018-09-21 11:10:38.659 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:10:38.659 +03:00 [INF] Request finished in 9.2146ms 200 text/plain; charset=utf-8 +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.659 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:10:38.660 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.661 +03:00 [INF] Authorization failed. +2018-09-21 11:10:38.662 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:10:38.662 +03:00 [INF] Request finished in 1.7541ms 200 image/svg+xml +2018-09-21 11:10:38.663 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.0282ms. +2018-09-21 11:10:38.663 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:10:38.664 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.1868ms +2018-09-21 11:10:38.664 +03:00 [INF] Request finished in 14.6633ms 200 text/plain; charset=utf-8 +2018-09-21 11:10:38.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:10:38.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.669 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:10:38.669 +03:00 [INF] Request finished in 1.7706ms 200 image/svg+xml +2018-09-21 11:10:38.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:10:38.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:10:38.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.674 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:10:38.674 +03:00 [INF] Request finished in 1.4611ms 200 application/javascript +2018-09-21 11:10:38.674 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:10:38.674 +03:00 [INF] Request finished in 1.1673ms 200 application/javascript +2018-09-21 11:10:38.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:10:38.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.735 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.737 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:10:38.737 +03:00 [INF] Request finished in 2.4579ms 200 font/woff2 +2018-09-21 11:10:38.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:10:38.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.776 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:10:38.777 +03:00 [INF] Request finished in 8.893ms 200 image/jpeg +2018-09-21 11:10:38.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:10:38.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:38.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:38.811 +03:00 [INF] Request finished in 1.2062ms 404 +2018-09-21 11:10:39.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:10:39.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:39.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:39.019 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:10:39.019 +03:00 [INF] Request finished in 1.4103ms 200 image/png +2018-09-21 11:10:39.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:10:39.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:39.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:39.020 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:10:39.020 +03:00 [INF] Request finished in 1.2608ms 200 image/png +2018-09-21 11:10:39.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:10:39.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:10:39.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:10:39.092 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:10:39.092 +03:00 [INF] Request finished in 8.5016ms 200 text/css +2018-09-21 11:10:39.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:10:39.249 +03:00 [INF] Request finished in 1.2316ms 404 +2018-09-21 11:11:45.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:11:45.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:45.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:45.644 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:11:45.672 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:11:45.980 +03:00 [INF] Executed action /Account/Register in 336.0556ms +2018-09-21 11:11:45.980 +03:00 [INF] Request finished in 347.296ms 200 text/html; charset=utf-8 +2018-09-21 11:11:46.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:11:46.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:11:46.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.033 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:11:46.033 +03:00 [INF] Request finished in 2.1502ms 200 text/css +2018-09-21 11:11:46.035 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:11:46.035 +03:00 [INF] Request finished in 5.4885ms 200 text/css +2018-09-21 11:11:46.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:11:46.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:11:46.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.042 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:11:46.042 +03:00 [INF] Request finished in 3.3645ms 200 text/css +2018-09-21 11:11:46.043 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:11:46.043 +03:00 [INF] Request finished in 2.4388ms 200 text/css +2018-09-21 11:11:46.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:11:46.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:11:46.065 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:11:46.065 +03:00 [INF] Request finished in 1.5629ms 200 text/css +2018-09-21 11:11:46.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.068 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:11:46.068 +03:00 [INF] Request finished in 3.0348ms 200 text/css +2018-09-21 11:11:46.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143053054025 +2018-09-21 11:11:46.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.069 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:11:46.069 +03:00 [INF] Request finished in 0.9868ms 200 text/css +2018-09-21 11:11:46.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:11:46.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.075 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:11:46.076 +03:00 [INF] Request finished in 2.4471ms 200 text/css +2018-09-21 11:11:46.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:11:46.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.081 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:11:46.081 +03:00 [INF] Request finished in 2.1446ms 200 application/javascript +2018-09-21 11:11:46.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:11:46.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:11:46.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.090 +03:00 [INF] Request finished in 2.633ms 404 +2018-09-21 11:11:46.091 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:11:46.092 +03:00 [INF] Request finished in 4.5328ms 200 application/javascript +2018-09-21 11:11:46.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:11:46.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:11:46.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.098 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:11:46.098 +03:00 [INF] Request finished in 6.3198ms 200 application/javascript +2018-09-21 11:11:46.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:11:46.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.099 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:11:46.099 +03:00 [INF] Request finished in 4.1803ms 200 application/javascript +2018-09-21 11:11:46.099 +03:00 [INF] Request finished in 1.071ms 404 +2018-09-21 11:11:46.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:11:46.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.108 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:11:46.109 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:11:46.109 +03:00 [INF] Request finished in 2.2754ms 200 application/javascript +2018-09-21 11:11:46.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.111 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:11:46.111 +03:00 [INF] Request finished in 1.6628ms 200 application/javascript +2018-09-21 11:11:46.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:11:46.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.126 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:11:46.126 +03:00 [INF] Request finished in 5.509ms 200 application/javascript +2018-09-21 11:11:46.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:11:46.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.134 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:11:46.134 +03:00 [INF] Request finished in 4.0107ms 200 application/javascript +2018-09-21 11:11:46.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:11:46.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.162 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:11:46.162 +03:00 [INF] Request finished in 20.9529ms 200 application/javascript +2018-09-21 11:11:46.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:11:46.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.184 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:11:46.184 +03:00 [INF] Request finished in 1.2915ms 200 application/javascript +2018-09-21 11:11:46.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:11:46.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.194 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:11:46.194 +03:00 [INF] Request finished in 1.2881ms 200 application/javascript +2018-09-21 11:11:46.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:11:46.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.203 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:11:46.203 +03:00 [INF] Request finished in 1.6853ms 200 application/javascript +2018-09-21 11:11:46.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:11:46.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.222 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:11:46.223 +03:00 [INF] Request finished in 2.7735ms 200 application/javascript +2018-09-21 11:11:46.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:11:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.238 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:11:46.238 +03:00 [INF] Request finished in 2.9996ms 200 application/javascript +2018-09-21 11:11:46.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:11:46.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.241 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:11:46.241 +03:00 [INF] Request finished in 2.7905ms 200 application/javascript +2018-09-21 11:11:46.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:11:46.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.245 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:11:46.246 +03:00 [INF] Request finished in 2.6604ms 200 application/javascript +2018-09-21 11:11:46.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:11:46.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:11:46.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.252 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:11:46.252 +03:00 [INF] Request finished in 1.3456ms 200 application/javascript +2018-09-21 11:11:46.252 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:11:46.252 +03:00 [INF] Request finished in 1.844ms 200 application/javascript +2018-09-21 11:11:46.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:11:46.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.261 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:11:46.261 +03:00 [INF] Request finished in 1.2735ms 200 application/javascript +2018-09-21 11:11:46.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:11:46.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.263 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:11:46.263 +03:00 [INF] Request finished in 3.2158ms 200 application/javascript +2018-09-21 11:11:46.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:11:46.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.265 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:11:46.266 +03:00 [INF] Request finished in 1.6567ms 200 application/javascript +2018-09-21 11:11:46.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:11:46.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:11:46.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.276 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:11:46.277 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:11:46.277 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.14300000000000002ms. +2018-09-21 11:11:46.277 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:11:46.277 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:11:46.277 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4862ms +2018-09-21 11:11:46.278 +03:00 [INF] Request finished in 7.8294ms 200 text/plain; charset=utf-8 +2018-09-21 11:11:46.278 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:11:46.278 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.278 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.278 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.279 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.280 +03:00 [INF] Authorization failed. +2018-09-21 11:11:46.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:11:46.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.281 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.1949ms. +2018-09-21 11:11:46.281 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:11:46.282 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:11:46.282 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.2702ms +2018-09-21 11:11:46.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:11:46.282 +03:00 [INF] Request finished in 1.3256ms 200 application/javascript +2018-09-21 11:11:46.282 +03:00 [INF] Request finished in 12.2182ms 200 text/plain; charset=utf-8 +2018-09-21 11:11:46.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:11:46.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.283 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:11:46.283 +03:00 [INF] Request finished in 0.7673ms 200 application/javascript +2018-09-21 11:11:46.285 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:11:46.285 +03:00 [INF] Request finished in 3.4773ms 200 image/svg+xml +2018-09-21 11:11:46.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:11:46.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.293 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:11:46.293 +03:00 [INF] Request finished in 1.2846ms 200 image/svg+xml +2018-09-21 11:11:46.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:11:46.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.335 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:11:46.335 +03:00 [INF] Request finished in 2.3334ms 200 font/woff2 +2018-09-21 11:11:46.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:11:46.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.372 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:11:46.372 +03:00 [INF] Request finished in 7.7816ms 200 image/jpeg +2018-09-21 11:11:46.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:11:46.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.399 +03:00 [INF] Request finished in 2.146ms 404 +2018-09-21 11:11:46.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:11:46.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.599 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:11:46.599 +03:00 [INF] Request finished in 1.1003ms 200 image/png +2018-09-21 11:11:46.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:11:46.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.603 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:11:46.604 +03:00 [INF] Request finished in 1.8871ms 200 image/png +2018-09-21 11:11:46.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143053054025 +2018-09-21 11:11:46.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:46.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:46.681 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:11:46.681 +03:00 [INF] Request finished in 0.9181ms 200 text/css +2018-09-21 11:11:46.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:11:46.908 +03:00 [INF] Request finished in 0.9183ms 404 +2018-09-21 11:11:56.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:11:56.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.287 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:11:56.307 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:11:56.360 +03:00 [INF] Executed action /Account/Register in 72.2923ms +2018-09-21 11:11:56.360 +03:00 [INF] Request finished in 73.5717ms 200 text/html; charset=utf-8 +2018-09-21 11:11:56.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:11:56.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.398 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:11:56.398 +03:00 [INF] Request finished in 2.7695ms 200 text/css +2018-09-21 11:11:56.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:11:56.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.402 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:11:56.403 +03:00 [INF] Request finished in 1.7415ms 200 text/css +2018-09-21 11:11:56.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:11:56.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:11:56.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.410 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:11:56.410 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:11:56.410 +03:00 [INF] Request finished in 0.9696ms 200 text/css +2018-09-21 11:11:56.410 +03:00 [INF] Request finished in 1.4559ms 200 text/css +2018-09-21 11:11:56.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:11:56.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.428 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:11:56.429 +03:00 [INF] Request finished in 2.8241ms 200 text/css +2018-09-21 11:11:56.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143159347974 +2018-09-21 11:11:56.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:11:56.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.440 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:11:56.440 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:11:56.440 +03:00 [INF] Request finished in 1.2439ms 200 text/css +2018-09-21 11:11:56.440 +03:00 [INF] Request finished in 0.9601ms 200 text/css +2018-09-21 11:11:56.440 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:11:56.440 +03:00 [INF] Request finished in 1.5426ms 200 text/css +2018-09-21 11:11:56.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:11:56.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.444 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:11:56.445 +03:00 [INF] Request finished in 1.3906ms 200 application/javascript +2018-09-21 11:11:56.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:11:56.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.450 +03:00 [INF] Request finished in 1.5428ms 404 +2018-09-21 11:11:56.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:11:56.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:11:56.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.455 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:11:56.455 +03:00 [INF] Request finished in 0.9649ms 200 application/javascript +2018-09-21 11:11:56.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:11:56.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:11:56.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.462 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:11:56.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.462 +03:00 [INF] Request finished in 9.0028ms 200 application/javascript +2018-09-21 11:11:56.463 +03:00 [INF] Request finished in 1.7287ms 404 +2018-09-21 11:11:56.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:11:56.464 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:11:56.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.464 +03:00 [INF] Request finished in 5.2918ms 200 application/javascript +2018-09-21 11:11:56.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.465 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:11:56.465 +03:00 [INF] Request finished in 1.1579ms 200 application/javascript +2018-09-21 11:11:56.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:11:56.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.467 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:11:56.468 +03:00 [INF] Request finished in 2.3441ms 200 application/javascript +2018-09-21 11:11:56.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:11:56.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.481 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:11:56.481 +03:00 [INF] Request finished in 1.613ms 200 application/javascript +2018-09-21 11:11:56.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:11:56.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.507 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:11:56.507 +03:00 [INF] Request finished in 4.3525ms 200 application/javascript +2018-09-21 11:11:56.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:11:56.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:11:56.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.534 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:11:56.535 +03:00 [INF] Request finished in 2.1702ms 200 application/javascript +2018-09-21 11:11:56.545 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:11:56.545 +03:00 [INF] Request finished in 15.2429ms 200 application/javascript +2018-09-21 11:11:56.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:11:56.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.547 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:11:56.547 +03:00 [INF] Request finished in 1.1863ms 200 application/javascript +2018-09-21 11:11:56.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:11:56.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:11:56.554 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:11:56.554 +03:00 [INF] Request finished in 2.8798ms 200 application/javascript +2018-09-21 11:11:56.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.555 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:11:56.555 +03:00 [INF] Request finished in 1.4354ms 200 application/javascript +2018-09-21 11:11:56.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:11:56.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.568 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:11:56.568 +03:00 [INF] Request finished in 5.331ms 200 application/javascript +2018-09-21 11:11:56.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:11:56.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.574 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:11:56.574 +03:00 [INF] Request finished in 1.5699ms 200 application/javascript +2018-09-21 11:11:56.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:11:56.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.577 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:11:56.577 +03:00 [INF] Request finished in 1.2145ms 200 application/javascript +2018-09-21 11:11:56.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:11:56.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:11:56.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:11:56.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:11:56.585 +03:00 [INF] Request finished in 1.4675ms 200 application/javascript +2018-09-21 11:11:56.585 +03:00 [INF] Request finished in 1.4366ms 200 application/javascript +2018-09-21 11:11:56.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:11:56.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.590 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:11:56.591 +03:00 [INF] Request finished in 3.4214ms 200 application/javascript +2018-09-21 11:11:56.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:11:56.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:11:56.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:11:56.597 +03:00 [INF] Request finished in 2.4163ms 200 application/javascript +2018-09-21 11:11:56.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.598 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:11:56.599 +03:00 [INF] Request finished in 1.411ms 200 application/javascript +2018-09-21 11:11:56.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:11:56.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.602 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:11:56.605 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.605 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.606 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.607 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.608 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.608 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.608 +03:00 [INF] Authorization failed. +2018-09-21 11:11:56.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:11:56.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.609 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.4023ms. +2018-09-21 11:11:56.609 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:11:56.610 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.2462ms +2018-09-21 11:11:56.610 +03:00 [INF] Request finished in 8.9525ms 200 text/plain; charset=utf-8 +2018-09-21 11:11:56.610 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:11:56.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:11:56.611 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:11:56.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.611 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.097200000000000009ms. +2018-09-21 11:11:56.611 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:11:56.611 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1535ms +2018-09-21 11:11:56.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.611 +03:00 [INF] Request finished in 2.6138ms 200 text/plain; charset=utf-8 +2018-09-21 11:11:56.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:11:56.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.612 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:11:56.612 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:11:56.612 +03:00 [INF] Request finished in 2.0906ms 200 application/javascript +2018-09-21 11:11:56.612 +03:00 [INF] Request finished in 0.8074ms 200 application/javascript +2018-09-21 11:11:56.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:11:56.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.618 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:11:56.618 +03:00 [INF] Request finished in 1.3772ms 200 image/svg+xml +2018-09-21 11:11:56.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:11:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.621 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:11:56.621 +03:00 [INF] Request finished in 1.0497ms 200 image/svg+xml +2018-09-21 11:11:56.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:11:56.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.682 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:11:56.683 +03:00 [INF] Request finished in 3.6467ms 200 font/woff2 +2018-09-21 11:11:56.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:11:56.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.714 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:11:56.714 +03:00 [INF] Request finished in 10.2336ms 200 image/jpeg +2018-09-21 11:11:56.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:11:56.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.731 +03:00 [INF] Request finished in 1.116ms 404 +2018-09-21 11:11:56.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:11:56.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.936 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:11:56.936 +03:00 [INF] Request finished in 2.1203ms 200 image/png +2018-09-21 11:11:56.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:11:56.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.941 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:11:56.941 +03:00 [INF] Request finished in 1.0706ms 200 image/png +2018-09-21 11:11:56.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143159347974 +2018-09-21 11:11:56.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:11:56.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:11:56.998 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:11:56.998 +03:00 [INF] Request finished in 1.0006ms 200 text/css +2018-09-21 11:11:57.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:11:57.236 +03:00 [INF] Request finished in 0.8924ms 404 +2018-09-21 11:12:31.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:12:31.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:31.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:31.871 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:12:31.895 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:12:31.950 +03:00 [INF] Executed action /Account/Register in 78.886400000000009ms +2018-09-21 11:12:31.950 +03:00 [INF] Request finished in 80.3272ms 200 text/html; charset=utf-8 +2018-09-21 11:12:32.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:12:32.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:12:32.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.003 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:12:32.003 +03:00 [INF] Request finished in 2.0987ms 200 text/css +2018-09-21 11:12:32.006 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:12:32.006 +03:00 [INF] Request finished in 4.7659ms 200 text/css +2018-09-21 11:12:32.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:12:32.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:12:32.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:12:32.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.023 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:12:32.023 +03:00 [INF] Request finished in 3.3123ms 200 text/css +2018-09-21 11:12:32.024 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:12:32.024 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:12:32.024 +03:00 [INF] Request finished in 1.5004ms 200 text/css +2018-09-21 11:12:32.024 +03:00 [INF] Request finished in 1.5635ms 200 text/css +2018-09-21 11:12:32.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:12:32.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.028 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:12:32.028 +03:00 [INF] Request finished in 2.1758ms 200 text/css +2018-09-21 11:12:32.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143443855847 +2018-09-21 11:12:32.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.033 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:12:32.033 +03:00 [INF] Request finished in 1.4196ms 200 text/css +2018-09-21 11:12:32.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:12:32.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.041 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:12:32.041 +03:00 [INF] Request finished in 1.5778ms 200 text/css +2018-09-21 11:12:32.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:12:32.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.046 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:12:32.046 +03:00 [INF] Request finished in 1.4499ms 200 application/javascript +2018-09-21 11:12:32.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:12:32.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.056 +03:00 [INF] Request finished in 1.4629ms 404 +2018-09-21 11:12:32.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:12:32.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.064 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:12:32.064 +03:00 [INF] Request finished in 7.049ms 200 application/javascript +2018-09-21 11:12:32.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:12:32.070 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.071 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:12:32.071 +03:00 [INF] Request finished in 1.2227ms 200 application/javascript +2018-09-21 11:12:32.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:12:32.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.087 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:12:32.088 +03:00 [INF] Request finished in 7.164ms 200 application/javascript +2018-09-21 11:12:32.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:12:32.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.105 +03:00 [INF] Request finished in 2.1652ms 404 +2018-09-21 11:12:32.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:12:32.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.114 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:12:32.114 +03:00 [INF] Request finished in 1.0722ms 200 application/javascript +2018-09-21 11:12:32.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:12:32.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.125 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:12:32.125 +03:00 [INF] Request finished in 1.4059ms 200 application/javascript +2018-09-21 11:12:32.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:12:32.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.132 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:12:32.132 +03:00 [INF] Request finished in 1.1502ms 200 application/javascript +2018-09-21 11:12:32.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:12:32.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.136 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.138 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:12:32.138 +03:00 [INF] Request finished in 2.4342ms 200 application/javascript +2018-09-21 11:12:32.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:12:32.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:12:32.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.144 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:12:32.145 +03:00 [INF] Request finished in 2.7012ms 200 application/javascript +2018-09-21 11:12:32.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:12:32.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:12:32.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.147 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:12:32.147 +03:00 [INF] Request finished in 1.2704ms 200 application/javascript +2018-09-21 11:12:32.147 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:12:32.147 +03:00 [INF] Request finished in 1.4451ms 200 application/javascript +2018-09-21 11:12:32.148 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:12:32.148 +03:00 [INF] Request finished in 7.9329ms 200 application/javascript +2018-09-21 11:12:32.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:12:32.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:12:32.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:12:32.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.156 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:12:32.156 +03:00 [INF] Request finished in 1.3143ms 200 application/javascript +2018-09-21 11:12:32.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.157 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:12:32.157 +03:00 [INF] Request finished in 3.4996ms 200 application/javascript +2018-09-21 11:12:32.158 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:12:32.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:12:32.158 +03:00 [INF] Request finished in 2.0419ms 200 application/javascript +2018-09-21 11:12:32.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.159 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:12:32.159 +03:00 [INF] Request finished in 1.228ms 200 application/javascript +2018-09-21 11:12:32.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:12:32.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.165 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:12:32.165 +03:00 [INF] Request finished in 1.3099ms 200 application/javascript +2018-09-21 11:12:32.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:12:32.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.173 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:12:32.174 +03:00 [INF] Request finished in 3.6774ms 200 application/javascript +2018-09-21 11:12:32.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:12:32.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:12:32.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:12:32.176 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:12:32.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.176 +03:00 [INF] Request finished in 1.8806ms 200 application/javascript +2018-09-21 11:12:32.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.177 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:12:32.177 +03:00 [INF] Request finished in 1.5285ms 200 application/javascript +2018-09-21 11:12:32.179 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:12:32.180 +03:00 [INF] Request finished in 4.0765ms 200 application/javascript +2018-09-21 11:12:32.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:12:32.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.182 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.183 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:12:32.184 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.184 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.185 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.185 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.186 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.186 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.186 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.187 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.188 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.188 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.188 +03:00 [INF] Authorization failed. +2018-09-21 11:12:32.188 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:12:32.189 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.2635000000000005ms. +2018-09-21 11:12:32.189 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:12:32.190 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:12:32.190 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.9212000000000007ms +2018-09-21 11:12:32.190 +03:00 [INF] Request finished in 8.2442ms 200 text/plain; charset=utf-8 +2018-09-21 11:12:32.190 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1063ms. +2018-09-21 11:12:32.190 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:12:32.190 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6323ms +2018-09-21 11:12:32.190 +03:00 [INF] Request finished in 3.6019ms 200 text/plain; charset=utf-8 +2018-09-21 11:12:32.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:12:32.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.195 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:12:32.195 +03:00 [INF] Request finished in 1.3575ms 200 application/javascript +2018-09-21 11:12:32.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:12:32.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.199 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:12:32.199 +03:00 [INF] Request finished in 2.2934ms 200 application/javascript +2018-09-21 11:12:32.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:12:32.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.205 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:12:32.205 +03:00 [INF] Request finished in 1.1298ms 200 image/svg+xml +2018-09-21 11:12:32.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:12:32.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.213 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:12:32.213 +03:00 [INF] Request finished in 1.5326ms 200 image/svg+xml +2018-09-21 11:12:32.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:12:32.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.254 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:12:32.254 +03:00 [INF] Request finished in 3.2382ms 200 font/woff2 +2018-09-21 11:12:32.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:12:32.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.303 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:12:32.303 +03:00 [INF] Request finished in 7.8008ms 200 image/jpeg +2018-09-21 11:12:32.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:12:32.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.355 +03:00 [INF] Request finished in 1.844ms 404 +2018-09-21 11:12:32.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:12:32.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.566 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:12:32.566 +03:00 [INF] Request finished in 2.7031ms 200 image/png +2018-09-21 11:12:32.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:12:32.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.569 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:12:32.569 +03:00 [INF] Request finished in 1.4067ms 200 image/png +2018-09-21 11:12:32.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:12:32.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:32.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:32.624 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:12:32.624 +03:00 [INF] Request finished in 4.0645ms 200 text/css +2018-09-21 11:12:32.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:12:32.879 +03:00 [INF] Request finished in 1.1256ms 404 +2018-09-21 11:12:58.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:12:58.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.786 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:12:58.817 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:12:58.880 +03:00 [INF] Executed action /Account/Register in 93.605200000000011ms +2018-09-21 11:12:58.880 +03:00 [INF] Request finished in 95.1168ms 200 text/html; charset=utf-8 +2018-09-21 11:12:58.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:12:58.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:12:58.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.923 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.923 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:12:58.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.924 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:12:58.924 +03:00 [INF] Request finished in 1.4464ms 200 text/css +2018-09-21 11:12:58.924 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:12:58.925 +03:00 [INF] Request finished in 1.292ms 200 text/css +2018-09-21 11:12:58.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:12:58.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:12:58.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.926 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:12:58.926 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:12:58.926 +03:00 [INF] Request finished in 1.097ms 200 text/css +2018-09-21 11:12:58.926 +03:00 [INF] Request finished in 1.0702ms 200 text/css +2018-09-21 11:12:58.926 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:12:58.926 +03:00 [INF] Request finished in 4.1395ms 200 text/css +2018-09-21 11:12:58.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:12:58.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.955 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:12:58.956 +03:00 [INF] Request finished in 1.7008ms 200 text/css +2018-09-21 11:12:58.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143768102587 +2018-09-21 11:12:58.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.959 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:12:58.959 +03:00 [INF] Request finished in 2.4702ms 200 text/css +2018-09-21 11:12:58.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:12:58.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.963 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:12:58.963 +03:00 [INF] Request finished in 1.7408ms 200 text/css +2018-09-21 11:12:58.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:12:58.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.972 +03:00 [INF] Request finished in 2.4607ms 404 +2018-09-21 11:12:58.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:12:58.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:12:58.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.973 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.974 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:12:58.974 +03:00 [INF] Request finished in 1.1222ms 200 application/javascript +2018-09-21 11:12:58.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:12:58.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:12:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.977 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:12:58.977 +03:00 [INF] Request finished in 1.1037ms 200 application/javascript +2018-09-21 11:12:58.981 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:12:58.981 +03:00 [INF] Request finished in 8.4916ms 200 application/javascript +2018-09-21 11:12:58.982 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:12:58.982 +03:00 [INF] Request finished in 5.9844ms 200 application/javascript +2018-09-21 11:12:58.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:12:58.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.983 +03:00 [INF] Request finished in 1.0682ms 404 +2018-09-21 11:12:58.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:12:58.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.991 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:12:58.991 +03:00 [INF] Request finished in 1.127ms 200 application/javascript +2018-09-21 11:12:58.993 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:12:58.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:58.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:58.994 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:12:58.995 +03:00 [INF] Request finished in 1.5744ms 200 application/javascript +2018-09-21 11:12:59.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:12:59.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:12:59.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.002 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:12:59.002 +03:00 [INF] Request finished in 1.9855ms 200 application/javascript +2018-09-21 11:12:59.005 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:12:59.005 +03:00 [INF] Request finished in 2.8252ms 200 application/javascript +2018-09-21 11:12:59.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:12:59.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:12:59.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.017 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:12:59.017 +03:00 [INF] Request finished in 1.3094ms 200 application/javascript +2018-09-21 11:12:59.027 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:12:59.027 +03:00 [INF] Request finished in 13.7943ms 200 application/javascript +2018-09-21 11:12:59.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:12:59.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.031 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:12:59.031 +03:00 [INF] Request finished in 1.5548ms 200 application/javascript +2018-09-21 11:12:59.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:12:59.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:12:59.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.052 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:12:59.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.052 +03:00 [INF] Request finished in 1.0352ms 200 application/javascript +2018-09-21 11:12:59.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.053 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:12:59.053 +03:00 [INF] Request finished in 2.322ms 200 application/javascript +2018-09-21 11:12:59.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:12:59.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.085 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:12:59.085 +03:00 [INF] Request finished in 2.2956ms 200 application/javascript +2018-09-21 11:12:59.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:12:59.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:12:59.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.089 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:12:59.089 +03:00 [INF] Request finished in 2.0787ms 200 application/javascript +2018-09-21 11:12:59.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:12:59.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.090 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.090 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:12:59.090 +03:00 [INF] Request finished in 1.1533ms 200 application/javascript +2018-09-21 11:12:59.092 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:12:59.092 +03:00 [INF] Request finished in 6.2804ms 200 application/javascript +2018-09-21 11:12:59.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:12:59.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.098 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:12:59.098 +03:00 [INF] Request finished in 1.2395ms 200 application/javascript +2018-09-21 11:12:59.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:12:59.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.109 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:12:59.109 +03:00 [INF] Request finished in 6.4517ms 200 application/javascript +2018-09-21 11:12:59.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:12:59.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:12:59.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.112 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:12:59.113 +03:00 [INF] Request finished in 1.4449ms 200 application/javascript +2018-09-21 11:12:59.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.114 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:12:59.116 +03:00 [INF] Request finished in 2.9616ms 200 application/javascript +2018-09-21 11:12:59.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:12:59.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.117 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.119 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:12:59.120 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:12:59.120 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.121 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.123 +03:00 [INF] Authorization failed. +2018-09-21 11:12:59.125 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:12:59.126 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4886ms. +2018-09-21 11:12:59.126 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:12:59.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:12:59.126 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:12:59.126 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.114ms. +2018-09-21 11:12:59.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.2238000000000007ms +2018-09-21 11:12:59.126 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:12:59.126 +03:00 [INF] Request finished in 9.4704ms 200 text/plain; charset=utf-8 +2018-09-21 11:12:59.126 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5017ms +2018-09-21 11:12:59.127 +03:00 [INF] Request finished in 4.3959ms 200 text/plain; charset=utf-8 +2018-09-21 11:12:59.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.131 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:12:59.131 +03:00 [INF] Request finished in 5.0954ms 200 application/javascript +2018-09-21 11:12:59.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:12:59.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.137 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.139 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:12:59.139 +03:00 [INF] Request finished in 2.1386ms 200 application/javascript +2018-09-21 11:12:59.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:12:59.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.148 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:12:59.148 +03:00 [INF] Request finished in 2.6885ms 200 image/svg+xml +2018-09-21 11:12:59.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:12:59.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.163 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:12:59.163 +03:00 [INF] Request finished in 2.3346ms 200 image/svg+xml +2018-09-21 11:12:59.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:12:59.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.213 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.217 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:12:59.217 +03:00 [INF] Request finished in 4.686ms 200 font/woff2 +2018-09-21 11:12:59.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:12:59.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.247 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:12:59.247 +03:00 [INF] Request finished in 13.0104ms 200 image/jpeg +2018-09-21 11:12:59.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:12:59.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.274 +03:00 [INF] Request finished in 1.504ms 404 +2018-09-21 11:12:59.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:12:59.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.480 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:12:59.480 +03:00 [INF] Request finished in 4.0083ms 200 image/png +2018-09-21 11:12:59.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:12:59.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.510 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:12:59.510 +03:00 [INF] Request finished in 1.586ms 200 image/png +2018-09-21 11:12:59.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731143768102587 +2018-09-21 11:12:59.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:12:59.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:12:59.641 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:12:59.642 +03:00 [INF] Request finished in 1.2298ms 200 text/css +2018-09-21 11:12:59.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:12:59.958 +03:00 [INF] Request finished in 0.7623ms 404 +2018-09-21 11:14:15.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:14:15.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.150 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:14:15.174 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:14:15.441 +03:00 [INF] Executed action /Account/Register in 290.8471ms +2018-09-21 11:14:15.441 +03:00 [INF] Request finished in 298.0734ms 200 text/html; charset=utf-8 +2018-09-21 11:14:15.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:14:15.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.488 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:14:15.489 +03:00 [INF] Request finished in 4.8342ms 200 text/css +2018-09-21 11:14:15.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:14:15.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:14:15.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.491 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:14:15.491 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:14:15.491 +03:00 [INF] Request finished in 1.1972ms 200 text/css +2018-09-21 11:14:15.491 +03:00 [INF] Request finished in 1.2297ms 200 text/css +2018-09-21 11:14:15.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:14:15.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:14:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:14:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.516 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:14:15.516 +03:00 [INF] Request finished in 1.3778ms 200 text/css +2018-09-21 11:14:15.516 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:14:15.517 +03:00 [INF] Request finished in 1.1295ms 200 text/css +2018-09-21 11:14:15.517 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:14:15.517 +03:00 [INF] Request finished in 1.6142ms 200 text/css +2018-09-21 11:14:15.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:14:15.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:14:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.525 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:14:15.525 +03:00 [INF] Request finished in 1.0044ms 200 text/css +2018-09-21 11:14:15.525 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:14:15.525 +03:00 [INF] Request finished in 1.0164ms 200 text/css +2018-09-21 11:14:15.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:14:15.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.527 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:14:15.527 +03:00 [INF] Request finished in 1.2869ms 200 application/javascript +2018-09-21 11:14:15.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:14:15.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.535 +03:00 [INF] Request finished in 2.5044ms 404 +2018-09-21 11:14:15.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:14:15.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:14:15.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:14:15.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.542 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:14:15.542 +03:00 [INF] Request finished in 0.9596ms 200 application/javascript +2018-09-21 11:14:15.544 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:14:15.544 +03:00 [INF] Request finished in 6.3201ms 200 application/javascript +2018-09-21 11:14:15.548 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:14:15.548 +03:00 [INF] Request finished in 6.824ms 200 application/javascript +2018-09-21 11:14:15.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:14:15.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.559 +03:00 [INF] Request finished in 3.3565ms 404 +2018-09-21 11:14:15.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:14:15.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.570 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:14:15.571 +03:00 [INF] Request finished in 2.3853ms 200 application/javascript +2018-09-21 11:14:15.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:14:15.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:14:15.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.594 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:14:15.594 +03:00 [INF] Request finished in 3.7572ms 200 application/javascript +2018-09-21 11:14:15.594 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:14:15.594 +03:00 [INF] Request finished in 2.2444ms 200 application/javascript +2018-09-21 11:14:15.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:14:15.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:14:15.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.632 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:14:15.633 +03:00 [INF] Request finished in 3.4403ms 200 application/javascript +2018-09-21 11:14:15.633 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:14:15.633 +03:00 [INF] Request finished in 3.5776ms 200 application/javascript +2018-09-21 11:14:15.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:14:15.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.640 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:14:15.640 +03:00 [INF] Request finished in 1.5477ms 200 application/javascript +2018-09-21 11:14:15.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:14:15.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.644 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:14:15.644 +03:00 [INF] Request finished in 1.2052ms 200 application/javascript +2018-09-21 11:14:15.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:14:15.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.645 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.645 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:14:15.645 +03:00 [INF] Request finished in 1.0034ms 200 application/javascript +2018-09-21 11:14:15.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:14:15.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.649 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:14:15.649 +03:00 [INF] Request finished in 1.6871ms 200 application/javascript +2018-09-21 11:14:15.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:14:15.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.655 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.656 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:14:15.657 +03:00 [INF] Request finished in 2.4457ms 200 application/javascript +2018-09-21 11:14:15.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:14:15.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.666 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:14:15.666 +03:00 [INF] Request finished in 2.6764ms 200 application/javascript +2018-09-21 11:14:15.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:14:15.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.668 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:14:15.668 +03:00 [INF] Request finished in 1.3393ms 200 application/javascript +2018-09-21 11:14:15.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:14:15.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.670 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:14:15.670 +03:00 [INF] Request finished in 2.107ms 200 application/javascript +2018-09-21 11:14:15.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:14:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:14:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.677 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:14:15.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:14:15.677 +03:00 [INF] Request finished in 2.4764ms 200 application/javascript +2018-09-21 11:14:15.677 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:14:15.677 +03:00 [INF] Request finished in 1.336ms 200 application/javascript +2018-09-21 11:14:15.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:14:15.678 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:14:15.678 +03:00 [INF] Request finished in 1.2987ms 200 application/javascript +2018-09-21 11:14:15.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.679 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:14:15.679 +03:00 [INF] Request finished in 1.0298ms 200 application/javascript +2018-09-21 11:14:15.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:14:15.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.692 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:14:15.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:14:15.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.693 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:14:15.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:14:15.693 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.693 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.693 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.693 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.694 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [INF] Request finished in 2.0633ms 200 application/javascript +2018-09-21 11:14:15.695 +03:00 [INF] Authorization failed. +2018-09-21 11:14:15.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.697 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.5500000000000003ms. +2018-09-21 11:14:15.697 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:14:15.697 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.1397ms +2018-09-21 11:14:15.697 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:14:15.697 +03:00 [INF] Request finished in 15.2142ms 200 text/plain; charset=utf-8 +2018-09-21 11:14:15.697 +03:00 [INF] Request finished in 2.4619ms 200 application/javascript +2018-09-21 11:14:15.701 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:14:15.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:14:15.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.702 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:14:15.703 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13520000000000001ms. +2018-09-21 11:14:15.703 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:14:15.703 +03:00 [INF] Request finished in 1.0463ms 200 image/svg+xml +2018-09-21 11:14:15.703 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:14:15.704 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2407ms +2018-09-21 11:14:15.704 +03:00 [INF] Request finished in 11.4531ms 200 text/plain; charset=utf-8 +2018-09-21 11:14:15.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:14:15.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.712 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:14:15.712 +03:00 [INF] Request finished in 2.1025ms 200 image/svg+xml +2018-09-21 11:14:15.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:14:15.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.793 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:14:15.793 +03:00 [INF] Request finished in 3.1237ms 200 font/woff2 +2018-09-21 11:14:15.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:14:15.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.815 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:14:15.816 +03:00 [INF] Request finished in 8.4249ms 200 image/jpeg +2018-09-21 11:14:15.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:14:15.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:14:15.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:15.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:15.983 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:14:15.983 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:14:15.983 +03:00 [INF] Request finished in 1.1305ms 200 image/png +2018-09-21 11:14:15.983 +03:00 [INF] Request finished in 1.2158ms 200 image/png +2018-09-21 11:14:16.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:14:16.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:14:16.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:14:16.023 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:14:16.024 +03:00 [INF] Request finished in 1.9593ms 200 text/css +2018-09-21 11:14:16.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:14:16.386 +03:00 [INF] Request finished in 0.8805ms 404 +2018-09-21 11:21:58.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:21:58.082 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.082 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.087 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:21:58.118 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:21:58.119 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:21:58.119 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:21:58.119 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:21:58.120 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 0.92470000000000008ms. +2018-09-21 11:21:58.120 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:21:58.120 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 32.8936ms +2018-09-21 11:21:58.120 +03:00 [INF] Request finished in 38.8263ms 302 +2018-09-21 11:21:58.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:21:58.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.141 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:21:58.167 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:21:58.215 +03:00 [INF] Executed action /Account/Login in 74.293900000000008ms +2018-09-21 11:21:58.216 +03:00 [INF] Request finished in 82.7351ms 200 text/html; charset=utf-8 +2018-09-21 11:21:58.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:21:58.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:21:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.271 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.272 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:21:58.272 +03:00 [INF] Request finished in 1.0928ms 200 text/css +2018-09-21 11:21:58.272 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:21:58.273 +03:00 [INF] Request finished in 3.2314ms 200 text/css +2018-09-21 11:21:58.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:21:58.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:21:58.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.293 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:21:58.293 +03:00 [INF] Request finished in 1.8669ms 200 text/css +2018-09-21 11:21:58.294 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:21:58.294 +03:00 [INF] Request finished in 3.1344ms 200 text/css +2018-09-21 11:21:58.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:21:58.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.302 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:21:58.302 +03:00 [INF] Request finished in 2.9849ms 200 text/css +2018-09-21 11:21:58.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:21:58.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.304 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:21:58.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:21:58.304 +03:00 [INF] Request finished in 1.4026ms 200 text/css +2018-09-21 11:21:58.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:21:58.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.305 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:21:58.305 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:21:58.306 +03:00 [INF] Request finished in 1.0278ms 200 text/css +2018-09-21 11:21:58.306 +03:00 [INF] Request finished in 1.7585ms 200 text/css +2018-09-21 11:21:58.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:21:58.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.317 +03:00 [INF] Request finished in 2.7651ms 404 +2018-09-21 11:21:58.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:21:58.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.319 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:21:58.319 +03:00 [INF] Request finished in 1.7045ms 200 application/javascript +2018-09-21 11:21:58.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:21:58.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.328 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:21:58.328 +03:00 [INF] Request finished in 7.0554ms 200 application/javascript +2018-09-21 11:21:58.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:21:58.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.337 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:21:58.338 +03:00 [INF] Request finished in 2.5094ms 200 application/javascript +2018-09-21 11:21:58.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:21:58.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.360 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:21:58.360 +03:00 [INF] Request finished in 6.2622ms 200 application/javascript +2018-09-21 11:21:58.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:21:58.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:21:58.393 +03:00 [INF] Request finished in 2.1033ms 404 +2018-09-21 11:21:58.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.395 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:21:58.395 +03:00 [INF] Request finished in 2.1928ms 200 application/javascript +2018-09-21 11:21:58.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:21:58.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.411 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:21:58.411 +03:00 [INF] Request finished in 1.7813ms 200 application/javascript +2018-09-21 11:21:58.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:21:58.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.416 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.417 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:21:58.418 +03:00 [INF] Request finished in 1.7906ms 200 application/javascript +2018-09-21 11:21:58.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:21:58.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.423 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:21:58.424 +03:00 [INF] Request finished in 3.4737ms 200 application/javascript +2018-09-21 11:21:58.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:21:58.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.429 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:21:58.429 +03:00 [INF] Request finished in 5.673ms 200 application/javascript +2018-09-21 11:21:58.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:21:58.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.433 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:21:58.433 +03:00 [INF] Request finished in 1.3103ms 200 application/javascript +2018-09-21 11:21:58.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:21:58.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:21:58.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.441 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:21:58.442 +03:00 [INF] Request finished in 2.1689ms 200 application/javascript +2018-09-21 11:21:58.442 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:21:58.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:21:58.442 +03:00 [INF] Request finished in 1.3669ms 200 application/javascript +2018-09-21 11:21:58.442 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:21:58.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.444 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:21:58.444 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:21:58.444 +03:00 [INF] Request finished in 2.5973ms 200 application/javascript +2018-09-21 11:21:58.444 +03:00 [INF] Request finished in 1.596ms 200 application/javascript +2018-09-21 11:21:58.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:21:58.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.449 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:21:58.449 +03:00 [INF] Request finished in 3.1736ms 200 application/javascript +2018-09-21 11:21:58.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:21:58.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:21:58.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:21:58.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.455 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:21:58.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.455 +03:00 [INF] Request finished in 1.6413ms 200 application/javascript +2018-09-21 11:21:58.456 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:21:58.456 +03:00 [INF] Request finished in 1.1241ms 200 application/javascript +2018-09-21 11:21:58.456 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:21:58.456 +03:00 [INF] Request finished in 1.9328ms 200 application/javascript +2018-09-21 11:21:58.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:21:58.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:21:58.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.462 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:21:58.462 +03:00 [INF] Request finished in 1.2269ms 200 application/javascript +2018-09-21 11:21:58.462 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:21:58.462 +03:00 [INF] Request finished in 1.4349ms 200 application/javascript +2018-09-21 11:21:58.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:21:58.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.466 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:21:58.466 +03:00 [INF] Request finished in 1.826ms 200 application/javascript +2018-09-21 11:21:58.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:21:58.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.468 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:21:58.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:21:58.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.471 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:21:58.472 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:21:58.472 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1827ms. +2018-09-21 11:21:58.472 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:21:58.472 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:21:58.472 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3958000000000002ms +2018-09-21 11:21:58.473 +03:00 [INF] Request finished in 2.7842ms 200 text/plain; charset=utf-8 +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.474 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.475 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.476 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.477 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.477 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.477 +03:00 [INF] Authorization failed. +2018-09-21 11:21:58.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:21:58.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:21:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.482 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:21:58.482 +03:00 [INF] Request finished in 1.8992ms 200 image/svg+xml +2018-09-21 11:21:58.482 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.2311ms. +2018-09-21 11:21:58.482 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:21:58.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:21:58.482 +03:00 [INF] Request finished in 2.4335ms 200 application/javascript +2018-09-21 11:21:58.482 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:21:58.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.482 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.9487ms +2018-09-21 11:21:58.482 +03:00 [INF] Request finished in 16.0936ms 200 text/plain; charset=utf-8 +2018-09-21 11:21:58.484 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:21:58.484 +03:00 [INF] Request finished in 2.1523ms 200 application/javascript +2018-09-21 11:21:58.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:21:58.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.487 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:21:58.487 +03:00 [INF] Request finished in 2.4107ms 200 image/svg+xml +2018-09-21 11:21:58.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:21:58.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.597 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:21:58.598 +03:00 [INF] Request finished in 2.7409ms 200 font/woff2 +2018-09-21 11:21:58.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:21:58.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.644 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:21:58.644 +03:00 [INF] Request finished in 10.3618ms 200 image/jpeg +2018-09-21 11:21:58.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:21:58.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:21:58.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:21:58.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:21:58.777 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:21:58.777 +03:00 [INF] Request finished in 1.3087ms 200 image/png +2018-09-21 11:21:58.778 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:21:58.778 +03:00 [INF] Request finished in 2.3368ms 200 image/png +2018-09-21 11:21:59.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:21:59.129 +03:00 [INF] Request finished in 1.1525ms 404 +2018-09-21 11:22:03.452 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-21 11:22:03.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.453 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:22:03.490 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:03.523 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 11:22:03.525 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 11:22:03.525 +03:00 [INF] Executed action /Account/Login in 71.664200000000008ms +2018-09-21 11:22:03.525 +03:00 [INF] Request finished in 73.4106ms 302 +2018-09-21 11:22:03.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:22:03.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.571 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:22:03.571 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:03.581 +03:00 [INF] Executed action /Index in 10.2687ms +2018-09-21 11:22:03.581 +03:00 [INF] Request finished in 45.5275ms 200 text/html; charset=utf-8 +2018-09-21 11:22:03.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:22:03.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:22:03.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.659 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:22:03.659 +03:00 [INF] Request finished in 1.2308ms 200 text/css +2018-09-21 11:22:03.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:22:03.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.661 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:22:03.661 +03:00 [INF] Request finished in 1.1257ms 200 text/css +2018-09-21 11:22:03.661 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:22:03.661 +03:00 [INF] Request finished in 5.3444ms 200 text/css +2018-09-21 11:22:03.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:22:03.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.682 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:22:03.682 +03:00 [INF] Request finished in 2.2911ms 200 text/css +2018-09-21 11:22:03.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:22:03.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:22:03.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.686 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:22:03.686 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:22:03.686 +03:00 [INF] Request finished in 1.9613ms 200 text/css +2018-09-21 11:22:03.686 +03:00 [INF] Request finished in 2.5598ms 200 text/css +2018-09-21 11:22:03.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:03.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.687 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:03.687 +03:00 [INF] Request finished in 0.918ms 200 text/css +2018-09-21 11:22:03.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:22:03.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.695 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:22:03.696 +03:00 [INF] Request finished in 1.584ms 200 text/css +2018-09-21 11:22:03.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:22:03.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.697 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:22:03.697 +03:00 [INF] Request finished in 1.4437ms 200 application/javascript +2018-09-21 11:22:03.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:22:03.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.701 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:22:03.701 +03:00 [INF] Request finished in 1.4752ms 200 application/javascript +2018-09-21 11:22:03.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:22:03.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:22:03.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.709 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:22:03.709 +03:00 [INF] Request finished in 7.5348ms 200 application/javascript +2018-09-21 11:22:03.713 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:22:03.714 +03:00 [INF] Request finished in 5.9182ms 200 application/javascript +2018-09-21 11:22:03.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:03.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:22:03.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.727 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:22:03.727 +03:00 [INF] Request finished in 2.2599ms 200 application/javascript +2018-09-21 11:22:03.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:22:03.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.744 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:22:03.744 +03:00 [INF] Request finished in 2.3535ms 200 application/javascript +2018-09-21 11:22:03.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:22:03.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.750 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:22:03.750 +03:00 [INF] Request finished in 0.9727ms 200 application/javascript +2018-09-21 11:22:03.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:22:03.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:22:03.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:22:03.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.770 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:22:03.770 +03:00 [INF] Request finished in 5.9552ms 200 application/javascript +2018-09-21 11:22:03.770 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:22:03.770 +03:00 [INF] Request finished in 1.3351ms 200 application/javascript +2018-09-21 11:22:03.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:22:03.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.780 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:22:03.780 +03:00 [INF] Request finished in 2.7547ms 200 application/javascript +2018-09-21 11:22:03.782 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:22:03.782 +03:00 [INF] Request finished in 13.4829ms 200 application/javascript +2018-09-21 11:22:03.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:22:03.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.792 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:22:03.792 +03:00 [INF] Request finished in 3.0783ms 200 application/javascript +2018-09-21 11:22:03.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:22:03.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:22:03.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.803 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:22:03.803 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:22:03.803 +03:00 [INF] Request finished in 2.0637ms 200 application/javascript +2018-09-21 11:22:03.803 +03:00 [INF] Request finished in 1.2068ms 200 application/javascript +2018-09-21 11:22:03.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:22:03.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.815 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:22:03.816 +03:00 [INF] Request finished in 2.8637ms 200 application/javascript +2018-09-21 11:22:03.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:22:03.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.817 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:22:03.817 +03:00 [INF] Request finished in 1.3767ms 200 application/javascript +2018-09-21 11:22:03.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:22:03.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.825 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:22:03.825 +03:00 [INF] Request finished in 1.3126ms 200 application/javascript +2018-09-21 11:22:03.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:22:03.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:22:03.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.835 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:22:03.835 +03:00 [INF] Request finished in 1.8682ms 200 application/javascript +2018-09-21 11:22:03.835 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:22:03.835 +03:00 [INF] Request finished in 0.8608ms 200 application/javascript +2018-09-21 11:22:03.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:22:03.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:22:03.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:22:03.839 +03:00 [INF] Request finished in 1.6741ms 200 application/javascript +2018-09-21 11:22:03.839 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:22:03.840 +03:00 [INF] Request finished in 1.5401ms 200 application/javascript +2018-09-21 11:22:03.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:22:03.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:22:03.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.848 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:22:03.849 +03:00 [INF] Request finished in 1.3009ms 200 application/javascript +2018-09-21 11:22:03.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:22:03.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.851 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:22:03.851 +03:00 [INF] Request finished in 1.3884ms 200 application/javascript +2018-09-21 11:22:03.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:22:03.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:22:03.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.861 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:22:03.861 +03:00 [INF] Request finished in 1.3391ms 200 image/svg+xml +2018-09-21 11:22:03.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:22:03.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.901 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:22:03.902 +03:00 [INF] Request finished in 2.1375ms 200 image/png +2018-09-21 11:22:03.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:22:03.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:22:03.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.915 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:22:03.915 +03:00 [INF] Request finished in 1.7316ms 200 image/png +2018-09-21 11:22:03.916 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:22:03.916 +03:00 [INF] Request finished in 1.35ms 200 image/png +2018-09-21 11:22:03.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:22:03.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.920 +03:00 [INF] Request finished in 203.996ms 404 +2018-09-21 11:22:03.920 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:22:03.920 +03:00 [INF] Request finished in 0.9411ms 200 image/png +2018-09-21 11:22:03.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:22:03.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:22:03.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.935 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:22:03.935 +03:00 [INF] Request finished in 1.4537ms 200 image/png +2018-09-21 11:22:03.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.938 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:22:03.938 +03:00 [INF] Request finished in 4.1478ms 200 image/png +2018-09-21 11:22:03.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:22:03.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.944 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.945 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:22:03.945 +03:00 [INF] Request finished in 1.3656ms 200 image/png +2018-09-21 11:22:03.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:22:03.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.955 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:22:03.955 +03:00 [INF] Request finished in 1.5715ms 200 image/png +2018-09-21 11:22:03.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:22:03.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.958 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:22:03.958 +03:00 [INF] Request finished in 1.5507ms 200 image/png +2018-09-21 11:22:03.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:22:03.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:22:03.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:22:03.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.966 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:22:03.966 +03:00 [INF] Request finished in 2.3929ms 200 image/png +2018-09-21 11:22:03.966 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:22:03.967 +03:00 [INF] Request finished in 1.2572ms 200 image/png +2018-09-21 11:22:03.967 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:22:03.967 +03:00 [INF] Request finished in 1.7691ms 200 image/png +2018-09-21 11:22:03.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:22:03.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.978 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:22:03.978 +03:00 [INF] Request finished in 3.4707ms 200 image/png +2018-09-21 11:22:03.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:22:03.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:22:03.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.984 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:22:03.984 +03:00 [INF] Request finished in 1.1177ms 200 image/png +2018-09-21 11:22:03.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:22:03.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.986 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:22:03.986 +03:00 [INF] Request finished in 1.2295ms 200 image/png +2018-09-21 11:22:03.987 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:22:03.988 +03:00 [INF] Request finished in 7.0492ms 200 image/png +2018-09-21 11:22:03.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:22:03.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:03.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:03.993 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:22:03.993 +03:00 [INF] Request finished in 1.0953ms 200 image/png +2018-09-21 11:22:03.998 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:03.998 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:22:03.998 +03:00 [INF] Authorization failed. +2018-09-21 11:22:03.998 +03:00 [INF] Authorization failed. +2018-09-21 11:22:04.001 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:04.003 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:22:04.003 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1252ms. +2018-09-21 11:22:04.003 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:04.003 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.695ms +2018-09-21 11:22:04.004 +03:00 [INF] Request finished in 158.7133ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:04.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:22:04.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:22:04.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.013 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:22:04.013 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.013 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:22:04.013 +03:00 [INF] Request finished in 3.1047ms 200 image/png +2018-09-21 11:22:04.013 +03:00 [INF] Request finished in 2.0397ms 200 image/png +2018-09-21 11:22:04.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:22:04.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.014 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.014 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.014 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:22:04.015 +03:00 [INF] Request finished in 1.3267ms 200 image/png +2018-09-21 11:22:04.015 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.016 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.017 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.017 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.018 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.018 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.019 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.019 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.020 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.020 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.021 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.022 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.023 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.024 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.025 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:22:04.026 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.026 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.027 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:22:04.027 +03:00 [INF] Request finished in 1.2776ms 200 image/png +2018-09-21 11:22:04.027 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.028 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:22:04.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:22:04.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.036 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:22:04.036 +03:00 [INF] Request finished in 1.2242ms 200 image/png +2018-09-21 11:22:04.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.036 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:22:04.037 +03:00 [INF] Request finished in 1.2519ms 200 image/png +2018-09-21 11:22:04.028 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.038 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.039 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.041 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:22:04.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.042 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.042 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:04.042 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:22:04.043 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:22:04.043 +03:00 [INF] Request finished in 1.1766ms 200 image/png +2018-09-21 11:22:04.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.044 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:22:04.044 +03:00 [INF] Request finished in 1.4817ms 200 image/png +2018-09-21 11:22:04.045 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 46.2573ms. +2018-09-21 11:22:04.045 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:04.045 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 47.3939ms +2018-09-21 11:22:04.045 +03:00 [INF] Request finished in 193.6299ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:04.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:22:04.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.054 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:22:04.054 +03:00 [INF] Request finished in 2.916ms 200 image/png +2018-09-21 11:22:04.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:22:04.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:22:04.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.063 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:22:04.063 +03:00 [INF] Request finished in 1.2708ms 200 image/png +2018-09-21 11:22:04.065 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:22:04.065 +03:00 [INF] Request finished in 3.4778ms 200 font/woff2 +2018-09-21 11:22:04.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:22:04.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.077 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:22:04.077 +03:00 [INF] Request finished in 1.3032ms 200 image/png +2018-09-21 11:22:04.079 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:22:04.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.080 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:22:04.080 +03:00 [INF] Request finished in 1.5891ms 200 image/png +2018-09-21 11:22:04.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:22:04.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:22:04.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.085 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:22:04.085 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:22:04.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:22:04.085 +03:00 [INF] Request finished in 1.2077ms 200 image/png +2018-09-21 11:22:04.085 +03:00 [INF] Request finished in 1.2427ms 200 image/png +2018-09-21 11:22:04.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.086 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:22:04.086 +03:00 [INF] Request finished in 1.803ms 200 image/png +2018-09-21 11:22:04.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:22:04.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.098 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:22:04.099 +03:00 [INF] Request finished in 4.0294ms 200 image/png +2018-09-21 11:22:04.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:22:04.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.106 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:22:04.107 +03:00 [INF] Request finished in 2.3302ms 200 image/png +2018-09-21 11:22:04.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:22:04.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.115 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:22:04.115 +03:00 [INF] Request finished in 1.3453ms 200 image/png +2018-09-21 11:22:04.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:22:04.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.118 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.119 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:22:04.120 +03:00 [INF] Request finished in 1.4377ms 200 image/svg+xml +2018-09-21 11:22:04.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:22:04.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.137 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:22:04.137 +03:00 [INF] Request finished in 9.4893ms 200 image/jpeg +2018-09-21 11:22:04.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:22:04.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.333 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:22:04.333 +03:00 [INF] Request finished in 2.1619ms 200 image/png +2018-09-21 11:22:04.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:22:04.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.334 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:22:04.334 +03:00 [INF] Request finished in 1.2417ms 200 image/png +2018-09-21 11:22:04.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:04.653 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:04.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:04.655 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:04.655 +03:00 [INF] Request finished in 2.1601ms 200 text/css +2018-09-21 11:22:05.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:22:05.011 +03:00 [INF] Request finished in 1.499ms 404 +2018-09-21 11:22:31.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:22:31.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.206 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:22:31.206 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:31.495 +03:00 [INF] Executed action /Index in 288.9887ms +2018-09-21 11:22:31.495 +03:00 [INF] Request finished in 328.7118ms 200 text/html; charset=utf-8 +2018-09-21 11:22:31.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:22:31.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:22:31.545 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:22:31.545 +03:00 [INF] Request finished in 1.3088ms 200 text/css +2018-09-21 11:22:31.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.547 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:22:31.548 +03:00 [INF] Request finished in 2.852ms 200 text/css +2018-09-21 11:22:31.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:22:31.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.576 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:22:31.577 +03:00 [INF] Request finished in 2.5858ms 200 text/css +2018-09-21 11:22:31.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:22:31.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.579 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:22:31.579 +03:00 [INF] Request finished in 5.5375ms 200 text/css +2018-09-21 11:22:31.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:22:31.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.588 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:22:31.588 +03:00 [INF] Request finished in 1.3438ms 200 text/css +2018-09-21 11:22:31.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:22:31.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.590 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:22:31.591 +03:00 [INF] Request finished in 1.4362ms 200 text/css +2018-09-21 11:22:31.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:31.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:22:31.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:22:31.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.628 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:31.628 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:22:31.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.629 +03:00 [INF] Request finished in 2.4918ms 200 text/css +2018-09-21 11:22:31.629 +03:00 [INF] Request finished in 2.1004ms 200 application/javascript +2018-09-21 11:22:31.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:22:31.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.630 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:22:31.630 +03:00 [INF] Request finished in 2.4533ms 200 text/css +2018-09-21 11:22:31.630 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:22:31.630 +03:00 [INF] Request finished in 1.9913ms 200 application/javascript +2018-09-21 11:22:31.633 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:22:31.633 +03:00 [INF] Request finished in 5.7602ms 200 application/javascript +2018-09-21 11:22:31.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:22:31.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.663 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:22:31.664 +03:00 [INF] Request finished in 2.5904ms 200 image/svg+xml +2018-09-21 11:22:31.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:22:31.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.665 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:22:31.665 +03:00 [INF] Request finished in 1.3707ms 200 image/png +2018-09-21 11:22:31.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:22:31.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.670 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.671 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:22:31.671 +03:00 [INF] Request finished in 2.5128ms 200 image/png +2018-09-21 11:22:31.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:22:31.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:22:31.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.673 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:22:31.674 +03:00 [INF] Request finished in 2.2196ms 200 image/png +2018-09-21 11:22:31.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.675 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:22:31.676 +03:00 [INF] Request finished in 3.357ms 200 image/png +2018-09-21 11:22:31.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:22:31.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.686 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:22:31.686 +03:00 [INF] Request finished in 2.6785ms 200 image/png +2018-09-21 11:22:31.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:22:31.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:22:31.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.698 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:22:31.698 +03:00 [INF] Request finished in 1.1937ms 200 image/png +2018-09-21 11:22:31.699 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:22:31.699 +03:00 [INF] Request finished in 1.4234ms 200 image/png +2018-09-21 11:22:31.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:22:31.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.701 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:22:31.701 +03:00 [INF] Request finished in 1.6464ms 200 image/png +2018-09-21 11:22:31.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:22:31.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.715 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:22:31.715 +03:00 [INF] Request finished in 1.3129ms 200 image/png +2018-09-21 11:22:31.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:22:31.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.723 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:22:31.723 +03:00 [INF] Request finished in 3.6824ms 200 image/png +2018-09-21 11:22:31.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:22:31.740 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.741 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:22:31.741 +03:00 [INF] Request finished in 0.9836ms 200 image/png +2018-09-21 11:22:31.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:22:31.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:22:31.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.744 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:22:31.744 +03:00 [INF] Request finished in 1.1742ms 200 image/png +2018-09-21 11:22:31.744 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:22:31.744 +03:00 [INF] Request finished in 1.0168ms 200 image/png +2018-09-21 11:22:31.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:22:31.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:22:31.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.802 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:22:31.802 +03:00 [INF] Request finished in 1.7202ms 200 image/png +2018-09-21 11:22:31.802 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:22:31.802 +03:00 [INF] Request finished in 2.0157ms 200 image/png +2018-09-21 11:22:31.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:22:31.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.808 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:22:31.808 +03:00 [INF] Request finished in 1.677ms 200 image/png +2018-09-21 11:22:31.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:22:31.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:22:31.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.815 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:22:31.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:22:31.815 +03:00 [INF] Request finished in 2.0778ms 200 image/png +2018-09-21 11:22:31.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.817 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:22:31.818 +03:00 [INF] Request finished in 6.1419ms 200 image/png +2018-09-21 11:22:31.822 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:22:31.822 +03:00 [INF] Request finished in 7.7157ms 200 image/png +2018-09-21 11:22:31.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:22:31.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.836 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:22:31.837 +03:00 [INF] Request finished in 1.7531ms 200 image/png +2018-09-21 11:22:31.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:22:31.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:22:31.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.848 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:22:31.848 +03:00 [INF] Request finished in 1.0473ms 200 image/png +2018-09-21 11:22:31.848 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:22:31.848 +03:00 [INF] Request finished in 1.0786ms 200 image/png +2018-09-21 11:22:31.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:22:31.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.855 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:22:31.855 +03:00 [INF] Request finished in 2.4776ms 200 image/png +2018-09-21 11:22:31.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:22:31.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.863 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:22:31.863 +03:00 [INF] Request finished in 1.7881ms 200 image/png +2018-09-21 11:22:31.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:22:31.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.867 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:22:31.867 +03:00 [INF] Request finished in 1.5001ms 200 image/png +2018-09-21 11:22:31.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:22:31.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.906 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:22:31.907 +03:00 [INF] Request finished in 2.0706ms 200 image/png +2018-09-21 11:22:31.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:22:31.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.916 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:22:31.916 +03:00 [INF] Request finished in 1.2219ms 200 image/png +2018-09-21 11:22:31.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:22:31.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.927 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:22:31.927 +03:00 [INF] Request finished in 1.7522ms 200 image/png +2018-09-21 11:22:31.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:22:31.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.935 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:22:31.935 +03:00 [INF] Request finished in 2.1889ms 200 image/png +2018-09-21 11:22:31.935 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:22:31.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.935 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.936 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:22:31.936 +03:00 [INF] Request finished in 1.2029ms 200 image/png +2018-09-21 11:22:31.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:22:31.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:22:31.940 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:22:31.940 +03:00 [INF] Request finished in 1.2371ms 200 image/png +2018-09-21 11:22:31.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.941 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:22:31.941 +03:00 [INF] Request finished in 2.2859ms 200 image/png +2018-09-21 11:22:31.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:22:31.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:22:31.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.949 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:22:31.949 +03:00 [INF] Request finished in 1.4316ms 200 image/png +2018-09-21 11:22:31.949 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:22:31.949 +03:00 [INF] Request finished in 1.5722ms 200 image/png +2018-09-21 11:22:31.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:22:31.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:22:31.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.958 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:22:31.958 +03:00 [INF] Request finished in 1.8819ms 200 image/png +2018-09-21 11:22:31.958 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:22:31.958 +03:00 [INF] Request finished in 2.221ms 200 image/svg+xml +2018-09-21 11:22:31.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:22:31.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:31.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.970 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:22:31.971 +03:00 [INF] Request finished in 9.5911ms 200 application/javascript +2018-09-21 11:22:31.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:22:31.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:22:31.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.975 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:22:31.975 +03:00 [INF] Request finished in 1.169ms 200 application/javascript +2018-09-21 11:22:31.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.978 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:22:31.978 +03:00 [INF] Request finished in 3.5493ms 200 application/javascript +2018-09-21 11:22:31.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:22:31.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.986 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:22:31.987 +03:00 [INF] Request finished in 6.4929ms 200 application/javascript +2018-09-21 11:22:31.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:22:31.992 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:22:31.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:22:31.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:31.996 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:22:31.996 +03:00 [INF] Request finished in 1.2391ms 200 application/javascript +2018-09-21 11:22:31.996 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:22:31.997 +03:00 [INF] Request finished in 8.1445ms 200 application/javascript +2018-09-21 11:22:31.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:22:31.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:31.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.000 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:22:32.001 +03:00 [INF] Request finished in 1.6364ms 200 application/javascript +2018-09-21 11:22:32.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:22:32.010 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:22:32.010 +03:00 [INF] Request finished in 15.0844ms 200 application/javascript +2018-09-21 11:22:32.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.011 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:22:32.011 +03:00 [INF] Request finished in 1.1758ms 200 application/javascript +2018-09-21 11:22:32.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:22:32.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.016 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:22:32.017 +03:00 [INF] Request finished in 2.0818ms 200 application/javascript +2018-09-21 11:22:32.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:22:32.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.026 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:22:32.027 +03:00 [INF] Request finished in 1.1907ms 200 application/javascript +2018-09-21 11:22:32.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:22:32.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.030 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:22:32.030 +03:00 [INF] Request finished in 1.2152ms 200 application/javascript +2018-09-21 11:22:32.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:22:32.038 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.040 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:22:32.040 +03:00 [INF] Request finished in 1.7632ms 200 application/javascript +2018-09-21 11:22:32.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:22:32.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.069 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:22:32.069 +03:00 [INF] Request finished in 3.7372ms 200 application/javascript +2018-09-21 11:22:32.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:22:32.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:22:32.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.074 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:22:32.074 +03:00 [INF] Request finished in 2.9333ms 200 font/woff2 +2018-09-21 11:22:32.075 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:22:32.075 +03:00 [INF] Request finished in 2.6652ms 200 application/javascript +2018-09-21 11:22:32.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:22:32.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.093 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:22:32.093 +03:00 [INF] Request finished in 1.3092ms 200 application/javascript +2018-09-21 11:22:32.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:22:32.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.097 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:22:32.097 +03:00 [INF] Request finished in 1.4931ms 200 application/javascript +2018-09-21 11:22:32.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:22:32.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.105 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:22:32.105 +03:00 [INF] Request finished in 1.0374ms 200 application/javascript +2018-09-21 11:22:32.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:22:32.107 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.107 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:22:32.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.112 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:22:32.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.113 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:22:32.114 +03:00 [INF] Request finished in 1.4233ms 200 application/javascript +2018-09-21 11:22:32.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:22:32.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.125 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:22:32.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:22:32.125 +03:00 [INF] Request finished in 1.7422ms 200 application/javascript +2018-09-21 11:22:32.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.138 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:22:32.138 +03:00 [INF] Request finished in 13.2926ms 200 image/jpeg +2018-09-21 11:22:32.144 +03:00 [INF] Request finished in 178.3866ms 404 +2018-09-21 11:22:32.189 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:32.190 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:22:32.190 +03:00 [INF] Authorization failed. +2018-09-21 11:22:32.191 +03:00 [INF] Authorization failed. +2018-09-21 11:22:32.191 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.192 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.192 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:32.192 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.193 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.193 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:22:32.194 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1143ms. +2018-09-21 11:22:32.194 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.194 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:32.194 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6388ms +2018-09-21 11:22:32.194 +03:00 [INF] Request finished in 83.144ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:32.194 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.195 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.196 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.197 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.197 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.198 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.199 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.199 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.200 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.200 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.202 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.203 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.203 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.204 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.204 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.205 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.206 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.206 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.207 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.207 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.208 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.208 +03:00 [INF] Authorization was successful. +2018-09-21 11:22:32.210 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.5378ms. +2018-09-21 11:22:32.210 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:32.211 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.9187ms +2018-09-21 11:22:32.211 +03:00 [INF] Request finished in 104.556ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:32.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:22:32.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.441 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:22:32.441 +03:00 [INF] Request finished in 1.8799ms 200 image/png +2018-09-21 11:22:32.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:22:32.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.444 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:22:32.444 +03:00 [INF] Request finished in 1.182ms 200 image/png +2018-09-21 11:22:32.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:32.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:32.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:32.613 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:32.613 +03:00 [INF] Request finished in 1.5736ms 200 text/css +2018-09-21 11:22:32.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:22:32.771 +03:00 [INF] Request finished in 0.9807ms 404 +2018-09-21 11:22:45.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:22:45.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:45.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:45.997 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:22:45.997 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:22:45.998 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:22:45.999 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:22:45.999 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:22:45.999 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 1.2963ms. +2018-09-21 11:22:45.999 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:22:45.999 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 2.153ms +2018-09-21 11:22:45.999 +03:00 [INF] Request finished in 36.1959ms 302 +2018-09-21 11:22:46.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:22:46.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.019 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:22:46.048 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:46.105 +03:00 [INF] Executed action /Account/Login in 85.3601ms +2018-09-21 11:22:46.105 +03:00 [INF] Request finished in 93.2566ms 200 text/html; charset=utf-8 +2018-09-21 11:22:46.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:22:46.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.167 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:22:46.168 +03:00 [INF] Request finished in 7.041ms 200 text/css +2018-09-21 11:22:46.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:22:46.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:22:46.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.169 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:22:46.169 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:22:46.169 +03:00 [INF] Request finished in 1.2678ms 200 text/css +2018-09-21 11:22:46.169 +03:00 [INF] Request finished in 0.8906ms 200 text/css +2018-09-21 11:22:46.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:22:46.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:22:46.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.195 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:22:46.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:22:46.195 +03:00 [INF] Request finished in 1.7284ms 200 text/css +2018-09-21 11:22:46.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.196 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:22:46.196 +03:00 [INF] Request finished in 2.6334ms 200 text/css +2018-09-21 11:22:46.196 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:22:46.197 +03:00 [INF] Request finished in 1.7536ms 200 text/css +2018-09-21 11:22:46.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:46.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.206 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.206 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:46.207 +03:00 [INF] Request finished in 1.3803ms 200 text/css +2018-09-21 11:22:46.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:22:46.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.216 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:22:46.216 +03:00 [INF] Request finished in 2.3354ms 200 text/css +2018-09-21 11:22:46.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:22:46.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.221 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:22:46.221 +03:00 [INF] Request finished in 2.7398ms 200 application/javascript +2018-09-21 11:22:46.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:22:46.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:22:46.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.226 +03:00 [INF] Request finished in 1.2811ms 404 +2018-09-21 11:22:46.232 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:22:46.233 +03:00 [INF] Request finished in 7.5881ms 200 application/javascript +2018-09-21 11:22:46.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:22:46.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:22:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.238 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:22:46.241 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:22:46.241 +03:00 [INF] Request finished in 4.3725ms 200 application/javascript +2018-09-21 11:22:46.242 +03:00 [INF] Request finished in 1.3774ms 200 application/javascript +2018-09-21 11:22:46.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:46.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.254 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.255 +03:00 [INF] Request finished in 3.388ms 404 +2018-09-21 11:22:46.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:22:46.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.286 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.287 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:22:46.287 +03:00 [INF] Request finished in 1.3428ms 200 application/javascript +2018-09-21 11:22:46.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:22:46.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:22:46.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:22:46.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.298 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:22:46.299 +03:00 [INF] Request finished in 2.4737ms 200 application/javascript +2018-09-21 11:22:46.299 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:22:46.301 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:22:46.301 +03:00 [INF] Request finished in 3.2054ms 200 application/javascript +2018-09-21 11:22:46.302 +03:00 [INF] Request finished in 2.6079ms 200 application/javascript +2018-09-21 11:22:46.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:22:46.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:22:46.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:22:46.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.325 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:22:46.325 +03:00 [INF] Request finished in 1.2106ms 200 application/javascript +2018-09-21 11:22:46.325 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:22:46.325 +03:00 [INF] Request finished in 1.2278ms 200 application/javascript +2018-09-21 11:22:46.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:22:46.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.328 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:22:46.328 +03:00 [INF] Request finished in 1.2933ms 200 application/javascript +2018-09-21 11:22:46.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:22:46.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.329 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:22:46.330 +03:00 [INF] Request finished in 1.2437ms 200 application/javascript +2018-09-21 11:22:46.334 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:22:46.334 +03:00 [INF] Request finished in 16.7998ms 200 application/javascript +2018-09-21 11:22:46.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:22:46.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.347 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:22:46.347 +03:00 [INF] Request finished in 1.5176ms 200 application/javascript +2018-09-21 11:22:46.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:22:46.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.358 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:22:46.358 +03:00 [INF] Request finished in 1.4956ms 200 application/javascript +2018-09-21 11:22:46.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:22:46.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.364 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:22:46.364 +03:00 [INF] Request finished in 1.6661ms 200 application/javascript +2018-09-21 11:22:46.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:22:46.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.378 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:22:46.378 +03:00 [INF] Request finished in 2.0572ms 200 application/javascript +2018-09-21 11:22:46.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:22:46.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.386 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:22:46.387 +03:00 [INF] Request finished in 2.4633ms 200 application/javascript +2018-09-21 11:22:46.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:22:46.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.390 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:22:46.390 +03:00 [INF] Request finished in 2.5491ms 200 application/javascript +2018-09-21 11:22:46.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:22:46.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.396 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:22:46.397 +03:00 [INF] Request finished in 3.1522ms 200 application/javascript +2018-09-21 11:22:46.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:22:46.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:22:46.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.400 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:22:46.400 +03:00 [INF] Request finished in 2.3962ms 200 application/javascript +2018-09-21 11:22:46.400 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:46.401 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:22:46.401 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11280000000000001ms. +2018-09-21 11:22:46.402 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:46.402 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2735ms +2018-09-21 11:22:46.402 +03:00 [INF] Request finished in 4.1314ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:46.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:22:46.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:22:46.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:22:46.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.409 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:22:46.409 +03:00 [INF] Request finished in 2.2807ms 200 application/javascript +2018-09-21 11:22:46.409 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:22:46.409 +03:00 [INF] Request finished in 1.0398ms 200 application/javascript +2018-09-21 11:22:46.410 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:46.410 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:22:46.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.411 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:22:46.411 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Request finished in 1.5615ms 200 image/svg+xml +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.412 +03:00 [INF] Authorization failed. +2018-09-21 11:22:46.414 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.3073ms. +2018-09-21 11:22:46.414 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:46.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.6412ms +2018-09-21 11:22:46.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:22:46.415 +03:00 [INF] Request finished in 6.4251ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:46.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.416 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:22:46.416 +03:00 [INF] Request finished in 1.8122ms 200 image/svg+xml +2018-09-21 11:22:46.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:22:46.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.476 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:22:46.477 +03:00 [INF] Request finished in 2.5883ms 200 font/woff2 +2018-09-21 11:22:46.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:22:46.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.516 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:22:46.516 +03:00 [INF] Request finished in 9.0617ms 200 image/jpeg +2018-09-21 11:22:46.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:22:46.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:22:46.657 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:22:46.658 +03:00 [INF] Request finished in 1.2043ms 200 image/png +2018-09-21 11:22:46.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.658 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:22:46.658 +03:00 [INF] Request finished in 0.8748ms 200 image/png +2018-09-21 11:22:46.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:46.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:46.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:46.728 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:46.728 +03:00 [INF] Request finished in 1.1506ms 200 text/css +2018-09-21 11:22:46.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:22:46.950 +03:00 [INF] Request finished in 1.6335ms 404 +2018-09-21 11:22:47.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:22:47.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.635 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:22:47.659 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:22:47.659 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:22:47.659 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:22:47.660 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:22:47.660 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 0.4354ms. +2018-09-21 11:22:47.660 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:22:47.660 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 24.550700000000003ms +2018-09-21 11:22:47.660 +03:00 [INF] Request finished in 26.9192ms 302 +2018-09-21 11:22:47.671 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:22:47.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.671 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.671 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:22:47.696 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:47.740 +03:00 [INF] Executed action /Account/Login in 68.8733ms +2018-09-21 11:22:47.740 +03:00 [INF] Request finished in 69.8464ms 200 text/html; charset=utf-8 +2018-09-21 11:22:47.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:22:47.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:22:47.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.781 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:22:47.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:22:47.781 +03:00 [INF] Request finished in 5.1936ms 200 text/css +2018-09-21 11:22:47.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.782 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:22:47.782 +03:00 [INF] Request finished in 1.3913ms 200 text/css +2018-09-21 11:22:47.783 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:22:47.783 +03:00 [INF] Request finished in 2.4121ms 200 text/css +2018-09-21 11:22:47.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:22:47.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.787 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:22:47.787 +03:00 [INF] Request finished in 2.0731ms 200 text/css +2018-09-21 11:22:47.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:22:47.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.798 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:22:47.798 +03:00 [INF] Request finished in 1.0431ms 200 text/css +2018-09-21 11:22:47.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:22:47.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.806 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:22:47.806 +03:00 [INF] Request finished in 2.1439ms 200 text/css +2018-09-21 11:22:47.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:47.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.819 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:47.819 +03:00 [INF] Request finished in 2.7961ms 200 text/css +2018-09-21 11:22:47.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:22:47.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.832 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:22:47.832 +03:00 [INF] Request finished in 2.0651ms 200 text/css +2018-09-21 11:22:47.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:22:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.836 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:22:47.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:22:47.836 +03:00 [INF] Request finished in 1.692ms 200 application/javascript +2018-09-21 11:22:47.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:22:47.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.839 +03:00 [INF] Request finished in 1.7056ms 404 +2018-09-21 11:22:47.844 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:22:47.844 +03:00 [INF] Request finished in 7.4683ms 200 application/javascript +2018-09-21 11:22:47.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:22:47.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.846 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:22:47.846 +03:00 [INF] Request finished in 1.5428ms 200 application/javascript +2018-09-21 11:22:47.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:22:47.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:47.854 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:22:47.854 +03:00 [INF] Request finished in 7.3749ms 200 application/javascript +2018-09-21 11:22:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:22:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.855 +03:00 [INF] Request finished in 1.3714ms 404 +2018-09-21 11:22:47.855 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:22:47.855 +03:00 [INF] Request finished in 0.9762ms 200 application/javascript +2018-09-21 11:22:47.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:22:47.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.865 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:22:47.865 +03:00 [INF] Request finished in 3.9862ms 200 application/javascript +2018-09-21 11:22:47.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:22:47.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.871 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:22:47.871 +03:00 [INF] Request finished in 1.196ms 200 application/javascript +2018-09-21 11:22:47.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:22:47.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.889 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:22:47.890 +03:00 [INF] Request finished in 3.4736ms 200 application/javascript +2018-09-21 11:22:47.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:22:47.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:22:47.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.901 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:22:47.901 +03:00 [INF] Request finished in 9.2764ms 200 application/javascript +2018-09-21 11:22:47.905 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:22:47.905 +03:00 [INF] Request finished in 15.2974ms 200 application/javascript +2018-09-21 11:22:47.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:22:47.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.910 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:22:47.910 +03:00 [INF] Request finished in 1.8921ms 200 application/javascript +2018-09-21 11:22:47.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:22:47.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:22:47.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.917 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:22:47.917 +03:00 [INF] Request finished in 1.1203ms 200 application/javascript +2018-09-21 11:22:47.917 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:22:47.917 +03:00 [INF] Request finished in 1.8734ms 200 application/javascript +2018-09-21 11:22:47.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:22:47.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.934 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:22:47.935 +03:00 [INF] Request finished in 2.8538ms 200 application/javascript +2018-09-21 11:22:47.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:22:47.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.940 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:22:47.940 +03:00 [INF] Request finished in 1.3451ms 200 application/javascript +2018-09-21 11:22:47.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:22:47.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.952 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:22:47.952 +03:00 [INF] Request finished in 2.9687ms 200 application/javascript +2018-09-21 11:22:47.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:22:47.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.954 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:22:47.955 +03:00 [INF] Request finished in 1.6186ms 200 application/javascript +2018-09-21 11:22:47.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:22:47.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.962 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:22:47.962 +03:00 [INF] Request finished in 1.2965ms 200 application/javascript +2018-09-21 11:22:47.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:22:47.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.970 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:22:47.970 +03:00 [INF] Request finished in 1.6027ms 200 application/javascript +2018-09-21 11:22:47.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:22:47.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.985 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:22:47.985 +03:00 [INF] Request finished in 1.5199ms 200 application/javascript +2018-09-21 11:22:47.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:22:47.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.992 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:22:47.992 +03:00 [INF] Request finished in 1.0732ms 200 application/javascript +2018-09-21 11:22:47.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:22:47.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:47.993 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:47.993 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:47.995 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.995 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.996 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.997 +03:00 [INF] Authorization failed. +2018-09-21 11:22:47.999 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.8013000000000003ms. +2018-09-21 11:22:47.999 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:48.000 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.5158000000000005ms +2018-09-21 11:22:48.001 +03:00 [INF] Request finished in 8.2811ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:48.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:22:48.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:22:48.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.007 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:48.008 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:22:48.008 +03:00 [INF] Request finished in 2.0335ms 200 application/javascript +2018-09-21 11:22:48.008 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:22:48.008 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1226ms. +2018-09-21 11:22:48.008 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:48.009 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1923000000000001ms +2018-09-21 11:22:48.009 +03:00 [INF] Request finished in 2.7892ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:48.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:22:48.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.011 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:22:48.011 +03:00 [INF] Request finished in 1.0511ms 200 application/javascript +2018-09-21 11:22:48.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:22:48.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.019 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:22:48.019 +03:00 [INF] Request finished in 2.2786ms 200 image/svg+xml +2018-09-21 11:22:48.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:22:48.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.020 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:22:48.020 +03:00 [INF] Request finished in 1.3139ms 200 image/svg+xml +2018-09-21 11:22:48.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:22:48.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.095 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:22:48.096 +03:00 [INF] Request finished in 2.589ms 200 font/woff2 +2018-09-21 11:22:48.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:22:48.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.121 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:22:48.121 +03:00 [INF] Request finished in 11.9021ms 200 image/jpeg +2018-09-21 11:22:48.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:48.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.132 +03:00 [INF] Request finished in 2.747ms 404 +2018-09-21 11:22:48.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:48.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.370 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:48.371 +03:00 [INF] Request finished in 1.1667ms 200 text/css +2018-09-21 11:22:48.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:22:48.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:22:48.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:48.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:48.377 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:22:48.377 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:22:48.377 +03:00 [INF] Request finished in 0.9583ms 200 image/png +2018-09-21 11:22:48.377 +03:00 [INF] Request finished in 1.0418ms 200 image/png +2018-09-21 11:22:48.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:22:48.549 +03:00 [INF] Request finished in 0.8624ms 404 +2018-09-21 11:22:51.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:22:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.468 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:22:51.493 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:51.548 +03:00 [INF] Executed action /Account/Register in 80.7433ms +2018-09-21 11:22:51.549 +03:00 [INF] Request finished in 86.3898ms 200 text/html; charset=utf-8 +2018-09-21 11:22:51.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:22:51.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.604 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:22:51.604 +03:00 [INF] Request finished in 4.5547ms 200 text/css +2018-09-21 11:22:51.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:22:51.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.606 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:22:51.607 +03:00 [INF] Request finished in 1.3598ms 200 text/css +2018-09-21 11:22:51.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:22:51.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:22:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.615 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:22:51.615 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:22:51.615 +03:00 [INF] Request finished in 1.4927ms 200 text/css +2018-09-21 11:22:51.615 +03:00 [INF] Request finished in 1.604ms 200 text/css +2018-09-21 11:22:51.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:22:51.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.631 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:22:51.632 +03:00 [INF] Request finished in 1.9335ms 200 text/css +2018-09-21 11:22:51.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:22:51.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.634 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:22:51.634 +03:00 [INF] Request finished in 2.5424ms 200 text/css +2018-09-21 11:22:51.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:51.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.643 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:51.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:22:51.643 +03:00 [INF] Request finished in 1.2812ms 200 text/css +2018-09-21 11:22:51.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.644 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:22:51.644 +03:00 [INF] Request finished in 1.1759ms 200 text/css +2018-09-21 11:22:51.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:22:51.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:22:51.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.651 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:22:51.651 +03:00 [INF] Request finished in 1.5419ms 404 +2018-09-21 11:22:51.651 +03:00 [INF] Request finished in 1.722ms 200 application/javascript +2018-09-21 11:22:51.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:22:51.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:22:51.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.668 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:22:51.668 +03:00 [INF] Request finished in 1.0743ms 200 application/javascript +2018-09-21 11:22:51.674 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:22:51.674 +03:00 [INF] Request finished in 7.5498ms 200 application/javascript +2018-09-21 11:22:51.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:22:51.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.682 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:22:51.682 +03:00 [INF] Request finished in 7.2109ms 200 application/javascript +2018-09-21 11:22:51.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:22:51.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.690 +03:00 [INF] Request finished in 3.7197ms 404 +2018-09-21 11:22:51.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:22:51.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.692 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:22:51.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.693 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:22:51.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.693 +03:00 [INF] Request finished in 1.5398ms 200 application/javascript +2018-09-21 11:22:51.694 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:22:51.695 +03:00 [INF] Request finished in 2.4514ms 200 application/javascript +2018-09-21 11:22:51.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:22:51.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.706 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:22:51.706 +03:00 [INF] Request finished in 1.3666ms 200 application/javascript +2018-09-21 11:22:51.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:22:51.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.725 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:22:51.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:22:51.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.726 +03:00 [INF] Request finished in 5.0791ms 200 application/javascript +2018-09-21 11:22:51.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:22:51.739 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:22:51.739 +03:00 [INF] Request finished in 13.7539ms 200 application/javascript +2018-09-21 11:22:51.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.740 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:22:51.740 +03:00 [INF] Request finished in 1.2531ms 200 application/javascript +2018-09-21 11:22:51.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:22:51.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.742 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:22:51.742 +03:00 [INF] Request finished in 1.9172ms 200 application/javascript +2018-09-21 11:22:51.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:22:51.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.744 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:22:51.744 +03:00 [INF] Request finished in 1.9415ms 200 application/javascript +2018-09-21 11:22:51.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:22:51.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:22:51.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.760 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:22:51.760 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:22:51.761 +03:00 [INF] Request finished in 1.289ms 200 application/javascript +2018-09-21 11:22:51.761 +03:00 [INF] Request finished in 1.3165ms 200 application/javascript +2018-09-21 11:22:51.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:22:51.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:22:51.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.765 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.765 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:22:51.765 +03:00 [INF] Request finished in 2.6351ms 200 application/javascript +2018-09-21 11:22:51.765 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:22:51.766 +03:00 [INF] Request finished in 1.1115ms 200 application/javascript +2018-09-21 11:22:51.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:22:51.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.767 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:22:51.767 +03:00 [INF] Request finished in 1.7471ms 200 application/javascript +2018-09-21 11:22:51.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:22:51.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:22:51.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:22:51.776 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:22:51.776 +03:00 [INF] Request finished in 1.5934ms 200 application/javascript +2018-09-21 11:22:51.776 +03:00 [INF] Request finished in 1.6551ms 200 application/javascript +2018-09-21 11:22:51.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:22:51.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.782 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.784 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:22:51.784 +03:00 [INF] Request finished in 3.0382ms 200 application/javascript +2018-09-21 11:22:51.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:22:51.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.786 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:22:51.786 +03:00 [INF] Request finished in 1.1306ms 200 application/javascript +2018-09-21 11:22:51.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:22:51.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.791 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:51.791 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:22:51.792 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.792 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.792 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:22:51.793 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.795 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.795 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.795 +03:00 [INF] Authorization failed. +2018-09-21 11:22:51.795 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:22:51.796 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:22:51.796 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10700000000000001ms. +2018-09-21 11:22:51.796 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:51.796 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0451000000000001ms +2018-09-21 11:22:51.796 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.8649000000000004ms. +2018-09-21 11:22:51.797 +03:00 [INF] Request finished in 3.091ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:51.797 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:22:51.797 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.769ms +2018-09-21 11:22:51.798 +03:00 [INF] Request finished in 8.3831ms 200 text/plain; charset=utf-8 +2018-09-21 11:22:51.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:22:51.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.803 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:22:51.803 +03:00 [INF] Request finished in 1.6688ms 200 application/javascript +2018-09-21 11:22:51.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:22:51.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.814 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:22:51.814 +03:00 [INF] Request finished in 1.2838ms 200 application/javascript +2018-09-21 11:22:51.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:22:51.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.819 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:22:51.819 +03:00 [INF] Request finished in 1.0252ms 200 image/svg+xml +2018-09-21 11:22:51.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:22:51.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.831 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:22:51.831 +03:00 [INF] Request finished in 1.3416ms 200 image/svg+xml +2018-09-21 11:22:51.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:22:51.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.878 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:22:51.879 +03:00 [INF] Request finished in 2.4088ms 200 font/woff2 +2018-09-21 11:22:51.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:22:51.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:51.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:51.911 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:22:51.911 +03:00 [INF] Request finished in 8.251ms 200 image/jpeg +2018-09-21 11:22:52.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:22:52.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:22:52.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:52.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:52.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:52.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:52.047 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:22:52.047 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:22:52.047 +03:00 [INF] Request finished in 0.9622ms 200 image/png +2018-09-21 11:22:52.047 +03:00 [INF] Request finished in 0.9289ms 200 image/png +2018-09-21 11:22:52.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:22:52.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:52.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:52.110 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:22:52.110 +03:00 [INF] Request finished in 0.9586ms 200 text/css +2018-09-21 11:22:52.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:22:52.419 +03:00 [INF] Request finished in 1.1307ms 404 +2018-09-21 11:22:59.102 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 261 +2018-09-21 11:22:59.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:59.103 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:59.104 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:22:59.163 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:22:59.181 +03:00 [WRN] User 28ec5ff3-7d64-699a-a1df-39e90d666b63 password validation failed: PasswordTooShort;PasswordRequiresNonAlphanumeric;PasswordRequiresLower;PasswordRequiresUpper. +2018-09-21 11:22:59.184 +03:00 [INF] Executed action /Account/Register in 80.745100000000008ms +2018-09-21 11:22:59.214 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NotImplementedException: The method or operation is not implemented. + at Volo.Abp.Account.Web.Pages.Account.RegisterModel.OnPostAsync() in D:\Github\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Register.cshtml.cs:line 46 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:22:59.246 +03:00 [INF] Request finished in 144.1236ms 500 text/html; charset=utf-8 +2018-09-21 11:22:59.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:22:59.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:22:59.282 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:22:59.283 +03:00 [INF] Request finished in 1.3225ms 404 +2018-09-21 11:25:24.817 +03:00 [INF] Loaded modules: +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 11:25:24.838 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 11:25:24.839 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 11:25:24.840 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 11:25:26.829 +03:00 [INF] Initialized all modules. +2018-09-21 11:25:27.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:25:27.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:27.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:29.968 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:25:30.052 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:25:32.146 +03:00 [INF] Executed action /Account/Register in 2171.925ms +2018-09-21 11:25:32.175 +03:00 [INF] Request finished in 5046.2134ms 200 text/html; charset=utf-8 +2018-09-21 11:25:32.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:25:32.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:25:32.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:25:32.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:25:32.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.251 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:25:32.252 +03:00 [INF] Request finished in 7.2826ms 200 text/css +2018-09-21 11:25:32.260 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:25:32.260 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:25:32.260 +03:00 [INF] Request finished in 21.9933ms 200 text/css +2018-09-21 11:25:32.260 +03:00 [INF] Request finished in 23.5407ms 200 text/css +2018-09-21 11:25:32.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:25:32.262 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:25:32.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.262 +03:00 [INF] Request finished in 25.5783ms 200 text/css +2018-09-21 11:25:32.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.263 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:25:32.263 +03:00 [INF] Request finished in 1.5225ms 200 text/css +2018-09-21 11:25:32.278 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:25:32.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.279 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.282 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:25:32.282 +03:00 [INF] Request finished in 3.7939ms 200 text/css +2018-09-21 11:25:32.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:25:32.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.295 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:25:32.295 +03:00 [INF] Request finished in 1.3614ms 200 text/css +2018-09-21 11:25:32.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:25:32.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.299 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:25:32.299 +03:00 [INF] Request finished in 2.061ms 200 text/css +2018-09-21 11:25:32.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:25:32.304 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.306 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:25:32.307 +03:00 [INF] Request finished in 2.5498ms 200 application/javascript +2018-09-21 11:25:32.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:25:32.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.322 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.330 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:25:32.330 +03:00 [INF] Request finished in 9.9891ms 200 application/javascript +2018-09-21 11:25:32.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:25:32.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.336 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:25:32.337 +03:00 [INF] Request finished in 2.7793ms 200 application/javascript +2018-09-21 11:25:32.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:25:32.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.345 +03:00 [INF] Request finished in 7.703ms 404 +2018-09-21 11:25:32.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:25:32.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.347 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.356 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:25:32.356 +03:00 [INF] Request finished in 9.7432ms 200 application/javascript +2018-09-21 11:25:32.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:25:32.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.373 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.373 +03:00 [INF] Request finished in 1.2405ms 404 +2018-09-21 11:25:32.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:25:32.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:25:32.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.396 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:25:32.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.396 +03:00 [INF] Request finished in 1.2285ms 200 application/javascript +2018-09-21 11:25:32.397 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:25:32.397 +03:00 [INF] Request finished in 2.219ms 200 application/javascript +2018-09-21 11:25:32.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:25:32.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.427 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:25:32.427 +03:00 [INF] Request finished in 7.4732ms 200 application/javascript +2018-09-21 11:25:32.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:25:32.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:25:32.430 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:25:32.431 +03:00 [INF] Request finished in 3.7946ms 200 application/javascript +2018-09-21 11:25:32.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:25:32.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.437 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:25:32.439 +03:00 [INF] Request finished in 3.5422ms 200 application/javascript +2018-09-21 11:25:32.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:25:32.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:25:32.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.442 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:25:32.442 +03:00 [INF] Request finished in 1.0328ms 200 application/javascript +2018-09-21 11:25:32.442 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:25:32.442 +03:00 [INF] Request finished in 1.5785ms 200 application/javascript +2018-09-21 11:25:32.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:25:32.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.447 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:25:32.447 +03:00 [INF] Request finished in 18.5389ms 200 application/javascript +2018-09-21 11:25:32.448 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:25:32.448 +03:00 [INF] Request finished in 2.1413ms 200 application/javascript +2018-09-21 11:25:32.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:25:32.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.455 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:25:32.455 +03:00 [INF] Request finished in 2.1202ms 200 application/javascript +2018-09-21 11:25:32.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:25:32.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.465 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:25:32.465 +03:00 [INF] Request finished in 1.9089ms 200 application/javascript +2018-09-21 11:25:32.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:25:32.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.480 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:25:32.480 +03:00 [INF] Request finished in 1.9314ms 200 application/javascript +2018-09-21 11:25:32.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:25:32.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.488 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:25:32.488 +03:00 [INF] Request finished in 1.9055ms 200 application/javascript +2018-09-21 11:25:32.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:25:32.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.492 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:25:32.492 +03:00 [INF] Request finished in 2.3343ms 200 application/javascript +2018-09-21 11:25:32.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:25:32.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:25:32.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.495 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:25:32.495 +03:00 [INF] Request finished in 2.0552ms 200 application/javascript +2018-09-21 11:25:32.495 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:25:32.495 +03:00 [INF] Request finished in 1.8108ms 200 application/javascript +2018-09-21 11:25:32.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:25:32.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.507 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:25:32.507 +03:00 [INF] Request finished in 1.8807ms 200 application/javascript +2018-09-21 11:25:32.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:25:32.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:25:32.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.535 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:25:32.535 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:25:32.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:25:32.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.538 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:25:32.538 +03:00 [INF] Request finished in 2.2658ms 200 application/javascript +2018-09-21 11:25:32.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:25:32.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.551 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:25:32.551 +03:00 [INF] Request finished in 7.2314ms 200 application/javascript +2018-09-21 11:25:32.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:25:32.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.557 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:25:32.557 +03:00 [INF] Request finished in 2.7938ms 200 image/svg+xml +2018-09-21 11:25:32.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:25:32.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.576 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:25:32.576 +03:00 [INF] Request finished in 6.1204ms 200 image/svg+xml +2018-09-21 11:25:32.594 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:25:32.601 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:25:32.644 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.645 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:25:32.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.655 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:25:32.655 +03:00 [INF] Request finished in 3.3747ms 200 font/woff2 +2018-09-21 11:25:32.687 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.687 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.688 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.689 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.689 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.689 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.689 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.690 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.691 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.692 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.692 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.692 +03:00 [INF] Authorization failed. +2018-09-21 11:25:32.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:25:32.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.706 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:25:32.706 +03:00 [INF] Request finished in 10.3776ms 200 image/jpeg +2018-09-21 11:25:32.721 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 118.6907ms. +2018-09-21 11:25:32.731 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 129.37890000000002ms. +2018-09-21 11:25:32.731 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:25:32.732 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:25:32.733 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 196.84220000000002ms +2018-09-21 11:25:32.733 +03:00 [INF] Request finished in 218.6161ms 200 text/plain; charset=utf-8 +2018-09-21 11:25:32.733 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 196.9394ms +2018-09-21 11:25:32.734 +03:00 [INF] Request finished in 218.6707ms 200 text/plain; charset=utf-8 +2018-09-21 11:25:32.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:25:32.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.915 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:25:32.915 +03:00 [INF] Request finished in 1.6993ms 200 image/png +2018-09-21 11:25:32.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:25:32.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:32.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:32.920 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:25:32.920 +03:00 [INF] Request finished in 2.5213ms 200 image/png +2018-09-21 11:25:33.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:25:33.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:33.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:33.029 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:25:33.029 +03:00 [INF] Request finished in 1.1671ms 200 text/css +2018-09-21 11:25:33.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:25:33.295 +03:00 [INF] Request finished in 1.0133ms 404 +2018-09-21 11:25:43.470 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 261 +2018-09-21 11:25:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:43.471 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:25:43.550 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:25:43.570 +03:00 [WRN] User f865916b-229b-c9d1-f39e-39e90d68ed87 password validation failed: PasswordTooShort;PasswordRequiresNonAlphanumeric;PasswordRequiresLower;PasswordRequiresUpper. +2018-09-21 11:25:43.579 +03:00 [INF] Executed action /Account/Register in 106.96470000000001ms +2018-09-21 11:25:43.612 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Identity.AbpIdentityResultException: Passwords must be at least 6 characters., Passwords must have at least one non alphanumeric character., Passwords must have at least one lowercase ('a'-'z')., Passwords must have at least one uppercase ('A'-'Z'). + at Microsoft.AspNetCore.Identity.AbpIdentityResultExtensions.CheckErrors(IdentityResult identityResult) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Microsoft\AspNetCore\Identity\AbpIdentityResultExtensions.cs:line 26 + at Volo.Abp.Account.Web.Pages.Account.RegisterModel.OnPostAsync() in D:\Github\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Register.cshtml.cs:line 40 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:25:43.645 +03:00 [INF] Request finished in 175.3367ms 500 text/html; charset=utf-8 +2018-09-21 11:25:43.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:25:43.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:25:43.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:25:43.707 +03:00 [INF] Request finished in 1.0448ms 404 +2018-09-21 11:31:26.649 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:31:26.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.652 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:31:26.708 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:26.777 +03:00 [INF] Executed action /Account/Register in 124.89070000000001ms +2018-09-21 11:31:26.777 +03:00 [INF] Request finished in 128.208ms 200 text/html; charset=utf-8 +2018-09-21 11:31:26.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:31:26.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:31:26.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.818 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:31:26.819 +03:00 [INF] Request finished in 2.9232ms 200 text/css +2018-09-21 11:31:26.819 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:31:26.819 +03:00 [INF] Request finished in 5.248ms 200 text/css +2018-09-21 11:31:26.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:31:26.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.825 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:31:26.825 +03:00 [INF] Request finished in 1.5077ms 200 text/css +2018-09-21 11:31:26.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:31:26.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.829 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:31:26.829 +03:00 [INF] Request finished in 1.2047ms 200 text/css +2018-09-21 11:31:26.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:31:26.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.838 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:31:26.838 +03:00 [INF] Request finished in 1.6386ms 200 text/css +2018-09-21 11:31:26.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:26.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:31:26.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.863 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.864 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:26.864 +03:00 [INF] Request finished in 1.2388ms 200 text/css +2018-09-21 11:31:26.864 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:31:26.864 +03:00 [INF] Request finished in 1.4334ms 200 text/css +2018-09-21 11:31:26.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:31:26.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.875 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.877 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:31:26.877 +03:00 [INF] Request finished in 2.7535ms 200 text/css +2018-09-21 11:31:26.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:31:26.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:31:26.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.884 +03:00 [INF] Request finished in 1.7875ms 404 +2018-09-21 11:31:26.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:31:26.887 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:31:26.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.889 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:31:26.889 +03:00 [INF] Request finished in 1.9745ms 200 application/javascript +2018-09-21 11:31:26.890 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:31:26.891 +03:00 [INF] Request finished in 2.3215ms 200 image/svg+xml +2018-09-21 11:31:26.892 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:31:26.892 +03:00 [INF] Request finished in 8.6023ms 200 application/javascript +2018-09-21 11:31:26.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:31:26.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.897 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:31:26.897 +03:00 [INF] Request finished in 0.9974ms 200 image/svg+xml +2018-09-21 11:31:26.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:31:26.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:31:26.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:31:26.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.903 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:31:26.903 +03:00 [INF] Request finished in 1.7295ms 200 application/javascript +2018-09-21 11:31:26.903 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:31:26.903 +03:00 [INF] Request finished in 3.8934ms 200 application/javascript +2018-09-21 11:31:26.905 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:31:26.906 +03:00 [INF] Request finished in 6.9942ms 200 application/javascript +2018-09-21 11:31:26.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:26.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.912 +03:00 [INF] Request finished in 1.1753ms 404 +2018-09-21 11:31:26.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:31:26.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.913 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.914 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:31:26.914 +03:00 [INF] Request finished in 1.164ms 200 application/javascript +2018-09-21 11:31:26.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:31:26.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.921 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:31:26.921 +03:00 [INF] Request finished in 2.1524ms 200 application/javascript +2018-09-21 11:31:26.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:31:26.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.931 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:31:26.931 +03:00 [INF] Request finished in 4.0607ms 200 application/javascript +2018-09-21 11:31:26.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:31:26.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.949 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:31:26.950 +03:00 [INF] Request finished in 13.7181ms 200 application/javascript +2018-09-21 11:31:26.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:31:26.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.960 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:31:26.960 +03:00 [INF] Request finished in 2.0121ms 200 application/javascript +2018-09-21 11:31:26.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:31:26.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.976 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:31:26.976 +03:00 [INF] Request finished in 9.8673ms 200 application/javascript +2018-09-21 11:31:26.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:31:26.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:31:26.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:26.998 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:31:26.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:26.998 +03:00 [INF] Request finished in 1.3878ms 200 application/javascript +2018-09-21 11:31:26.999 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:31:26.999 +03:00 [INF] Request finished in 1.5601ms 200 application/javascript +2018-09-21 11:31:27.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:31:27.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.007 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:31:27.007 +03:00 [INF] Request finished in 2.1993ms 200 application/javascript +2018-09-21 11:31:27.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:31:27.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.025 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:31:27.025 +03:00 [INF] Request finished in 1.7103ms 200 application/javascript +2018-09-21 11:31:27.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:31:27.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:31:27.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.031 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:31:27.031 +03:00 [INF] Request finished in 2.8452ms 200 application/javascript +2018-09-21 11:31:27.033 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:31:27.034 +03:00 [INF] Request finished in 3.5545ms 200 application/javascript +2018-09-21 11:31:27.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:31:27.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.042 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:31:27.042 +03:00 [INF] Request finished in 1.9883ms 200 application/javascript +2018-09-21 11:31:27.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:31:27.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.044 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.045 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:31:27.045 +03:00 [INF] Request finished in 1.5044ms 200 application/javascript +2018-09-21 11:31:27.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:31:27.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.055 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:31:27.055 +03:00 [INF] Request finished in 3.3244ms 200 application/javascript +2018-09-21 11:31:27.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:31:27.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.058 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:31:27.058 +03:00 [INF] Request finished in 1.4438ms 200 application/javascript +2018-09-21 11:31:27.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:31:27.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.071 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:27.072 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.073 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.074 +03:00 [INF] Authorization failed. +2018-09-21 11:31:27.076 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.8629ms. +2018-09-21 11:31:27.076 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:27.077 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.3294000000000006ms +2018-09-21 11:31:27.077 +03:00 [INF] Request finished in 13.3887ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:27.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:31:27.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.080 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.083 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:27.086 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:31:27.087 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 1.2289ms. +2018-09-21 11:31:27.088 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:27.088 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.8441ms +2018-09-21 11:31:27.088 +03:00 [INF] Request finished in 10.2167ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:27.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:31:27.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:31:27.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.090 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:31:27.090 +03:00 [INF] Request finished in 1.1654ms 200 application/javascript +2018-09-21 11:31:27.090 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:31:27.090 +03:00 [INF] Request finished in 1.3604ms 200 application/javascript +2018-09-21 11:31:27.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:31:27.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.132 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:31:27.132 +03:00 [INF] Request finished in 2.6545ms 200 font/woff2 +2018-09-21 11:31:27.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:31:27.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.176 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:31:27.176 +03:00 [INF] Request finished in 8.9148ms 200 image/jpeg +2018-09-21 11:31:27.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:27.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.200 +03:00 [INF] Request finished in 1.5906ms 404 +2018-09-21 11:31:27.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:31:27.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:31:27.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:27.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:27.463 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:31:27.463 +03:00 [INF] Request finished in 1.6987ms 200 image/png +2018-09-21 11:31:27.465 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:31:27.466 +03:00 [INF] Request finished in 3.615ms 200 image/png +2018-09-21 11:31:33.816 +03:00 [INF] Loaded modules: +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 11:31:33.841 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 11:31:33.842 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 11:31:33.843 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 11:31:33.844 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 11:31:35.921 +03:00 [INF] Initialized all modules. +2018-09-21 11:31:36.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:31:36.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:31:36.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:36.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:36.552 +03:00 [INF] Request finished in 351.5784ms 404 +2018-09-21 11:31:39.121 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:31:39.203 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:41.192 +03:00 [INF] Executed action /Account/Register in 2061.4657ms +2018-09-21 11:31:41.209 +03:00 [INF] Request finished in 5009.6448ms 200 text/html; charset=utf-8 +2018-09-21 11:31:41.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:31:41.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:31:41.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.255 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:31:41.255 +03:00 [INF] Request finished in 16.6203ms 200 text/css +2018-09-21 11:31:41.255 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:31:41.255 +03:00 [INF] Request finished in 16.7703ms 200 text/css +2018-09-21 11:31:41.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:31:41.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.257 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:31:41.257 +03:00 [INF] Request finished in 2.0325ms 200 text/css +2018-09-21 11:31:41.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:31:41.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:31:41.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.264 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.265 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:31:41.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:31:41.265 +03:00 [INF] Request finished in 1.5073ms 200 text/css +2018-09-21 11:31:41.265 +03:00 [INF] Request finished in 2.5422ms 200 text/css +2018-09-21 11:31:41.270 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:41.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.271 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:31:41.271 +03:00 [INF] Request finished in 32.7778ms 200 text/css +2018-09-21 11:31:41.271 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:41.271 +03:00 [INF] Request finished in 1.7735ms 200 text/css +2018-09-21 11:31:41.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:31:41.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.274 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:31:41.274 +03:00 [INF] Request finished in 1.9588ms 200 application/javascript +2018-09-21 11:31:41.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:31:41.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.276 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:31:41.276 +03:00 [INF] Request finished in 1.9883ms 200 text/css +2018-09-21 11:31:41.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:31:41.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:31:41.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.291 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:31:41.291 +03:00 [INF] Request finished in 1.3605ms 200 application/javascript +2018-09-21 11:31:41.293 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:31:41.293 +03:00 [INF] Request finished in 10.1145ms 200 application/javascript +2018-09-21 11:31:41.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:31:41.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.297 +03:00 [INF] Request finished in 2.5338ms 404 +2018-09-21 11:31:41.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:31:41.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.324 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:31:41.324 +03:00 [INF] Request finished in 5.4033ms 200 application/javascript +2018-09-21 11:31:41.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:41.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.357 +03:00 [INF] Request finished in 2.4815ms 404 +2018-09-21 11:31:41.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:31:41.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.368 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:31:41.369 +03:00 [INF] Request finished in 3.9271ms 200 application/javascript +2018-09-21 11:31:41.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:31:41.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.393 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:31:41.393 +03:00 [INF] Request finished in 1.4752ms 200 application/javascript +2018-09-21 11:31:41.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:31:41.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.402 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:31:41.402 +03:00 [INF] Request finished in 3.2469ms 200 application/javascript +2018-09-21 11:31:41.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:31:41.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:31:41.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:31:41.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.415 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:31:41.415 +03:00 [INF] Request finished in 1.2943ms 200 application/javascript +2018-09-21 11:31:41.415 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:31:41.416 +03:00 [INF] Request finished in 8.0064ms 200 application/javascript +2018-09-21 11:31:41.420 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:31:41.420 +03:00 [INF] Request finished in 10.9781ms 200 application/javascript +2018-09-21 11:31:41.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:31:41.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.422 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:31:41.422 +03:00 [INF] Request finished in 1.2948ms 200 application/javascript +2018-09-21 11:31:41.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:31:41.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.429 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:31:41.430 +03:00 [INF] Request finished in 3.1468ms 200 application/javascript +2018-09-21 11:31:41.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:31:41.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.437 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:31:41.437 +03:00 [INF] Request finished in 3.9168ms 200 application/javascript +2018-09-21 11:31:41.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:31:41.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.440 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:31:41.440 +03:00 [INF] Request finished in 2.1255ms 200 application/javascript +2018-09-21 11:31:41.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:31:41.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.446 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:31:41.446 +03:00 [INF] Request finished in 1.5328ms 200 application/javascript +2018-09-21 11:31:41.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:31:41.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.454 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:31:41.454 +03:00 [INF] Request finished in 3.4732ms 200 application/javascript +2018-09-21 11:31:41.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:31:41.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.461 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:31:41.461 +03:00 [INF] Request finished in 1.2806ms 200 application/javascript +2018-09-21 11:31:41.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:31:41.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:31:41.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.473 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:31:41.473 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:31:41.473 +03:00 [INF] Request finished in 1.2039ms 200 application/javascript +2018-09-21 11:31:41.473 +03:00 [INF] Request finished in 1.5239ms 200 application/javascript +2018-09-21 11:31:41.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:31:41.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.489 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:31:41.489 +03:00 [INF] Request finished in 1.5551ms 200 application/javascript +2018-09-21 11:31:41.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:31:41.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.501 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:31:41.501 +03:00 [INF] Request finished in 3.7705ms 200 application/javascript +2018-09-21 11:31:41.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:31:41.502 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:31:41.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:31:41.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.511 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:31:41.511 +03:00 [INF] Request finished in 1.2049ms 200 application/javascript +2018-09-21 11:31:41.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:31:41.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:31:41.527 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:31:41.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.528 +03:00 [INF] Request finished in 1.8702ms 200 application/javascript +2018-09-21 11:31:41.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.529 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:31:41.529 +03:00 [INF] Request finished in 1.8336ms 200 image/svg+xml +2018-09-21 11:31:41.529 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:41.531 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:41.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:31:41.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.534 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:31:41.535 +03:00 [INF] Request finished in 1.8309ms 200 image/svg+xml +2018-09-21 11:31:41.583 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:31:41.589 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:31:41.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:31:41.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.600 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:31:41.600 +03:00 [INF] Request finished in 3.5719ms 200 font/woff2 +2018-09-21 11:31:41.632 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.633 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:31:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.664 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.665 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.665 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.665 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.666 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.666 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.666 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.666 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.667 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.667 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.667 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.667 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.668 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.668 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.669 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.669 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.669 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.670 +03:00 [INF] Authorization failed. +2018-09-21 11:31:41.672 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:31:41.672 +03:00 [INF] Request finished in 11.5027ms 200 image/jpeg +2018-09-21 11:31:41.711 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 123.2886ms. +2018-09-21 11:31:41.719 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 129.9468ms. +2018-09-21 11:31:41.723 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:41.723 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:41.724 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 192.57920000000001ms +2018-09-21 11:31:41.724 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 195.0653ms +2018-09-21 11:31:41.724 +03:00 [INF] Request finished in 219.4596ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:41.724 +03:00 [INF] Request finished in 222.7556ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:41.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:31:41.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.898 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:31:41.898 +03:00 [INF] Request finished in 1.7152ms 200 image/png +2018-09-21 11:31:41.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:31:41.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:41.900 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:41.901 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:31:41.901 +03:00 [INF] Request finished in 1.4095ms 200 image/png +2018-09-21 11:31:42.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:42.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:42.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:42.084 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:42.084 +03:00 [INF] Request finished in 1.2814ms 200 text/css +2018-09-21 11:31:42.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:31:42.286 +03:00 [INF] Request finished in 1.9101ms 404 +2018-09-21 11:31:47.171 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 261 +2018-09-21 11:31:47.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:47.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:47.182 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:31:47.293 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:47.324 +03:00 [WRN] User 5c069de8-559f-58ac-5864-39e90d6e7a6a password validation failed: PasswordTooShort. +2018-09-21 11:31:47.333 +03:00 [INF] Executed action /Account/Register in 151.50480000000002ms +2018-09-21 11:31:47.379 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Identity.AbpIdentityResultException: Passwords must be at least 4 characters. + at Microsoft.AspNetCore.Identity.AbpIdentityResultExtensions.CheckErrors(IdentityResult identityResult) in D:\Github\abp\modules\identity\src\Volo.Abp.Identity.Domain\Microsoft\AspNetCore\Identity\AbpIdentityResultExtensions.cs:line 26 + at Volo.Abp.Account.Web.Pages.Account.RegisterModel.OnPostAsync() in D:\Github\abp\modules\account\src\Volo.Abp.Account.Web\Pages\Account\Register.cshtml.cs:line 40 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Convert[T](Object taskAsObject) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.GenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:31:47.415 +03:00 [INF] Request finished in 243.9197ms 500 text/html; charset=utf-8 +2018-09-21 11:31:47.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:31:47.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:47.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:47.458 +03:00 [INF] Request finished in 1.1983ms 404 +2018-09-21 11:31:49.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Register +2018-09-21 11:31:49.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.008 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:31:49.038 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:49.105 +03:00 [INF] Executed action /Account/Register in 96.5343ms +2018-09-21 11:31:49.105 +03:00 [INF] Request finished in 98.2697ms 200 text/html; charset=utf-8 +2018-09-21 11:31:49.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:31:49.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:31:49.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:31:49.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.156 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:31:49.157 +03:00 [INF] Request finished in 1.3373ms 200 text/css +2018-09-21 11:31:49.157 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:31:49.157 +03:00 [INF] Request finished in 1.427ms 200 text/css +2018-09-21 11:31:49.160 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:31:49.160 +03:00 [INF] Request finished in 4.5563ms 200 text/css +2018-09-21 11:31:49.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:31:49.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:31:49.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.184 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:31:49.184 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:31:49.184 +03:00 [INF] Request finished in 3.0274ms 200 text/css +2018-09-21 11:31:49.184 +03:00 [INF] Request finished in 3.492ms 200 text/css +2018-09-21 11:31:49.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:31:49.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.188 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:31:49.188 +03:00 [INF] Request finished in 1.3366ms 200 text/css +2018-09-21 11:31:49.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:31:49.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:49.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.203 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:49.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.203 +03:00 [INF] Request finished in 1.4198ms 200 text/css +2018-09-21 11:31:49.203 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:31:49.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.204 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:31:49.204 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:31:49.204 +03:00 [INF] Request finished in 1.1859ms 200 application/javascript +2018-09-21 11:31:49.204 +03:00 [INF] Request finished in 2.3358ms 200 text/css +2018-09-21 11:31:49.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:31:49.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:31:49.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.212 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:31:49.212 +03:00 [INF] Request finished in 7.7644ms 200 application/javascript +2018-09-21 11:31:49.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:31:49.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.216 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:31:49.216 +03:00 [INF] Request finished in 10.861ms 200 application/javascript +2018-09-21 11:31:49.221 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:31:49.221 +03:00 [INF] Request finished in 5.8966ms 200 application/javascript +2018-09-21 11:31:49.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:31:49.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.223 +03:00 [INF] Request finished in 1.6853ms 404 +2018-09-21 11:31:49.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:31:49.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.226 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:31:49.226 +03:00 [INF] Request finished in 2.5209ms 200 image/svg+xml +2018-09-21 11:31:49.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:31:49.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.236 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:31:49.237 +03:00 [INF] Request finished in 3.1185ms 200 image/svg+xml +2018-09-21 11:31:49.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:49.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.242 +03:00 [INF] Request finished in 2.1104ms 404 +2018-09-21 11:31:49.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:31:49.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.249 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:31:49.249 +03:00 [INF] Request finished in 2.2737ms 200 application/javascript +2018-09-21 11:31:49.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:31:49.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.289 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:31:49.289 +03:00 [INF] Request finished in 1.1919ms 200 application/javascript +2018-09-21 11:31:49.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:31:49.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.300 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:31:49.300 +03:00 [INF] Request finished in 1.2426ms 200 application/javascript +2018-09-21 11:31:49.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:31:49.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.315 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:31:49.315 +03:00 [INF] Request finished in 5.9852ms 200 application/javascript +2018-09-21 11:31:49.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:31:49.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.352 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:31:49.352 +03:00 [INF] Request finished in 9.4788ms 200 application/javascript +2018-09-21 11:31:49.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:31:49.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:31:49.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.354 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:31:49.354 +03:00 [INF] Request finished in 1.2161ms 200 application/javascript +2018-09-21 11:31:49.354 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:31:49.355 +03:00 [INF] Request finished in 1.9865ms 200 application/javascript +2018-09-21 11:31:49.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:31:49.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.357 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:31:49.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:31:49.357 +03:00 [INF] Request finished in 1.5212ms 200 application/javascript +2018-09-21 11:31:49.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:31:49.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.359 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:31:49.359 +03:00 [INF] Request finished in 1.8879ms 200 application/javascript +2018-09-21 11:31:49.359 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:31:49.359 +03:00 [INF] Request finished in 1.9108ms 200 application/javascript +2018-09-21 11:31:49.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:31:49.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.367 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.368 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:31:49.368 +03:00 [INF] Request finished in 3.1553ms 200 application/javascript +2018-09-21 11:31:49.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:31:49.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:31:49.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:31:49.390 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:31:49.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.390 +03:00 [INF] Request finished in 2.1395ms 200 application/javascript +2018-09-21 11:31:49.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.391 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:31:49.391 +03:00 [INF] Request finished in 1.34ms 200 application/javascript +2018-09-21 11:31:49.392 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:31:49.393 +03:00 [INF] Request finished in 2.3603ms 200 application/javascript +2018-09-21 11:31:49.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:31:49.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.399 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:31:49.399 +03:00 [INF] Request finished in 5.4769ms 200 application/javascript +2018-09-21 11:31:49.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:31:49.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.405 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:31:49.405 +03:00 [INF] Request finished in 5.1377ms 200 application/javascript +2018-09-21 11:31:49.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:31:49.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:31:49.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.411 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:49.412 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:49.412 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:31:49.412 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2655ms. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.413 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1864ms +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Request finished in 8.4717ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.414 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.415 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.415 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.415 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.415 +03:00 [INF] Authorization failed. +2018-09-21 11:31:49.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:31:49.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.417 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.5669ms. +2018-09-21 11:31:49.418 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:31:49.418 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:49.418 +03:00 [INF] Request finished in 1.1592ms 200 application/javascript +2018-09-21 11:31:49.418 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.0853ms +2018-09-21 11:31:49.418 +03:00 [INF] Request finished in 12.4273ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:49.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:31:49.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.422 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:31:49.422 +03:00 [INF] Request finished in 1.7169ms 200 application/javascript +2018-09-21 11:31:49.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:31:49.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.427 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:31:49.427 +03:00 [INF] Request finished in 1.1497ms 200 application/javascript +2018-09-21 11:31:49.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:31:49.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.488 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:31:49.488 +03:00 [INF] Request finished in 2.9268ms 200 font/woff2 +2018-09-21 11:31:49.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:31:49.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.521 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:31:49.521 +03:00 [INF] Request finished in 8.9899ms 200 image/jpeg +2018-09-21 11:31:49.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:49.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.554 +03:00 [INF] Request finished in 1.2292ms 404 +2018-09-21 11:31:49.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:31:49.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.787 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:31:49.787 +03:00 [INF] Request finished in 1.4387ms 200 image/png +2018-09-21 11:31:49.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:31:49.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.790 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:31:49.790 +03:00 [INF] Request finished in 1.3112ms 200 image/png +2018-09-21 11:31:49.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:49.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:49.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:49.919 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:49.919 +03:00 [INF] Request finished in 1.0309ms 200 text/css +2018-09-21 11:31:50.108 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:31:50.109 +03:00 [INF] Request finished in 1.014ms 404 +2018-09-21 11:31:55.046 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Register application/x-www-form-urlencoded 262 +2018-09-21 11:31:55.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:55.047 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:55.048 +03:00 [INF] Route matched with {page = "/Account/Register", controller = "", area = "", action = ""}. Executing action /Account/Register +2018-09-21 11:31:55.120 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:55.384 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 11:31:55.391 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 11:31:55.391 +03:00 [INF] Executed action /Account/Register in 342.6737ms +2018-09-21 11:31:55.391 +03:00 [INF] Request finished in 345.5428ms 302 +2018-09-21 11:31:55.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:31:55.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:55.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:55.764 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:31:55.766 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:31:56.192 +03:00 [INF] Executed action /Index in 427.2187ms +2018-09-21 11:31:56.192 +03:00 [INF] Request finished in 783.8166ms 200 text/html; charset=utf-8 +2018-09-21 11:31:56.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:31:56.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.267 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:31:56.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:31:56.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.268 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:31:56.269 +03:00 [INF] Request finished in 1.0559ms 200 text/css +2018-09-21 11:31:56.269 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:31:56.269 +03:00 [INF] Request finished in 1.1771ms 200 text/css +2018-09-21 11:31:56.272 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:31:56.272 +03:00 [INF] Request finished in 5.7441ms 200 text/css +2018-09-21 11:31:56.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:31:56.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.295 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:31:56.296 +03:00 [INF] Request finished in 1.5159ms 200 text/css +2018-09-21 11:31:56.298 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:31:56.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.302 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:31:56.302 +03:00 [INF] Request finished in 4.0485ms 200 text/css +2018-09-21 11:31:56.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:31:56.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.306 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:31:56.306 +03:00 [INF] Request finished in 1.4918ms 200 text/css +2018-09-21 11:31:56.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:31:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.312 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.313 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:56.313 +03:00 [INF] Request finished in 0.8442ms 200 text/css +2018-09-21 11:31:56.313 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:31:56.313 +03:00 [INF] Request finished in 2.2057ms 200 application/javascript +2018-09-21 11:31:56.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:31:56.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.315 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.316 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:31:56.318 +03:00 [INF] Request finished in 3.4649ms 200 text/css +2018-09-21 11:31:56.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:31:56.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:31:56.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.320 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:31:56.320 +03:00 [INF] Request finished in 1.1351ms 200 application/javascript +2018-09-21 11:31:56.328 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:31:56.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:31:56.328 +03:00 [INF] Request finished in 9.5359ms 200 application/javascript +2018-09-21 11:31:56.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.330 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:31:56.330 +03:00 [INF] Request finished in 1.587ms 200 application/javascript +2018-09-21 11:31:56.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:31:56.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.332 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:31:56.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:31:56.340 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:31:56.340 +03:00 [INF] Request finished in 4.1914ms 200 application/javascript +2018-09-21 11:31:56.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.341 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:31:56.342 +03:00 [INF] Request finished in 1.807ms 200 application/javascript +2018-09-21 11:31:56.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:31:56.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.362 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:31:56.363 +03:00 [INF] Request finished in 5.6499ms 200 application/javascript +2018-09-21 11:31:56.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:31:56.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:31:56.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.381 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:31:56.382 +03:00 [INF] Request finished in 3.2137ms 200 application/javascript +2018-09-21 11:31:56.391 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:31:56.391 +03:00 [INF] Request finished in 11.7636ms 200 application/javascript +2018-09-21 11:31:56.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:31:56.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.402 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:31:56.402 +03:00 [INF] Request finished in 2.626ms 200 application/javascript +2018-09-21 11:31:56.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:31:56.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.423 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:31:56.423 +03:00 [INF] Request finished in 2.1033ms 200 application/javascript +2018-09-21 11:31:56.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:31:56.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.435 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:31:56.435 +03:00 [INF] Request finished in 3.5437ms 200 application/javascript +2018-09-21 11:31:56.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:31:56.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.447 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:31:56.447 +03:00 [INF] Request finished in 2.5192ms 200 application/javascript +2018-09-21 11:31:56.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:31:56.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.456 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:31:56.457 +03:00 [INF] Request finished in 3.4173ms 200 application/javascript +2018-09-21 11:31:56.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:31:56.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.481 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:31:56.481 +03:00 [INF] Request finished in 2.3108ms 200 application/javascript +2018-09-21 11:31:56.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:31:56.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.492 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:31:56.492 +03:00 [INF] Request finished in 1.6307ms 200 application/javascript +2018-09-21 11:31:56.500 +03:00 [INF] Request finished in 169.1519ms 404 +2018-09-21 11:31:56.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:31:56.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.505 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:31:56.505 +03:00 [INF] Request finished in 2.1625ms 200 application/javascript +2018-09-21 11:31:56.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:31:56.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.509 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:31:56.509 +03:00 [INF] Request finished in 2.079ms 200 application/javascript +2018-09-21 11:31:56.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:31:56.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.519 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:31:56.520 +03:00 [INF] Request finished in 1.8178ms 200 application/javascript +2018-09-21 11:31:56.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:31:56.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:31:56.521 +03:00 [INF] Request finished in 1.2045ms 200 application/javascript +2018-09-21 11:31:56.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:31:56.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.528 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:31:56.528 +03:00 [INF] Request finished in 2.0918ms 200 application/javascript +2018-09-21 11:31:56.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:31:56.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:31:56.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:31:56.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.552 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:31:56.552 +03:00 [INF] Request finished in 2.3744ms 200 application/javascript +2018-09-21 11:31:56.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:31:56.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.557 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:31:56.557 +03:00 [INF] Request finished in 1.6136ms 200 application/javascript +2018-09-21 11:31:56.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:31:56.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.569 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:31:56.570 +03:00 [INF] Request finished in 1.435ms 200 image/svg+xml +2018-09-21 11:31:56.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 11:31:56.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 11:31:56.572 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 11:31:56.572 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.572 +03:00 [INF] Request finished in 1.2263ms 200 image/png +2018-09-21 11:31:56.572 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.573 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 11:31:56.573 +03:00 [INF] Request finished in 1.6792ms 200 image/png +2018-09-21 11:31:56.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 11:31:56.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 11:31:56.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.577 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 11:31:56.578 +03:00 [INF] Request finished in 1.1037ms 200 image/png +2018-09-21 11:31:56.578 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 11:31:56.578 +03:00 [INF] Request finished in 1.2988ms 200 image/png +2018-09-21 11:31:56.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 11:31:56.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.584 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 11:31:56.585 +03:00 [INF] Request finished in 3.4656ms 200 image/png +2018-09-21 11:31:56.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 11:31:56.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.590 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 11:31:56.590 +03:00 [INF] Request finished in 1.8845ms 200 image/png +2018-09-21 11:31:56.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 11:31:56.593 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 11:31:56.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.594 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 11:31:56.594 +03:00 [INF] Request finished in 1.108ms 200 image/png +2018-09-21 11:31:56.594 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 11:31:56.594 +03:00 [INF] Request finished in 1.3111ms 200 image/png +2018-09-21 11:31:56.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 11:31:56.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 11:31:56.597 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 11:31:56.598 +03:00 [INF] Request finished in 1.3162ms 200 image/png +2018-09-21 11:31:56.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.600 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 11:31:56.600 +03:00 [INF] Request finished in 2.915ms 200 image/png +2018-09-21 11:31:56.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 11:31:56.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 11:31:56.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.606 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 11:31:56.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 11:31:56.606 +03:00 [INF] Request finished in 1.1357ms 200 image/png +2018-09-21 11:31:56.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.607 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 11:31:56.607 +03:00 [INF] Request finished in 1.0756ms 200 image/png +2018-09-21 11:31:56.607 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 11:31:56.607 +03:00 [INF] Request finished in 1.281ms 200 image/png +2018-09-21 11:31:56.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 11:31:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 11:31:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 11:31:56.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.621 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.621 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 11:31:56.621 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 11:31:56.621 +03:00 [INF] Request finished in 1.1051ms 200 image/png +2018-09-21 11:31:56.621 +03:00 [INF] Request finished in 1.5653ms 200 image/png +2018-09-21 11:31:56.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 11:31:56.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.622 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.624 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 11:31:56.625 +03:00 [INF] Request finished in 3.0034ms 200 image/png +2018-09-21 11:31:56.626 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 11:31:56.626 +03:00 [INF] Request finished in 5.4637ms 200 image/png +2018-09-21 11:31:56.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 11:31:56.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.637 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 11:31:56.637 +03:00 [INF] Request finished in 1.2373ms 200 image/png +2018-09-21 11:31:56.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 11:31:56.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.640 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 11:31:56.641 +03:00 [INF] Request finished in 1.89ms 200 image/png +2018-09-21 11:31:56.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:31:56.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.646 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:31:56.648 +03:00 [INF] Request finished in 7.0077ms 200 font/woff2 +2018-09-21 11:31:56.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 11:31:56.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.658 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 11:31:56.658 +03:00 [INF] Request finished in 1.9307ms 200 image/png +2018-09-21 11:31:56.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 11:31:56.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.659 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.660 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 11:31:56.660 +03:00 [INF] Request finished in 1.2586ms 200 image/png +2018-09-21 11:31:56.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 11:31:56.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.661 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.661 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 11:31:56.661 +03:00 [INF] Request finished in 1.0541ms 200 image/png +2018-09-21 11:31:56.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 11:31:56.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.662 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 11:31:56.662 +03:00 [INF] Request finished in 1.0046ms 200 image/png +2018-09-21 11:31:56.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 11:31:56.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.672 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 11:31:56.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 11:31:56.673 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 11:31:56.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.673 +03:00 [INF] Request finished in 1.5426ms 200 image/png +2018-09-21 11:31:56.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.674 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 11:31:56.674 +03:00 [INF] Request finished in 1.1965ms 200 image/png +2018-09-21 11:31:56.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 11:31:56.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.675 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 11:31:56.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.676 +03:00 [INF] Request finished in 2.8419ms 200 image/png +2018-09-21 11:31:56.679 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 11:31:56.679 +03:00 [INF] Request finished in 3.7912ms 200 image/png +2018-09-21 11:31:56.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 11:31:56.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.684 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 11:31:56.684 +03:00 [INF] Request finished in 3.0448ms 200 image/png +2018-09-21 11:31:56.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 11:31:56.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.687 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 11:31:56.687 +03:00 [INF] Request finished in 2.4108ms 200 image/png +2018-09-21 11:31:56.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 11:31:56.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 11:31:56.693 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.694 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 11:31:56.694 +03:00 [INF] Request finished in 5.4612ms 200 image/png +2018-09-21 11:31:56.695 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 11:31:56.695 +03:00 [INF] Request finished in 2.531ms 200 image/png +2018-09-21 11:31:56.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 11:31:56.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 11:31:56.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.707 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 11:31:56.707 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 11:31:56.707 +03:00 [INF] Request finished in 1.0162ms 200 image/png +2018-09-21 11:31:56.707 +03:00 [INF] Request finished in 1.8157ms 200 image/png +2018-09-21 11:31:56.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 11:31:56.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.710 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 11:31:56.710 +03:00 [INF] Request finished in 1.2401ms 200 image/png +2018-09-21 11:31:56.722 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:56.723 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:31:56.724 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.724 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:31:56.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 11:31:56.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.734 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 11:31:56.734 +03:00 [INF] Request finished in 2.4306ms 200 image/png +2018-09-21 11:31:56.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:31:56.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:56.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:56.739 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:31:56.739 +03:00 [INF] Request finished in 1.2581ms 200 image/svg+xml +2018-09-21 11:31:56.741 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:31:56.741 +03:00 [INF] Request finished in 10.489ms 200 image/jpeg +2018-09-21 11:31:56.768 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:31:56.770 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:31:56.770 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.168ms. +2018-09-21 11:31:56.770 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:56.771 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7022ms +2018-09-21 11:31:56.771 +03:00 [INF] Request finished in 228.1941ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:56.835 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.840 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.842 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.843 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.845 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.847 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.849 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.851 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.854 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.856 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.857 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.859 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.862 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.863 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.865 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.869 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.871 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.872 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.874 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.875 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.877 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.878 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.880 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.881 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.883 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.885 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.887 +03:00 [INF] Authorization failed. +2018-09-21 11:31:56.894 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 169.874ms. +2018-09-21 11:31:56.903 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:31:56.903 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 180.92170000000002ms +2018-09-21 11:31:56.903 +03:00 [INF] Request finished in 371.0478ms 200 text/plain; charset=utf-8 +2018-09-21 11:31:57.071 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:31:57.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:57.071 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:57.072 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:31:57.072 +03:00 [INF] Request finished in 1.4277ms 200 image/png +2018-09-21 11:31:57.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:31:57.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:57.073 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:57.074 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:31:57.074 +03:00 [INF] Request finished in 1.0315ms 200 image/png +2018-09-21 11:31:57.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:31:57.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:31:57.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:31:57.357 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:31:57.357 +03:00 [INF] Request finished in 1.1509ms 200 text/css +2018-09-21 11:31:57.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:31:57.723 +03:00 [INF] Request finished in 1.1424ms 404 +2018-09-21 11:32:02.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:32:02.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:02.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:02.626 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:32:02.818 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:32:03.381 +03:00 [INF] Executed action /Blog/Posts/Index in 754.79500000000007ms +2018-09-21 11:32:03.382 +03:00 [INF] Request finished in 1287.8498ms 200 text/html; charset=utf-8 +2018-09-21 11:32:03.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:32:03.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.458 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:32:03.458 +03:00 [INF] Request finished in 4.793ms 200 text/css +2018-09-21 11:32:03.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:32:03.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.474 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:32:03.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.475 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:32:03.476 +03:00 [INF] Request finished in 5.2615ms 200 text/css +2018-09-21 11:32:03.476 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:32:03.476 +03:00 [INF] Request finished in 1.9953ms 200 text/css +2018-09-21 11:32:03.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:32:03.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.480 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:32:03.480 +03:00 [INF] Request finished in 2.1899ms 200 text/css +2018-09-21 11:32:03.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:32:03.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.484 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:32:03.485 +03:00 [INF] Request finished in 1.5111ms 200 text/css +2018-09-21 11:32:03.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:32:03.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.490 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:32:03.490 +03:00 [INF] Request finished in 5.1888ms 200 text/css +2018-09-21 11:32:03.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:32:03.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.495 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:32:03.495 +03:00 [INF] Request finished in 1.4207ms 200 text/css +2018-09-21 11:32:03.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:32:03.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.501 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:32:03.502 +03:00 [INF] Request finished in 2.4827ms 200 text/css +2018-09-21 11:32:03.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 11:32:03.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 11:32:03.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 11:32:03.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.515 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 11:32:03.515 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 11:32:03.515 +03:00 [INF] Request finished in 3.4367ms 200 text/css +2018-09-21 11:32:03.515 +03:00 [INF] Request finished in 1.3895ms 200 text/css +2018-09-21 11:32:03.515 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 11:32:03.516 +03:00 [INF] Request finished in 1.5788ms 200 text/css +2018-09-21 11:32:03.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 11:32:03.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.534 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 11:32:03.534 +03:00 [INF] Request finished in 1.5367ms 200 text/css +2018-09-21 11:32:03.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 11:32:03.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.551 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 11:32:03.551 +03:00 [INF] Request finished in 8.3726ms 200 image/jpeg +2018-09-21 11:32:03.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:32:03.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:32:03.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.585 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:32:03.585 +03:00 [INF] Request finished in 1.4118ms 200 application/javascript +2018-09-21 11:32:03.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:32:03.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:32:03.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.594 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:32:03.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.600 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:32:03.600 +03:00 [INF] Request finished in 6.213ms 200 application/javascript +2018-09-21 11:32:03.600 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:32:03.600 +03:00 [INF] Request finished in 3.0858ms 200 application/javascript +2018-09-21 11:32:03.601 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:32:03.601 +03:00 [INF] Request finished in 11.0154ms 200 application/javascript +2018-09-21 11:32:03.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:32:03.606 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:32:03.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.610 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:32:03.610 +03:00 [INF] Request finished in 1.7139ms 200 application/javascript +2018-09-21 11:32:03.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:32:03.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.614 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:32:03.614 +03:00 [INF] Request finished in 1.6179ms 200 application/javascript +2018-09-21 11:32:03.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:32:03.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:32:03.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.629 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:32:03.629 +03:00 [INF] Request finished in 1.1387ms 200 application/javascript +2018-09-21 11:32:03.630 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:32:03.630 +03:00 [INF] Request finished in 2.084ms 200 application/javascript +2018-09-21 11:32:03.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:32:03.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:32:03.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.672 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:32:03.672 +03:00 [INF] Request finished in 5.9106ms 200 application/javascript +2018-09-21 11:32:03.679 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:32:03.680 +03:00 [INF] Request finished in 16.7155ms 200 application/javascript +2018-09-21 11:32:03.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:32:03.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.697 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:32:03.697 +03:00 [INF] Request finished in 1.5821ms 200 application/javascript +2018-09-21 11:32:03.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:32:03.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.715 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:32:03.716 +03:00 [INF] Request finished in 7.2919ms 200 application/javascript +2018-09-21 11:32:03.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:32:03.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.719 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.724 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:32:03.724 +03:00 [INF] Request finished in 5.1228ms 200 application/javascript +2018-09-21 11:32:03.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:32:03.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.731 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:32:03.731 +03:00 [INF] Request finished in 2.4921ms 200 application/javascript +2018-09-21 11:32:03.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:32:03.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.750 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:32:03.750 +03:00 [INF] Request finished in 1.5414ms 200 application/javascript +2018-09-21 11:32:03.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:32:03.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.754 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:32:03.755 +03:00 [INF] Request finished in 1.2341ms 200 application/javascript +2018-09-21 11:32:03.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:32:03.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:32:03.757 +03:00 [INF] Request finished in 2.2032ms 200 application/javascript +2018-09-21 11:32:03.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:32:03.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.761 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:32:03.761 +03:00 [INF] Request finished in 1.5292ms 200 application/javascript +2018-09-21 11:32:03.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:32:03.772 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:32:03.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.775 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:32:03.775 +03:00 [INF] Request finished in 3.8218ms 200 application/javascript +2018-09-21 11:32:03.779 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:32:03.780 +03:00 [INF] Request finished in 7.7284ms 200 application/javascript +2018-09-21 11:32:03.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:32:03.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.781 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:32:03.781 +03:00 [INF] Request finished in 1.4007ms 200 application/javascript +2018-09-21 11:32:03.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:32:03.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:32:03.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.796 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:32:03.796 +03:00 [INF] Request finished in 1.3175ms 200 application/javascript +2018-09-21 11:32:03.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:32:03.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:32:03.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.802 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:32:03.802 +03:00 [INF] Request finished in 1.7794ms 200 application/javascript +2018-09-21 11:32:03.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 11:32:03.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.815 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 11:32:03.815 +03:00 [INF] Request finished in 2.734ms 200 application/javascript +2018-09-21 11:32:03.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 11:32:03.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.819 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 11:32:03.819 +03:00 [INF] Request finished in 3.5138ms 200 application/javascript +2018-09-21 11:32:03.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 11:32:03.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:32:03.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.834 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 11:32:03.834 +03:00 [INF] Request finished in 2.1499ms 200 application/javascript +2018-09-21 11:32:03.836 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:32:03.836 +03:00 [INF] Request finished in 3.5674ms 200 font/woff2 +2018-09-21 11:32:03.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:32:03.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.842 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:32:03.842 +03:00 [INF] Request finished in 2.1738ms 200 image/svg+xml +2018-09-21 11:32:03.843 +03:00 [INF] Request finished in 269.8738ms 404 +2018-09-21 11:32:03.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:32:03.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.849 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:32:03.850 +03:00 [INF] Request finished in 1.03ms 200 image/svg+xml +2018-09-21 11:32:03.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:32:03.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:03.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:03.867 +03:00 [INF] Request finished in 261.1174ms 404 +2018-09-21 11:32:03.868 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:32:03.868 +03:00 [INF] Request finished in 8.9794ms 200 image/jpeg +2018-09-21 11:32:03.884 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:32:03.885 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:32:03.885 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11660000000000001ms. +2018-09-21 11:32:03.885 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:32:03.885 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7128ms +2018-09-21 11:32:03.886 +03:00 [INF] Request finished in 88.2936ms 200 text/plain; charset=utf-8 +2018-09-21 11:32:03.892 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:32:03.893 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:32:03.894 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.894 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.914 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.915 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.915 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.916 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.916 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.917 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.917 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.918 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.919 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.919 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.920 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.921 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.922 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.923 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.924 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.927 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.928 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.928 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.929 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.929 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.930 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.931 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.932 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.934 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.934 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.935 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.935 +03:00 [INF] Authorization failed. +2018-09-21 11:32:03.938 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 44.7381ms. +2018-09-21 11:32:03.939 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:32:03.939 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 46.1848ms +2018-09-21 11:32:03.939 +03:00 [INF] Request finished in 152.421ms 200 text/plain; charset=utf-8 +2018-09-21 11:32:04.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:32:04.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 11:32:04.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:04.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:04.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:04.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:04.684 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 11:32:04.684 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:32:04.684 +03:00 [INF] Request finished in 1.4199ms 200 image/png +2018-09-21 11:32:04.684 +03:00 [INF] Request finished in 1.4928ms 200 image/png +2018-09-21 11:32:04.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:32:04.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:04.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:04.817 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:32:04.817 +03:00 [INF] Request finished in 3.5974ms 200 text/css +2018-09-21 11:32:05.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:32:05.082 +03:00 [INF] Request finished in 0.8951ms 404 +2018-09-21 11:32:05.868 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:32:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:05.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.300 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:32:06.311 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:32:06.457 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.457 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.465 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.467 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.467 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.468 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.468 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.468 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.480 +03:00 [INF] Executed action /Blog/Posts/Detail in 180.29240000000001ms +2018-09-21 11:32:06.481 +03:00 [INF] Request finished in 612.6561ms 200 text/html; charset=utf-8 +2018-09-21 11:32:06.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 11:32:06.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.515 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 11:32:06.515 +03:00 [INF] Request finished in 4.3616ms 200 text/css +2018-09-21 11:32:06.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 11:32:06.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 11:32:06.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.529 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 11:32:06.529 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 11:32:06.529 +03:00 [INF] Request finished in 2.0336ms 200 text/css +2018-09-21 11:32:06.529 +03:00 [INF] Request finished in 1.1169ms 200 text/css +2018-09-21 11:32:06.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 11:32:06.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.537 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 11:32:06.538 +03:00 [INF] Request finished in 2.8566ms 200 text/css +2018-09-21 11:32:06.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 11:32:06.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 11:32:06.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.542 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 11:32:06.542 +03:00 [INF] Request finished in 1.9209ms 200 text/css +2018-09-21 11:32:06.543 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 11:32:06.543 +03:00 [INF] Request finished in 2.6808ms 200 text/css +2018-09-21 11:32:06.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:32:06.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.554 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:32:06.554 +03:00 [INF] Request finished in 1.1326ms 200 text/css +2018-09-21 11:32:06.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 11:32:06.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.562 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 11:32:06.562 +03:00 [INF] Request finished in 2.4325ms 200 text/css +2018-09-21 11:32:06.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 11:32:06.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.564 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 11:32:06.565 +03:00 [INF] Request finished in 1.6641ms 200 text/css +2018-09-21 11:32:06.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:32:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 11:32:06.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 11:32:06.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.579 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 11:32:06.579 +03:00 [INF] Request finished in 1.953ms 200 application/javascript +2018-09-21 11:32:06.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 11:32:06.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.580 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 11:32:06.580 +03:00 [INF] Request finished in 6.734ms 200 image/png +2018-09-21 11:32:06.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 11:32:06.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.582 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 11:32:06.582 +03:00 [INF] Request finished in 1.1503ms 200 application/javascript +2018-09-21 11:32:06.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 11:32:06.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.586 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 11:32:06.586 +03:00 [INF] Request finished in 6.8908ms 200 application/javascript +2018-09-21 11:32:06.588 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 11:32:06.588 +03:00 [INF] Request finished in 4.8795ms 200 application/javascript +2018-09-21 11:32:06.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:32:06.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 11:32:06.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.612 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 11:32:06.613 +03:00 [INF] Request finished in 5.7659ms 200 application/javascript +2018-09-21 11:32:06.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 11:32:06.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.619 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 11:32:06.619 +03:00 [INF] Request finished in 3.1703ms 200 application/javascript +2018-09-21 11:32:06.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 11:32:06.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 11:32:06.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.640 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 11:32:06.640 +03:00 [INF] Request finished in 1.3191ms 200 application/javascript +2018-09-21 11:32:06.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 11:32:06.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.650 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 11:32:06.650 +03:00 [INF] Request finished in 2.8516ms 200 application/javascript +2018-09-21 11:32:06.654 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 11:32:06.654 +03:00 [INF] Request finished in 15.0093ms 200 application/javascript +2018-09-21 11:32:06.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 11:32:06.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.665 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 11:32:06.665 +03:00 [INF] Request finished in 5.2605ms 200 application/javascript +2018-09-21 11:32:06.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 11:32:06.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.677 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 11:32:06.677 +03:00 [INF] Request finished in 2.7453ms 200 application/javascript +2018-09-21 11:32:06.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 11:32:06.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.682 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 11:32:06.683 +03:00 [INF] Request finished in 3.8456ms 200 application/javascript +2018-09-21 11:32:06.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 11:32:06.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.692 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 11:32:06.692 +03:00 [INF] Request finished in 2.3728ms 200 application/javascript +2018-09-21 11:32:06.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 11:32:06.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.700 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 11:32:06.700 +03:00 [INF] Request finished in 2.2772ms 200 application/javascript +2018-09-21 11:32:06.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 11:32:06.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.702 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 11:32:06.702 +03:00 [INF] Request finished in 1.5075ms 200 application/javascript +2018-09-21 11:32:06.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 11:32:06.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 11:32:06.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.713 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 11:32:06.713 +03:00 [INF] Request finished in 1.2214ms 200 application/javascript +2018-09-21 11:32:06.713 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 11:32:06.713 +03:00 [INF] Request finished in 2.9509ms 200 application/javascript +2018-09-21 11:32:06.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 11:32:06.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.728 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 11:32:06.728 +03:00 [INF] Request finished in 2.5919ms 200 application/javascript +2018-09-21 11:32:06.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 11:32:06.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.735 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 11:32:06.735 +03:00 [INF] Request finished in 2.4427ms 200 application/javascript +2018-09-21 11:32:06.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 11:32:06.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.739 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 11:32:06.739 +03:00 [INF] Request finished in 2.1095ms 200 application/javascript +2018-09-21 11:32:06.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:32:06.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.754 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 11:32:06.754 +03:00 [INF] Request finished in 1.4551ms 200 application/javascript +2018-09-21 11:32:06.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:32:06.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:32:06.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.770 +03:00 [INF] Request finished in 197.7128ms 404 +2018-09-21 11:32:06.774 +03:00 [INF] Request finished in 178.2953ms 404 +2018-09-21 11:32:06.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 11:32:06.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.779 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 11:32:06.779 +03:00 [INF] Request finished in 2.0871ms 200 application/javascript +2018-09-21 11:32:06.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 11:32:06.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.780 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 11:32:06.780 +03:00 [INF] Request finished in 1.087ms 200 application/javascript +2018-09-21 11:32:06.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 11:32:06.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.783 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 11:32:06.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 11:32:06.784 +03:00 [INF] Request finished in 2.528ms 200 font/woff2 +2018-09-21 11:32:06.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.785 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 11:32:06.786 +03:00 [INF] Request finished in 2.6191ms 200 application/javascript +2018-09-21 11:32:06.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 11:32:06.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.790 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 11:32:06.790 +03:00 [INF] Request finished in 1.2347ms 200 application/javascript +2018-09-21 11:32:06.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 11:32:06.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.792 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 11:32:06.792 +03:00 [INF] Request finished in 1.6958ms 200 image/svg+xml +2018-09-21 11:32:06.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 11:32:06.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.796 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 11:32:06.796 +03:00 [INF] Request finished in 1.2094ms 200 image/svg+xml +2018-09-21 11:32:06.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 11:32:06.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.809 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 11:32:06.810 +03:00 [INF] Request finished in 8.1759ms 200 image/jpeg +2018-09-21 11:32:06.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 11:32:06.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:06.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:06.817 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 11:32:06.818 +03:00 [INF] Request finished in 5.8558ms 200 image/jpeg +2018-09-21 11:32:06.835 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:32:06.836 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:32:06.836 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.836 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.837 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.837 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.838 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.838 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.839 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.839 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.839 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.840 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.841 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.841 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.843 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.843 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.844 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.845 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.846 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.846 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.847 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.847 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.848 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.848 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.849 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.849 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.850 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.851 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.851 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.852 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.852 +03:00 [INF] Authorization failed. +2018-09-21 11:32:06.854 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.545ms. +2018-09-21 11:32:06.854 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:32:06.854 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.8913ms +2018-09-21 11:32:06.854 +03:00 [INF] Request finished in 95.7298ms 200 text/plain; charset=utf-8 +2018-09-21 11:32:06.866 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:32:06.866 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:32:06.867 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0978ms. +2018-09-21 11:32:06.867 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:32:06.867 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.9444ms +2018-09-21 11:32:06.867 +03:00 [INF] Request finished in 99.1466ms 200 text/plain; charset=utf-8 +2018-09-21 11:32:07.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 11:32:07.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:07.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:07.076 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 11:32:07.077 +03:00 [INF] Request finished in 1.6364ms 200 image/png +2018-09-21 11:32:07.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 11:32:07.078 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:32:07.079 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:32:07.080 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 11:32:07.080 +03:00 [INF] Request finished in 1.8636ms 200 image/png +2018-09-21 11:32:07.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 11:32:07.411 +03:00 [INF] Request finished in 1.5278ms 404 +2018-09-21 11:45:02.631 +03:00 [INF] Loaded modules: +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 11:45:02.647 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 11:45:02.648 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 11:45:02.649 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 11:45:04.580 +03:00 [INF] Initialized all modules. +2018-09-21 11:45:04.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:45:04.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:04.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:07.383 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:45:07.404 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:45:09.034 +03:00 [INF] Executed action /Index in 1644.4842ms +2018-09-21 11:45:09.063 +03:00 [INF] Request finished in 4308.1861ms 200 text/html; charset=utf-8 +2018-09-21 11:45:09.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 11:45:09.091 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.119 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 11:45:09.119 +03:00 [INF] Request finished in 30.4622ms 200 text/css +2018-09-21 11:45:09.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:45:09.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 11:45:09.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:45:09.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.329 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 11:45:09.334 +03:00 [INF] Request finished in 11.8687ms 304 application/javascript +2018-09-21 11:45:09.343 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:45:09.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.385 +03:00 [INF] Request finished in 127.3703ms 404 +2018-09-21 11:45:09.412 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:09.412 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:09.479 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:45:09.485 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:45:09.524 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.526 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:45:09.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:09.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:09.600 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 113.5322ms. +2018-09-21 11:45:09.608 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:09.610 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 197.54330000000002ms +2018-09-21 11:45:09.610 +03:00 [INF] Request finished in 267.0565ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:09.621 +03:00 [INF] Request finished in 92.1545ms 404 +2018-09-21 11:45:09.660 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.664 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.666 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.667 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.669 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.671 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.672 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.674 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.676 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.679 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.683 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.686 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.687 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.689 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.692 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.698 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.701 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.702 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.704 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.706 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.710 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.712 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.713 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.715 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.716 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.718 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.719 +03:00 [INF] Authorization failed. +2018-09-21 11:45:09.764 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 278.25030000000004ms. +2018-09-21 11:45:09.772 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:09.772 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 359.9771ms +2018-09-21 11:45:09.772 +03:00 [INF] Request finished in 447.5373ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:10.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:45:10.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:10.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:11.185 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:45:11.454 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:45:12.577 +03:00 [INF] Executed action /Blog/Posts/Index in 1391.9722000000002ms +2018-09-21 11:45:12.578 +03:00 [INF] Request finished in 2050.3919ms 200 text/html; charset=utf-8 +2018-09-21 11:45:12.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 11:45:12.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:12.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:12.658 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 11:45:12.659 +03:00 [INF] Request finished in 2.3402ms 304 text/css +2018-09-21 11:45:12.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:45:12.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:12.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:12.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:45:12.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:12.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:12.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:45:12.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:12.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:12.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:45:12.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:12.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:12.834 +03:00 [INF] Request finished in 155.1305ms 404 +2018-09-21 11:45:12.850 +03:00 [INF] Request finished in 111.6864ms 404 +2018-09-21 11:45:12.903 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:12.904 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:45:12.904 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.904 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.913 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:12.914 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:45:12.915 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.24430000000000002ms. +2018-09-21 11:45:12.915 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:12.915 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0355000000000003ms +2018-09-21 11:45:12.915 +03:00 [INF] Request finished in 103.1019ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:12.922 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.923 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.924 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.924 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.925 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.925 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.926 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.926 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.928 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.928 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.929 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.929 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.930 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.930 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.931 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.931 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.932 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.932 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.932 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.933 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.933 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.934 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.934 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.934 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.935 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.935 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.936 +03:00 [INF] Authorization failed. +2018-09-21 11:45:12.938 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 34.0962ms. +2018-09-21 11:45:12.938 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:12.938 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 35.6725ms +2018-09-21 11:45:12.938 +03:00 [INF] Request finished in 135.4697ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:13.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:45:13.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:13.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:14.617 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:45:14.640 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:45:14.875 +03:00 [INF] Authorization failed. +2018-09-21 11:45:14.875 +03:00 [INF] Authorization failed. +2018-09-21 11:45:14.894 +03:00 [INF] Authorization failed. +2018-09-21 11:45:14.896 +03:00 [INF] Authorization failed. +2018-09-21 11:45:14.905 +03:00 [INF] Authorization failed. +2018-09-21 11:45:14.919 +03:00 [INF] Executed action /Blog/Posts/Detail in 301.44210000000004ms +2018-09-21 11:45:14.919 +03:00 [INF] Request finished in 999.946ms 200 text/html; charset=utf-8 +2018-09-21 11:45:14.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 11:45:14.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:14.987 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:14.989 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 11:45:14.990 +03:00 [INF] Request finished in 3.2137ms 200 image/png +2018-09-21 11:45:14.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:45:14.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:14.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:15.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:45:15.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:15.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:15.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:45:15.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:15.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:15.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:45:15.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:15.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:15.152 +03:00 [INF] Request finished in 154.6272ms 404 +2018-09-21 11:45:15.154 +03:00 [INF] Request finished in 133.1856ms 404 +2018-09-21 11:45:15.189 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:15.190 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:45:15.190 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1991ms. +2018-09-21 11:45:15.191 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:15.191 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3882ms +2018-09-21 11:45:15.191 +03:00 [INF] Request finished in 60.4936ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:15.202 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:45:15.203 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:45:15.204 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.204 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.204 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.206 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.207 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.208 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.209 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.210 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.210 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.211 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.212 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.213 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.214 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.214 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.215 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.215 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.216 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.217 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.217 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.218 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.219 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.219 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.219 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.220 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.220 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.221 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.221 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.222 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.222 +03:00 [INF] Authorization failed. +2018-09-21 11:45:15.224 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.2808ms. +2018-09-21 11:45:15.224 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:45:15.224 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.3072ms +2018-09-21 11:45:15.224 +03:00 [INF] Request finished in 100.2027ms 200 text/plain; charset=utf-8 +2018-09-21 11:45:30.638 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 346 +2018-09-21 11:45:30.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:30.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:30.671 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:45:30.707 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:45:30.711 +03:00 [INF] Authorization failed. +2018-09-21 11:45:30.718 +03:00 [INF] Executed action /Blog/Posts/Detail in 47.4583ms +2018-09-21 11:45:30.758 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Authorization.AbpAuthorizationException: Authorization failed! Given policy has not granted: Blogging.Comment.Create + at Microsoft.AspNetCore.Authorization.AbpAuthorizationServiceExtensions.CheckAsync(IAuthorizationService authorizationService, String policyName) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Microsoft\AspNetCore\Authorization\AbpAuthorizationServiceExtensions.cs:line 132 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(IAuthorizeData authorizationAttribute) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 63 + at Volo.Abp.Authorization.MethodInvocationAuthorizationService.CheckAsync(MethodInvocationAuthorizationContext context) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\MethodInvocationAuthorizationService.cs:line 30 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 38 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnPostAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 54 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:45:30.803 +03:00 [INF] Request finished in 165.3855ms 500 text/html; charset=utf-8 +2018-09-21 11:45:30.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:45:30.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:45:30.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:45:30.875 +03:00 [INF] Request finished in 32.9223ms 404 +2018-09-21 11:46:51.970 +03:00 [INF] Loaded modules: +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 11:46:51.987 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 11:46:51.988 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 11:46:51.989 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 11:46:53.835 +03:00 [INF] Initialized all modules. +2018-09-21 11:46:54.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:46:54.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:46:54.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:46:57.111 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:46:57.353 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:46:58.154 +03:00 [INF] Authorization failed. +2018-09-21 11:46:58.159 +03:00 [INF] Authorization failed. +2018-09-21 11:46:58.256 +03:00 [INF] Authorization failed. +2018-09-21 11:46:58.258 +03:00 [INF] Authorization failed. +2018-09-21 11:46:58.274 +03:00 [INF] Authorization failed. +2018-09-21 11:46:59.629 +03:00 [INF] Executed action /Blog/Posts/Detail in 2511.8847ms +2018-09-21 11:46:59.648 +03:00 [INF] Request finished in 5506.0466ms 200 text/html; charset=utf-8 +2018-09-21 11:47:03.869 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 300 +2018-09-21 11:47:03.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:03.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:03.902 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:03.946 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:04.051 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.051 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.059 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.059 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.064 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.070 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.070 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.074 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.080 +03:00 [INF] Executed action /Blog/Posts/Detail in 177.47400000000002ms +2018-09-21 11:47:04.080 +03:00 [INF] Request finished in 211.0166ms 200 text/html; charset=utf-8 +2018-09-21 11:47:04.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:04.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:04.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:04.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:04.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:04.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:04.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:04.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:04.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:04.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:04.220 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:04.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:04.247 +03:00 [INF] Request finished in 113.1258ms 404 +2018-09-21 11:47:04.258 +03:00 [INF] Request finished in 103.7855ms 404 +2018-09-21 11:47:04.296 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:04.298 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:04.331 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:04.334 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:04.343 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.343 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.347 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.349 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.351 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.352 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.353 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.357 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.360 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.361 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.362 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.364 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.365 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.366 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.367 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.368 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.370 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.371 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.371 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.372 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.374 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.376 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.378 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.380 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.381 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.383 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.383 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.383 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.385 +03:00 [INF] Authorization failed. +2018-09-21 11:47:04.418 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 85.4298ms. +2018-09-21 11:47:04.418 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 80.2572ms. +2018-09-21 11:47:04.425 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:04.426 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:04.426 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 129.318ms +2018-09-21 11:47:04.426 +03:00 [INF] Request finished in 206.3475ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:04.426 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 128.2746ms +2018-09-21 11:47:04.426 +03:00 [INF] Request finished in 206.2018ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:12.057 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 334 +2018-09-21 11:47:12.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:12.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:12.088 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:12.093 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:12.127 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.127 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.136 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.136 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.140 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.146 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.147 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.153 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.165 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.166 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.173 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.177 +03:00 [INF] Executed action /Blog/Posts/Detail in 88.8255ms +2018-09-21 11:47:12.178 +03:00 [INF] Request finished in 120.5598ms 200 text/html; charset=utf-8 +2018-09-21 11:47:12.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:12.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:12.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:12.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:12.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:12.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:12.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:12.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:12.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:12.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:12.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:12.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:12.309 +03:00 [INF] Request finished in 81.5747ms 404 +2018-09-21 11:47:12.318 +03:00 [INF] Request finished in 80.2899ms 404 +2018-09-21 11:47:12.341 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:12.342 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:12.342 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2424ms. +2018-09-21 11:47:12.343 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:12.343 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.743ms +2018-09-21 11:47:12.343 +03:00 [INF] Request finished in 39.3421ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:12.343 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:12.344 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:12.345 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.345 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.345 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.346 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.347 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.347 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.348 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.348 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.349 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.349 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.350 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.350 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.350 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.351 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.351 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.352 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.352 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.352 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.353 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.353 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.353 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.354 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.354 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.354 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.355 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.355 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.355 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.355 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.356 +03:00 [INF] Authorization failed. +2018-09-21 11:47:12.357 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.202300000000001ms. +2018-09-21 11:47:12.358 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:12.358 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.642900000000001ms +2018-09-21 11:47:12.358 +03:00 [INF] Request finished in 64.3829ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:22.505 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 331 +2018-09-21 11:47:22.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:22.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:22.536 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:22.540 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:22.589 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.589 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.597 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.598 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.602 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.605 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.606 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.612 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.618 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.620 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.621 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.628 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.632 +03:00 [INF] Executed action /Blog/Posts/Detail in 95.1952ms +2018-09-21 11:47:22.632 +03:00 [INF] Request finished in 126.8572ms 200 text/html; charset=utf-8 +2018-09-21 11:47:22.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:22.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:22.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:22.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:22.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:22.704 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:22.755 +03:00 [INF] Request finished in 67.6439ms 404 +2018-09-21 11:47:22.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:22.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:22.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:22.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:22.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:22.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:22.777 +03:00 [INF] Request finished in 74.2998ms 404 +2018-09-21 11:47:22.797 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:22.797 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:22.798 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.798 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.799 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.799 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.800 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.801 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.801 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.802 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.802 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:22.802 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.803 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.803 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.803 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:22.803 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.803 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2306ms. +2018-09-21 11:47:22.804 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:22.804 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.804 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4952ms +2018-09-21 11:47:22.804 +03:00 [INF] Request finished in 34.6372ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:22.804 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.804 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.805 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.805 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.806 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.807 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.808 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.809 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.809 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.810 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.810 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.811 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.812 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.813 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.813 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.814 +03:00 [INF] Authorization failed. +2018-09-21 11:47:22.816 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.232ms. +2018-09-21 11:47:22.816 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:22.816 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.5899ms +2018-09-21 11:47:22.816 +03:00 [INF] Request finished in 58.8124ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:28.377 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 333 +2018-09-21 11:47:28.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:28.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:28.405 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:28.409 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:28.445 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.446 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.455 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.455 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.459 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.467 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.467 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.471 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.473 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.473 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.483 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.483 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.488 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.490 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.491 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.496 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.502 +03:00 [INF] Executed action /Blog/Posts/Detail in 96.423700000000011ms +2018-09-21 11:47:28.502 +03:00 [INF] Request finished in 124.5242ms 200 text/html; charset=utf-8 +2018-09-21 11:47:28.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:28.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:28.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:28.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:28.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:28.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:28.601 +03:00 [INF] Request finished in 50.0468ms 404 +2018-09-21 11:47:28.609 +03:00 [INF] Request finished in 45.436ms 404 +2018-09-21 11:47:28.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:28.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:28.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:28.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:28.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:28.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:28.669 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:28.670 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:28.670 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:28.670 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.670 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.671 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:28.671 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11670000000000001ms. +2018-09-21 11:47:28.671 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.671 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:28.671 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1009ms +2018-09-21 11:47:28.671 +03:00 [INF] Request finished in 39.1925ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:28.671 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.672 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.672 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.672 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.673 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.673 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.674 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.674 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.675 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.675 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.676 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.676 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.676 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.677 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.677 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.677 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.678 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.678 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.679 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.680 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.680 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.680 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.681 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.682 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.683 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.684 +03:00 [INF] Authorization failed. +2018-09-21 11:47:28.685 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 14.9947ms. +2018-09-21 11:47:28.686 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:28.686 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.2148ms +2018-09-21 11:47:28.686 +03:00 [INF] Request finished in 53.7975ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:34.945 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 335 +2018-09-21 11:47:34.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:34.945 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:34.973 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:34.977 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:35.013 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.014 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.023 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.023 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.027 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.032 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.033 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.042 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.048 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.048 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.052 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.055 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.056 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.061 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.063 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.063 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.068 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.071 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.071 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.076 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.080 +03:00 [INF] Executed action /Blog/Posts/Detail in 107.1764ms +2018-09-21 11:47:35.080 +03:00 [INF] Request finished in 135.5691ms 200 text/html; charset=utf-8 +2018-09-21 11:47:35.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:35.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:35.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:35.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:35.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:35.147 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:35.193 +03:00 [INF] Request finished in 62.3574ms 404 +2018-09-21 11:47:35.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:35.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:35.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:35.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:35.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:35.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:35.218 +03:00 [INF] Request finished in 70.8545ms 404 +2018-09-21 11:47:35.240 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:35.240 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:35.241 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:35.241 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:35.241 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.241 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1153ms. +2018-09-21 11:47:35.241 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.241 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:35.241 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3428ms +2018-09-21 11:47:35.241 +03:00 [INF] Request finished in 37.0512ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:35.241 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.242 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.242 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.243 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.243 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.244 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.244 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.245 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.245 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.246 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.246 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.247 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.248 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.248 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.249 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.249 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.250 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.250 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.251 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.251 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.251 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.252 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.253 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.253 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.254 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.255 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.256 +03:00 [INF] Authorization failed. +2018-09-21 11:47:35.258 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.8035ms. +2018-09-21 11:47:35.258 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:35.258 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.1292ms +2018-09-21 11:47:35.258 +03:00 [INF] Request finished in 58.6176ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:40.426 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 300 +2018-09-21 11:47:40.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:40.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:40.453 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:40.458 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:40.493 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.494 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.500 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.500 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.505 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.511 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.512 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.516 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.520 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.522 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.530 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.533 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.534 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.537 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.539 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.539 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.545 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.547 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.547 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.553 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.554 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.555 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.560 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.564 +03:00 [INF] Executed action /Blog/Posts/Detail in 110.29050000000001ms +2018-09-21 11:47:40.564 +03:00 [INF] Request finished in 137.6157ms 200 text/html; charset=utf-8 +2018-09-21 11:47:40.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:40.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:40.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:40.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:40.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:40.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:40.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:40.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:40.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:40.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:40.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:40.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:40.683 +03:00 [INF] Request finished in 67.6882ms 404 +2018-09-21 11:47:40.699 +03:00 [INF] Request finished in 69.1206ms 404 +2018-09-21 11:47:40.717 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:40.717 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:40.718 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.718 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.718 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.719 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.719 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.719 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.719 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:40.720 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.720 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.720 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:40.720 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.720 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11330000000000001ms. +2018-09-21 11:47:40.720 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:40.720 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.721 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2264000000000002ms +2018-09-21 11:47:40.721 +03:00 [INF] Request finished in 39.6078ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:40.721 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.721 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.722 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.722 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.722 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.723 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.723 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.724 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.724 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.725 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.725 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.726 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.727 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.728 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.730 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.731 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.731 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.732 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.732 +03:00 [INF] Authorization failed. +2018-09-21 11:47:40.734 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.5825ms. +2018-09-21 11:47:40.734 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:40.735 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.785800000000002ms +2018-09-21 11:47:40.735 +03:00 [INF] Request finished in 56.7653ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:47.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 11:47:47.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:47.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:47.293 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 11:47:47.294 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 11:47:47.301 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 11:47:47.303 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 11:47:47.303 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 11:47:47.304 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 9.1468ms. +2018-09-21 11:47:47.305 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 11:47:47.305 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 12.1125ms +2018-09-21 11:47:47.306 +03:00 [INF] Request finished in 43.2777ms 302 +2018-09-21 11:47:47.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 11:47:47.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:47.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.001 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 11:47:48.028 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:48.358 +03:00 [INF] Executed action /Account/Login in 356.3354ms +2018-09-21 11:47:48.358 +03:00 [INF] Request finished in 1034.1457ms 200 text/html; charset=utf-8 +2018-09-21 11:47:48.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 11:47:48.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:48.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.407 +03:00 [INF] Request finished in 1.7682ms 404 +2018-09-21 11:47:48.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:48.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:48.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.423 +03:00 [INF] Request finished in 1.3252ms 404 +2018-09-21 11:47:48.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:48.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:48.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.474 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:48.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:48.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:48.477 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:48.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.477 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.477 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.477 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.478 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2506ms. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.479 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4136ms +2018-09-21 11:47:48.479 +03:00 [INF] Authorization failed. +2018-09-21 11:47:48.480 +03:00 [INF] Request finished in 4.2225ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:48.481 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.7936ms. +2018-09-21 11:47:48.481 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:48.481 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7008ms +2018-09-21 11:47:48.481 +03:00 [INF] Request finished in 10.5623ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:48.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:48.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:48.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:48.517 +03:00 [INF] Request finished in 1.922ms 404 +2018-09-21 11:47:49.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 11:47:49.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:49.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:50.146 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 11:47:50.146 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:50.475 +03:00 [INF] Executed action /Index in 328.6563ms +2018-09-21 11:47:50.475 +03:00 [INF] Request finished in 606.0151ms 200 text/html; charset=utf-8 +2018-09-21 11:47:50.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:50.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:50.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:50.655 +03:00 [INF] Request finished in 3.6854ms 404 +2018-09-21 11:47:50.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:50.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:50.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:50.703 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:50.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:50.705 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:50.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:50.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.706 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.707 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1332ms. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2574ms +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Request finished in 3.9488ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.708 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.709 +03:00 [INF] Authorization failed. +2018-09-21 11:47:50.710 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.187ms. +2018-09-21 11:47:50.710 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:50.711 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.6696ms +2018-09-21 11:47:50.711 +03:00 [INF] Request finished in 10.9919ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:51.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:47:51.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.380 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:47:51.392 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:51.551 +03:00 [INF] Executed action /Blog/Posts/Index in 171.0834ms +2018-09-21 11:47:51.551 +03:00 [INF] Request finished in 501.2029ms 200 text/html; charset=utf-8 +2018-09-21 11:47:51.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.615 +03:00 [INF] Request finished in 1.2159ms 404 +2018-09-21 11:47:51.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:51.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.633 +03:00 [INF] Request finished in 2.3844ms 404 +2018-09-21 11:47:51.698 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:51.698 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.699 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.699 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:51.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:51.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.701 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:51.702 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.702 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.703 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.20470000000000002ms. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.704 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:51.704 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8156ms +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Request finished in 4.2909ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.705 +03:00 [INF] Authorization failed. +2018-09-21 11:47:51.707 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.147ms. +2018-09-21 11:47:51.708 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:51.708 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.2759ms +2018-09-21 11:47:51.708 +03:00 [INF] Request finished in 10.0977ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:51.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:51.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:51.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:51.740 +03:00 [INF] Request finished in 0.9924ms 404 +2018-09-21 11:47:58.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:47:58.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.389 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:47:58.395 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:47:58.421 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.422 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.429 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.429 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.433 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.434 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.434 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.438 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.439 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.439 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.446 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.447 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.447 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.451 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.453 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.453 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.457 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.459 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.459 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.466 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.468 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.468 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.473 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.477 +03:00 [INF] Executed action /Blog/Posts/Detail in 88.1055ms +2018-09-21 11:47:58.478 +03:00 [INF] Request finished in 89.3357ms 200 text/html; charset=utf-8 +2018-09-21 11:47:58.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 11:47:58.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.542 +03:00 [INF] Request finished in 1.7833ms 404 +2018-09-21 11:47:58.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:58.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.557 +03:00 [INF] Request finished in 3.3909ms 404 +2018-09-21 11:47:58.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 11:47:58.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.606 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:58.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 11:47:58.607 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 11:47:58.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.607 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.607 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.608 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.609 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.610 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.610 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.611 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 11:47:58.611 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.612 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.612 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 11:47:58.612 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.612 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.612 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.21450000000000002ms. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0151ms +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Request finished in 6.2502ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.613 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.614 +03:00 [INF] Authorization failed. +2018-09-21 11:47:58.618 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 10.3412ms. +2018-09-21 11:47:58.618 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 11:47:58.618 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.101600000000001ms +2018-09-21 11:47:58.618 +03:00 [INF] Request finished in 14.2149ms 200 text/plain; charset=utf-8 +2018-09-21 11:47:58.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 11:47:58.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:47:58.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:47:58.641 +03:00 [INF] Request finished in 1.5592ms 404 +2018-09-21 11:48:04.599 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 256 +2018-09-21 11:48:04.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:04.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:04.600 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:48:04.606 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:04.638 +03:00 [INF] Authorization failed. +2018-09-21 11:48:04.638 +03:00 [INF] Authorization failed. +2018-09-21 11:48:04.645 +03:00 [INF] Executed action /Blog/Posts/Detail in 44.7637ms +2018-09-21 11:48:04.670 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 134 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:48:04.702 +03:00 [INF] Request finished in 102.9585ms 500 text/html; charset=utf-8 +2018-09-21 11:48:04.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:48:04.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:04.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:04.721 +03:00 [INF] Request finished in 1.2189ms 404 +2018-09-21 11:48:06.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:48:06.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:06.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:06.759 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:48:06.763 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:06.791 +03:00 [INF] Authorization failed. +2018-09-21 11:48:06.791 +03:00 [INF] Authorization failed. +2018-09-21 11:48:06.798 +03:00 [INF] Executed action /Blog/Posts/Detail in 39.3592ms +2018-09-21 11:48:06.800 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 134 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:48:06.814 +03:00 [INF] Request finished in 56.0696ms 500 text/html; charset=utf-8 +2018-09-21 11:48:10.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:48:10.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:10.873 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:10.874 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:48:10.878 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:10.898 +03:00 [INF] Executed action /Blog/Posts/Index in 23.646ms +2018-09-21 11:48:10.898 +03:00 [INF] Request finished in 25.2014ms 200 text/html; charset=utf-8 +2018-09-21 11:48:12.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:48:12.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:12.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:12.442 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:48:12.447 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:12.474 +03:00 [INF] Authorization failed. +2018-09-21 11:48:12.474 +03:00 [INF] Authorization failed. +2018-09-21 11:48:12.480 +03:00 [INF] Executed action /Blog/Posts/Detail in 37.7843ms +2018-09-21 11:48:12.481 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 134 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:48:12.497 +03:00 [INF] Request finished in 56.19ms 500 text/html; charset=utf-8 +2018-09-21 11:48:12.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:48:12.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:12.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:12.522 +03:00 [INF] Request finished in 0.808ms 404 +2018-09-21 11:48:13.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:48:13.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:13.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:13.745 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:48:13.750 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:13.769 +03:00 [INF] Executed action /Blog/Posts/Index in 23.1092ms +2018-09-21 11:48:13.769 +03:00 [INF] Request finished in 24.2477ms 200 text/html; charset=utf-8 +2018-09-21 11:48:15.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 11:48:15.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:15.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:15.730 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 11:48:15.734 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:15.760 +03:00 [INF] Authorization failed. +2018-09-21 11:48:15.760 +03:00 [INF] Authorization failed. +2018-09-21 11:48:15.766 +03:00 [INF] Executed action /Blog/Posts/Detail in 36.0343ms +2018-09-21 11:48:15.768 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 134 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 11:48:15.784 +03:00 [INF] Request finished in 55.4527ms 500 text/html; charset=utf-8 +2018-09-21 11:48:15.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 11:48:15.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:15.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:15.816 +03:00 [INF] Request finished in 2.1179ms 404 +2018-09-21 11:48:21.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 11:48:21.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 11:48:21.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 11:48:21.571 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 11:48:21.576 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 11:48:21.597 +03:00 [INF] Executed action /Blog/Posts/Index in 25.5063ms +2018-09-21 11:48:21.597 +03:00 [INF] Request finished in 27.0591ms 200 text/html; charset=utf-8 +2018-09-21 13:47:48.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 13:47:48.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 13:47:48.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 13:47:48.543 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 13:47:48.548 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 13:47:48.605 +03:00 [INF] Authorization failed. +2018-09-21 13:47:48.605 +03:00 [INF] Authorization failed. +2018-09-21 13:47:48.614 +03:00 [INF] Executed action /Blog/Posts/Detail in 70.5672ms +2018-09-21 13:47:48.616 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 134 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 13:47:48.634 +03:00 [INF] Request finished in 94.0976ms 500 text/html; charset=utf-8 +2018-09-21 13:47:48.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 13:47:48.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 13:47:48.677 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 13:47:48.679 +03:00 [INF] Request finished in 2.3749ms 404 +2018-09-21 13:47:49.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 13:47:49.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 13:47:49.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 13:47:49.680 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 13:47:49.684 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 13:47:49.719 +03:00 [INF] Executed action /Blog/Posts/Index in 39.2655ms +2018-09-21 13:47:49.719 +03:00 [INF] Request finished in 40.6328ms 200 text/html; charset=utf-8 +2018-09-21 14:05:02.472 +03:00 [INF] Loaded modules: +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 14:05:02.493 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 14:05:02.494 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 14:05:02.495 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 14:05:04.403 +03:00 [INF] Initialized all modules. +2018-09-21 14:05:04.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:05:04.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:04.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:07.452 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:05:07.472 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:05:09.084 +03:00 [INF] Executed action /Index in 1623.7972ms +2018-09-21 14:05:09.109 +03:00 [INF] Request finished in 4508.9686ms 200 text/html; charset=utf-8 +2018-09-21 14:05:09.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:05:09.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.139 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:05:09.142 +03:00 [INF] Request finished in 12.4165ms 304 text/css +2018-09-21 14:05:09.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:05:09.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.273 +03:00 [INF] Request finished in 4.7361ms 404 +2018-09-21 14:05:09.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:05:09.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.314 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:05:09.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.320 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:05:09.321 +03:00 [INF] Request finished in 8.1439ms 200 application/javascript +2018-09-21 14:05:09.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:05:09.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.342 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:05:09.343 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:05:09.391 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:05:09.397 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:05:09.435 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.437 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.471 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.472 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.472 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.472 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.473 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.474 +03:00 [INF] Authorization failed. +2018-09-21 14:05:09.523 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 122.8379ms. +2018-09-21 14:05:09.523 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 124.626ms. +2018-09-21 14:05:09.535 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:05:09.535 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:05:09.537 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 194.73250000000002ms +2018-09-21 14:05:09.537 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 193.75140000000002ms +2018-09-21 14:05:09.537 +03:00 [INF] Request finished in 216.0171ms 200 text/plain; charset=utf-8 +2018-09-21 14:05:09.537 +03:00 [INF] Request finished in 219.6628ms 200 text/plain; charset=utf-8 +2018-09-21 14:05:09.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:05:09.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:09.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:09.561 +03:00 [INF] Request finished in 1.5394ms 404 +2018-09-21 14:05:15.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:05:15.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:15.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:15.554 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:05:15.808 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:05:16.748 +03:00 [INF] Executed action /Blog/Posts/Index in 1194.1073000000001ms +2018-09-21 14:05:16.748 +03:00 [INF] Request finished in 1722.0746ms 200 text/html; charset=utf-8 +2018-09-21 14:05:16.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 14:05:16.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:16.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:16.818 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:05:16.818 +03:00 [INF] Request finished in 2.1529ms 200 text/css +2018-09-21 14:05:16.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:05:16.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:16.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:16.842 +03:00 [INF] Request finished in 6.7176ms 404 +2018-09-21 14:05:16.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:05:16.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:16.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:16.889 +03:00 [INF] Request finished in 1.2976ms 404 +2018-09-21 14:05:16.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:05:16.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:16.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:16.996 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:05:16.998 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:05:16.999 +03:00 [INF] Authorization failed. +2018-09-21 14:05:16.999 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.000 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.001 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.002 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.002 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.002 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.002 +03:00 [INF] Authorization failed. +2018-09-21 14:05:17.004 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:05:17.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:17.004 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:17.005 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.7741000000000007ms. +2018-09-21 14:05:17.005 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:05:17.005 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:05:17.006 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.1033ms +2018-09-21 14:05:17.006 +03:00 [INF] Request finished in 12.2657ms 200 text/plain; charset=utf-8 +2018-09-21 14:05:17.010 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:05:17.011 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3106ms. +2018-09-21 14:05:17.011 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:05:17.012 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 6.357ms +2018-09-21 14:05:17.012 +03:00 [INF] Request finished in 8.326ms 200 text/plain; charset=utf-8 +2018-09-21 14:05:17.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:05:17.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:17.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:17.067 +03:00 [INF] Request finished in 3.197ms 404 +2018-09-21 14:05:18.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:05:18.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:18.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:19.163 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:05:19.175 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:05:19.400 +03:00 [INF] Authorization failed. +2018-09-21 14:05:19.400 +03:00 [INF] Authorization failed. +2018-09-21 14:05:19.408 +03:00 [INF] Executed action /Blog/Posts/Detail in 245.76770000000002ms +2018-09-21 14:05:19.445 +03:00 [ERR] An unhandled exception has occurred while executing the request. +System.NullReferenceException: Object reference not set to an instance of an object. + at AspNetCore._Pages_Blog_Posts_Detail.ExecuteAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml:line 136 + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageCoreAsync(IRazorPage page, ViewContext context) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderPageAsync(IRazorPage page, ViewContext context, Boolean invokeViewStarts) + at Microsoft.AspNetCore.Mvc.Razor.RazorView.RenderAsync(ViewContext context) + at Microsoft.AspNetCore.Mvc.ViewFeatures.ViewExecutor.ExecuteAsync(ViewContext viewContext, String contentType, Nullable`1 statusCode) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultAsync(IActionResult result) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResultFilterAsync[TFilter,TFilterAsync]() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResultExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeResultFilters() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 14:05:19.484 +03:00 [INF] Request finished in 802.401ms 500 text/html; charset=utf-8 +2018-09-21 14:05:19.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 14:05:19.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:05:19.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:05:19.516 +03:00 [INF] Request finished in 2.1142ms 404 +2018-09-21 14:06:52.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:06:52.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.371 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:06:52.380 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:06:52.429 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.430 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.436 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.436 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.436 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.437 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.438 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.438 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.440 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.440 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.440 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.441 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.442 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.442 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.443 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.443 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.443 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.445 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.445 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.445 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.447 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.447 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.447 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.459 +03:00 [INF] Executed action /Blog/Posts/Detail in 87.2902ms +2018-09-21 14:06:52.459 +03:00 [INF] Request finished in 90.8044ms 200 text/html; charset=utf-8 +2018-09-21 14:06:52.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:06:52.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:06:52.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.493 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:06:52.493 +03:00 [INF] Request finished in 1.0733ms 304 text/css +2018-09-21 14:06:52.493 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:06:52.493 +03:00 [INF] Request finished in 2.0809ms 304 text/css +2018-09-21 14:06:52.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:06:52.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:06:52.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.498 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:06:52.498 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:06:52.498 +03:00 [INF] Request finished in 2.1534ms 304 text/css +2018-09-21 14:06:52.499 +03:00 [INF] Request finished in 3.3982ms 304 text/css +2018-09-21 14:06:52.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:06:52.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.509 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:06:52.509 +03:00 [INF] Request finished in 1.2816ms 304 text/css +2018-09-21 14:06:52.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:06:52.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.511 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:06:52.512 +03:00 [INF] Request finished in 1.1977ms 304 text/css +2018-09-21 14:06:52.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:06:52.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.517 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:06:52.518 +03:00 [INF] Request finished in 3.5367ms 304 text/css +2018-09-21 14:06:52.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:06:52.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.519 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:06:52.519 +03:00 [INF] Request finished in 0.9659ms 304 text/css +2018-09-21 14:06:52.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 14:06:52.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.524 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:06:52.524 +03:00 [INF] Request finished in 1.4506ms 304 text/css +2018-09-21 14:06:52.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:06:52.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:06:52.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.540 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:06:52.540 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-21 14:06:52.540 +03:00 [INF] Request finished in 0.7488ms 304 image/png +2018-09-21 14:06:52.540 +03:00 [INF] Request finished in 0.7392ms 304 image/svg+xml +2018-09-21 14:06:52.541 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:06:52.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:06:52.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:06:52.541 +03:00 [INF] Request finished in 0.7771ms 304 application/javascript +2018-09-21 14:06:52.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.541 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:06:52.541 +03:00 [INF] Request finished in 0.6718ms 304 image/svg+xml +2018-09-21 14:06:52.542 +03:00 [INF] Request finished in 1.1097ms 404 +2018-09-21 14:06:52.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:06:52.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.548 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:06:52.548 +03:00 [INF] Request finished in 1.532ms 304 application/javascript +2018-09-21 14:06:52.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:06:52.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:06:52.556 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:06:52.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.556 +03:00 [INF] Request finished in 0.775ms 304 application/javascript +2018-09-21 14:06:52.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.556 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:06:52.556 +03:00 [INF] Request finished in 0.8498ms 304 application/javascript +2018-09-21 14:06:52.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:06:52.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.562 +03:00 [INF] Request finished in 1.5897ms 404 +2018-09-21 14:06:52.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:06:52.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.567 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:06:52.567 +03:00 [INF] Request finished in 2.6854ms 304 application/javascript +2018-09-21 14:06:52.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:06:52.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.579 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:06:52.580 +03:00 [INF] Request finished in 2.0733ms 304 application/javascript +2018-09-21 14:06:52.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:06:52.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:06:52.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.585 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:06:52.585 +03:00 [INF] Request finished in 0.8348ms 304 application/javascript +2018-09-21 14:06:52.585 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:06:52.585 +03:00 [INF] Request finished in 1.1297ms 304 application/javascript +2018-09-21 14:06:52.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:06:52.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.589 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:06:52.589 +03:00 [INF] Request finished in 1.4016ms 304 application/javascript +2018-09-21 14:06:52.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:06:52.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.602 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:06:52.603 +03:00 [INF] Request finished in 1.5897ms 304 application/javascript +2018-09-21 14:06:52.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:06:52.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.609 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:06:52.609 +03:00 [INF] Request finished in 2.2087ms 304 application/javascript +2018-09-21 14:06:52.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:06:52.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.613 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.613 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:06:52.613 +03:00 [INF] Request finished in 1.114ms 304 application/javascript +2018-09-21 14:06:52.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:06:52.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.617 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:06:52.617 +03:00 [INF] Request finished in 2.6737ms 304 application/javascript +2018-09-21 14:06:52.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:06:52.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.625 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:06:52.625 +03:00 [INF] Request finished in 1.059ms 304 application/javascript +2018-09-21 14:06:52.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:06:52.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.628 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:06:52.628 +03:00 [INF] Request finished in 1.9754ms 304 application/javascript +2018-09-21 14:06:52.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:06:52.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.632 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.633 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:06:52.633 +03:00 [INF] Request finished in 1.7779ms 304 application/javascript +2018-09-21 14:06:52.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:06:52.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.638 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:06:52.638 +03:00 [INF] Request finished in 1.7405ms 304 application/javascript +2018-09-21 14:06:52.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:06:52.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.640 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:06:52.640 +03:00 [INF] Request finished in 1.5606ms 304 application/javascript +2018-09-21 14:06:52.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:06:52.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.643 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:06:52.643 +03:00 [INF] Request finished in 1.781ms 304 application/javascript +2018-09-21 14:06:52.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:06:52.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.649 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:06:52.649 +03:00 [INF] Request finished in 2.3066ms 304 application/javascript +2018-09-21 14:06:52.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:06:52.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.653 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:06:52.653 +03:00 [INF] Request finished in 1.4632ms 304 application/javascript +2018-09-21 14:06:52.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:06:52.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:06:52.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:06:52.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.657 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:06:52.657 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:06:52.658 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:06:52.658 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:06:52.660 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:06:52.660 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.660 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.660 +03:00 [INF] Request finished in 2.5173ms 304 application/javascript +2018-09-21 14:06:52.660 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22990000000000002ms. +2018-09-21 14:06:52.660 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.660 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.660 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.661 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.1968000000000005ms +2018-09-21 14:06:52.661 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Request finished in 5.6983ms 200 text/plain; charset=utf-8 +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] Authorization failed. +2018-09-21 14:06:52.662 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:06:52.663 +03:00 [INF] Request finished in 0.6345ms 304 application/javascript +2018-09-21 14:06:52.665 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.8221000000000007ms. +2018-09-21 14:06:52.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:06:52.665 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:06:52.665 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.4439000000000011ms +2018-09-21 14:06:52.666 +03:00 [INF] Request finished in 9.7811ms 200 text/plain; charset=utf-8 +2018-09-21 14:06:52.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:06:52.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.667 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:06:52.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.667 +03:00 [INF] Request finished in 1.8071ms 304 application/javascript +2018-09-21 14:06:52.667 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:06:52.668 +03:00 [INF] Request finished in 1.9198ms 304 application/javascript +2018-09-21 14:06:52.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:06:52.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.681 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.682 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:06:52.683 +03:00 [INF] Request finished in 2.4643ms 304 image/jpeg +2018-09-21 14:06:52.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:06:52.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:06:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.684 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:06:52.684 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-09-21 14:06:52.684 +03:00 [INF] Request finished in 0.8597ms 304 image/jpeg +2018-09-21 14:06:52.684 +03:00 [INF] Request finished in 1.1602ms 304 font/woff2 +2018-09-21 14:06:52.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:06:52.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.895 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:06:52.895 +03:00 [INF] Request finished in 1.3218ms 304 image/png +2018-09-21 14:06:52.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:06:52.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:06:52.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:06:52.896 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:06:52.897 +03:00 [INF] Request finished in 1.2315ms 304 image/png +2018-09-21 14:07:22.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:07:22.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.569 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:07:22.574 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:07:22.662 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.663 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.670 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.670 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.671 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.672 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.673 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.673 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.676 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.676 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.676 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.678 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.678 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.678 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.681 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.681 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.682 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.684 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.684 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.684 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.686 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.687 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.687 +03:00 [INF] Authorization failed. +2018-09-21 14:07:22.717 +03:00 [INF] Executed action /Blog/Posts/Detail in 148.5195ms +2018-09-21 14:07:22.718 +03:00 [INF] Request finished in 586.8523ms 200 text/html; charset=utf-8 +2018-09-21 14:07:22.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:07:22.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.770 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:07:22.770 +03:00 [INF] Request finished in 0.7248ms 304 text/css +2018-09-21 14:07:22.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:07:22.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.774 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:07:22.774 +03:00 [INF] Request finished in 0.677ms 304 text/css +2018-09-21 14:07:22.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:07:22.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.776 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.777 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:07:22.777 +03:00 [INF] Request finished in 0.7318ms 304 text/css +2018-09-21 14:07:22.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:07:22.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.789 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:07:22.789 +03:00 [INF] Request finished in 2.2012ms 304 text/css +2018-09-21 14:07:22.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:07:22.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.808 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:07:22.808 +03:00 [INF] Request finished in 0.8116ms 304 text/css +2018-09-21 14:07:22.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:07:22.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.877 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.878 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:07:22.878 +03:00 [INF] Request finished in 1.5367ms 304 text/css +2018-09-21 14:07:22.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:07:22.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.892 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:07:22.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 14:07:22.892 +03:00 [INF] Request finished in 0.9636ms 304 text/css +2018-09-21 14:07:22.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.893 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:07:22.893 +03:00 [INF] Request finished in 0.7353ms 304 text/css +2018-09-21 14:07:22.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:07:22.898 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.898 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.899 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:07:22.899 +03:00 [INF] Request finished in 7.6639ms 304 text/css +2018-09-21 14:07:22.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:07:22.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:07:22.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.956 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:07:22.956 +03:00 [INF] Request finished in 0.7706ms 304 application/javascript +2018-09-21 14:07:22.956 +03:00 [INF] Request finished in 1.1155ms 404 +2018-09-21 14:07:22.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:07:22.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.963 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:07:22.963 +03:00 [INF] Request finished in 1.6405ms 304 application/javascript +2018-09-21 14:07:22.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:07:22.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.984 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:07:22.984 +03:00 [INF] Request finished in 1.6662ms 304 application/javascript +2018-09-21 14:07:22.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:22.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:22.988 +03:00 [INF] Request finished in 1.8403ms 404 +2018-09-21 14:07:22.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:07:22.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:22.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.000 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:07:23.000 +03:00 [INF] Request finished in 2.1452ms 304 application/javascript +2018-09-21 14:07:23.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:07:23.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.007 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:07:23.007 +03:00 [INF] Request finished in 0.9287ms 304 application/javascript +2018-09-21 14:07:23.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:07:23.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.008 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:07:23.008 +03:00 [INF] Request finished in 0.7546ms 304 application/javascript +2018-09-21 14:07:23.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:07:23.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.017 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:07:23.019 +03:00 [INF] Request finished in 2.6716ms 304 application/javascript +2018-09-21 14:07:23.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:07:23.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.054 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.054 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:07:23.054 +03:00 [INF] Request finished in 0.8374ms 304 image/svg+xml +2018-09-21 14:07:23.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:07:23.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.058 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-21 14:07:23.058 +03:00 [INF] Request finished in 1.3164ms 304 image/png +2018-09-21 14:07:23.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:07:23.064 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.066 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.067 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:07:23.067 +03:00 [INF] Request finished in 5.3176ms 304 image/svg+xml +2018-09-21 14:07:23.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:07:23.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.067 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.068 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:07:23.068 +03:00 [INF] Request finished in 0.9171ms 304 application/javascript +2018-09-21 14:07:23.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:07:23.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.072 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.073 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:07:23.073 +03:00 [INF] Request finished in 0.8468ms 304 application/javascript +2018-09-21 14:07:23.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:07:23.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.074 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:07:23.074 +03:00 [INF] Request finished in 0.8432ms 304 application/javascript +2018-09-21 14:07:23.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:07:23.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.076 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.076 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:07:23.077 +03:00 [INF] Request finished in 1.2578ms 304 application/javascript +2018-09-21 14:07:23.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:07:23.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.134 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.135 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:07:23.136 +03:00 [INF] Request finished in 1.8468ms 304 application/javascript +2018-09-21 14:07:23.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:07:23.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.142 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:07:23.142 +03:00 [INF] Request finished in 0.9016ms 304 application/javascript +2018-09-21 14:07:23.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:07:23.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.161 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:07:23.161 +03:00 [INF] Request finished in 3.2815ms 304 application/javascript +2018-09-21 14:07:23.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:07:23.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.166 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:07:23.166 +03:00 [INF] Request finished in 1.3618ms 304 application/javascript +2018-09-21 14:07:23.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:07:23.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.182 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:07:23.183 +03:00 [INF] Request finished in 4.328ms 304 application/javascript +2018-09-21 14:07:23.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:07:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.188 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:07:23.188 +03:00 [INF] Request finished in 0.9874ms 304 application/javascript +2018-09-21 14:07:23.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:07:23.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.200 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:07:23.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:07:23.200 +03:00 [INF] Request finished in 1.7405ms 304 application/javascript +2018-09-21 14:07:23.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.201 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:07:23.202 +03:00 [INF] Request finished in 1.7826ms 304 application/javascript +2018-09-21 14:07:23.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:07:23.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.205 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.206 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:07:23.206 +03:00 [INF] Request finished in 1.4914ms 304 application/javascript +2018-09-21 14:07:23.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:07:23.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.222 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:07:23.222 +03:00 [INF] Request finished in 1.4024ms 304 application/javascript +2018-09-21 14:07:23.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:07:23.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.236 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:07:23.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.242 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:23.243 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:07:23.243 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:23.243 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.109ms. +2018-09-21 14:07:23.244 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:23.244 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6924000000000001ms +2018-09-21 14:07:23.244 +03:00 [INF] Request finished in 5.8027ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:23.244 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:07:23.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:07:23.244 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.244 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Request finished in 0.7931ms 304 application/javascript +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.245 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.246 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.247 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.247 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.248 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.248 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.248 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.250 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.250 +03:00 [INF] Authorization failed. +2018-09-21 14:07:23.252 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.0015ms. +2018-09-21 14:07:23.252 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:23.253 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.2902ms +2018-09-21 14:07:23.253 +03:00 [INF] Request finished in 17.4227ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:23.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:07:23.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.266 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.267 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:07:23.267 +03:00 [INF] Request finished in 1.3943ms 304 application/javascript +2018-09-21 14:07:23.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:07:23.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.283 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.283 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:07:23.283 +03:00 [INF] Request finished in 0.9361ms 304 application/javascript +2018-09-21 14:07:23.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:07:23.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.290 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.290 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:07:23.291 +03:00 [INF] Request finished in 1.1433ms 304 application/javascript +2018-09-21 14:07:23.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:07:23.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.293 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:07:23.294 +03:00 [INF] Request finished in 0.8704ms 304 image/jpeg +2018-09-21 14:07:23.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:07:23.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.294 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.294 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:07:23.295 +03:00 [INF] Request finished in 0.8603ms 304 image/jpeg +2018-09-21 14:07:23.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:23.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.301 +03:00 [INF] Request finished in 5.8441ms 404 +2018-09-21 14:07:23.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:07:23.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.483 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:07:23.483 +03:00 [INF] Request finished in 1.6054ms 304 image/png +2018-09-21 14:07:23.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:07:23.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:23.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:23.485 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:07:23.486 +03:00 [INF] Request finished in 1.409ms 304 image/png +2018-09-21 14:07:41.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 14:07:41.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:41.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:41.308 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 14:07:41.342 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 14:07:41.350 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 14:07:41.351 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 14:07:41.352 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 14:07:41.352 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 10.2896ms. +2018-09-21 14:07:41.354 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 14:07:41.354 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 45.6723ms +2018-09-21 14:07:41.354 +03:00 [INF] Request finished in 54.475ms 302 +2018-09-21 14:07:41.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 14:07:41.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:41.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.224 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 14:07:42.258 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:07:42.648 +03:00 [INF] Executed action /Account/Login in 423.51070000000004ms +2018-09-21 14:07:42.648 +03:00 [INF] Request finished in 1279.7567ms 200 text/html; charset=utf-8 +2018-09-21 14:07:42.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 14:07:42.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:42.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.695 +03:00 [INF] Request finished in 1.8878ms 404 +2018-09-21 14:07:42.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:42.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:42.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.712 +03:00 [INF] Request finished in 1.1107ms 404 +2018-09-21 14:07:42.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:07:42.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:42.761 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:07:42.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:42.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.774 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:42.774 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:42.774 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:07:42.774 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0961ms. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3158ms +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Request finished in 5.759ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.775 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.776 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.777 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.777 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.777 +03:00 [INF] Authorization failed. +2018-09-21 14:07:42.778 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.7379ms. +2018-09-21 14:07:42.778 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:42.779 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.7381ms +2018-09-21 14:07:42.779 +03:00 [INF] Request finished in 18.9715ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:42.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:42.814 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:42.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:42.815 +03:00 [INF] Request finished in 1.2701ms 404 +2018-09-21 14:07:49.277 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 285 +2018-09-21 14:07:49.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:49.278 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:49.279 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 14:07:49.359 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:07:49.561 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 14:07:49.579 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 14:07:49.579 +03:00 [INF] Executed action /Account/Login in 299.90430000000003ms +2018-09-21 14:07:49.579 +03:00 [INF] Request finished in 302.1466ms 302 +2018-09-21 14:07:49.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:07:49.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:49.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:49.610 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:07:49.611 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:07:49.618 +03:00 [INF] Executed action /Index in 7.3121ms +2018-09-21 14:07:49.618 +03:00 [INF] Request finished in 32.7793ms 200 text/html; charset=utf-8 +2018-09-21 14:07:49.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:49.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:49.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:49.879 +03:00 [INF] Request finished in 57.9591ms 404 +2018-09-21 14:07:49.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:07:49.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:49.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:49.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:07:49.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:49.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:49.920 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:49.921 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:07:49.921 +03:00 [INF] Authorization failed. +2018-09-21 14:07:49.921 +03:00 [INF] Authorization failed. +2018-09-21 14:07:49.928 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:49.929 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:07:49.929 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.093ms. +2018-09-21 14:07:49.929 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:49.929 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.9765ms +2018-09-21 14:07:49.929 +03:00 [INF] Request finished in 42.4908ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:49.982 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.986 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.988 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.990 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.993 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.995 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.997 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:49.998 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.000 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.002 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.004 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.007 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.010 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.012 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.014 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.015 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.017 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.018 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.020 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.022 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.024 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.026 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.028 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.030 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.032 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.034 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.035 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:50.039 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 117.6757ms. +2018-09-21 14:07:50.047 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:50.048 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 127.5961ms +2018-09-21 14:07:50.048 +03:00 [INF] Request finished in 163.21ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:57.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:07:57.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:57.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:57.310 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:07:57.313 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:07:57.349 +03:00 [INF] Executed action /Blog/Posts/Index in 39.165ms +2018-09-21 14:07:57.349 +03:00 [INF] Request finished in 70.1566ms 200 text/html; charset=utf-8 +2018-09-21 14:07:57.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:07:57.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:57.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:57.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:07:57.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:57.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:57.479 +03:00 [INF] Request finished in 62.6823ms 404 +2018-09-21 14:07:57.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:07:57.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:57.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:57.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:07:57.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:07:57.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:07:57.517 +03:00 [INF] Request finished in 81.3633ms 404 +2018-09-21 14:07:57.548 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:57.549 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:07:57.549 +03:00 [INF] Authorization failed. +2018-09-21 14:07:57.550 +03:00 [INF] Authorization failed. +2018-09-21 14:07:57.552 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:07:57.553 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:07:57.553 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.128ms. +2018-09-21 14:07:57.554 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:57.554 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.46ms +2018-09-21 14:07:57.554 +03:00 [INF] Request finished in 45.0958ms 200 text/plain; charset=utf-8 +2018-09-21 14:07:57.565 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.566 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.568 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.568 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.577 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.577 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.578 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.579 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.580 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:07:57.583 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 34.1387ms. +2018-09-21 14:07:57.584 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:07:57.584 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 36.0127ms +2018-09-21 14:07:57.584 +03:00 [INF] Request finished in 78.853ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:00.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:08:00.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:00.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:00.904 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:08:00.907 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:00.966 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.970 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.980 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.981 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.989 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.994 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.996 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:00.999 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.008 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.009 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.016 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.023 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.024 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.028 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.032 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.034 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.041 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.046 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.048 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.055 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.059 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.060 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.067 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.082 +03:00 [INF] Executed action /Blog/Posts/Detail in 178.6628ms +2018-09-21 14:08:01.083 +03:00 [INF] Request finished in 635.72ms 200 text/html; charset=utf-8 +2018-09-21 14:08:01.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:01.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:01.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:01.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:01.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:01.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:01.198 +03:00 [INF] Request finished in 55.2205ms 404 +2018-09-21 14:08:01.221 +03:00 [INF] Request finished in 60.8407ms 404 +2018-09-21 14:08:01.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:01.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:01.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:01.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:01.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:01.233 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:01.259 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:01.259 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:01.259 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:01.259 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:01.259 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1067ms. +2018-09-21 14:08:01.259 +03:00 [INF] Authorization failed. +2018-09-21 14:08:01.259 +03:00 [INF] Authorization failed. +2018-09-21 14:08:01.259 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:01.260 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.92160000000000009ms +2018-09-21 14:08:01.260 +03:00 [INF] Request finished in 27.7716ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:01.260 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.261 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.261 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.262 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.263 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.264 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.265 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.265 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.266 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.266 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.267 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.267 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.269 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.270 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.271 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.271 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.271 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.272 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.272 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.273 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.273 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.274 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.274 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.275 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.277 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.278 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.278 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:01.280 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.6594ms. +2018-09-21 14:08:01.280 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:01.281 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.76ms +2018-09-21 14:08:01.281 +03:00 [INF] Request finished in 56.2724ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:08.386 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/Hello-World application/x-www-form-urlencoded 337 +2018-09-21 14:08:08.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:08.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:08.416 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:08:08.423 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:08.496 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.498 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.504 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.505 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.512 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.517 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.518 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.523 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.529 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.530 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.536 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.541 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.543 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.548 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.552 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.553 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.557 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.562 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.563 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.585 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.586 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.592 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.600 +03:00 [INF] Executed action /Blog/Posts/Detail in 183.776ms +2018-09-21 14:08:08.600 +03:00 [INF] Request finished in 214.6599ms 200 text/html; charset=utf-8 +2018-09-21 14:08:08.656 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:08.656 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:08.657 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:08.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:08.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:08.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:08.707 +03:00 [INF] Request finished in 50.7249ms 404 +2018-09-21 14:08:08.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:08.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:08.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:08.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:08.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:08.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:08.752 +03:00 [INF] Request finished in 78.5154ms 404 +2018-09-21 14:08:08.779 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:08.779 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:08.780 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:08.780 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:08.780 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10020000000000001ms. +2018-09-21 14:08:08.780 +03:00 [INF] Authorization failed. +2018-09-21 14:08:08.780 +03:00 [INF] Authorization failed. +2018-09-21 14:08:08.780 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:08.781 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2103000000000002ms +2018-09-21 14:08:08.781 +03:00 [INF] Request finished in 48.0572ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:08.781 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.782 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.782 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.783 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.784 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.784 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.784 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.785 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.786 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.786 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.787 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.788 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.788 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.789 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.789 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.790 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.790 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.791 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.791 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.792 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.793 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.794 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.795 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.797 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.797 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.798 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.798 +03:00 [INF] Authorization was successful. +2018-09-21 14:08:08.800 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.78ms. +2018-09-21 14:08:08.800 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:08.801 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.9937ms +2018-09-21 14:08:08.801 +03:00 [INF] Request finished in 71.6623ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:13.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 14:08:13.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:13.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:13.785 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 14:08:13.785 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 14:08:13.785 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 14:08:13.786 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 14:08:13.786 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 14:08:13.786 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 0.5381ms. +2018-09-21 14:08:13.786 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 14:08:13.786 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 1.246ms +2018-09-21 14:08:13.786 +03:00 [INF] Request finished in 26.9657ms 302 +2018-09-21 14:08:13.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 14:08:13.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:13.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:13.796 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 14:08:13.821 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:13.902 +03:00 [INF] Executed action /Account/Login in 105.3841ms +2018-09-21 14:08:13.902 +03:00 [INF] Request finished in 106.6739ms 200 text/html; charset=utf-8 +2018-09-21 14:08:13.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 14:08:13.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:13.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:13.959 +03:00 [INF] Request finished in 1.2367ms 404 +2018-09-21 14:08:13.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:13.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:13.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:13.977 +03:00 [INF] Request finished in 3.0575ms 404 +2018-09-21 14:08:14.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:14.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:14.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:14.030 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:14.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:14.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:14.032 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:14.032 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:14.033 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.033 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.033 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.033 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.033 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.034 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.035 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.20070000000000002ms. +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.036 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9958ms +2018-09-21 14:08:14.037 +03:00 [INF] Request finished in 4.4907ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:14.037 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.037 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.037 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.037 +03:00 [INF] Authorization failed. +2018-09-21 14:08:14.040 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.2888ms. +2018-09-21 14:08:14.040 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:14.040 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.7467ms +2018-09-21 14:08:14.040 +03:00 [INF] Request finished in 14.9906ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:14.088 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:14.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:14.088 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:14.089 +03:00 [INF] Request finished in 0.9819ms 404 +2018-09-21 14:08:15.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:08:15.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:15.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:15.361 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:08:15.364 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:15.389 +03:00 [INF] Executed action /Blog/Posts/Index in 28.091700000000003ms +2018-09-21 14:08:15.389 +03:00 [INF] Request finished in 29.1929ms 200 text/html; charset=utf-8 +2018-09-21 14:08:15.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:15.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:15.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:15.451 +03:00 [INF] Request finished in 3.5527ms 404 +2018-09-21 14:08:15.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:15.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:15.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:15.466 +03:00 [INF] Request finished in 2.1415ms 404 +2018-09-21 14:08:15.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:15.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:15.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:15.515 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:15.517 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.517 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.518 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.519 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.519 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.519 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [INF] Authorization failed. +2018-09-21 14:08:15.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:15.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:15.522 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.4211ms. +2018-09-21 14:08:15.523 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:15.523 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.7895ms +2018-09-21 14:08:15.523 +03:00 [INF] Request finished in 11.294ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:15.524 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:15.527 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:15.529 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.55380000000000007ms. +2018-09-21 14:08:15.529 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:15.536 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 11.289800000000001ms +2018-09-21 14:08:15.536 +03:00 [INF] Request finished in 16.7958ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:17.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:08:17.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.629 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:08:17.633 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:17.668 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.668 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.671 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.671 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.671 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.673 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.673 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.673 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.674 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.674 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.674 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.676 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.676 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.676 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.677 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.677 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.678 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.679 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.679 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.679 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.680 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.680 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.680 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.682 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.682 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.682 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.689 +03:00 [INF] Executed action /Blog/Posts/Detail in 60.1449ms +2018-09-21 14:08:17.690 +03:00 [INF] Request finished in 61.6679ms 200 text/html; charset=utf-8 +2018-09-21 14:08:17.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:17.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.743 +03:00 [INF] Request finished in 1.1425ms 404 +2018-09-21 14:08:17.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:17.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.763 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.764 +03:00 [INF] Request finished in 1.5848ms 404 +2018-09-21 14:08:17.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:17.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.805 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:17.812 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:17.812 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.812 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.813 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.814 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.815 +03:00 [INF] Authorization failed. +2018-09-21 14:08:17.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:17.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.816 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.819 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:17.820 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.6903000000000006ms. +2018-09-21 14:08:17.820 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:17.820 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.342500000000001ms +2018-09-21 14:08:17.820 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:17.820 +03:00 [INF] Request finished in 18.0664ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:17.820 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11170000000000001ms. +2018-09-21 14:08:17.821 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:17.821 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3258ms +2018-09-21 14:08:17.821 +03:00 [INF] Request finished in 5.4614ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:17.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:17.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:17.853 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:17.854 +03:00 [INF] Request finished in 1.037ms 404 +2018-09-21 14:08:27.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:08:27.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.287 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:08:27.291 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:27.314 +03:00 [INF] Executed action /Blog/Posts/Index in 26.7776ms +2018-09-21 14:08:27.314 +03:00 [INF] Request finished in 27.9804ms 200 text/html; charset=utf-8 +2018-09-21 14:08:27.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:27.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.384 +03:00 [INF] Request finished in 2.9312ms 404 +2018-09-21 14:08:27.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:27.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.404 +03:00 [INF] Request finished in 1.4185ms 404 +2018-09-21 14:08:27.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:27.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:27.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.471 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:27.472 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:27.472 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:27.472 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.472 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.472 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:27.472 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.472 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.472 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.094800000000000009ms. +2018-09-21 14:08:27.472 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0957000000000001ms +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Request finished in 3.6844ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.473 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.474 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.475 +03:00 [INF] Authorization failed. +2018-09-21 14:08:27.476 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.331ms. +2018-09-21 14:08:27.477 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:27.477 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.7741000000000007ms +2018-09-21 14:08:27.477 +03:00 [INF] Request finished in 7.7984ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:27.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:27.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:27.517 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:27.518 +03:00 [INF] Request finished in 1.1376ms 404 +2018-09-21 14:08:32.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:08:32.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:32.983 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:32.984 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:08:32.988 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:33.018 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.018 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.021 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.021 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.021 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.022 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.022 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.022 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.023 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.023 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.023 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.025 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.025 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.025 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.026 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.027 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.027 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.028 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.028 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.028 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.029 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.029 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.029 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.030 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.030 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.031 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.038 +03:00 [INF] Executed action /Blog/Posts/Detail in 53.4284ms +2018-09-21 14:08:33.038 +03:00 [INF] Request finished in 55.7495ms 200 text/html; charset=utf-8 +2018-09-21 14:08:33.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:33.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:33.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:33.096 +03:00 [INF] Request finished in 1.6427ms 404 +2018-09-21 14:08:33.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:33.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:33.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:33.116 +03:00 [INF] Request finished in 3.5369ms 404 +2018-09-21 14:08:33.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:33.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:33.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:33.171 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:33.172 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:33.172 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.173 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:33.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:33.175 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.176 +03:00 [INF] Authorization failed. +2018-09-21 14:08:33.177 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:33.178 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:33.178 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22340000000000002ms. +2018-09-21 14:08:33.178 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:33.178 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.653ms +2018-09-21 14:08:33.178 +03:00 [INF] Request finished in 3.2992ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:33.179 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.8245000000000005ms. +2018-09-21 14:08:33.179 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:33.180 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.879ms +2018-09-21 14:08:33.180 +03:00 [INF] Request finished in 10.6068ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:49.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:08:49.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:49.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:49.709 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:08:49.710 +03:00 [INF] Request finished in 8.4256ms 200 text/css +2018-09-21 14:08:49.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:08:49.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:49.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:49.727 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:08:49.727 +03:00 [INF] Request finished in 1.8726ms 200 text/css +2018-09-21 14:08:49.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:08:49.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:49.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:49.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:08:49.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:49.752 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:49.758 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:08:49.759 +03:00 [INF] Request finished in 12.5954ms 200 text/css +2018-09-21 14:08:49.760 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:08:49.760 +03:00 [INF] Request finished in 8.0905ms 200 text/css +2018-09-21 14:08:49.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:08:49.945 +03:00 [INF] Request finished in 0.9575ms 404 +2018-09-21 14:08:53.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:08:53.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.664 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:08:53.669 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:08:53.721 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.721 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.724 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.724 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.724 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.726 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.726 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.726 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.727 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.727 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.728 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.729 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.729 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.729 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.730 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.730 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.730 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.732 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.732 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.732 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.733 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.733 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.733 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.734 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.735 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.735 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.741 +03:00 [INF] Executed action /Blog/Posts/Detail in 76.3383ms +2018-09-21 14:08:53.741 +03:00 [INF] Request finished in 77.9388ms 200 text/html; charset=utf-8 +2018-09-21 14:08:53.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:08:53.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.782 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:08:53.782 +03:00 [INF] Request finished in 4.3261ms 200 text/css +2018-09-21 14:08:53.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:08:53.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.784 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:08:53.784 +03:00 [INF] Request finished in 1.6749ms 200 text/css +2018-09-21 14:08:53.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:08:53.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.797 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:08:53.797 +03:00 [INF] Request finished in 2.4455ms 200 text/css +2018-09-21 14:08:53.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:08:53.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.804 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:08:53.805 +03:00 [INF] Request finished in 6.7856ms 200 text/css +2018-09-21 14:08:53.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:08:53.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:08:53.811 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:08:53.811 +03:00 [INF] Request finished in 1.6646ms 200 text/css +2018-09-21 14:08:53.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.814 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:08:53.814 +03:00 [INF] Request finished in 3.5827ms 200 text/css +2018-09-21 14:08:53.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:08:53.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.817 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.818 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:08:53.818 +03:00 [INF] Request finished in 1.5988ms 200 text/css +2018-09-21 14:08:53.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:08:53.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 14:08:53.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.833 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.834 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:08:53.834 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:08:53.834 +03:00 [INF] Request finished in 1.2888ms 200 text/css +2018-09-21 14:08:53.834 +03:00 [INF] Request finished in 1.5024ms 200 text/css +2018-09-21 14:08:53.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:08:53.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.840 +03:00 [INF] Request finished in 1.5793ms 404 +2018-09-21 14:08:53.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:08:53.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.848 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:08:53.848 +03:00 [INF] Request finished in 2.5188ms 200 application/javascript +2018-09-21 14:08:53.873 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:08:53.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:08:53.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.881 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:08:53.882 +03:00 [INF] Request finished in 2.8933ms 200 application/javascript +2018-09-21 14:08:53.884 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:08:53.884 +03:00 [INF] Request finished in 10.5693ms 200 application/javascript +2018-09-21 14:08:53.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:08:53.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.901 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:08:53.901 +03:00 [INF] Request finished in 10.2195ms 200 application/javascript +2018-09-21 14:08:53.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:53.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.907 +03:00 [INF] Request finished in 3.2527ms 404 +2018-09-21 14:08:53.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:08:53.913 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:08:53.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:08:53.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.915 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:08:53.915 +03:00 [INF] Request finished in 1.7499ms 200 application/javascript +2018-09-21 14:08:53.916 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:08:53.917 +03:00 [INF] Request finished in 3.2055ms 200 application/javascript +2018-09-21 14:08:53.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:08:53.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.918 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.919 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:08:53.919 +03:00 [INF] Request finished in 4.7638ms 200 application/javascript +2018-09-21 14:08:53.922 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:08:53.924 +03:00 [INF] Request finished in 6.4357ms 200 application/javascript +2018-09-21 14:08:53.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:08:53.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:08:53.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.934 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.936 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:08:53.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.936 +03:00 [INF] Request finished in 1.993ms 200 application/javascript +2018-09-21 14:08:53.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:08:53.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:08:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.943 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:08:53.943 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:08:53.943 +03:00 [INF] Request finished in 1.6627ms 200 application/javascript +2018-09-21 14:08:53.943 +03:00 [INF] Request finished in 2.6296ms 200 application/javascript +2018-09-21 14:08:53.959 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:08:53.959 +03:00 [INF] Request finished in 24.8183ms 200 application/javascript +2018-09-21 14:08:53.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:08:53.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:08:53.963 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:08:53.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.963 +03:00 [INF] Request finished in 2.3156ms 200 application/javascript +2018-09-21 14:08:53.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:08:53.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.964 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.964 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:08:53.964 +03:00 [INF] Request finished in 1.3601ms 200 application/javascript +2018-09-21 14:08:53.965 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:08:53.965 +03:00 [INF] Request finished in 1.3935ms 200 application/javascript +2018-09-21 14:08:53.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:08:53.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.971 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:08:53.971 +03:00 [INF] Request finished in 2.2558ms 200 application/javascript +2018-09-21 14:08:53.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:08:53.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.976 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:08:53.976 +03:00 [INF] Request finished in 1.5226ms 200 application/javascript +2018-09-21 14:08:53.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:08:53.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.978 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:08:53.978 +03:00 [INF] Request finished in 1.3411ms 200 application/javascript +2018-09-21 14:08:53.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:08:53.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:08:53.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.990 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:08:53.990 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:08:53.990 +03:00 [INF] Request finished in 1.1342ms 200 application/javascript +2018-09-21 14:08:53.990 +03:00 [INF] Request finished in 1.3307ms 200 application/javascript +2018-09-21 14:08:53.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:08:53.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:08:53.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:53.996 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:08:53.996 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:53.996 +03:00 [INF] Request finished in 1.4975ms 200 application/javascript +2018-09-21 14:08:53.997 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.997 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.998 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.999 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.999 +03:00 [INF] Authorization failed. +2018-09-21 14:08:53.999 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:08:53.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:53.999 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.000 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.2848ms. +2018-09-21 14:08:54.000 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:54.000 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.4875ms +2018-09-21 14:08:54.000 +03:00 [INF] Request finished in 6.128ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:54.001 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:08:54.002 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:08:54.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:08:54.002 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12940000000000002ms. +2018-09-21 14:08:54.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.002 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:08:54.002 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.003 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.405ms +2018-09-21 14:08:54.003 +03:00 [INF] Request finished in 3.6951ms 200 text/plain; charset=utf-8 +2018-09-21 14:08:54.004 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:08:54.004 +03:00 [INF] Request finished in 1.8527ms 200 application/javascript +2018-09-21 14:08:54.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:08:54.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.011 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:08:54.012 +03:00 [INF] Request finished in 1.3587ms 200 application/javascript +2018-09-21 14:08:54.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:08:54.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:08:54.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.018 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:08:54.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.018 +03:00 [INF] Request finished in 1.204ms 200 application/javascript +2018-09-21 14:08:54.020 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:08:54.020 +03:00 [INF] Request finished in 2.7398ms 200 application/javascript +2018-09-21 14:08:54.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:08:54.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.027 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:08:54.027 +03:00 [INF] Request finished in 3.7212ms 200 image/svg+xml +2018-09-21 14:08:54.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:08:54.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.028 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.030 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 14:08:54.030 +03:00 [INF] Request finished in 1.97ms 200 image/png +2018-09-21 14:08:54.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:08:54.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.046 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:08:54.046 +03:00 [INF] Request finished in 1.4453ms 200 image/svg+xml +2018-09-21 14:08:54.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:08:54.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.136 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:08:54.136 +03:00 [INF] Request finished in 4.0037ms 200 font/woff2 +2018-09-21 14:08:54.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:08:54.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:08:54.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.187 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.193 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:08:54.194 +03:00 [INF] Request finished in 7.1263ms 200 image/jpeg +2018-09-21 14:08:54.197 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:08:54.197 +03:00 [INF] Request finished in 14.8553ms 200 image/jpeg +2018-09-21 14:08:54.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:08:54.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.263 +03:00 [INF] Request finished in 1.091ms 404 +2018-09-21 14:08:54.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:08:54.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:08:54.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:08:54.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:08:54.471 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:08:54.471 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 14:08:54.471 +03:00 [INF] Request finished in 1.62ms 200 image/png +2018-09-21 14:08:54.471 +03:00 [INF] Request finished in 1.9073ms 200 image/png +2018-09-21 14:08:54.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:08:54.653 +03:00 [INF] Request finished in 0.9487ms 404 +2018-09-21 14:09:46.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731120836820151 +2018-09-21 14:09:46.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:09:46.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:09:46.624 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:09:46.624 +03:00 [INF] Request finished in 2.4016ms 200 text/css +2018-09-21 14:12:04.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:12:04.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.218 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:12:04.223 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:04.275 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.275 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.278 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.278 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.278 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.280 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.280 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.280 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.281 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.281 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.281 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.283 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.283 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.283 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.285 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.285 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.285 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.286 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.286 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.287 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.288 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.288 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.288 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.289 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.290 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.290 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.297 +03:00 [INF] Executed action /Blog/Posts/Detail in 78.022100000000009ms +2018-09-21 14:12:04.297 +03:00 [INF] Request finished in 80.3134ms 200 text/html; charset=utf-8 +2018-09-21 14:12:04.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:12:04.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.341 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:12:04.341 +03:00 [INF] Request finished in 4.1592ms 200 text/css +2018-09-21 14:12:04.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:12:04.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.347 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:12:04.347 +03:00 [INF] Request finished in 2.2739ms 200 text/css +2018-09-21 14:12:04.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:12:04.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.358 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:12:04.359 +03:00 [INF] Request finished in 1.5136ms 200 text/css +2018-09-21 14:12:04.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:12:04.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.363 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:12:04.363 +03:00 [INF] Request finished in 4.1922ms 200 text/css +2018-09-21 14:12:04.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:12:04.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.373 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:12:04.373 +03:00 [INF] Request finished in 1.3203ms 200 text/css +2018-09-21 14:12:04.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:12:04.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:12:04.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.380 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:12:04.381 +03:00 [INF] Request finished in 1.6399ms 200 text/css +2018-09-21 14:12:04.381 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:12:04.381 +03:00 [INF] Request finished in 1.9909ms 200 text/css +2018-09-21 14:12:04.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:12:04.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.389 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:12:04.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:12:04.389 +03:00 [INF] Request finished in 1.9871ms 200 text/css +2018-09-21 14:12:04.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.390 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:12:04.390 +03:00 [INF] Request finished in 1.2026ms 200 text/css +2018-09-21 14:12:04.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:12:04.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.396 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:12:04.396 +03:00 [INF] Request finished in 2.8079ms 200 application/javascript +2018-09-21 14:12:04.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:12:04.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.400 +03:00 [INF] Request finished in 1.5177ms 404 +2018-09-21 14:12:04.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:12:04.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:12:04.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.416 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:12:04.416 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:12:04.416 +03:00 [INF] Request finished in 2.6202ms 200 application/javascript +2018-09-21 14:12:04.416 +03:00 [INF] Request finished in 7.791ms 200 application/javascript +2018-09-21 14:12:04.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:12:04.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:04.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.422 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:12:04.423 +03:00 [INF] Request finished in 4.6071ms 200 application/javascript +2018-09-21 14:12:04.424 +03:00 [INF] Request finished in 2.3613ms 404 +2018-09-21 14:12:04.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:12:04.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.444 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:12:04.445 +03:00 [INF] Request finished in 1.8441ms 200 application/javascript +2018-09-21 14:12:04.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:12:04.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.464 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:12:04.464 +03:00 [INF] Request finished in 4.0867ms 200 application/javascript +2018-09-21 14:12:04.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:12:04.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.469 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:12:04.469 +03:00 [INF] Request finished in 1.2182ms 200 application/javascript +2018-09-21 14:12:04.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:12:04.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:12:04.496 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:12:04.497 +03:00 [INF] Request finished in 3.5361ms 200 application/javascript +2018-09-21 14:12:04.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:12:04.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.505 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:12:04.505 +03:00 [INF] Request finished in 1.3904ms 200 application/javascript +2018-09-21 14:12:04.506 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:12:04.507 +03:00 [INF] Request finished in 10.2737ms 200 application/javascript +2018-09-21 14:12:04.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:12:04.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:12:04.523 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:12:04.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.523 +03:00 [INF] Request finished in 1.6742ms 200 application/javascript +2018-09-21 14:12:04.523 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:12:04.524 +03:00 [INF] Request finished in 1.046ms 200 application/javascript +2018-09-21 14:12:04.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:12:04.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.534 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:12:04.534 +03:00 [INF] Request finished in 2.9798ms 200 application/javascript +2018-09-21 14:12:04.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:12:04.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:12:04.535 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:12:04.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.535 +03:00 [INF] Request finished in 1.3997ms 200 application/javascript +2018-09-21 14:12:04.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:12:04.536 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:12:04.536 +03:00 [INF] Request finished in 1.9971ms 200 application/javascript +2018-09-21 14:12:04.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.538 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:12:04.538 +03:00 [INF] Request finished in 1.8711ms 200 application/javascript +2018-09-21 14:12:04.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:12:04.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.550 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:12:04.550 +03:00 [INF] Request finished in 2.2672ms 200 application/javascript +2018-09-21 14:12:04.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:12:04.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.553 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.554 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:12:04.554 +03:00 [INF] Request finished in 1.6561ms 200 application/javascript +2018-09-21 14:12:04.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:12:04.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.558 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:12:04.558 +03:00 [INF] Request finished in 2.6599ms 200 application/javascript +2018-09-21 14:12:04.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:12:04.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.564 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:12:04.564 +03:00 [INF] Request finished in 4.6512ms 200 application/javascript +2018-09-21 14:12:04.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:12:04.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.569 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:12:04.569 +03:00 [INF] Request finished in 2.6963ms 200 application/javascript +2018-09-21 14:12:04.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:12:04.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:04.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.574 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:04.574 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.575 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.576 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:12:04.576 +03:00 [INF] Request finished in 4.4575ms 200 application/javascript +2018-09-21 14:12:04.576 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.577 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.578 +03:00 [INF] Authorization failed. +2018-09-21 14:12:04.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:12:04.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.582 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:12:04.582 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.1016ms. +2018-09-21 14:12:04.582 +03:00 [INF] Request finished in 1.2547ms 200 application/javascript +2018-09-21 14:12:04.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:04.582 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.583 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.9560000000000013ms +2018-09-21 14:12:04.583 +03:00 [INF] Request finished in 10.5295ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:04.583 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:04.584 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:04.584 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1505ms. +2018-09-21 14:12:04.585 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:04.585 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2653ms +2018-09-21 14:12:04.585 +03:00 [INF] Request finished in 2.5718ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:04.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:12:04.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:12:04.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:12:04.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:12:04.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.598 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:12:04.598 +03:00 [INF] Request finished in 9.8085ms 200 application/javascript +2018-09-21 14:12:04.598 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:12:04.599 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:12:04.599 +03:00 [INF] Request finished in 1.7386ms 200 image/svg+xml +2018-09-21 14:12:04.599 +03:00 [INF] Request finished in 4.4904ms 200 application/javascript +2018-09-21 14:12:04.599 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 14:12:04.599 +03:00 [INF] Request finished in 1.7768ms 200 image/png +2018-09-21 14:12:04.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:12:04.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.608 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:12:04.608 +03:00 [INF] Request finished in 1.7611ms 200 image/svg+xml +2018-09-21 14:12:04.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:12:04.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.724 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.726 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:12:04.727 +03:00 [INF] Request finished in 3.4769ms 200 font/woff2 +2018-09-21 14:12:04.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:12:04.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.753 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:12:04.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.758 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:12:04.758 +03:00 [INF] Request finished in 4.8486ms 200 image/jpeg +2018-09-21 14:12:04.764 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:12:04.764 +03:00 [INF] Request finished in 11.0982ms 200 image/jpeg +2018-09-21 14:12:04.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:04.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:04.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:04.831 +03:00 [INF] Request finished in 2.1372ms 404 +2018-09-21 14:12:05.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:12:05.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:05.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:05.424 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 14:12:05.425 +03:00 [INF] Request finished in 1.6389ms 200 image/png +2018-09-21 14:12:05.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:12:05.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:12:05.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:12:05.469 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:12:05.470 +03:00 [INF] Request finished in 1.6144ms 200 image/png +2018-09-21 14:12:05.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:12:05.840 +03:00 [INF] Request finished in 0.955ms 404 +2018-09-21 14:12:25.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:12:25.242 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.242 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.243 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:12:25.250 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:25.316 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.316 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.320 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.320 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.320 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.322 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.322 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.322 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.323 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.324 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.324 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.325 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.325 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.325 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.326 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.327 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.327 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.328 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.328 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.328 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.330 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.330 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.330 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.332 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.332 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.332 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.340 +03:00 [INF] Executed action /Blog/Posts/Detail in 97.0479ms +2018-09-21 14:12:25.340 +03:00 [INF] Request finished in 100.2989ms 200 text/html; charset=utf-8 +2018-09-21 14:12:25.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:12:25.382 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.382 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:12:25.384 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.384 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.385 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:12:25.385 +03:00 [INF] Request finished in 1.0959ms 200 text/css +2018-09-21 14:12:25.385 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:12:25.385 +03:00 [INF] Request finished in 5.0578ms 200 text/css +2018-09-21 14:12:25.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:12:25.388 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.389 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:12:25.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:12:25.390 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.390 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.390 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.391 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.391 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:12:25.391 +03:00 [INF] Request finished in 3.9085ms 200 text/css +2018-09-21 14:12:25.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:12:25.391 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:12:25.391 +03:00 [INF] Request finished in 1.3263ms 200 text/css +2018-09-21 14:12:25.391 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.391 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.392 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:12:25.392 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:12:25.392 +03:00 [INF] Request finished in 2.0472ms 200 text/css +2018-09-21 14:12:25.392 +03:00 [INF] Request finished in 0.8762ms 200 text/css +2018-09-21 14:12:25.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:12:25.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.411 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:12:25.411 +03:00 [INF] Request finished in 1.005ms 200 text/css +2018-09-21 14:12:25.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:12:25.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:12:25.420 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.420 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.421 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:12:25.421 +03:00 [INF] Request finished in 1.12ms 200 application/javascript +2018-09-21 14:12:25.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:12:25.421 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.421 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.421 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.422 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.422 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:12:25.422 +03:00 [INF] Request finished in 1.4501ms 200 text/css +2018-09-21 14:12:25.423 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:12:25.424 +03:00 [INF] Request finished in 4.137ms 200 text/css +2018-09-21 14:12:25.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:12:25.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:12:25.432 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.432 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.433 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.434 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:12:25.435 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:12:25.435 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.435 +03:00 [INF] Request finished in 2.8983ms 200 application/javascript +2018-09-21 14:12:25.435 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:25.435 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.435 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:12:25.436 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.436 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.436 +03:00 [INF] Request finished in 1.4605ms 404 +2018-09-21 14:12:25.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:12:25.437 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:12:25.438 +03:00 [INF] Request finished in 2.4629ms 200 application/javascript +2018-09-21 14:12:25.438 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.438 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.439 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:12:25.439 +03:00 [INF] Request finished in 2.8922ms 200 application/javascript +2018-09-21 14:12:25.441 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:12:25.442 +03:00 [INF] Request finished in 7.2515ms 200 application/javascript +2018-09-21 14:12:25.442 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:12:25.442 +03:00 [INF] Request finished in 10.3177ms 200 application/javascript +2018-09-21 14:12:25.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:12:25.447 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.447 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.448 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:12:25.448 +03:00 [INF] Request finished in 1.9518ms 200 application/javascript +2018-09-21 14:12:25.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:12:25.450 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.450 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.454 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:12:25.455 +03:00 [INF] Request finished in 4.9286ms 200 application/javascript +2018-09-21 14:12:25.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:12:25.457 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.457 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.458 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:12:25.458 +03:00 [INF] Request finished in 1.1663ms 200 application/javascript +2018-09-21 14:12:25.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:12:25.460 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.461 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:12:25.461 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.462 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:12:25.462 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.462 +03:00 [INF] Request finished in 2.34ms 200 application/javascript +2018-09-21 14:12:25.474 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:12:25.475 +03:00 [INF] Request finished in 13.9738ms 200 application/javascript +2018-09-21 14:12:25.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:12:25.475 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.475 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.477 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:12:25.477 +03:00 [INF] Request finished in 1.9498ms 200 application/javascript +2018-09-21 14:12:25.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:12:25.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:12:25.489 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.489 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.490 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:12:25.490 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:12:25.490 +03:00 [INF] Request finished in 8.3163ms 200 font/woff2 +2018-09-21 14:12:25.490 +03:00 [INF] Request finished in 1.5433ms 200 application/javascript +2018-09-21 14:12:25.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:12:25.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.493 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:12:25.493 +03:00 [INF] Request finished in 2.1975ms 200 application/javascript +2018-09-21 14:12:25.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:12:25.495 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.495 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.497 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:12:25.497 +03:00 [INF] Request finished in 5.0657ms 200 application/javascript +2018-09-21 14:12:25.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:12:25.500 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.501 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.501 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:12:25.502 +03:00 [INF] Request finished in 2.9456ms 200 application/javascript +2018-09-21 14:12:25.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:12:25.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:12:25.521 +03:00 [INF] Request finished in 2.2878ms 200 application/javascript +2018-09-21 14:12:25.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:12:25.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:12:25.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:12:25.525 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.525 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.525 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.525 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.526 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:12:25.526 +03:00 [INF] Request finished in 2.2078ms 200 application/javascript +2018-09-21 14:12:25.526 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:12:25.526 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:12:25.526 +03:00 [INF] Request finished in 3.7161ms 200 application/javascript +2018-09-21 14:12:25.526 +03:00 [INF] Request finished in 2.2089ms 200 application/javascript +2018-09-21 14:12:25.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:12:25.529 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.529 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.530 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:12:25.530 +03:00 [INF] Request finished in 1.5554ms 200 application/javascript +2018-09-21 14:12:25.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:25.530 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.533 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.534 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:25.535 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.535 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.536 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.537 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.538 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.539 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.539 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.539 +03:00 [INF] Authorization failed. +2018-09-21 14:12:25.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:25.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:12:25.539 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.539 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.539 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:12:25.540 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:25.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.540 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:25.541 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.7890000000000006ms. +2018-09-21 14:12:25.541 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0694ms. +2018-09-21 14:12:25.541 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:25.541 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:25.541 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.8957ms +2018-09-21 14:12:25.541 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:12:25.542 +03:00 [INF] Request finished in 2.6521ms 200 application/javascript +2018-09-21 14:12:25.542 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:12:25.542 +03:00 [INF] Request finished in 2.2238ms 200 application/javascript +2018-09-21 14:12:25.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:12:25.542 +03:00 [INF] Request finished in 2.8227ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:25.542 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.5629ms +2018-09-21 14:12:25.543 +03:00 [INF] Request finished in 12.3655ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:25.543 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.543 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.543 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:12:25.543 +03:00 [INF] Request finished in 1.0899ms 200 application/javascript +2018-09-21 14:12:25.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:12:25.551 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.551 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.552 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:12:25.552 +03:00 [INF] Request finished in 1.6586ms 200 application/javascript +2018-09-21 14:12:25.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:12:25.556 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.556 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.557 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:12:25.557 +03:00 [INF] Request finished in 2.746ms 200 image/svg+xml +2018-09-21 14:12:25.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:12:25.564 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.564 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.565 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 14:12:25.565 +03:00 [INF] Request finished in 2.6985ms 200 image/png +2018-09-21 14:12:25.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:12:25.567 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.567 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.568 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:12:25.568 +03:00 [INF] Request finished in 2.3779ms 200 image/svg+xml +2018-09-21 14:12:25.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:12:25.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:12:25.570 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.570 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.571 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.571 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.571 +03:00 [INF] Request finished in 1.003ms 404 +2018-09-21 14:12:25.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:12:25.575 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.576 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.585 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:12:25.585 +03:00 [INF] Request finished in 14.5138ms 200 image/jpeg +2018-09-21 14:12:25.586 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:12:25.586 +03:00 [INF] Request finished in 11.5138ms 200 image/jpeg +2018-09-21 14:12:25.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:25.884 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.884 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:25.885 +03:00 [INF] Request finished in 1.4996ms 404 +2018-09-21 14:12:26.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-21 14:12:26.169 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:26.169 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:26.170 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-21 14:12:26.171 +03:00 [INF] Request finished in 2.1694ms 200 image/png +2018-09-21 14:12:26.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:12:26.178 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:26.178 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:26.178 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:12:26.178 +03:00 [INF] Request finished in 1.0306ms 200 image/png +2018-09-21 14:12:45.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-21 14:12:45.912 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:45.912 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:45.913 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-21 14:12:45.940 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-21 14:12:45.940 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-21 14:12:45.941 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-21 14:12:45.941 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-21 14:12:45.941 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 1.0718ms. +2018-09-21 14:12:45.941 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-21 14:12:45.941 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 28.2452ms +2018-09-21 14:12:45.941 +03:00 [INF] Request finished in 30.529ms 302 +2018-09-21 14:12:45.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-21 14:12:45.947 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:45.947 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:45.948 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 14:12:45.975 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:46.026 +03:00 [INF] Executed action /Account/Login in 77.9467ms +2018-09-21 14:12:46.026 +03:00 [INF] Request finished in 79.5154ms 200 text/html; charset=utf-8 +2018-09-21 14:12:46.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:46.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/assets/fork.png +2018-09-21 14:12:46.056 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:46.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.057 +03:00 [INF] Request finished in 1.1517ms 404 +2018-09-21 14:12:46.057 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.057 +03:00 [INF] Request finished in 1.1745ms 404 +2018-09-21 14:12:46.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:46.058 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.058 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.059 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:46.059 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:46.060 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:46.060 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0848ms. +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.060 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6616000000000002ms +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Request finished in 3.2512ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.061 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.062 +03:00 [INF] Authorization failed. +2018-09-21 14:12:46.063 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.2804ms. +2018-09-21 14:12:46.064 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:46.064 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 4.8018ms +2018-09-21 14:12:46.064 +03:00 [INF] Request finished in 7.9022ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:46.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:46.104 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.104 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:46.105 +03:00 [INF] Request finished in 0.9556ms 404 +2018-09-21 14:12:49.766 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-21 14:12:49.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.768 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-21 14:12:49.818 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:49.851 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-21 14:12:49.852 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-21 14:12:49.852 +03:00 [INF] Executed action /Account/Login in 84.4436ms +2018-09-21 14:12:49.853 +03:00 [INF] Request finished in 86.4245ms 302 +2018-09-21 14:12:49.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:12:49.859 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.859 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.887 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:12:49.887 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:49.894 +03:00 [INF] Executed action /Index in 6.8556ms +2018-09-21 14:12:49.894 +03:00 [INF] Request finished in 35.804ms 200 text/html; charset=utf-8 +2018-09-21 14:12:49.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:49.932 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 14:12:49.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:49.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.934 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.935 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.935 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 14:12:49.935 +03:00 [INF] Request finished in 2.7225ms 200 image/png +2018-09-21 14:12:49.936 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 14:12:49.936 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 14:12:49.936 +03:00 [INF] Request finished in 2.379ms 200 image/png +2018-09-21 14:12:49.936 +03:00 [INF] Request finished in 2.2571ms 200 image/png +2018-09-21 14:12:49.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 14:12:49.946 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.947 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 14:12:49.948 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 14:12:49.948 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.948 +03:00 [INF] Request finished in 1.9777ms 200 image/png +2018-09-21 14:12:49.948 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 14:12:49.949 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.949 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.949 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 14:12:49.950 +03:00 [INF] Request finished in 2.1068ms 200 image/png +2018-09-21 14:12:49.951 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 14:12:49.951 +03:00 [INF] Request finished in 2.5153ms 200 image/png +2018-09-21 14:12:49.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 14:12:49.958 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 14:12:49.959 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.959 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.959 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.959 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.960 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 14:12:49.960 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 14:12:49.960 +03:00 [INF] Request finished in 1.8324ms 200 image/png +2018-09-21 14:12:49.960 +03:00 [INF] Request finished in 1.86ms 200 image/png +2018-09-21 14:12:49.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 14:12:49.968 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.968 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 14:12:49.969 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.969 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 14:12:49.969 +03:00 [INF] Request finished in 2.1377ms 200 image/png +2018-09-21 14:12:49.969 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 14:12:49.971 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 14:12:49.971 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.971 +03:00 [INF] Request finished in 2.4773ms 200 image/png +2018-09-21 14:12:49.971 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.972 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 14:12:49.973 +03:00 [INF] Request finished in 2.5414ms 200 image/png +2018-09-21 14:12:49.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 14:12:49.979 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.979 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.980 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 14:12:49.981 +03:00 [INF] Request finished in 1.6041ms 200 image/png +2018-09-21 14:12:49.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 14:12:49.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 14:12:49.983 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.983 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.984 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.984 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.984 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 14:12:49.984 +03:00 [INF] Request finished in 1.6368ms 200 image/png +2018-09-21 14:12:49.985 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 14:12:49.985 +03:00 [INF] Request finished in 2.7457ms 200 image/png +2018-09-21 14:12:49.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 14:12:49.991 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.992 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.993 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 14:12:49.993 +03:00 [INF] Request finished in 2.6613ms 200 image/png +2018-09-21 14:12:49.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 14:12:49.995 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.995 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.996 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 14:12:49.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 14:12:49.996 +03:00 [INF] Request finished in 2.0943ms 200 image/png +2018-09-21 14:12:49.997 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:49.997 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 14:12:50.008 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.008 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.009 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 14:12:50.009 +03:00 [INF] Request finished in 1.8013ms 200 image/png +2018-09-21 14:12:50.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 14:12:50.011 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.012 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.012 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 14:12:50.012 +03:00 [INF] Request finished in 16.0588ms 200 image/png +2018-09-21 14:12:50.013 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 14:12:50.013 +03:00 [INF] Request finished in 2.5987ms 200 image/png +2018-09-21 14:12:50.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 14:12:50.022 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.022 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.024 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 14:12:50.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 14:12:50.024 +03:00 [INF] Request finished in 2.7434ms 200 image/png +2018-09-21 14:12:50.025 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.025 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.026 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 14:12:50.026 +03:00 [INF] Request finished in 2.4671ms 200 image/png +2018-09-21 14:12:50.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 14:12:50.035 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.035 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 14:12:50.036 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.036 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.037 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 14:12:50.037 +03:00 [INF] Request finished in 2.5511ms 200 image/png +2018-09-21 14:12:50.037 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 14:12:50.037 +03:00 [INF] Request finished in 1.9719ms 200 image/png +2018-09-21 14:12:50.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 14:12:50.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 14:12:50.048 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.048 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.048 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 14:12:50.049 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.049 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.049 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.050 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 14:12:50.050 +03:00 [INF] Request finished in 1.7757ms 200 image/png +2018-09-21 14:12:50.050 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 14:12:50.050 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 14:12:50.050 +03:00 [INF] Request finished in 1.7155ms 200 image/png +2018-09-21 14:12:50.050 +03:00 [INF] Request finished in 2.055ms 200 image/png +2018-09-21 14:12:50.056 +03:00 [INF] Request finished in 124.436ms 404 +2018-09-21 14:12:50.056 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:50.058 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:50.058 +03:00 [INF] Authorization failed. +2018-09-21 14:12:50.058 +03:00 [INF] Authorization failed. +2018-09-21 14:12:50.059 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.060 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.060 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.061 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 14:12:50.061 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.061 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.061 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.062 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.062 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.063 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 14:12:50.063 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.063 +03:00 [INF] Request finished in 2.2628ms 200 image/png +2018-09-21 14:12:50.063 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.064 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.065 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.065 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.066 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.066 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:50.066 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.067 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:50.067 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0984ms. +2018-09-21 14:12:50.067 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.067 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:50.067 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1424ms +2018-09-21 14:12:50.067 +03:00 [INF] Request finished in 132.8864ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:50.067 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 14:12:50.068 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.068 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.068 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.068 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.069 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.069 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.069 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 14:12:50.069 +03:00 [INF] Request finished in 1.7764ms 200 image/png +2018-09-21 14:12:50.070 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.070 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.071 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 14:12:50.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 14:12:50.072 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.072 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.073 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.073 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.073 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.074 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.075 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.075 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 14:12:50.075 +03:00 [INF] Request finished in 3.6196ms 200 image/png +2018-09-21 14:12:50.075 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 14:12:50.076 +03:00 [INF] Request finished in 3.9439ms 200 image/png +2018-09-21 14:12:50.076 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:50.077 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.1578ms. +2018-09-21 14:12:50.077 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:50.077 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.3045ms +2018-09-21 14:12:50.078 +03:00 [INF] Request finished in 143.9296ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:50.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 14:12:50.082 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:12:50.082 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.082 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.083 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.086 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 14:12:50.086 +03:00 [INF] Request finished in 4.5381ms 200 image/png +2018-09-21 14:12:50.092 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 14:12:50.092 +03:00 [INF] Request finished in 10.4587ms 200 image/png +2018-09-21 14:12:50.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 14:12:50.093 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.093 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.095 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 14:12:50.095 +03:00 [INF] Request finished in 2.4993ms 200 image/png +2018-09-21 14:12:50.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 14:12:50.097 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.097 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.099 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 14:12:50.099 +03:00 [INF] Request finished in 2.5762ms 200 image/png +2018-09-21 14:12:50.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 14:12:50.104 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.104 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:50.106 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 14:12:50.106 +03:00 [INF] Request finished in 4.6309ms 200 image/png +2018-09-21 14:12:51.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:12:51.416 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.416 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.444 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:12:51.447 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:51.472 +03:00 [INF] Executed action /Blog/Posts/Index in 28.137400000000003ms +2018-09-21 14:12:51.472 +03:00 [INF] Request finished in 56.3346ms 200 text/html; charset=utf-8 +2018-09-21 14:12:51.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.503 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.504 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:12:51.504 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:12:51.504 +03:00 [INF] Request finished in 1.7367ms 200 text/css +2018-09-21 14:12:51.504 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:12:51.504 +03:00 [INF] Request finished in 1.1559ms 200 text/css +2018-09-21 14:12:51.504 +03:00 [INF] Request finished in 1.7764ms 200 text/css +2018-09-21 14:12:51.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:12:51.509 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.509 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.510 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:12:51.510 +03:00 [INF] Request finished in 3.2148ms 304 text/css +2018-09-21 14:12:51.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:51.517 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.517 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:51.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:51.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.519 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.520 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 14:12:51.520 +03:00 [INF] Request finished in 1.5047ms 200 application/javascript +2018-09-21 14:12:51.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:12:51.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:51.554 +03:00 [INF] Request finished in 37.6523ms 404 +2018-09-21 14:12:51.556 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:51.557 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:51.557 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13140000000000002ms. +2018-09-21 14:12:51.558 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:51.558 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7469000000000001ms +2018-09-21 14:12:51.559 +03:00 [INF] Request finished in 40.0539ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:51.560 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:51.560 +03:00 [INF] Request finished in 37.2773ms 404 +2018-09-21 14:12:51.561 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:51.561 +03:00 [INF] Authorization failed. +2018-09-21 14:12:51.561 +03:00 [INF] Authorization failed. +2018-09-21 14:12:51.561 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.563 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.563 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.564 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.564 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.565 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.566 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.566 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.568 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.568 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:51.577 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.6553ms. +2018-09-21 14:12:51.577 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:51.578 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 17.9266ms +2018-09-21 14:12:51.578 +03:00 [INF] Request finished in 59.2221ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:53.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:12:53.333 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.333 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.365 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:12:53.369 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:53.400 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.402 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.408 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.410 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.415 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.419 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.421 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.431 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.435 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.436 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.441 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.446 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.447 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.452 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.457 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.459 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.465 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.469 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.471 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.477 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.482 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.483 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.488 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.492 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.495 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.500 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.507 +03:00 [INF] Executed action /Blog/Posts/Detail in 141.8109ms +2018-09-21 14:12:53.507 +03:00 [INF] Request finished in 174.599ms 200 text/html; charset=utf-8 +2018-09-21 14:12:53.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:53.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:53.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.542 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:53.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:12:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:53.570 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:53.571 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:53.571 +03:00 [INF] Authorization failed. +2018-09-21 14:12:53.571 +03:00 [INF] Authorization failed. +2018-09-21 14:12:53.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.572 +03:00 [INF] Request finished in 27.9607ms 404 +2018-09-21 14:12:53.572 +03:00 [INF] Request finished in 30.9536ms 404 +2018-09-21 14:12:53.572 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:53.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.573 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:53.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.573 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.095ms. +2018-09-21 14:12:53.573 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:53.573 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0675000000000001ms +2018-09-21 14:12:53.574 +03:00 [INF] Request finished in 29.7179ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:53.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.575 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.577 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.578 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.578 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.579 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.579 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.580 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.580 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.583 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.583 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.583 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.584 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.584 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.585 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.585 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.585 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:53.586 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 15.1224ms. +2018-09-21 14:12:53.587 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:53.587 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.102600000000002ms +2018-09-21 14:12:53.587 +03:00 [INF] Request finished in 45.6199ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:55.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/edit/9e465e40-51c5-e719-2ad8-39e8db243f99 +2018-09-21 14:12:55.828 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:55.829 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.301 +03:00 [INF] Route matched with {page = "/Blog/Posts/Edit", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Edit +2018-09-21 14:12:56.304 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:12:56.306 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.442 +03:00 [INF] Executed action /Blog/Posts/Edit in 140.6741ms +2018-09-21 14:12:56.442 +03:00 [INF] Request finished in 614.3007ms 200 text/html; charset=utf-8 +2018-09-21 14:12:56.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636718386696187115 +2018-09-21 14:12:56.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636718386703457117 +2018-09-21 14:12:56.465 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.465 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.466 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.466 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.467 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-21 14:12:56.468 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-21 14:12:56.468 +03:00 [INF] Request finished in 2.7666ms 200 text/css +2018-09-21 14:12:56.468 +03:00 [INF] Request finished in 3.4596ms 200 text/css +2018-09-21 14:12:56.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636718386697187112 +2018-09-21 14:12:56.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636718386699947106 +2018-09-21 14:12:56.470 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.470 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.470 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.470 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.471 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-21 14:12:56.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636676677213700151 +2018-09-21 14:12:56.471 +03:00 [INF] Request finished in 1.4731ms 200 text/css +2018-09-21 14:12:56.471 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-21 14:12:56.472 +03:00 [INF] Request finished in 2.0077ms 200 text/css +2018-09-21 14:12:56.472 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.472 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.473 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\new.css' +2018-09-21 14:12:56.473 +03:00 [INF] Request finished in 1.927ms 200 text/css +2018-09-21 14:12:56.479 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:12:56.481 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.481 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:12:56.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:12:56.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.484 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636718386696187115 +2018-09-21 14:12:56.485 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.485 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.486 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-21 14:12:56.486 +03:00 [INF] Request finished in 3.0931ms 200 application/javascript +2018-09-21 14:12:56.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636718386696527110 +2018-09-21 14:12:56.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636718386696187115 +2018-09-21 14:12:56.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.488 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.492 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-21 14:12:56.492 +03:00 [INF] Request finished in 4.2493ms 200 application/javascript +2018-09-21 14:12:56.499 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-21 14:12:56.499 +03:00 [INF] Request finished in 11.3104ms 200 application/javascript +2018-09-21 14:12:56.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636718386696187115 +2018-09-21 14:12:56.504 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.504 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.506 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-21 14:12:56.508 +03:00 [INF] Request finished in 2.7959ms 200 application/javascript +2018-09-21 14:12:56.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636718386696187115 +2018-09-21 14:12:56.515 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.515 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.516 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-21 14:12:56.516 +03:00 [INF] Request finished in 1.712ms 200 application/javascript +2018-09-21 14:12:56.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636718386696187115 +2018-09-21 14:12:56.517 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.517 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.518 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-21 14:12:56.518 +03:00 [INF] Request finished in 1.4998ms 200 application/javascript +2018-09-21 14:12:56.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636718386697907119 +2018-09-21 14:12:56.529 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.529 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/edit.js?_v=636722685013635882 +2018-09-21 14:12:56.533 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.533 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.534 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/edit.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\edit.js' +2018-09-21 14:12:56.534 +03:00 [INF] Request finished in 3.0703ms 200 application/javascript +2018-09-21 14:12:56.538 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-21 14:12:56.539 +03:00 [INF] Request finished in 10.5111ms 200 application/javascript +2018-09-21 14:12:56.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/edit/assets/fork.png +2018-09-21 14:12:56.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.564 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:56.565 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:12:56.565 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:12:56.565 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0877ms. +2018-09-21 14:12:56.566 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:56.566 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:12:56.566 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0691000000000002ms +2018-09-21 14:12:56.566 +03:00 [INF] Request finished in 83.7246ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:56.566 +03:00 [INF] Authorization failed. +2018-09-21 14:12:56.566 +03:00 [INF] Authorization failed. +2018-09-21 14:12:56.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.568 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.569 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.570 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.571 +03:00 [INF] Request finished in 92.1324ms 404 +2018-09-21 14:12:56.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.573 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.574 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.576 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.577 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.577 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.578 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.580 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.581 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.582 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.583 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.583 +03:00 [INF] Authorization was successful. +2018-09-21 14:12:56.584 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.6813ms. +2018-09-21 14:12:56.585 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:12:56.585 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 19.7486ms +2018-09-21 14:12:56.585 +03:00 [INF] Request finished in 102.189ms 200 text/plain; charset=utf-8 +2018-09-21 14:12:56.595 +03:00 [INF] Request finished in 55.3877ms 404 +2018-09-21 14:12:56.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-21 14:12:56.778 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.778 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:12:56.779 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-21 14:12:56.779 +03:00 [INF] Request finished in 1.6663ms 200 image/png +2018-09-21 14:13:01.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:13:01.429 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.429 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.455 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:13:01.459 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:13:01.487 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.488 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.494 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.495 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.500 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.504 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.505 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.510 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.514 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.515 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.522 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.527 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.528 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.534 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.538 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.540 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.545 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.550 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.551 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.556 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.560 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.562 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.567 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.571 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.572 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.578 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.584 +03:00 [INF] Executed action /Blog/Posts/Detail in 129.1694ms +2018-09-21 14:13:01.585 +03:00 [INF] Request finished in 156.7016ms 200 text/html; charset=utf-8 +2018-09-21 14:13:01.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:13:01.613 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.613 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.613 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:13:01.614 +03:00 [INF] Request finished in 2.361ms 304 text/css +2018-09-21 14:13:01.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:13:01.622 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.622 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:13:01.622 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.622 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:13:01.625 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.625 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:13:01.627 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.627 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:01.653 +03:00 [INF] Request finished in 31.5679ms 404 +2018-09-21 14:13:01.653 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:13:01.653 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:13:01.654 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:13:01.654 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:13:01.654 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0937ms. +2018-09-21 14:13:01.654 +03:00 [INF] Authorization failed. +2018-09-21 14:13:01.654 +03:00 [INF] Authorization failed. +2018-09-21 14:13:01.654 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:13:01.654 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1228ms +2018-09-21 14:13:01.654 +03:00 [INF] Request finished in 29.9402ms 200 text/plain; charset=utf-8 +2018-09-21 14:13:01.655 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.655 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.656 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.656 +03:00 [INF] Request finished in 29.7841ms 404 +2018-09-21 14:13:01.657 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.657 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.658 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.659 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.659 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.660 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.661 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.661 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.661 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.662 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.663 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.663 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.663 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.664 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.665 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.666 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.666 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.667 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.667 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.668 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.669 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.670 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.671 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.671 +03:00 [INF] Authorization was successful. +2018-09-21 14:13:01.673 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.1231ms. +2018-09-21 14:13:01.673 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:13:01.673 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.3057ms +2018-09-21 14:13:01.673 +03:00 [INF] Request finished in 51.3628ms 200 text/plain; charset=utf-8 +2018-09-21 14:13:04.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-21 14:13:04.384 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.384 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-21 14:13:04.387 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.387 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-21 14:13:04.389 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.389 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.390 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-21 14:13:04.390 +03:00 [INF] Request finished in 1.4572ms 200 text/plain +2018-09-21 14:13:04.413 +03:00 [INF] Request finished in 26.5116ms 404 +2018-09-21 14:13:04.413 +03:00 [INF] Request finished in 29.5338ms 404 +2018-09-21 14:13:04.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:13:04.417 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.417 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:04.448 +03:00 [INF] Request finished in 31.4286ms 404 +2018-09-21 14:13:28.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-21 14:13:28.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-21 14:13:28.505 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.505 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.505 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.505 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-21 14:13:28.508 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.508 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.508 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-21 14:13:28.508 +03:00 [INF] Request finished in 1.2549ms 200 text/plain +2018-09-21 14:13:28.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:13:28.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.523 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:13:28.539 +03:00 [INF] Request finished in 33.8878ms 404 +2018-09-21 14:13:28.539 +03:00 [INF] Request finished in 34.15ms 404 +2018-09-21 14:13:28.549 +03:00 [INF] Request finished in 26.2987ms 404 +2018-09-21 14:15:10.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 14:15:10.821 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:10.822 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.154 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 14:15:11.182 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:11.215 +03:00 [INF] Executed action /Templates in 60.625600000000006ms +2018-09-21 14:15:11.215 +03:00 [INF] Request finished in 393.9447ms 200 text/html; charset=utf-8 +2018-09-21 14:15:11.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:15:11.253 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.253 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:15:11.283 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:15:11.283 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.284 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.284 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.289 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/templates.js?_v=636676051747902613 +2018-09-21 14:15:11.289 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.289 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.290 +03:00 [INF] Sending file. Request path: '/Pages/templates.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\Pages\templates.js' +2018-09-21 14:15:11.290 +03:00 [INF] Request finished in 1.1723ms 200 application/javascript +2018-09-21 14:15:11.292 +03:00 [INF] Request finished in 39.2834ms 404 +2018-09-21 14:15:11.314 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:11.314 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:11.314 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:15:11.315 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:15:11.315 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1159ms. +2018-09-21 14:15:11.315 +03:00 [INF] Authorization failed. +2018-09-21 14:15:11.315 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:11.315 +03:00 [INF] Authorization failed. +2018-09-21 14:15:11.315 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1112ms +2018-09-21 14:15:11.315 +03:00 [INF] Request finished in 31.9025ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:11.316 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.316 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.317 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.318 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.319 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.319 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.320 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.321 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.322 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.323 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.324 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.325 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.327 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.327 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.328 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.329 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.331 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.331 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.332 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.333 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.333 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.334 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.334 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.334 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.335 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.336 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.336 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:11.338 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 23.3093ms. +2018-09-21 14:15:11.338 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:11.338 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 24.4284ms +2018-09-21 14:15:11.339 +03:00 [INF] Request finished in 55.6017ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:11.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:15:11.350 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.350 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:11.378 +03:00 [INF] Request finished in 28.8137ms 404 +2018-09-21 14:15:17.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:15:17.819 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.819 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.848 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:15:17.851 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:17.885 +03:00 [INF] Executed action /Blog/Posts/Index in 36.5788ms +2018-09-21 14:15:17.885 +03:00 [INF] Request finished in 66.6613ms 200 text/html; charset=utf-8 +2018-09-21 14:15:17.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:15:17.920 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.921 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.922 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:15:17.922 +03:00 [INF] Request finished in 2.4433ms 304 text/css +2018-09-21 14:15:17.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:15:17.927 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.927 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:15:17.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:15:17.928 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.928 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.929 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.929 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:15:17.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.933 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:17.958 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:17.958 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:15:17.958 +03:00 [INF] Authorization failed. +2018-09-21 14:15:17.959 +03:00 [INF] Authorization failed. +2018-09-21 14:15:17.959 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.960 +03:00 [INF] Request finished in 32.9954ms 404 +2018-09-21 14:15:17.960 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.960 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.961 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.961 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.962 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.962 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:17.962 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.963 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.963 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:15:17.963 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0922ms. +2018-09-21 14:15:17.963 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:17.963 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.963 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0547ms +2018-09-21 14:15:17.964 +03:00 [INF] Request finished in 35.6107ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:17.964 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.965 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.965 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.966 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.966 +03:00 [INF] Request finished in 33.497ms 404 +2018-09-21 14:15:17.966 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.967 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.967 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.968 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.968 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.969 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.969 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.969 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.970 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.970 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.971 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.972 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.972 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.973 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:17.974 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 15.762ms. +2018-09-21 14:15:17.974 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:17.975 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.8778ms +2018-09-21 14:15:17.975 +03:00 [INF] Request finished in 46.6773ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:26.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-21 14:15:26.975 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:26.976 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:27.005 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-21 14:15:27.006 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:27.011 +03:00 [INF] Executed action /Templates in 5.9186000000000005ms +2018-09-21 14:15:27.011 +03:00 [INF] Request finished in 36.1184ms 200 text/html; charset=utf-8 +2018-09-21 14:15:28.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:15:28.727 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:28.727 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:28.754 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:15:28.756 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:28.792 +03:00 [INF] Executed action /Blog/Posts/Index in 38.0495ms +2018-09-21 14:15:28.792 +03:00 [INF] Request finished in 65.7142ms 200 text/html; charset=utf-8 +2018-09-21 14:15:29.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:15:29.991 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:29.991 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.019 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:15:30.022 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:30.060 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.061 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.069 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.070 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.076 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.080 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.082 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.088 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.095 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.096 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.101 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.107 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.108 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.114 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.118 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.120 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.123 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.129 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.130 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.136 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.140 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.142 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.148 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.153 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.154 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.159 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.165 +03:00 [INF] Executed action /Blog/Posts/Detail in 145.7195ms +2018-09-21 14:15:30.165 +03:00 [INF] Request finished in 174.1069ms 200 text/html; charset=utf-8 +2018-09-21 14:15:30.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:15:30.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:15:30.197 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.198 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:30.230 +03:00 [INF] Request finished in 32.4412ms 404 +2018-09-21 14:15:30.230 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:30.230 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:15:30.230 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:15:30.230 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:15:30.230 +03:00 [INF] Authorization failed. +2018-09-21 14:15:30.231 +03:00 [INF] Authorization failed. +2018-09-21 14:15:30.231 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0944ms. +2018-09-21 14:15:30.231 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:30.231 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0687ms +2018-09-21 14:15:30.231 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.231 +03:00 [INF] Request finished in 33.7213ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:30.232 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.232 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.233 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.234 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.234 +03:00 [INF] Request finished in 36.8238ms 404 +2018-09-21 14:15:30.235 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.235 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.236 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.236 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.237 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.237 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.238 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.238 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.239 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.239 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.239 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.239 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.240 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.240 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.241 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.241 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.242 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.242 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.242 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.242 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.243 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.243 +03:00 [INF] Authorization was successful. +2018-09-21 14:15:30.244 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.548ms. +2018-09-21 14:15:30.244 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:15:30.244 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.6889ms +2018-09-21 14:15:30.245 +03:00 [INF] Request finished in 47.4058ms 200 text/plain; charset=utf-8 +2018-09-21 14:15:34.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:15:34.129 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:34.129 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:15:34.157 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:15:34.160 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:15:34.181 +03:00 [INF] Executed action /Blog/Posts/Index in 23.838ms +2018-09-21 14:15:34.181 +03:00 [INF] Request finished in 52.0391ms 200 text/html; charset=utf-8 +2018-09-21 14:17:30.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:17:30.235 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.235 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.268 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:17:30.272 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:17:30.316 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.317 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.325 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.326 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.330 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.334 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.335 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.341 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.346 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.347 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.352 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.357 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.358 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.363 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.368 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.369 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.373 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.379 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.380 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.385 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.390 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.391 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.396 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.400 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.401 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.409 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.416 +03:00 [INF] Executed action /Blog/Posts/Detail in 147.46800000000002ms +2018-09-21 14:17:30.416 +03:00 [INF] Request finished in 181.8364ms 200 text/html; charset=utf-8 +2018-09-21 14:17:30.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:17:30.441 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.441 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.441 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:17:30.441 +03:00 [INF] Request finished in 1.1999ms 304 text/css +2018-09-21 14:17:30.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:17:30.451 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.451 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:17:30.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:17:30.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:17:30.455 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.455 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:30.480 +03:00 [INF] Request finished in 30.0575ms 404 +2018-09-21 14:17:30.480 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:17:30.480 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:17:30.481 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:17:30.481 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:17:30.482 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1107ms. +2018-09-21 14:17:30.482 +03:00 [INF] Authorization failed. +2018-09-21 14:17:30.482 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:17:30.482 +03:00 [INF] Authorization failed. +2018-09-21 14:17:30.482 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4045ms +2018-09-21 14:17:30.482 +03:00 [INF] Request finished in 30.7406ms 200 text/plain; charset=utf-8 +2018-09-21 14:17:30.483 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.484 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.484 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.485 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.485 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.486 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.487 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.488 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.488 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.489 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.489 +03:00 [INF] Request finished in 34.2758ms 404 +2018-09-21 14:17:30.489 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.490 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.490 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.491 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.491 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.492 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.492 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.493 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.493 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.494 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.494 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.494 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.495 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.495 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.496 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.496 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.497 +03:00 [INF] Authorization was successful. +2018-09-21 14:17:30.498 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.7525ms. +2018-09-21 14:17:30.499 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:17:30.499 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.0232ms +2018-09-21 14:17:30.499 +03:00 [INF] Request finished in 47.2642ms 200 text/plain; charset=utf-8 +2018-09-21 14:17:35.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:17:35.678 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:35.679 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:17:35.721 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:17:35.725 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:17:35.771 +03:00 [INF] Executed action /Blog/Posts/Index in 49.7937ms +2018-09-21 14:17:35.772 +03:00 [INF] Request finished in 93.6128ms 200 text/html; charset=utf-8 +2018-09-21 14:18:04.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:18:04.249 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.249 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.279 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:18:04.280 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:18:04.287 +03:00 [INF] Executed action /Index in 7.1502000000000008ms +2018-09-21 14:18:04.287 +03:00 [INF] Request finished in 38.5019ms 200 text/html; charset=utf-8 +2018-09-21 14:18:04.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:18:04.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:18:04.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:04.363 +03:00 [INF] Request finished in 35.2586ms 404 +2018-09-21 14:18:04.363 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:04.363 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:04.364 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:18:04.364 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:18:04.364 +03:00 [INF] Authorization failed. +2018-09-21 14:18:04.364 +03:00 [INF] Authorization failed. +2018-09-21 14:18:04.364 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11960000000000001ms. +2018-09-21 14:18:04.365 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:04.365 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3147ms +2018-09-21 14:18:04.365 +03:00 [INF] Request finished in 36.8883ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:04.365 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.366 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.366 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.367 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.367 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.368 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.369 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.369 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.370 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.371 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.371 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.372 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.373 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.373 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.373 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.374 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.374 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.375 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.375 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.376 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.377 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.377 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.378 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.378 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.379 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.379 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.380 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:04.381 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.1228ms. +2018-09-21 14:18:04.382 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:04.382 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.2498ms +2018-09-21 14:18:04.382 +03:00 [INF] Request finished in 53.8506ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:07.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:18:07.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.796 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:18:07.799 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:18:07.845 +03:00 [INF] Executed action /Blog/Posts/Index in 48.4442ms +2018-09-21 14:18:07.845 +03:00 [INF] Request finished in 79.2139ms 200 text/html; charset=utf-8 +2018-09-21 14:18:07.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:18:07.876 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.876 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.877 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:18:07.877 +03:00 [INF] Request finished in 2.442ms 304 text/css +2018-09-21 14:18:07.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:18:07.885 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:18:07.885 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.886 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:18:07.886 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.886 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.886 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.886 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:18:07.892 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.892 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:07.915 +03:00 [INF] Request finished in 31.4946ms 404 +2018-09-21 14:18:07.915 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:07.916 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:18:07.917 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0891ms. +2018-09-21 14:18:07.917 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:07.917 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6109ms +2018-09-21 14:18:07.917 +03:00 [INF] Request finished in 31.9055ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:07.921 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:07.922 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:18:07.922 +03:00 [INF] Authorization failed. +2018-09-21 14:18:07.922 +03:00 [INF] Authorization failed. +2018-09-21 14:18:07.922 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.923 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.923 +03:00 [INF] Request finished in 30.9125ms 404 +2018-09-21 14:18:07.923 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.925 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.925 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.926 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.927 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.927 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.928 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.929 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.929 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.930 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.930 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.931 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.931 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.932 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.933 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.933 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.934 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.934 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.935 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.935 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.936 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.936 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.937 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.937 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.938 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:07.939 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 17.4804ms. +2018-09-21 14:18:07.939 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:07.940 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.800800000000002ms +2018-09-21 14:18:07.940 +03:00 [INF] Request finished in 53.9346ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:21.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-21 14:18:21.330 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.330 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-21 14:18:21.330 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.330 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.333 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-21 14:18:21.334 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.334 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.334 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-21 14:18:21.334 +03:00 [INF] Request finished in 1.2125ms 200 text/plain +2018-09-21 14:18:21.356 +03:00 [INF] Request finished in 26.6201ms 404 +2018-09-21 14:18:21.357 +03:00 [INF] Request finished in 26.8444ms 404 +2018-09-21 14:18:21.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:18:21.364 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.364 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:21.391 +03:00 [INF] Request finished in 27.2496ms 404 +2018-09-21 14:18:45.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/assets/fork.png +2018-09-21 14:18:45.157 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:45.157 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:45.200 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:18:45.206 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:18:45.217 +03:00 [INF] Executed action /Blog/Posts/Detail in 17.2105ms +2018-09-21 14:18:45.242 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: assets + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 50 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 66 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 49 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-21 14:18:45.268 +03:00 [INF] Request finished in 113.2908ms 500 text/html; charset=utf-8 +2018-09-21 14:18:53.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:18:53.282 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.282 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.313 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:18:53.313 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:18:53.320 +03:00 [INF] Executed action /Index in 7.4607ms +2018-09-21 14:18:53.320 +03:00 [INF] Request finished in 38.5537ms 200 text/html; charset=utf-8 +2018-09-21 14:18:53.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:18:53.349 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.349 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:18:53.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:18:53.352 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.352 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.353 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.353 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.353 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:18:53.354 +03:00 [INF] Request finished in 1.5731ms 200 text/css +2018-09-21 14:18:53.354 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:18:53.354 +03:00 [INF] Request finished in 2.383ms 200 text/css +2018-09-21 14:18:53.355 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:18:53.355 +03:00 [INF] Request finished in 9.1883ms 200 text/css +2018-09-21 14:18:53.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:18:53.357 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:18:53.358 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.358 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.358 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.359 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:18:53.359 +03:00 [INF] Request finished in 1.8478ms 200 text/css +2018-09-21 14:18:53.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:18:53.359 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.359 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.360 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:18:53.360 +03:00 [INF] Request finished in 3.0666ms 200 text/css +2018-09-21 14:18:53.360 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:18:53.361 +03:00 [INF] Request finished in 1.6642ms 200 text/css +2018-09-21 14:18:53.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:18:53.391 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.391 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.391 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:18:53.391 +03:00 [INF] Request finished in 1.6243ms 200 text/css +2018-09-21 14:18:53.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:18:53.402 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.403 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.405 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:18:53.405 +03:00 [INF] Request finished in 5.0744ms 200 text/css +2018-09-21 14:18:53.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:18:53.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:18:53.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:18:53.407 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.407 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.407 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.408 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.408 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.408 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.408 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:18:53.408 +03:00 [INF] Request finished in 1.4056ms 200 application/javascript +2018-09-21 14:18:53.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:18:53.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.411 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:18:53.411 +03:00 [INF] Request finished in 1.6991ms 200 application/javascript +2018-09-21 14:18:53.413 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:18:53.413 +03:00 [INF] Request finished in 5.8737ms 200 application/javascript +2018-09-21 14:18:53.416 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:18:53.416 +03:00 [INF] Request finished in 9.536ms 200 application/javascript +2018-09-21 14:18:53.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:18:53.417 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.417 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:18:53.423 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.423 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.424 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:18:53.424 +03:00 [INF] Request finished in 1.6661ms 200 application/javascript +2018-09-21 14:18:53.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:18:53.426 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.427 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.427 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:18:53.427 +03:00 [INF] Request finished in 1.3187ms 200 application/javascript +2018-09-21 14:18:53.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:18:53.443 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.444 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.445 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:18:53.445 +03:00 [INF] Request finished in 2.5363ms 200 application/javascript +2018-09-21 14:18:53.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:18:53.450 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.450 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:18:53.451 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.451 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.452 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:18:53.452 +03:00 [INF] Request finished in 3.1167ms 200 application/javascript +2018-09-21 14:18:53.462 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:18:53.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:18:53.471 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.471 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.471 +03:00 [INF] Request finished in 20.9231ms 200 application/javascript +2018-09-21 14:18:53.472 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:18:53.472 +03:00 [INF] Request finished in 1.3283ms 200 application/javascript +2018-09-21 14:18:53.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:18:53.477 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.477 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.478 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:18:53.478 +03:00 [INF] Request finished in 2.5854ms 200 application/javascript +2018-09-21 14:18:53.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:18:53.482 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.482 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.484 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:18:53.485 +03:00 [INF] Request finished in 2.5576ms 200 application/javascript +2018-09-21 14:18:53.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:18:53.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.492 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:18:53.493 +03:00 [INF] Request finished in 3.5415ms 200 application/javascript +2018-09-21 14:18:53.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:18:53.499 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.499 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:18:53.500 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.500 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.501 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:18:53.501 +03:00 [INF] Request finished in 2.655ms 200 application/javascript +2018-09-21 14:18:53.502 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:18:53.502 +03:00 [INF] Request finished in 3.9795ms 200 font/woff2 +2018-09-21 14:18:53.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:18:53.512 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.512 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.514 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:18:53.514 +03:00 [INF] Request finished in 2.3827ms 200 application/javascript +2018-09-21 14:18:53.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:18:53.514 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.514 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.515 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:18:53.515 +03:00 [INF] Request finished in 1.2412ms 200 application/javascript +2018-09-21 14:18:53.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:18:53.516 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.516 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.518 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:18:53.518 +03:00 [INF] Request finished in 2.3481ms 200 application/javascript +2018-09-21 14:18:53.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:18:53.532 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.532 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.533 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:18:53.533 +03:00 [INF] Request finished in 1.4305ms 200 image/svg+xml +2018-09-21 14:18:53.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:18:53.534 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.534 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:18:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.544 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.545 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 14:18:53.545 +03:00 [INF] Request finished in 3.7341ms 200 image/png +2018-09-21 14:18:53.548 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:18:53.548 +03:00 [INF] Request finished in 14.2258ms 200 image/jpeg +2018-09-21 14:18:53.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:18:53.548 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.548 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.549 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:18:53.549 +03:00 [INF] Request finished in 1.5024ms 200 application/javascript +2018-09-21 14:18:53.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:18:53.552 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.552 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.554 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:18:53.554 +03:00 [INF] Request finished in 2.7476ms 200 application/javascript +2018-09-21 14:18:53.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:18:53.559 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.559 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.560 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:18:53.561 +03:00 [INF] Request finished in 2.0386ms 200 application/javascript +2018-09-21 14:18:53.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:18:53.571 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.571 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:18:53.571 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.572 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.572 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:18:53.572 +03:00 [INF] Request finished in 2.5289ms 200 application/javascript +2018-09-21 14:18:53.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:18:53.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:18:53.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:18:53.590 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.590 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.591 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:18:53.591 +03:00 [INF] Request finished in 1.3018ms 200 application/javascript +2018-09-21 14:18:53.593 +03:00 [INF] Request finished in 176.7639ms 404 +2018-09-21 14:18:53.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:18:53.605 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.605 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.605 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:18:53.606 +03:00 [INF] Request finished in 1.5667ms 200 application/javascript +2018-09-21 14:18:53.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-21 14:18:53.609 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.610 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.610 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-21 14:18:53.610 +03:00 [INF] Request finished in 1.1218ms 200 image/png +2018-09-21 14:18:53.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-21 14:18:53.618 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.618 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-21 14:18:53.619 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-21 14:18:53.619 +03:00 [INF] Request finished in 2.1421ms 200 image/png +2018-09-21 14:18:53.619 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.619 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.620 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-21 14:18:53.620 +03:00 [INF] Request finished in 1.7516ms 200 image/png +2018-09-21 14:18:53.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-21 14:18:53.629 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.630 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.631 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-21 14:18:53.631 +03:00 [INF] Request finished in 2.3514ms 200 image/png +2018-09-21 14:18:53.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-21 14:18:53.636 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.637 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.638 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-21 14:18:53.638 +03:00 [INF] Request finished in 4.3098ms 200 image/png +2018-09-21 14:18:53.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-21 14:18:53.642 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.643 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.644 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-21 14:18:53.644 +03:00 [INF] Request finished in 2.1049ms 200 image/png +2018-09-21 14:18:53.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-21 14:18:53.645 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.645 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.647 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-21 14:18:53.647 +03:00 [INF] Request finished in 2.9402ms 200 image/png +2018-09-21 14:18:53.651 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-21 14:18:53.651 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.651 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-21 14:18:53.655 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.655 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.656 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-21 14:18:53.656 +03:00 [INF] Request finished in 4.4759ms 200 image/png +2018-09-21 14:18:53.657 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-21 14:18:53.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-21 14:18:53.658 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.658 +03:00 [INF] Request finished in 6.2981ms 200 image/png +2018-09-21 14:18:53.658 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.658 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-21 14:18:53.658 +03:00 [INF] Request finished in 1.8791ms 200 image/png +2018-09-21 14:18:53.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-21 14:18:53.667 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.667 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-21 14:18:53.668 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.668 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.669 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-21 14:18:53.670 +03:00 [INF] Request finished in 3.1104ms 200 image/png +2018-09-21 14:18:53.670 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-21 14:18:53.670 +03:00 [INF] Request finished in 2.8437ms 200 image/png +2018-09-21 14:18:53.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-21 14:18:53.676 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.676 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.677 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-21 14:18:53.677 +03:00 [INF] Request finished in 1.63ms 200 image/png +2018-09-21 14:18:53.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-21 14:18:53.686 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.686 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.687 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-21 14:18:53.687 +03:00 [INF] Request finished in 1.129ms 200 image/png +2018-09-21 14:18:53.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-21 14:18:53.688 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.688 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.689 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-21 14:18:53.689 +03:00 [INF] Request finished in 1.9579ms 200 image/png +2018-09-21 14:18:53.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-21 14:18:53.691 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.691 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.692 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-21 14:18:53.692 +03:00 [INF] Request finished in 1.0947ms 200 image/png +2018-09-21 14:18:53.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-21 14:18:53.703 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.703 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-21 14:18:53.706 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.706 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.707 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-21 14:18:53.707 +03:00 [INF] Request finished in 1.0279ms 200 image/png +2018-09-21 14:18:53.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-21 14:18:53.710 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.710 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.710 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-21 14:18:53.710 +03:00 [INF] Request finished in 7.9648ms 200 image/png +2018-09-21 14:18:53.710 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-21 14:18:53.711 +03:00 [INF] Request finished in 1.2765ms 200 image/png +2018-09-21 14:18:53.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-21 14:18:53.717 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.717 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.718 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-21 14:18:53.718 +03:00 [INF] Request finished in 2.0486ms 200 image/png +2018-09-21 14:18:53.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-21 14:18:53.720 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.720 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.721 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-21 14:18:53.721 +03:00 [INF] Request finished in 2.4111ms 200 image/png +2018-09-21 14:18:53.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-21 14:18:53.734 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.734 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.734 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-21 14:18:53.734 +03:00 [INF] Request finished in 1.2664ms 200 image/png +2018-09-21 14:18:53.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-21 14:18:53.740 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.740 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.741 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-21 14:18:53.741 +03:00 [INF] Request finished in 1.3559ms 200 image/png +2018-09-21 14:18:53.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-21 14:18:53.742 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.743 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.744 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-21 14:18:53.744 +03:00 [INF] Request finished in 1.8762ms 200 image/png +2018-09-21 14:18:53.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-21 14:18:53.750 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.750 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.751 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-21 14:18:53.752 +03:00 [INF] Request finished in 1.7178ms 200 image/png +2018-09-21 14:18:53.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-21 14:18:53.754 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.754 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.755 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-21 14:18:53.755 +03:00 [INF] Request finished in 1.0051ms 200 image/png +2018-09-21 14:18:53.755 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:53.755 +03:00 [INF] Request finished in 173.7871ms 404 +2018-09-21 14:18:53.756 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:18:53.756 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0902ms. +2018-09-21 14:18:53.756 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:53.756 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.898ms +2018-09-21 14:18:53.756 +03:00 [INF] Request finished in 174.8315ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:53.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-21 14:18:53.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-21 14:18:53.761 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.761 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:18:53.761 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.762 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.762 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.762 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:18:53.762 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-21 14:18:53.762 +03:00 [INF] Request finished in 1.4404ms 200 image/png +2018-09-21 14:18:53.762 +03:00 [INF] Authorization failed. +2018-09-21 14:18:53.762 +03:00 [INF] Authorization failed. +2018-09-21 14:18:53.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-21 14:18:53.763 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-21 14:18:53.763 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.763 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.763 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.763 +03:00 [INF] Request finished in 2.3367ms 200 image/png +2018-09-21 14:18:53.764 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-21 14:18:53.764 +03:00 [INF] Request finished in 1.2401ms 200 image/png +2018-09-21 14:18:53.764 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.765 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-21 14:18:53.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.766 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.767 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-21 14:18:53.767 +03:00 [INF] Request finished in 1.6172ms 200 image/png +2018-09-21 14:18:53.767 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.768 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.768 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.769 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.770 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.771 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.772 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-21 14:18:53.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-21 14:18:53.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-21 14:18:53.773 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.774 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.774 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.774 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-21 14:18:53.774 +03:00 [INF] Request finished in 1.05ms 200 image/png +2018-09-21 14:18:53.774 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-21 14:18:53.774 +03:00 [INF] Request finished in 1.0963ms 200 image/png +2018-09-21 14:18:53.774 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-21 14:18:53.774 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.775 +03:00 [INF] Request finished in 1.877ms 200 image/png +2018-09-21 14:18:53.775 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-21 14:18:53.776 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.776 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.777 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.777 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.777 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.778 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-21 14:18:53.778 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.778 +03:00 [INF] Request finished in 2.8796ms 200 image/png +2018-09-21 14:18:53.779 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.780 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.781 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.782 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.783 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.784 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.785 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.786 +03:00 [INF] Authorization was successful. +2018-09-21 14:18:53.788 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 26.2082ms. +2018-09-21 14:18:53.789 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:18:53.789 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 27.503500000000003ms +2018-09-21 14:18:53.789 +03:00 [INF] Request finished in 218.1373ms 200 text/plain; charset=utf-8 +2018-09-21 14:18:53.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:18:53.796 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.797 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-21 14:18:53.797 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.797 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:18:53.803 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.803 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.804 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:18:53.804 +03:00 [INF] Request finished in 1.1635ms 200 image/svg+xml +2018-09-21 14:18:53.835 +03:00 [INF] Request finished in 39.9861ms 404 +2018-09-21 14:18:53.835 +03:00 [INF] Request finished in 38.482ms 404 +2018-09-21 14:18:53.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-21 14:18:53.968 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.968 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:53.995 +03:00 [INF] Request finished in 27.0611ms 404 +2018-09-21 14:18:54.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-21 14:18:54.151 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:54.151 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:18:54.152 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-21 14:18:54.152 +03:00 [INF] Request finished in 1.1567ms 200 text/plain +2018-09-21 14:19:04.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-21 14:19:04.992 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:04.992 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:05.019 +03:00 [INF] Request finished in 27.4055ms 404 +2018-09-21 14:19:16.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:19:16.353 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.354 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.386 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:19:16.389 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:19:16.421 +03:00 [INF] Executed action /Blog/Posts/Index in 35.4027ms +2018-09-21 14:19:16.421 +03:00 [INF] Request finished in 68.3062ms 200 text/html; charset=utf-8 +2018-09-21 14:19:16.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:19:16.448 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.448 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:19:16.448 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.449 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:19:16.449 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.449 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.449 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:19:16.449 +03:00 [INF] Request finished in 1.4802ms 200 text/css +2018-09-21 14:19:16.449 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:19:16.449 +03:00 [INF] Request finished in 2.2446ms 200 text/css +2018-09-21 14:19:16.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:19:16.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:19:16.454 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.454 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.454 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.454 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:19:16.454 +03:00 [INF] Request finished in 5.8516ms 200 text/css +2018-09-21 14:19:16.454 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.455 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:19:16.455 +03:00 [INF] Request finished in 1.396ms 200 text/css +2018-09-21 14:19:16.455 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:19:16.456 +03:00 [INF] Request finished in 2.2685ms 200 text/css +2018-09-21 14:19:16.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:19:16.459 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.460 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.460 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:19:16.461 +03:00 [INF] Request finished in 2.1836ms 200 text/css +2018-09-21 14:19:16.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:19:16.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:19:16.482 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.482 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.482 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636718386698047108 +2018-09-21 14:19:16.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.483 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:19:16.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.483 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.483 +03:00 [INF] Request finished in 1.2615ms 200 text/css +2018-09-21 14:19:16.484 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:19:16.484 +03:00 [INF] Request finished in 1.8495ms 200 text/css +2018-09-21 14:19:16.487 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:19:16.487 +03:00 [INF] Request finished in 4.4938ms 200 text/css +2018-09-21 14:19:16.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636718386698367120 +2018-09-21 14:19:16.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:19:16.489 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.490 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.490 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.490 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.491 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:19:16.491 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:19:16.491 +03:00 [INF] Request finished in 1.9036ms 200 text/css +2018-09-21 14:19:16.491 +03:00 [INF] Request finished in 1.8241ms 200 text/css +2018-09-21 14:19:16.491 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636718386697767148 +2018-09-21 14:19:16.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.491 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.492 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:19:16.492 +03:00 [INF] Request finished in 1.58ms 200 text/css +2018-09-21 14:19:16.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:19:16.502 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.502 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.511 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:19:16.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:19:16.512 +03:00 [INF] Request finished in 10.4126ms 200 application/javascript +2018-09-21 14:19:16.512 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.512 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.512 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:19:16.512 +03:00 [INF] Request finished in 0.9829ms 200 application/javascript +2018-09-21 14:19:16.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:19:16.513 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.513 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:19:16.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:19:16.514 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.514 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.514 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.515 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.516 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:19:16.516 +03:00 [INF] Request finished in 2.4783ms 200 application/javascript +2018-09-21 14:19:16.520 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:19:16.521 +03:00 [INF] Request finished in 7.7794ms 200 application/javascript +2018-09-21 14:19:16.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:19:16.522 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.522 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.523 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:19:16.523 +03:00 [INF] Request finished in 2.1418ms 200 application/javascript +2018-09-21 14:19:16.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:19:16.539 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.540 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.541 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:19:16.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:19:16.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:19:16.541 +03:00 [INF] Request finished in 2.1452ms 200 application/javascript +2018-09-21 14:19:16.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.541 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.543 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:19:16.543 +03:00 [INF] Request finished in 2.4017ms 200 application/javascript +2018-09-21 14:19:16.544 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:19:16.544 +03:00 [INF] Request finished in 3.0186ms 200 font/woff2 +2018-09-21 14:19:16.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:19:16.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:19:16.562 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.562 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.562 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.563 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.573 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:19:16.574 +03:00 [INF] Request finished in 11.4124ms 200 image/jpeg +2018-09-21 14:19:16.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:19:16.579 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.579 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:19:16.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:19:16.581 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:19:16.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.582 +03:00 [INF] Request finished in 3.6076ms 200 application/javascript +2018-09-21 14:19:16.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.582 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.583 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:19:16.583 +03:00 [INF] Request finished in 1.6786ms 200 image/svg+xml +2018-09-21 14:19:16.591 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:19:16.593 +03:00 [INF] Request finished in 11.5514ms 200 image/jpeg +2018-09-21 14:19:16.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:19:16.600 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.600 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.601 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:19:16.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:19:16.601 +03:00 [INF] Request finished in 1.4215ms 200 application/javascript +2018-09-21 14:19:16.601 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.601 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.610 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:19:16.611 +03:00 [INF] Request finished in 10.1967ms 200 application/javascript +2018-09-21 14:19:16.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:19:16.617 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.618 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.620 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:19:16.620 +03:00 [INF] Request finished in 3.7259ms 200 application/javascript +2018-09-21 14:19:16.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:19:16.646 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.647 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:19:16.648 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.648 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.650 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:19:16.650 +03:00 [INF] Request finished in 2.0326ms 200 application/javascript +2018-09-21 14:19:16.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:19:16.651 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.651 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.651 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:19:16.651 +03:00 [INF] Request finished in 0.9803ms 200 application/javascript +2018-09-21 14:19:16.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:19:16.662 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.662 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:19:16.662 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.663 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:19:16.663 +03:00 [INF] Request finished in 1.3353ms 200 application/javascript +2018-09-21 14:19:16.663 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.664 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:19:16.664 +03:00 [INF] Request finished in 2.2051ms 200 application/javascript +2018-09-21 14:19:16.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:19:16.673 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.673 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.674 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:19:16.674 +03:00 [INF] Request finished in 2.0047ms 200 application/javascript +2018-09-21 14:19:16.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:19:16.685 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.685 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.685 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:19:16.686 +03:00 [INF] Request finished in 1.191ms 200 application/javascript +2018-09-21 14:19:16.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:19:16.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:19:16.690 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.690 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.690 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.690 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.691 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:19:16.691 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:19:16.691 +03:00 [INF] Request finished in 1.0911ms 200 application/javascript +2018-09-21 14:19:16.691 +03:00 [INF] Request finished in 1.2821ms 200 application/javascript +2018-09-21 14:19:16.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:19:16.695 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.695 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.698 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:19:16.698 +03:00 [INF] Request finished in 3.6705ms 200 application/javascript +2018-09-21 14:19:16.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:19:16.700 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.701 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.701 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:19:16.701 +03:00 [INF] Request finished in 1.0819ms 200 application/javascript +2018-09-21 14:19:16.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:19:16.714 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.714 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:19:16.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:19:16.718 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.718 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.718 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:19:16.718 +03:00 [INF] Request finished in 1.1179ms 200 application/javascript +2018-09-21 14:19:16.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:19:16.733 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.733 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.733 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:19:16.733 +03:00 [INF] Request finished in 1.0014ms 200 application/javascript +2018-09-21 14:19:16.734 +03:00 [INF] Request finished in 219.5472ms 404 +2018-09-21 14:19:16.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:19:16.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636718386696527110 +2018-09-21 14:19:16.745 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.745 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.746 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.746 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.746 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 14:19:16.746 +03:00 [INF] Request finished in 1.2329ms 200 application/javascript +2018-09-21 14:19:16.747 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:19:16.747 +03:00 [INF] Request finished in 4.2663ms 200 application/javascript +2018-09-21 14:19:16.766 +03:00 [INF] Request finished in 204.9697ms 404 +2018-09-21 14:19:16.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:19:16.768 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.769 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.770 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:19:16.770 +03:00 [INF] Request finished in 2.9931ms 200 application/javascript +2018-09-21 14:19:16.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:19:16.771 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.772 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.773 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:19:16.777 +03:00 [INF] Request finished in 2.6693ms 200 image/svg+xml +2018-09-21 14:19:16.798 +03:00 [INF] Request finished in 152.1574ms 404 +2018-09-21 14:19:16.808 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:19:16.809 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:19:16.810 +03:00 [INF] Authorization failed. +2018-09-21 14:19:16.810 +03:00 [INF] Authorization failed. +2018-09-21 14:19:16.811 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.812 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.812 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.813 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.814 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.814 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.814 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.815 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.816 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.817 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.817 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.818 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.818 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.819 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.820 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.820 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.821 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.821 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:19:16.821 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.822 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:19:16.822 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0971ms. +2018-09-21 14:19:16.822 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.822 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:19:16.822 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1577ms +2018-09-21 14:19:16.822 +03:00 [INF] Request finished in 108.0288ms 200 text/plain; charset=utf-8 +2018-09-21 14:19:16.822 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.823 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.824 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.824 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.825 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.826 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.827 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.827 +03:00 [INF] Authorization was successful. +2018-09-21 14:19:16.829 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.0338ms. +2018-09-21 14:19:16.829 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:19:16.829 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.378700000000002ms +2018-09-21 14:19:16.829 +03:00 [INF] Request finished in 115.7431ms 200 text/plain; charset=utf-8 +2018-09-21 14:19:16.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:19:16.854 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.854 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.916 +03:00 [INF] Request finished in 62.8471ms 404 +2018-09-21 14:19:16.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-09-21 14:19:16.947 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.947 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:16.981 +03:00 [INF] Request finished in 34.3479ms 404 +2018-09-21 14:19:17.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-09-21 14:19:17.069 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:17.069 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:17.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-09-21 14:19:17.073 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:17.073 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:17.074 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-09-21 14:19:17.074 +03:00 [INF] Request finished in 1.0684ms 200 text/plain +2018-09-21 14:19:17.101 +03:00 [INF] Request finished in 32.9516ms 404 +2018-09-21 14:19:28.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/assets/fork.png +2018-09-21 14:19:28.904 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:28.904 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-09-21 14:19:28.943 +03:00 [INF] Request finished in 40.8947ms 404 +2018-09-21 14:20:45.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:20:45.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.469 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:20:45.474 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:20:45.528 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.528 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.530 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.530 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.531 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.533 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.533 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.533 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.535 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.535 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.535 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.537 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.537 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.537 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.538 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.538 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.538 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.539 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.539 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.540 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.541 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.541 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.541 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.542 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.542 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.542 +03:00 [INF] Authorization failed. +2018-09-21 14:20:45.809 +03:00 [INF] Executed action /Blog/Posts/Detail in 340.3168ms +2018-09-21 14:20:45.809 +03:00 [INF] Request finished in 352.8129ms 200 text/html; charset=utf-8 +2018-09-21 14:20:45.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636718386696307139 +2018-09-21 14:20:45.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636718386697067120 +2018-09-21 14:20:45.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636718386696327123 +2018-09-21 14:20:45.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.861 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.862 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:20:45.862 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:20:45.862 +03:00 [INF] Request finished in 1.2426ms 200 text/css +2018-09-21 14:20:45.862 +03:00 [INF] Request finished in 3.4824ms 200 text/css +2018-09-21 14:20:45.862 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:20:45.862 +03:00 [INF] Request finished in 1.475ms 200 text/css +2018-09-21 14:20:45.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636718386696327123 +2018-09-21 14:20:45.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.877 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:20:45.877 +03:00 [INF] Request finished in 5.5058ms 200 text/css +2018-09-21 14:20:45.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636718386696307139 +2018-09-21 14:20:45.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.893 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:20:45.893 +03:00 [INF] Request finished in 1.8047ms 200 text/css +2018-09-21 14:20:45.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:20:45.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.898 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:20:45.899 +03:00 [INF] Request finished in 2.4702ms 200 text/css +2018-09-21 14:20:45.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:20:45.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.912 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:20:45.913 +03:00 [INF] Request finished in 1.1372ms 200 text/css +2018-09-21 14:20:45.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:20:45.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.924 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:20:45.924 +03:00 [INF] Request finished in 2.7182ms 200 text/css +2018-09-21 14:20:45.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:20:45.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.929 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:20:45.929 +03:00 [INF] Request finished in 2.2263ms 200 text/css +2018-09-21 14:20:45.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:20:45.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.939 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.940 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 14:20:45.940 +03:00 [INF] Request finished in 1.654ms 200 image/png +2018-09-21 14:20:45.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636718386696147109 +2018-09-21 14:20:45.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636718386696307139 +2018-09-21 14:20:45.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.947 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:20:45.947 +03:00 [INF] Request finished in 1.1667ms 200 application/javascript +2018-09-21 14:20:45.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636718386696397113 +2018-09-21 14:20:45.954 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:20:45.954 +03:00 [INF] Request finished in 8.892ms 200 application/javascript +2018-09-21 14:20:45.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636718386696387102 +2018-09-21 14:20:45.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.956 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:20:45.956 +03:00 [INF] Request finished in 1.6647ms 200 application/javascript +2018-09-21 14:20:45.962 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:20:45.962 +03:00 [INF] Request finished in 7.18ms 200 application/javascript +2018-09-21 14:20:45.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:20:45.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.971 +03:00 [INF] Request finished in 4.0898ms 404 +2018-09-21 14:20:45.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636718386696157136 +2018-09-21 14:20:45.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.972 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.973 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:20:45.973 +03:00 [INF] Request finished in 1.231ms 200 application/javascript +2018-09-21 14:20:45.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636718386696157136 +2018-09-21 14:20:45.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636718386696187115 +2018-09-21 14:20:45.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.981 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:20:45.981 +03:00 [INF] Request finished in 2.8422ms 200 application/javascript +2018-09-21 14:20:45.983 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:20:45.983 +03:00 [INF] Request finished in 2.2302ms 200 application/javascript +2018-09-21 14:20:45.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636718386696427108 +2018-09-21 14:20:45.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:45.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:45.987 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:20:45.987 +03:00 [INF] Request finished in 2.5464ms 200 application/javascript +2018-09-21 14:20:46.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636718386696337122 +2018-09-21 14:20:46.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636718386696177112 +2018-09-21 14:20:46.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.004 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:20:46.004 +03:00 [INF] Request finished in 4.0182ms 200 application/javascript +2018-09-21 14:20:46.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636718386696357147 +2018-09-21 14:20:46.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.007 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:20:46.008 +03:00 [INF] Request finished in 2.0884ms 200 application/javascript +2018-09-21 14:20:46.015 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:20:46.015 +03:00 [INF] Request finished in 15.7354ms 200 application/javascript +2018-09-21 14:20:46.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636718386696177112 +2018-09-21 14:20:46.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.019 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:20:46.019 +03:00 [INF] Request finished in 1.4673ms 200 application/javascript +2018-09-21 14:20:46.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636718386697417131 +2018-09-21 14:20:46.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.020 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.022 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:20:46.022 +03:00 [INF] Request finished in 2.4978ms 200 application/javascript +2018-09-21 14:20:46.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:20:46.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.030 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:20:46.030 +03:00 [INF] Request finished in 1.7098ms 200 application/javascript +2018-09-21 14:20:46.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:20:46.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.037 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:20:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.037 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.037 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:20:46.037 +03:00 [INF] Request finished in 1.3042ms 200 application/javascript +2018-09-21 14:20:46.038 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:20:46.038 +03:00 [INF] Request finished in 1.4721ms 200 application/javascript +2018-09-21 14:20:46.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:20:46.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.053 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:20:46.053 +03:00 [INF] Request finished in 4.7537ms 200 application/javascript +2018-09-21 14:20:46.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:20:46.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.087 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:20:46.087 +03:00 [INF] Request finished in 2.1307ms 200 application/javascript +2018-09-21 14:20:46.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:20:46.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.096 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:20:46.097 +03:00 [INF] Request finished in 4.3867ms 200 application/javascript +2018-09-21 14:20:46.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:20:46.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.100 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:20:46.100 +03:00 [INF] Request finished in 1.8087ms 200 application/javascript +2018-09-21 14:20:46.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:20:46.109 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.109 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.111 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:20:46.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:20:46.111 +03:00 [INF] Request finished in 2.2276ms 200 application/javascript +2018-09-21 14:20:46.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.111 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.122 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:20:46.123 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.124 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.125 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.126 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.126 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.126 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.126 +03:00 [INF] Authorization failed. +2018-09-21 14:20:46.128 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.5734ms. +2018-09-21 14:20:46.129 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:20:46.129 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.6268ms +2018-09-21 14:20:46.129 +03:00 [INF] Request finished in 18.3932ms 200 text/plain; charset=utf-8 +2018-09-21 14:20:46.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:20:46.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.141 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:20:46.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.143 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:20:46.143 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.144 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:20:46.145 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:20:46.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1947ms. +2018-09-21 14:20:46.145 +03:00 [INF] Request finished in 3.6465ms 200 application/javascript +2018-09-21 14:20:46.145 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:20:46.145 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7537ms +2018-09-21 14:20:46.145 +03:00 [INF] Request finished in 5.3334ms 200 text/plain; charset=utf-8 +2018-09-21 14:20:46.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:20:46.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.155 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:20:46.155 +03:00 [INF] Request finished in 2.587ms 200 application/javascript +2018-09-21 14:20:46.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:20:46.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.173 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:20:46.173 +03:00 [INF] Request finished in 2.0024ms 200 application/javascript +2018-09-21 14:20:46.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:20:46.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.175 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:20:46.176 +03:00 [INF] Request finished in 1.5392ms 200 application/javascript +2018-09-21 14:20:46.191 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:20:46.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.192 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:20:46.192 +03:00 [INF] Request finished in 1.5159ms 200 image/svg+xml +2018-09-21 14:20:46.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:20:46.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.229 +03:00 [INF] Sending file. Request path: '/files/59bcb5b452169f4710f839e8db24ceca.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\59bcb5b452169f4710f839e8db24ceca.png' +2018-09-21 14:20:46.229 +03:00 [INF] Request finished in 1.0347ms 200 image/png +2018-09-21 14:20:46.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:20:46.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.242 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:20:46.242 +03:00 [INF] Request finished in 1.206ms 200 image/svg+xml +2018-09-21 14:20:46.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:20:46.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.270 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:20:46.270 +03:00 [INF] Request finished in 2.5928ms 200 font/woff2 +2018-09-21 14:20:46.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:20:46.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:20:46.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.308 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:20:46.308 +03:00 [INF] Request finished in 9.1832ms 200 image/jpeg +2018-09-21 14:20:46.311 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:20:46.311 +03:00 [INF] Request finished in 11.1721ms 200 image/jpeg +2018-09-21 14:20:46.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=0 +2018-09-21 14:20:46.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.401 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.402 +03:00 [INF] Request finished in 2.7508ms 404 +2018-09-21 14:20:46.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:20:46.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:20:46.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:20:46.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:20:46.961 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:20:46.961 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 14:20:46.961 +03:00 [INF] Request finished in 1.5842ms 200 image/png +2018-09-21 14:20:46.961 +03:00 [INF] Request finished in 1.6336ms 200 image/png +2018-09-21 14:20:47.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:20:47.348 +03:00 [INF] Request finished in 1.1535ms 404 +2018-09-21 14:22:30.004 +03:00 [INF] Loaded modules: +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-21 14:22:30.024 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-21 14:22:30.025 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-21 14:22:30.026 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-21 14:22:30.027 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-21 14:22:32.010 +03:00 [INF] Initialized all modules. +2018-09-21 14:22:32.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:22:32.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:32.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:34.823 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:22:34.849 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:22:36.480 +03:00 [INF] Executed action /Index in 1649.5232ms +2018-09-21 14:22:36.498 +03:00 [INF] Request finished in 4175.8322ms 200 text/html; charset=utf-8 +2018-09-21 14:22:36.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:22:36.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:22:36.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:22:36.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.543 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:22:36.543 +03:00 [INF] Request finished in 8.4543ms 200 text/css +2018-09-21 14:22:36.550 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:22:36.550 +03:00 [INF] Request finished in 16.6643ms 200 text/css +2018-09-21 14:22:36.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:22:36.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.557 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:22:36.558 +03:00 [INF] Request finished in 1.3959ms 200 text/css +2018-09-21 14:22:36.559 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:22:36.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:22:36.559 +03:00 [INF] Request finished in 25.8719ms 200 text/css +2018-09-21 14:22:36.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:22:36.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.562 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:22:36.563 +03:00 [INF] Request finished in 2.8733ms 200 text/css +2018-09-21 14:22:36.565 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:22:36.565 +03:00 [INF] Request finished in 6.3791ms 200 text/css +2018-09-21 14:22:36.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:22:36.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:22:36.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.580 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.581 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:22:36.581 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:22:36.581 +03:00 [INF] Request finished in 1.5249ms 200 text/css +2018-09-21 14:22:36.581 +03:00 [INF] Request finished in 1.4951ms 200 text/css +2018-09-21 14:22:36.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:22:36.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.778 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.779 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:22:36.780 +03:00 [INF] Request finished in 4.3066ms 200 application/javascript +2018-09-21 14:22:36.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:22:36.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.840 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:22:36.841 +03:00 [INF] Request finished in 1.6168ms 200 application/javascript +2018-09-21 14:22:36.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:22:36.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.845 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:22:36.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.857 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:22:36.857 +03:00 [INF] Request finished in 18.3835ms 200 application/javascript +2018-09-21 14:22:36.860 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:22:36.860 +03:00 [INF] Request finished in 10.7148ms 200 application/javascript +2018-09-21 14:22:36.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:22:36.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:22:36.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:22:36.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.866 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:22:36.866 +03:00 [INF] Request finished in 2.5215ms 200 application/javascript +2018-09-21 14:22:36.867 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:22:36.867 +03:00 [INF] Request finished in 1.7333ms 200 application/javascript +2018-09-21 14:22:36.867 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-21 14:22:36.867 +03:00 [INF] Request finished in 3.2133ms 200 application/javascript +2018-09-21 14:22:36.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:22:36.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.887 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:22:36.888 +03:00 [INF] Request finished in 6.7263ms 200 application/javascript +2018-09-21 14:22:36.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:22:36.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:22:36.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:22:36.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.907 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:22:36.907 +03:00 [INF] Request finished in 1.5776ms 200 application/javascript +2018-09-21 14:22:36.911 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:22:36.911 +03:00 [INF] Request finished in 6.2443ms 200 application/javascript +2018-09-21 14:22:36.920 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:22:36.920 +03:00 [INF] Request finished in 14.0582ms 200 application/javascript +2018-09-21 14:22:36.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:22:36.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:22:36.956 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:22:36.956 +03:00 [INF] Request finished in 1.737ms 200 application/javascript +2018-09-21 14:22:36.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.956 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.957 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:22:36.957 +03:00 [INF] Request finished in 2.548ms 200 application/javascript +2018-09-21 14:22:36.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:22:36.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:22:36.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.971 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:22:36.972 +03:00 [INF] Request finished in 3.2065ms 200 application/javascript +2018-09-21 14:22:36.974 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:22:36.974 +03:00 [INF] Request finished in 7.977ms 200 application/javascript +2018-09-21 14:22:36.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:22:36.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.985 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:22:36.985 +03:00 [INF] Request finished in 1.7976ms 200 application/javascript +2018-09-21 14:22:36.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:22:36.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:22:36.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.991 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.992 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:22:36.992 +03:00 [INF] Request finished in 1.7233ms 200 application/javascript +2018-09-21 14:22:36.994 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:22:36.994 +03:00 [INF] Request finished in 3.6263ms 200 application/javascript +2018-09-21 14:22:36.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:22:36.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:36.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:36.996 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:22:36.997 +03:00 [INF] Request finished in 1.8309ms 200 application/javascript +2018-09-21 14:22:37.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:22:37.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.004 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:22:37.004 +03:00 [INF] Request finished in 1.4297ms 200 application/javascript +2018-09-21 14:22:37.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:22:37.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.007 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:22:37.007 +03:00 [INF] Request finished in 1.6486ms 200 application/javascript +2018-09-21 14:22:37.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:22:37.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:22:37.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.013 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:22:37.013 +03:00 [INF] Request finished in 1.7356ms 200 application/javascript +2018-09-21 14:22:37.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:22:37.017 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.035 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:22:37.036 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:22:37.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:22:37.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.046 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:22:37.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.046 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.046 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:22:37.046 +03:00 [INF] Request finished in 1.9144ms 200 application/javascript +2018-09-21 14:22:37.048 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:22:37.048 +03:00 [INF] Request finished in 2.19ms 200 font/woff2 +2018-09-21 14:22:37.062 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:22:37.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.063 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.063 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:22:37.063 +03:00 [INF] Request finished in 1.1397ms 200 application/javascript +2018-09-21 14:22:37.115 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:22:37.131 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:22:37.172 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.173 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.220 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.221 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.222 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.223 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.223 +03:00 [INF] Authorization failed. +2018-09-21 14:22:37.253 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 116.8837ms. +2018-09-21 14:22:37.265 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:22:37.267 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 231.7769ms +2018-09-21 14:22:37.268 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 152.0787ms. +2018-09-21 14:22:37.268 +03:00 [INF] Request finished in 255.938ms 200 text/plain; charset=utf-8 +2018-09-21 14:22:37.269 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:22:37.270 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 233.8007ms +2018-09-21 14:22:37.270 +03:00 [INF] Request finished in 253.238ms 200 text/plain; charset=utf-8 +2018-09-21 14:22:37.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:22:37.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.485 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 14:22:37.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:22:37.485 +03:00 [INF] Request finished in 1.1598ms 200 image/png +2018-09-21 14:22:37.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:37.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:37.486 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:22:37.486 +03:00 [INF] Request finished in 1.099ms 200 image/png +2018-09-21 14:22:37.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:22:37.828 +03:00 [INF] Request finished in 5.5814ms 404 +2018-09-21 14:22:43.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:22:43.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:43.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:43.610 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:22:43.846 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:22:45.054 +03:00 [INF] Executed action /Blog/Posts/Index in 1443.8639ms +2018-09-21 14:22:45.054 +03:00 [INF] Request finished in 1954.0537ms 200 text/html; charset=utf-8 +2018-09-21 14:22:45.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:22:45.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:22:45.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.094 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.095 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:22:45.095 +03:00 [INF] Request finished in 1.0907ms 200 text/css +2018-09-21 14:22:45.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:22:45.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.097 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:22:45.098 +03:00 [INF] Request finished in 3.7172ms 200 text/css +2018-09-21 14:22:45.098 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:22:45.098 +03:00 [INF] Request finished in 1.4087ms 200 text/css +2018-09-21 14:22:45.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:22:45.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.106 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:22:45.106 +03:00 [INF] Request finished in 1.2536ms 200 text/css +2018-09-21 14:22:45.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:22:45.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.130 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:22:45.131 +03:00 [INF] Request finished in 2.9565ms 200 text/css +2018-09-21 14:22:45.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:22:45.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.132 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.133 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-21 14:22:45.133 +03:00 [INF] Request finished in 2.1765ms 200 text/css +2018-09-21 14:22:45.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:22:45.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.143 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-21 14:22:45.143 +03:00 [INF] Request finished in 1.0977ms 200 text/css +2018-09-21 14:22:45.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:22:45.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:22:45.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.163 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-21 14:22:45.163 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:22:45.163 +03:00 [INF] Request finished in 1.0307ms 200 text/css +2018-09-21 14:22:45.163 +03:00 [INF] Request finished in 1.2084ms 200 text/css +2018-09-21 14:22:45.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:22:45.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:22:45.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.174 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.174 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:22:45.174 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:22:45.174 +03:00 [INF] Request finished in 1.0898ms 200 text/css +2018-09-21 14:22:45.174 +03:00 [INF] Request finished in 1.1246ms 200 text/css +2018-09-21 14:22:45.179 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:22:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.182 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:22:45.182 +03:00 [INF] Request finished in 3.2499ms 200 text/css +2018-09-21 14:22:45.190 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:22:45.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.191 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.191 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:22:45.192 +03:00 [INF] Request finished in 1.2942ms 200 application/javascript +2018-09-21 14:22:45.192 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:22:45.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.192 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:22:45.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.199 +03:00 [INF] Sending file. Request path: '/files/839a3504c77b9862bf4d39e8db23a971.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\839a3504c77b9862bf4d39e8db23a971.jpg' +2018-09-21 14:22:45.199 +03:00 [INF] Request finished in 6.6861ms 200 image/jpeg +2018-09-21 14:22:45.205 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:22:45.206 +03:00 [INF] Request finished in 8.4762ms 200 application/javascript +2018-09-21 14:22:45.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:22:45.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.212 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:22:45.212 +03:00 [INF] Request finished in 1.4002ms 200 application/javascript +2018-09-21 14:22:45.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:22:45.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.233 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:22:45.233 +03:00 [INF] Request finished in 6.5264ms 200 application/javascript +2018-09-21 14:22:45.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:22:45.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:22:45.241 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-21 14:22:45.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.241 +03:00 [INF] Request finished in 7.2402ms 200 application/javascript +2018-09-21 14:22:45.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.243 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:22:45.243 +03:00 [INF] Request finished in 2.5208ms 200 application/javascript +2018-09-21 14:22:45.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:22:45.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:22:45.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.248 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:22:45.249 +03:00 [INF] Request finished in 3.5349ms 200 application/javascript +2018-09-21 14:22:45.249 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:22:45.249 +03:00 [INF] Request finished in 1.2038ms 200 application/javascript +2018-09-21 14:22:45.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:22:45.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:22:45.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:22:45.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.276 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:22:45.276 +03:00 [INF] Request finished in 1.9909ms 200 application/javascript +2018-09-21 14:22:45.277 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:22:45.277 +03:00 [INF] Request finished in 4.0024ms 200 application/javascript +2018-09-21 14:22:45.278 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:22:45.278 +03:00 [INF] Request finished in 12.3743ms 200 application/javascript +2018-09-21 14:22:45.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:22:45.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.280 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.281 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:22:45.282 +03:00 [INF] Request finished in 2.9638ms 200 application/javascript +2018-09-21 14:22:45.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:22:45.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.294 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:22:45.294 +03:00 [INF] Request finished in 1.1877ms 200 application/javascript +2018-09-21 14:22:45.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:22:45.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.302 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:22:45.303 +03:00 [INF] Request finished in 2.9363ms 200 application/javascript +2018-09-21 14:22:45.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:22:45.317 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.317 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:22:45.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.318 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-21 14:22:45.318 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.318 +03:00 [INF] Request finished in 1.7527ms 200 application/javascript +2018-09-21 14:22:45.325 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-21 14:22:45.325 +03:00 [INF] Request finished in 8.0057ms 200 application/javascript +2018-09-21 14:22:45.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:22:45.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.328 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-21 14:22:45.328 +03:00 [INF] Request finished in 2.7413ms 200 application/javascript +2018-09-21 14:22:45.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:22:45.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.346 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-21 14:22:45.346 +03:00 [INF] Request finished in 2.4255ms 200 application/javascript +2018-09-21 14:22:45.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:22:45.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.371 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-21 14:22:45.371 +03:00 [INF] Request finished in 2.1347ms 200 application/javascript +2018-09-21 14:22:45.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:22:45.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.379 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-21 14:22:45.379 +03:00 [INF] Request finished in 5.42ms 200 application/javascript +2018-09-21 14:22:45.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:22:45.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.389 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-21 14:22:45.389 +03:00 [INF] Request finished in 7.5361ms 200 application/javascript +2018-09-21 14:22:45.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:22:45.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:22:45.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.396 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-21 14:22:45.396 +03:00 [INF] Request finished in 1.2408ms 200 application/javascript +2018-09-21 14:22:45.402 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:22:45.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:22:45.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.404 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:22:45.405 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.405 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.405 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.405 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.405 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.406 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.406 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:22:45.406 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.406 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.406 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.407 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.408 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3221ms. +2018-09-21 14:22:45.409 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:22:45.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:22:45.408 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.409 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.9411ms +2018-09-21 14:22:45.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.409 +03:00 [INF] Request finished in 7.548ms 200 text/plain; charset=utf-8 +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.410 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.410 +03:00 [INF] Request finished in 1.2493ms 200 application/javascript +2018-09-21 14:22:45.410 +03:00 [INF] Authorization failed. +2018-09-21 14:22:45.413 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.3973ms. +2018-09-21 14:22:45.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:22:45.413 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:22:45.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.7943ms +2018-09-21 14:22:45.414 +03:00 [INF] Request finished in 18.8206ms 200 text/plain; charset=utf-8 +2018-09-21 14:22:45.414 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-21 14:22:45.414 +03:00 [INF] Request finished in 1.1273ms 200 application/javascript +2018-09-21 14:22:45.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:22:45.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:22:45.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.445 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-21 14:22:45.445 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-09-21 14:22:45.445 +03:00 [INF] Request finished in 1.0838ms 200 image/svg+xml +2018-09-21 14:22:45.445 +03:00 [INF] Request finished in 1.1175ms 200 application/javascript +2018-09-21 14:22:45.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:22:45.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.449 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 14:22:45.449 +03:00 [INF] Request finished in 1.4881ms 200 application/javascript +2018-09-21 14:22:45.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:22:45.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:22:45.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.455 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Scripts\blog.js' +2018-09-21 14:22:45.455 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-21 14:22:45.455 +03:00 [INF] Request finished in 1.1529ms 200 application/javascript +2018-09-21 14:22:45.455 +03:00 [INF] Request finished in 1.2233ms 200 image/png +2018-09-21 14:22:45.456 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:22:45.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.457 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.458 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-21 14:22:45.458 +03:00 [INF] Request finished in 1.5974ms 200 image/svg+xml +2018-09-21 14:22:45.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:22:45.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.580 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:22:45.580 +03:00 [INF] Request finished in 2.8482ms 200 font/woff2 +2018-09-21 14:22:45.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:22:45.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.607 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-21 14:22:45.607 +03:00 [INF] Request finished in 9.0491ms 200 image/jpeg +2018-09-21 14:22:45.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:22:45.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.752 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-21 14:22:45.752 +03:00 [INF] Request finished in 3.3116ms 200 image/png +2018-09-21 14:22:45.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:22:45.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:22:45.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:22:45.759 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-21 14:22:45.759 +03:00 [INF] Request finished in 2.4664ms 200 image/png +2018-09-21 14:22:46.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-09-21 14:22:46.340 +03:00 [INF] Request finished in 1.9203ms 404 +2018-09-21 14:23:45.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:23:45.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.029 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:23:45.032 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:23:45.082 +03:00 [INF] Executed action /Blog/Posts/Index in 52.9743ms +2018-09-21 14:23:45.082 +03:00 [INF] Request finished in 61.1739ms 200 text/html; charset=utf-8 +2018-09-21 14:23:45.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:23:45.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:23:45.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:23:45.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.116 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:23:45.116 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:23:45.117 +03:00 [INF] Request finished in 3.2882ms 200 text/css +2018-09-21 14:23:45.117 +03:00 [INF] Request finished in 1.9144ms 200 text/css +2018-09-21 14:23:45.117 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:23:45.118 +03:00 [INF] Request finished in 4.2176ms 200 text/css +2018-09-21 14:23:45.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:23:45.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:23:45.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.123 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-21 14:23:45.123 +03:00 [INF] Request finished in 1.1885ms 200 text/css +2018-09-21 14:23:45.123 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:23:45.132 +03:00 [INF] Request finished in 13.2139ms 200 text/css +2018-09-21 14:23:45.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:23:45.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.135 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:23:45.137 +03:00 [INF] Request finished in 4.2122ms 304 text/css +2018-09-21 14:23:45.154 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:23:45.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.155 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:23:45.156 +03:00 [INF] Request finished in 2.4707ms 304 text/css +2018-09-21 14:23:45.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:23:45.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.157 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:23:45.157 +03:00 [INF] Request finished in 0.7753ms 304 text/css +2018-09-21 14:23:45.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:23:45.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:23:45.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.170 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:23:45.170 +03:00 [INF] Request finished in 1.2174ms 200 text/css +2018-09-21 14:23:45.171 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:23:45.171 +03:00 [INF] Request finished in 1.7803ms 200 text/css +2018-09-21 14:23:45.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:23:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.183 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:23:45.183 +03:00 [INF] Request finished in 2.9784ms 200 text/css +2018-09-21 14:23:45.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:23:45.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.188 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.189 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:23:45.189 +03:00 [INF] Request finished in 1.4356ms 200 text/css +2018-09-21 14:23:45.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:23:45.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.192 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:23:45.192 +03:00 [INF] Request finished in 2.9275ms 200 application/javascript +2018-09-21 14:23:45.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:23:45.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:23:45.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.205 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-21 14:23:45.205 +03:00 [INF] Request finished in 5.6391ms 200 application/javascript +2018-09-21 14:23:45.206 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-21 14:23:45.206 +03:00 [INF] Request finished in 9.6582ms 200 application/javascript +2018-09-21 14:23:45.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:23:45.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:23:45.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.215 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:23:45.215 +03:00 [INF] Request finished in 1.1018ms 304 image/svg+xml +2018-09-21 14:23:45.218 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-21 14:23:45.218 +03:00 [INF] Request finished in 4.6079ms 200 application/javascript +2018-09-21 14:23:45.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:23:45.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.229 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:23:45.229 +03:00 [INF] Request finished in 2.307ms 304 image/jpeg +2018-09-21 14:23:45.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:23:45.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.254 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:23:45.254 +03:00 [INF] Request finished in 8.6035ms 304 image/png +2018-09-21 14:23:45.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:23:45.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.270 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:23:45.270 +03:00 [INF] Request finished in 0.8492ms 304 image/svg+xml +2018-09-21 14:23:45.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:23:45.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.301 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.303 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-21 14:23:45.303 +03:00 [INF] Request finished in 3.2029ms 200 application/javascript +2018-09-21 14:23:45.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:23:45.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:23:45.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.309 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-21 14:23:45.309 +03:00 [INF] Request finished in 1.3585ms 200 application/javascript +2018-09-21 14:23:45.314 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-21 14:23:45.314 +03:00 [INF] Request finished in 6.9907ms 200 application/javascript +2018-09-21 14:23:45.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:23:45.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:23:45.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:23:45.329 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.330 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-21 14:23:45.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.333 +03:00 [INF] Request finished in 7.6532ms 200 application/javascript +2018-09-21 14:23:45.334 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-21 14:23:45.334 +03:00 [INF] Request finished in 5.3977ms 200 application/javascript +2018-09-21 14:23:45.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:23:45.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.338 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-21 14:23:45.338 +03:00 [INF] Request finished in 12.7407ms 200 application/javascript +2018-09-21 14:23:45.339 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-21 14:23:45.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:23:45.340 +03:00 [INF] Request finished in 3.802ms 200 application/javascript +2018-09-21 14:23:45.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.341 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-21 14:23:45.341 +03:00 [INF] Request finished in 1.7455ms 200 application/javascript +2018-09-21 14:23:45.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:23:45.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.357 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.361 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-21 14:23:45.362 +03:00 [INF] Request finished in 5.7775ms 200 application/javascript +2018-09-21 14:23:45.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:23:45.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.379 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-21 14:23:45.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:23:45.379 +03:00 [INF] Request finished in 2.854ms 200 application/javascript +2018-09-21 14:23:45.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.380 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:23:45.381 +03:00 [INF] Request finished in 1.4187ms 304 application/javascript +2018-09-21 14:23:45.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:23:45.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.384 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:23:45.384 +03:00 [INF] Request finished in 1.4757ms 304 application/javascript +2018-09-21 14:23:45.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:23:45.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.402 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:23:45.403 +03:00 [INF] Request finished in 1.2978ms 304 application/javascript +2018-09-21 14:23:45.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:23:45.404 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.406 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:23:45.406 +03:00 [INF] Request finished in 2.4177ms 304 application/javascript +2018-09-21 14:23:45.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:23:45.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.411 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:23:45.411 +03:00 [INF] Request finished in 1.5135ms 304 application/javascript +2018-09-21 14:23:45.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:23:45.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.415 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:23:45.415 +03:00 [INF] Request finished in 1.4563ms 304 application/javascript +2018-09-21 14:23:45.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:23:45.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.419 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:23:45.419 +03:00 [INF] Request finished in 1.0592ms 304 application/javascript +2018-09-21 14:23:45.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:23:45.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.434 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:23:45.434 +03:00 [INF] Request finished in 6.4626ms 304 application/javascript +2018-09-21 14:23:45.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:23:45.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:23:45.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.453 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:23:45.454 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:23:45.455 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1447ms. +2018-09-21 14:23:45.455 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:23:45.455 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5709000000000002ms +2018-09-21 14:23:45.455 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:23:45.455 +03:00 [INF] Request finished in 4.9203ms 200 text/plain; charset=utf-8 +2018-09-21 14:23:45.457 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:23:45.457 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.457 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.457 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.457 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.457 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.458 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.462 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.462 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.462 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.462 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.462 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.463 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.463 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.464 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.465 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.465 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.466 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.466 +03:00 [INF] Authorization failed. +2018-09-21 14:23:45.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:23:45.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.469 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-21 14:23:45.470 +03:00 [INF] Request finished in 1.3249ms 200 application/javascript +2018-09-21 14:23:45.470 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.5846ms. +2018-09-21 14:23:45.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:23:45.470 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:23:45.470 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.3573ms +2018-09-21 14:23:45.470 +03:00 [INF] Request finished in 33.9591ms 200 text/plain; charset=utf-8 +2018-09-21 14:23:45.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.471 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.472 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:23:45.472 +03:00 [INF] Request finished in 4.1739ms 304 application/javascript +2018-09-21 14:23:45.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:23:45.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.482 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:23:45.482 +03:00 [INF] Request finished in 1.4875ms 304 application/javascript +2018-09-21 14:23:45.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:23:45.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.483 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:23:45.483 +03:00 [INF] Request finished in 1.4021ms 304 application/javascript +2018-09-21 14:23:45.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:23:45.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:23:45.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.500 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:23:45.500 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:23:45.500 +03:00 [INF] Request finished in 0.7872ms 304 application/javascript +2018-09-21 14:23:45.500 +03:00 [INF] Request finished in 0.6107ms 304 image/jpeg +2018-09-21 14:23:45.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-21 14:23:45.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.505 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-21 14:23:45.505 +03:00 [INF] Request finished in 4.6169ms 200 font/woff2 +2018-09-21 14:23:45.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:23:45.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.826 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:23:45.826 +03:00 [INF] Request finished in 1.0653ms 304 image/png +2018-09-21 14:23:45.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:23:45.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:45.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:45.847 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:23:45.847 +03:00 [INF] Request finished in 5.2981ms 304 image/png +2018-09-21 14:23:48.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:23:48.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.728 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:23:48.733 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:23:48.755 +03:00 [INF] Executed action /Blog/Posts/Index in 26.970100000000002ms +2018-09-21 14:23:48.755 +03:00 [INF] Request finished in 33.8869ms 200 text/html; charset=utf-8 +2018-09-21 14:23:48.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:23:48.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:23:48.790 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-21 14:23:48.790 +03:00 [INF] Request finished in 0.9904ms 200 text/css +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.791 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-21 14:23:48.791 +03:00 [INF] Request finished in 1.0847ms 200 text/css +2018-09-21 14:23:48.794 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-21 14:23:48.794 +03:00 [INF] Request finished in 4.5456ms 200 text/css +2018-09-21 14:23:48.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:23:48.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.805 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-21 14:23:48.805 +03:00 [INF] Request finished in 1.5289ms 200 text/css +2018-09-21 14:23:48.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:23:48.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.820 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:23:48.820 +03:00 [INF] Request finished in 1.7084ms 304 text/css +2018-09-21 14:23:48.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:23:48.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.820 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:23:48.820 +03:00 [INF] Request finished in 0.6974ms 304 text/css +2018-09-21 14:23:48.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:23:48.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.823 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:23:48.824 +03:00 [INF] Request finished in 1.1175ms 304 text/css +2018-09-21 14:23:48.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:23:48.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.829 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:23:48.829 +03:00 [INF] Request finished in 4.9885ms 304 text/css +2018-09-21 14:23:48.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:23:48.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.836 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:23:48.836 +03:00 [INF] Request finished in 1.5104ms 200 text/css +2018-09-21 14:23:48.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:23:48.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.839 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:23:48.840 +03:00 [INF] Request finished in 2.6273ms 200 text/css +2018-09-21 14:23:48.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:23:48.840 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.841 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:23:48.841 +03:00 [INF] Request finished in 1.0848ms 200 text/css +2018-09-21 14:23:48.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:23:48.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.845 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-09-21 14:23:48.845 +03:00 [INF] Request finished in 2.8411ms 200 text/css +2018-09-21 14:23:48.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:23:48.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.848 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.849 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-21 14:23:48.849 +03:00 [INF] Request finished in 1.2975ms 200 application/javascript +2018-09-21 14:23:48.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:23:48.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.852 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.853 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:23:48.854 +03:00 [INF] Request finished in 1.6077ms 304 application/javascript +2018-09-21 14:23:48.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:23:48.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.863 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:23:48.863 +03:00 [INF] Request finished in 0.6286ms 304 application/javascript +2018-09-21 14:23:48.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:23:48.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.865 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.865 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:23:48.866 +03:00 [INF] Request finished in 1.9159ms 304 application/javascript +2018-09-21 14:23:48.869 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:23:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.869 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.870 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:23:48.871 +03:00 [INF] Request finished in 1.7055ms 304 image/jpeg +2018-09-21 14:23:48.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:23:48.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.884 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.884 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:23:48.884 +03:00 [INF] Request finished in 0.6875ms 304 image/svg+xml +2018-09-21 14:23:48.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:23:48.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.895 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:23:48.895 +03:00 [INF] Request finished in 0.7204ms 304 image/png +2018-09-21 14:23:48.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:23:48.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.902 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:23:48.902 +03:00 [INF] Request finished in 0.7343ms 304 image/svg+xml +2018-09-21 14:23:48.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:23:48.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.905 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.906 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:23:48.906 +03:00 [INF] Request finished in 1.4118ms 304 application/javascript +2018-09-21 14:23:48.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:23:48.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.913 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:23:48.913 +03:00 [INF] Request finished in 0.8166ms 304 application/javascript +2018-09-21 14:23:48.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:23:48.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.915 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.915 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:23:48.915 +03:00 [INF] Request finished in 1.0148ms 304 application/javascript +2018-09-21 14:23:48.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:23:48.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.922 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:23:48.922 +03:00 [INF] Request finished in 0.9249ms 304 application/javascript +2018-09-21 14:23:48.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:23:48.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.924 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.924 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:23:48.924 +03:00 [INF] Request finished in 0.7312ms 304 application/javascript +2018-09-21 14:23:48.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:23:48.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.931 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:23:48.931 +03:00 [INF] Request finished in 1.0763ms 304 application/javascript +2018-09-21 14:23:48.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:23:48.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.934 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:23:48.934 +03:00 [INF] Request finished in 1.3712ms 304 application/javascript +2018-09-21 14:23:48.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:23:48.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.941 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:23:48.941 +03:00 [INF] Request finished in 0.8406ms 304 application/javascript +2018-09-21 14:23:48.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:23:48.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:23:48.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.947 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:23:48.947 +03:00 [INF] Request finished in 0.787ms 304 application/javascript +2018-09-21 14:23:48.947 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:23:48.949 +03:00 [INF] Request finished in 1.1349ms 304 application/javascript +2018-09-21 14:23:48.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:23:48.952 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.953 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:23:48.954 +03:00 [INF] Request finished in 1.4144ms 304 application/javascript +2018-09-21 14:23:48.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:23:48.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.958 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.958 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:23:48.958 +03:00 [INF] Request finished in 0.993ms 304 application/javascript +2018-09-21 14:23:48.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:23:48.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.964 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:23:48.964 +03:00 [INF] Request finished in 0.9617ms 304 application/javascript +2018-09-21 14:23:48.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:23:48.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.968 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:23:48.968 +03:00 [INF] Request finished in 2.0449ms 304 application/javascript +2018-09-21 14:23:48.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:23:48.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.972 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:23:48.972 +03:00 [INF] Request finished in 1.2953ms 304 application/javascript +2018-09-21 14:23:48.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:23:48.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.977 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:23:48.977 +03:00 [INF] Request finished in 0.9158ms 304 application/javascript +2018-09-21 14:23:48.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:23:48.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.981 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:23:48.981 +03:00 [INF] Request finished in 2.0074ms 304 application/javascript +2018-09-21 14:23:48.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:23:48.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.986 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:23:48.986 +03:00 [INF] Request finished in 2.7976ms 304 application/javascript +2018-09-21 14:23:48.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:23:48.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:48.990 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:48.998 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:23:49.000 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:23:49.000 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.000 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.000 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.000 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.000 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.001 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.002 +03:00 [INF] Authorization failed. +2018-09-21 14:23:49.004 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:23:49.004 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.9266ms. +2018-09-21 14:23:49.004 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:23:49.004 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.8509ms +2018-09-21 14:23:49.004 +03:00 [INF] Request finished in 14.4023ms 200 text/plain; charset=utf-8 +2018-09-21 14:23:49.006 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:23:49.006 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1198ms. +2018-09-21 14:23:49.006 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:23:49.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:23:49.006 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.556ms +2018-09-21 14:23:49.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.006 +03:00 [INF] Request finished in 5.5333ms 200 text/plain; charset=utf-8 +2018-09-21 14:23:49.006 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.007 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:23:49.007 +03:00 [INF] Request finished in 0.9132ms 304 application/javascript +2018-09-21 14:23:49.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:23:49.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.013 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:23:49.014 +03:00 [INF] Request finished in 1.4632ms 304 application/javascript +2018-09-21 14:23:49.028 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:23:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.029 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 14:23:49.030 +03:00 [INF] Request finished in 1.1017ms 304 application/javascript +2018-09-21 14:23:49.034 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:23:49.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.035 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:23:49.035 +03:00 [INF] Request finished in 1.4534ms 304 application/javascript +2018-09-21 14:23:49.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:23:49.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.036 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.037 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:23:49.037 +03:00 [INF] Request finished in 1.5243ms 304 application/javascript +2018-09-21 14:23:49.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:23:49.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.041 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:23:49.041 +03:00 [INF] Request finished in 1.2655ms 304 image/jpeg +2018-09-21 14:23:49.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:23:49.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.228 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:23:49.228 +03:00 [INF] Request finished in 1.1599ms 304 image/png +2018-09-21 14:23:49.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:23:49.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:23:49.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:23:49.229 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:23:49.229 +03:00 [INF] Request finished in 0.6703ms 304 image/png +2018-09-21 14:24:16.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:24:16.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:16.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:16.913 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:24:16.918 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:24:16.963 +03:00 [INF] Executed action /Blog/Posts/Index in 49.551300000000005ms +2018-09-21 14:24:16.963 +03:00 [INF] Request finished in 60.2614ms 200 text/html; charset=utf-8 +2018-09-21 14:24:16.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:24:16.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:24:16.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:16.998 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:16.998 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:24:16.999 +03:00 [INF] Request finished in 0.9198ms 304 text/css +2018-09-21 14:24:17.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.000 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:24:17.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:24:17.000 +03:00 [INF] Request finished in 2.76ms 304 text/css +2018-09-21 14:24:17.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:24:17.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.001 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:24:17.001 +03:00 [INF] Request finished in 0.5665ms 304 text/css +2018-09-21 14:24:17.001 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:24:17.001 +03:00 [INF] Request finished in 1.0796ms 304 text/css +2018-09-21 14:24:17.010 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:24:17.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.010 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.011 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:24:17.011 +03:00 [INF] Request finished in 0.8069ms 304 text/css +2018-09-21 14:24:17.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:24:17.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.022 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.023 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:24:17.024 +03:00 [INF] Request finished in 2.1884ms 304 text/css +2018-09-21 14:24:17.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:24:17.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.028 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:24:17.028 +03:00 [INF] Request finished in 3.3386ms 304 text/css +2018-09-21 14:24:17.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:24:17.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.035 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:24:17.036 +03:00 [INF] Request finished in 0.9497ms 304 text/css +2018-09-21 14:24:17.038 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:24:17.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.044 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-21 14:24:17.044 +03:00 [INF] Request finished in 6.1091ms 304 text/css +2018-09-21 14:24:17.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:24:17.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.046 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-21 14:24:17.046 +03:00 [INF] Request finished in 1.0731ms 304 text/css +2018-09-21 14:24:17.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:24:17.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.050 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.051 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-21 14:24:17.052 +03:00 [INF] Request finished in 2.0336ms 304 text/css +2018-09-21 14:24:17.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:24:17.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.056 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:24:17.057 +03:00 [INF] Request finished in 1.4864ms 304 application/javascript +2018-09-21 14:24:17.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:24:17.057 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.058 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.058 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:24:17.058 +03:00 [INF] Request finished in 0.9909ms 304 text/css +2018-09-21 14:24:17.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:24:17.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.059 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:24:17.060 +03:00 [INF] Request finished in 0.9279ms 304 application/javascript +2018-09-21 14:24:17.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:24:17.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.074 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.075 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:24:17.075 +03:00 [INF] Request finished in 1.3691ms 304 application/javascript +2018-09-21 14:24:17.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:24:17.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.081 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.081 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:24:17.081 +03:00 [INF] Request finished in 0.9477ms 304 application/javascript +2018-09-21 14:24:17.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:24:17.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.087 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.087 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:24:17.087 +03:00 [INF] Request finished in 0.7848ms 304 application/javascript +2018-09-21 14:24:17.090 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:24:17.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.093 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:24:17.093 +03:00 [INF] Request finished in 3.5696ms 304 application/javascript +2018-09-21 14:24:17.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:24:17.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:24:17.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.102 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:24:17.102 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:24:17.102 +03:00 [INF] Request finished in 0.9723ms 304 application/javascript +2018-09-21 14:24:17.102 +03:00 [INF] Request finished in 0.7791ms 304 application/javascript +2018-09-21 14:24:17.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:24:17.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.107 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:24:17.107 +03:00 [INF] Request finished in 3.9016ms 304 application/javascript +2018-09-21 14:24:17.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:24:17.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:24:17.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.113 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:24:17.113 +03:00 [INF] Request finished in 0.7136ms 304 application/javascript +2018-09-21 14:24:17.114 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:24:17.114 +03:00 [INF] Request finished in 0.7114ms 304 application/javascript +2018-09-21 14:24:17.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:24:17.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.124 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.125 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:24:17.126 +03:00 [INF] Request finished in 2.1031ms 304 application/javascript +2018-09-21 14:24:17.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:24:17.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.128 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:24:17.128 +03:00 [INF] Request finished in 1.1817ms 304 application/javascript +2018-09-21 14:24:17.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:24:17.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:24:17.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.130 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.130 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:24:17.130 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:24:17.130 +03:00 [INF] Request finished in 1.1173ms 304 application/javascript +2018-09-21 14:24:17.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:24:17.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.131 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.132 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:24:17.132 +03:00 [INF] Request finished in 1.1749ms 304 application/javascript +2018-09-21 14:24:17.132 +03:00 [INF] Request finished in 1.1411ms 304 application/javascript +2018-09-21 14:24:17.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:24:17.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.142 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.143 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:24:17.145 +03:00 [INF] Request finished in 3.5538ms 304 application/javascript +2018-09-21 14:24:17.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:24:17.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.154 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:24:17.154 +03:00 [INF] Request finished in 6.8418ms 304 application/javascript +2018-09-21 14:24:17.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:24:17.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:24:17.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.161 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:24:17.161 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:24:17.161 +03:00 [INF] Request finished in 1.331ms 304 application/javascript +2018-09-21 14:24:17.161 +03:00 [INF] Request finished in 1.0158ms 304 application/javascript +2018-09-21 14:24:17.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:24:17.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.166 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:24:17.166 +03:00 [INF] Request finished in 1.0049ms 304 application/javascript +2018-09-21 14:24:17.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:24:17.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.168 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:24:17.168 +03:00 [INF] Request finished in 1.1421ms 304 application/javascript +2018-09-21 14:24:17.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:24:17.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:24:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.179 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:17.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:24:17.180 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:24:17.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.181 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.181 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:17.181 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:24:17.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.40490000000000004ms. +2018-09-21 14:24:17.181 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:17.181 +03:00 [INF] Request finished in 1.0962ms 304 application/javascript +2018-09-21 14:24:17.181 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3082000000000003ms +2018-09-21 14:24:17.181 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Request finished in 7.2497ms 200 text/plain; charset=utf-8 +2018-09-21 14:24:17.182 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.183 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.184 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.184 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.184 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.184 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.184 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.185 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.185 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.185 +03:00 [INF] Authorization failed. +2018-09-21 14:24:17.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:24:17.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.186 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.186 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:24:17.186 +03:00 [INF] Request finished in 0.9095ms 304 application/javascript +2018-09-21 14:24:17.187 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0617ms. +2018-09-21 14:24:17.187 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:17.187 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.5870000000000006ms +2018-09-21 14:24:17.188 +03:00 [INF] Request finished in 13.2317ms 200 text/plain; charset=utf-8 +2018-09-21 14:24:17.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:24:17.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.197 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 14:24:17.198 +03:00 [INF] Request finished in 2.0109ms 304 application/javascript +2018-09-21 14:24:17.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:24:17.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.202 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:24:17.203 +03:00 [INF] Request finished in 3.3661ms 304 application/javascript +2018-09-21 14:24:17.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:24:17.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.212 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:24:17.213 +03:00 [INF] Request finished in 1.9952ms 304 application/javascript +2018-09-21 14:24:17.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:24:17.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.215 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:24:17.216 +03:00 [INF] Request finished in 0.98ms 304 image/svg+xml +2018-09-21 14:24:17.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:24:17.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.218 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.218 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:24:17.218 +03:00 [INF] Request finished in 1.3397ms 304 image/jpeg +2018-09-21 14:24:17.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:24:17.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.228 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:24:17.229 +03:00 [INF] Request finished in 1.4111ms 304 image/png +2018-09-21 14:24:17.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:24:17.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.235 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.235 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:24:17.235 +03:00 [INF] Request finished in 1.0665ms 304 image/svg+xml +2018-09-21 14:24:17.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:24:17.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.237 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:24:17.238 +03:00 [INF] Request finished in 1.2599ms 304 image/jpeg +2018-09-21 14:24:17.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:24:17.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.430 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:24:17.430 +03:00 [INF] Request finished in 0.9571ms 304 image/png +2018-09-21 14:24:17.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:24:17.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:17.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:17.438 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:24:17.439 +03:00 [INF] Request finished in 3.2577ms 304 image/png +2018-09-21 14:24:44.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:24:44.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:44.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.058 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:24:45.062 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:24:45.125 +03:00 [INF] Executed action /Blog/Posts/Index in 66.5879ms +2018-09-21 14:24:45.125 +03:00 [INF] Request finished in 579.7987ms 200 text/html; charset=utf-8 +2018-09-21 14:24:45.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:24:45.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.156 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:24:45.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:24:45.156 +03:00 [INF] Request finished in 1.0154ms 304 text/css +2018-09-21 14:24:45.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.156 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.157 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:24:45.157 +03:00 [INF] Request finished in 0.7727ms 304 text/css +2018-09-21 14:24:45.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:24:45.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.165 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:24:45.165 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:24:45.166 +03:00 [INF] Request finished in 1.1885ms 304 text/css +2018-09-21 14:24:45.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.166 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:24:45.167 +03:00 [INF] Request finished in 1.3496ms 304 text/css +2018-09-21 14:24:45.167 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:24:45.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.172 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:24:45.172 +03:00 [INF] Request finished in 5.1191ms 304 text/css +2018-09-21 14:24:45.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:24:45.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.177 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:24:45.177 +03:00 [INF] Request finished in 0.8504ms 304 text/css +2018-09-21 14:24:45.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:24:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.180 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:24:45.181 +03:00 [INF] Request finished in 1.2292ms 304 text/css +2018-09-21 14:24:45.184 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:24:45.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.184 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.185 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:24:45.185 +03:00 [INF] Request finished in 1.4247ms 304 text/css +2018-09-21 14:24:45.189 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:24:45.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.190 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.191 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-21 14:24:45.191 +03:00 [INF] Request finished in 2.1653ms 304 text/css +2018-09-21 14:24:45.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:24:45.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.195 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-21 14:24:45.195 +03:00 [INF] Request finished in 1.4592ms 304 text/css +2018-09-21 14:24:45.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:24:45.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.200 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-21 14:24:45.200 +03:00 [INF] Request finished in 0.9482ms 304 text/css +2018-09-21 14:24:45.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:24:45.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.202 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:24:45.202 +03:00 [INF] Request finished in 1.4797ms 304 text/css +2018-09-21 14:24:45.209 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:24:45.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.209 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.210 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:24:45.210 +03:00 [INF] Request finished in 1.4596ms 304 application/javascript +2018-09-21 14:24:45.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:24:45.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.212 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.213 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:24:45.213 +03:00 [INF] Request finished in 0.7365ms 304 application/javascript +2018-09-21 14:24:45.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:24:45.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:24:45.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.226 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:24:45.226 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:24:45.226 +03:00 [INF] Request finished in 0.8017ms 304 application/javascript +2018-09-21 14:24:45.226 +03:00 [INF] Request finished in 0.8623ms 304 application/javascript +2018-09-21 14:24:45.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:24:45.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.229 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:24:45.229 +03:00 [INF] Request finished in 1.1117ms 304 image/svg+xml +2018-09-21 14:24:45.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:24:45.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.232 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:24:45.232 +03:00 [INF] Request finished in 1.3713ms 304 application/javascript +2018-09-21 14:24:45.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:24:45.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.235 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:24:45.235 +03:00 [INF] Request finished in 1.4737ms 304 image/jpeg +2018-09-21 14:24:45.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:24:45.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.247 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:24:45.248 +03:00 [INF] Request finished in 1.2007ms 304 image/png +2018-09-21 14:24:45.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:24:45.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.250 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.252 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:24:45.252 +03:00 [INF] Request finished in 4.2419ms 304 image/svg+xml +2018-09-21 14:24:45.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:24:45.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.258 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:24:45.258 +03:00 [INF] Request finished in 1.0332ms 304 application/javascript +2018-09-21 14:24:45.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:24:45.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.261 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:24:45.262 +03:00 [INF] Request finished in 0.7615ms 304 application/javascript +2018-09-21 14:24:45.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:24:45.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.268 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:24:45.268 +03:00 [INF] Request finished in 0.7374ms 304 application/javascript +2018-09-21 14:24:45.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:24:45.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.273 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:24:45.274 +03:00 [INF] Request finished in 1.8757ms 304 application/javascript +2018-09-21 14:24:45.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:24:45.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.281 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.281 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:24:45.281 +03:00 [INF] Request finished in 0.7616ms 304 application/javascript +2018-09-21 14:24:45.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:24:45.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.290 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:24:45.292 +03:00 [INF] Request finished in 5.7786ms 304 application/javascript +2018-09-21 14:24:45.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:24:45.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.297 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:24:45.298 +03:00 [INF] Request finished in 2.9224ms 304 application/javascript +2018-09-21 14:24:45.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:24:45.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.302 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:24:45.302 +03:00 [INF] Request finished in 0.9358ms 304 application/javascript +2018-09-21 14:24:45.315 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:24:45.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.316 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:24:45.317 +03:00 [INF] Request finished in 1.2406ms 304 application/javascript +2018-09-21 14:24:45.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:24:45.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:24:45.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.353 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:24:45.353 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:24:45.353 +03:00 [INF] Request finished in 1.009ms 304 application/javascript +2018-09-21 14:24:45.353 +03:00 [INF] Request finished in 1.0548ms 304 application/javascript +2018-09-21 14:24:45.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:24:45.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:24:45.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.353 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.354 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:24:45.354 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:24:45.354 +03:00 [INF] Request finished in 0.9001ms 304 application/javascript +2018-09-21 14:24:45.354 +03:00 [INF] Request finished in 0.815ms 304 application/javascript +2018-09-21 14:24:45.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:24:45.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.367 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:24:45.367 +03:00 [INF] Request finished in 0.9363ms 304 application/javascript +2018-09-21 14:24:45.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:24:45.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.378 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:24:45.378 +03:00 [INF] Request finished in 2.2889ms 304 application/javascript +2018-09-21 14:24:45.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:24:45.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:24:45.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:24:45.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.385 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:24:45.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.385 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:24:45.385 +03:00 [INF] Request finished in 1.249ms 304 application/javascript +2018-09-21 14:24:45.386 +03:00 [INF] Request finished in 1.3227ms 304 application/javascript +2018-09-21 14:24:45.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:24:45.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.395 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:45.396 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:45.397 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:24:45.397 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.397 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.397 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.397 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.397 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.398 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.398 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:24:45.398 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.398 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.398 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.398 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1469ms. +2018-09-21 14:24:45.398 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.399 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:45.399 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.399 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.399 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7565ms +2018-09-21 14:24:45.399 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.399 +03:00 [INF] Request finished in 9.0276ms 200 text/plain; charset=utf-8 +2018-09-21 14:24:45.399 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.400 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.401 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:24:45.401 +03:00 [INF] Request finished in 0.8898ms 304 application/javascript +2018-09-21 14:24:45.401 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.401 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.402 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.402 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.402 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.402 +03:00 [INF] Authorization failed. +2018-09-21 14:24:45.405 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.7919ms. +2018-09-21 14:24:45.405 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:45.405 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.9937ms +2018-09-21 14:24:45.405 +03:00 [INF] Request finished in 20.5243ms 200 text/plain; charset=utf-8 +2018-09-21 14:24:45.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:24:45.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:24:45.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.408 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.408 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 14:24:45.409 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:24:45.409 +03:00 [INF] Request finished in 0.9204ms 304 application/javascript +2018-09-21 14:24:45.409 +03:00 [INF] Request finished in 1.0441ms 304 application/javascript +2018-09-21 14:24:45.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:24:45.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.430 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:24:45.430 +03:00 [INF] Request finished in 1.4537ms 304 application/javascript +2018-09-21 14:24:45.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:24:45.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:24:45.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.436 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.436 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:24:45.436 +03:00 [INF] Request finished in 0.7942ms 304 application/javascript +2018-09-21 14:24:45.436 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:24:45.436 +03:00 [INF] Request finished in 0.789ms 304 image/jpeg +2018-09-21 14:24:45.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:24:45.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:24:45.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:45.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:45.729 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:24:45.729 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:24:45.729 +03:00 [INF] Request finished in 0.9865ms 304 image/png +2018-09-21 14:24:45.729 +03:00 [INF] Request finished in 1.0163ms 304 image/png +2018-09-21 14:24:58.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:24:58.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:58.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:58.577 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:24:58.587 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:24:58.790 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.790 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.795 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.795 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.795 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.797 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.798 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.798 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.799 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.799 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.799 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.800 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.800 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.800 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.802 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.802 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.802 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.803 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.804 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.804 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.805 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.805 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.805 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.806 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.806 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.806 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.818 +03:00 [INF] Executed action /Blog/Posts/Detail in 241.4871ms +2018-09-21 14:24:58.818 +03:00 [INF] Request finished in 623.2139ms 200 text/html; charset=utf-8 +2018-09-21 14:24:58.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:24:58.953 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:58.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:58.958 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:58.959 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:24:58.959 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.959 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.959 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.960 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.961 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.962 +03:00 [INF] Authorization failed. +2018-09-21 14:24:58.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:24:58.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:24:58.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:24:58.965 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.1696ms. +2018-09-21 14:24:58.966 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:58.966 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.018ms +2018-09-21 14:24:58.966 +03:00 [INF] Request finished in 14.4482ms 200 text/plain; charset=utf-8 +2018-09-21 14:24:58.966 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:24:58.968 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:24:58.970 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.7602ms. +2018-09-21 14:24:58.970 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:24:58.970 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5216000000000003ms +2018-09-21 14:24:58.971 +03:00 [INF] Request finished in 8.466ms 200 text/plain; charset=utf-8 +2018-09-21 14:26:17.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:26:17.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.744 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:26:17.751 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:26:17.869 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.869 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.873 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.873 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.873 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.876 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.876 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.876 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.877 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.877 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.877 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.878 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.878 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.878 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.880 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.880 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.880 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.882 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.883 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.883 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.884 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.884 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.884 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.886 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.886 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.886 +03:00 [INF] Authorization failed. +2018-09-21 14:26:17.897 +03:00 [INF] Executed action /Blog/Posts/Detail in 152.5899ms +2018-09-21 14:26:17.897 +03:00 [INF] Request finished in 792.7246ms 200 text/html; charset=utf-8 +2018-09-21 14:26:17.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:26:17.925 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:26:17.926 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:26:17.926 +03:00 [INF] Request finished in 1.1265ms 304 text/css +2018-09-21 14:26:17.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.927 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:26:17.928 +03:00 [INF] Request finished in 1.7966ms 304 text/css +2018-09-21 14:26:17.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:26:17.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.934 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:26:17.934 +03:00 [INF] Request finished in 6.5962ms 304 text/css +2018-09-21 14:26:17.937 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:26:17.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.938 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:26:17.938 +03:00 [INF] Request finished in 1.0876ms 304 text/css +2018-09-21 14:26:17.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:26:17.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.940 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.940 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:26:17.940 +03:00 [INF] Request finished in 0.8199ms 304 text/css +2018-09-21 14:26:17.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:26:17.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.949 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.949 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:26:17.949 +03:00 [INF] Request finished in 0.8648ms 304 text/css +2018-09-21 14:26:17.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:26:17.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.957 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.958 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:26:17.958 +03:00 [INF] Request finished in 0.5405ms 304 text/css +2018-09-21 14:26:17.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:26:17.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.960 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:26:17.961 +03:00 [INF] Request finished in 0.8426ms 304 text/css +2018-09-21 14:26:17.961 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:26:17.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.961 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.962 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:26:17.965 +03:00 [INF] Request finished in 3.7212ms 304 text/css +2018-09-21 14:26:17.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:26:17.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:26:17.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.969 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.969 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:26:17.969 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:26:17.969 +03:00 [INF] Request finished in 4.0354ms 304 application/javascript +2018-09-21 14:26:17.969 +03:00 [INF] Request finished in 4.0888ms 304 application/javascript +2018-09-21 14:26:17.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:26:17.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.978 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:26:17.978 +03:00 [INF] Request finished in 3.206ms 304 application/javascript +2018-09-21 14:26:17.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:26:17.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.987 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:26:17.987 +03:00 [INF] Request finished in 1.6667ms 304 application/javascript +2018-09-21 14:26:17.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:26:17.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.989 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.991 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:26:17.991 +03:00 [INF] Request finished in 3.2482ms 304 application/javascript +2018-09-21 14:26:17.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:26:17.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:17.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:17.997 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:26:17.998 +03:00 [INF] Request finished in 3.122ms 304 application/javascript +2018-09-21 14:26:18.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:26:18.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.001 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:26:18.001 +03:00 [INF] Request finished in 0.9339ms 304 application/javascript +2018-09-21 14:26:18.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:26:18.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.007 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.007 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:26:18.007 +03:00 [INF] Request finished in 0.8945ms 304 application/javascript +2018-09-21 14:26:18.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:26:18.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.012 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.013 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:26:18.015 +03:00 [INF] Request finished in 2.3598ms 304 application/javascript +2018-09-21 14:26:18.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:26:18.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.016 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.017 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:26:18.017 +03:00 [INF] Request finished in 3.7498ms 304 application/javascript +2018-09-21 14:26:18.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:26:18.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.019 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:26:18.020 +03:00 [INF] Request finished in 1.6005ms 304 application/javascript +2018-09-21 14:26:18.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:26:18.023 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.024 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:26:18.024 +03:00 [INF] Request finished in 1.2148ms 304 application/javascript +2018-09-21 14:26:18.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:26:18.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.035 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:26:18.036 +03:00 [INF] Request finished in 0.8796ms 304 application/javascript +2018-09-21 14:26:18.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:26:18.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.039 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.040 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:26:18.040 +03:00 [INF] Request finished in 0.8378ms 304 application/javascript +2018-09-21 14:26:18.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:26:18.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.046 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:26:18.046 +03:00 [INF] Request finished in 1.7948ms 304 application/javascript +2018-09-21 14:26:18.047 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:26:18.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.048 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.049 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:26:18.049 +03:00 [INF] Request finished in 1.9196ms 304 application/javascript +2018-09-21 14:26:18.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:26:18.055 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.056 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.056 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:26:18.057 +03:00 [INF] Request finished in 1.6786ms 304 application/javascript +2018-09-21 14:26:18.058 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:26:18.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.059 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.061 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:26:18.061 +03:00 [INF] Request finished in 2.6465ms 304 application/javascript +2018-09-21 14:26:18.061 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:26:18.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.062 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.062 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:26:18.063 +03:00 [INF] Request finished in 1.2033ms 304 application/javascript +2018-09-21 14:26:18.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:26:18.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.069 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.070 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:26:18.070 +03:00 [INF] Request finished in 1.8079ms 304 application/javascript +2018-09-21 14:26:18.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:26:18.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:26:18.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.086 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:26:18.086 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:26:18.087 +03:00 [INF] Request finished in 1.2516ms 304 application/javascript +2018-09-21 14:26:18.087 +03:00 [INF] Request finished in 1.2979ms 304 application/javascript +2018-09-21 14:26:18.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:26:18.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:26:18.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.103 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:26:18.104 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:26:18.104 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:26:18.104 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Request finished in 0.7989ms 304 application/javascript +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.105 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:26:18.105 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.106 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.107 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.107 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:26:18.107 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.107 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.107 +03:00 [INF] Authorization failed. +2018-09-21 14:26:18.107 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1626ms. +2018-09-21 14:26:18.107 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:26:18.108 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.164ms +2018-09-21 14:26:18.108 +03:00 [INF] Request finished in 6.3052ms 200 text/plain; charset=utf-8 +2018-09-21 14:26:18.109 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.8703ms. +2018-09-21 14:26:18.109 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:26:18.110 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7089000000000008ms +2018-09-21 14:26:18.110 +03:00 [INF] Request finished in 18.1739ms 200 text/plain; charset=utf-8 +2018-09-21 14:26:18.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:26:18.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.110 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:26:18.111 +03:00 [INF] Request finished in 0.6874ms 304 application/javascript +2018-09-21 14:26:18.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:26:18.121 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.122 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:26:18.122 +03:00 [INF] Request finished in 1.3263ms 304 application/javascript +2018-09-21 14:26:18.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:26:18.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.123 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.123 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:26:18.123 +03:00 [INF] Request finished in 0.7883ms 304 application/javascript +2018-09-21 14:26:18.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:26:18.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.125 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.126 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:26:18.126 +03:00 [INF] Request finished in 1.5196ms 304 image/svg+xml +2018-09-21 14:26:18.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:26:18.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.141 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.141 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-21 14:26:18.141 +03:00 [INF] Request finished in 1.1422ms 304 image/png +2018-09-21 14:26:18.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:26:18.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.145 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:26:18.146 +03:00 [INF] Request finished in 0.7867ms 304 image/png +2018-09-21 14:26:18.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:26:18.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.152 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.153 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:26:18.153 +03:00 [INF] Request finished in 1.0734ms 304 image/svg+xml +2018-09-21 14:26:18.155 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:26:18.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.155 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.155 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:26:18.155 +03:00 [INF] Request finished in 0.7711ms 304 image/jpeg +2018-09-21 14:26:18.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:26:18.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.158 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:26:18.158 +03:00 [INF] Request finished in 1.745ms 304 image/jpeg +2018-09-21 14:26:18.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:26:18.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.346 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:26:18.347 +03:00 [INF] Request finished in 2.0838ms 304 image/png +2018-09-21 14:26:18.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:26:18.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:26:18.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:26:18.350 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:26:18.350 +03:00 [INF] Request finished in 1.7675ms 304 image/png +2018-09-21 14:27:45.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:27:45.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:45.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.497 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:27:46.503 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:27:46.575 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.575 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.580 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.580 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.580 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.582 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.582 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.582 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.583 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.583 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.583 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.584 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.585 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.585 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.587 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.587 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.587 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.588 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.588 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.589 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.590 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.590 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.590 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.591 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.591 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.591 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.603 +03:00 [INF] Executed action /Blog/Posts/Detail in 106.2108ms +2018-09-21 14:27:46.603 +03:00 [INF] Request finished in 687.6768ms 200 text/html; charset=utf-8 +2018-09-21 14:27:46.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:27:46.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.633 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:27:46.634 +03:00 [INF] Request finished in 0.9212ms 304 text/css +2018-09-21 14:27:46.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:27:46.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:27:46.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.640 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:27:46.640 +03:00 [INF] Request finished in 2.5255ms 304 text/css +2018-09-21 14:27:46.641 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:27:46.642 +03:00 [INF] Request finished in 4.4804ms 304 text/css +2018-09-21 14:27:46.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:27:46.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.646 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:27:46.647 +03:00 [INF] Request finished in 3.5286ms 304 text/css +2018-09-21 14:27:46.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:27:46.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:27:46.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.651 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.651 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:27:46.651 +03:00 [INF] Request finished in 1.6597ms 304 text/css +2018-09-21 14:27:46.652 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:27:46.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:27:46.652 +03:00 [INF] Request finished in 1.9773ms 304 text/css +2018-09-21 14:27:46.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:27:46.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.654 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:27:46.654 +03:00 [INF] Request finished in 2.1972ms 304 text/css +2018-09-21 14:27:46.654 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:27:46.654 +03:00 [INF] Request finished in 2.7075ms 304 text/css +2018-09-21 14:27:46.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:27:46.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.666 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.667 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:27:46.667 +03:00 [INF] Request finished in 1.3505ms 304 text/css +2018-09-21 14:27:46.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:27:46.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.675 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:27:46.675 +03:00 [INF] Request finished in 1.17ms 304 application/javascript +2018-09-21 14:27:46.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:27:46.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.676 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:27:46.676 +03:00 [INF] Request finished in 0.6996ms 304 application/javascript +2018-09-21 14:27:46.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:27:46.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.682 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.682 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:27:46.682 +03:00 [INF] Request finished in 0.9257ms 304 application/javascript +2018-09-21 14:27:46.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:27:46.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.690 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:27:46.690 +03:00 [INF] Request finished in 0.8214ms 304 application/javascript +2018-09-21 14:27:46.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:27:46.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.694 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:27:46.694 +03:00 [INF] Request finished in 0.8876ms 304 image/svg+xml +2018-09-21 14:27:46.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:27:46.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.705 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.706 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-21 14:27:46.706 +03:00 [INF] Request finished in 1.1551ms 304 image/png +2018-09-21 14:27:46.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:27:46.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.722 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:27:46.722 +03:00 [INF] Request finished in 4.5287ms 304 image/png +2018-09-21 14:27:46.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:27:46.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.728 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:27:46.728 +03:00 [INF] Request finished in 2.629ms 304 image/svg+xml +2018-09-21 14:27:46.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:27:46.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.732 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:27:46.732 +03:00 [INF] Request finished in 0.904ms 304 application/javascript +2018-09-21 14:27:46.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:27:46.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.743 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:27:46.744 +03:00 [INF] Request finished in 0.8879ms 304 application/javascript +2018-09-21 14:27:46.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:27:46.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.745 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:27:46.745 +03:00 [INF] Request finished in 0.8635ms 304 application/javascript +2018-09-21 14:27:46.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:27:46.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.753 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:27:46.753 +03:00 [INF] Request finished in 3.0888ms 304 application/javascript +2018-09-21 14:27:46.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:27:46.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.762 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.763 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:27:46.764 +03:00 [INF] Request finished in 0.9588ms 304 application/javascript +2018-09-21 14:27:46.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:27:46.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.771 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:27:46.771 +03:00 [INF] Request finished in 1.5799ms 304 application/javascript +2018-09-21 14:27:46.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:27:46.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.778 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:27:46.778 +03:00 [INF] Request finished in 1.4087ms 304 application/javascript +2018-09-21 14:27:46.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:27:46.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:27:46.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.783 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:27:46.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.783 +03:00 [INF] Request finished in 0.7316ms 304 application/javascript +2018-09-21 14:27:46.783 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:27:46.783 +03:00 [INF] Request finished in 1.0189ms 304 application/javascript +2018-09-21 14:27:46.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:27:46.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.794 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:27:46.794 +03:00 [INF] Request finished in 2.3015ms 304 application/javascript +2018-09-21 14:27:46.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:27:46.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.797 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:27:46.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:27:46.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.797 +03:00 [INF] Request finished in 2.4643ms 304 application/javascript +2018-09-21 14:27:46.798 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:27:46.798 +03:00 [INF] Request finished in 1.0316ms 304 application/javascript +2018-09-21 14:27:46.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:27:46.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.801 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:27:46.801 +03:00 [INF] Request finished in 1.3172ms 304 application/javascript +2018-09-21 14:27:46.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:27:46.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.813 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:27:46.813 +03:00 [INF] Request finished in 1.1585ms 304 application/javascript +2018-09-21 14:27:46.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:27:46.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:27:46.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.815 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.815 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:27:46.815 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:27:46.815 +03:00 [INF] Request finished in 0.9627ms 304 application/javascript +2018-09-21 14:27:46.816 +03:00 [INF] Request finished in 0.9854ms 304 application/javascript +2018-09-21 14:27:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:27:46.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.829 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:27:46.829 +03:00 [INF] Request finished in 2.6441ms 304 application/javascript +2018-09-21 14:27:46.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:27:46.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:27:46.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.831 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:27:46.831 +03:00 [INF] Request finished in 1.1117ms 304 application/javascript +2018-09-21 14:27:46.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:27:46.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.838 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:27:46.840 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:27:46.840 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.41090000000000004ms. +2018-09-21 14:27:46.840 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:27:46.840 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:27:46.841 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4762ms +2018-09-21 14:27:46.841 +03:00 [INF] Request finished in 5.7745ms 200 text/plain; charset=utf-8 +2018-09-21 14:27:46.841 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:27:46.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Request finished in 0.9217ms 304 application/javascript +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.842 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.843 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.844 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.844 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.844 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.844 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.844 +03:00 [INF] Authorization failed. +2018-09-21 14:27:46.846 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.0448ms. +2018-09-21 14:27:46.846 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:27:46.846 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.3495ms +2018-09-21 14:27:46.846 +03:00 [INF] Request finished in 16.1035ms 200 text/plain; charset=utf-8 +2018-09-21 14:27:46.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:27:46.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.855 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.855 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:27:46.855 +03:00 [INF] Request finished in 0.8585ms 304 application/javascript +2018-09-21 14:27:46.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:27:46.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.866 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:27:46.867 +03:00 [INF] Request finished in 0.7922ms 304 application/javascript +2018-09-21 14:27:46.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:27:46.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.876 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.876 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:27:46.876 +03:00 [INF] Request finished in 1.2316ms 304 application/javascript +2018-09-21 14:27:46.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:27:46.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:27:46.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:46.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:46.881 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:27:46.881 +03:00 [INF] Request finished in 1.7285ms 304 image/jpeg +2018-09-21 14:27:46.881 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:27:46.881 +03:00 [INF] Request finished in 0.7244ms 304 image/jpeg +2018-09-21 14:27:47.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:27:47.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:47.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:47.160 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:27:47.160 +03:00 [INF] Request finished in 1.5039ms 304 image/png +2018-09-21 14:27:47.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:27:47.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:27:47.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:27:47.161 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:27:47.162 +03:00 [INF] Request finished in 0.6783ms 304 image/png +2018-09-21 14:28:52.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Hello-World +2018-09-21 14:28:52.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.335 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-21 14:28:52.339 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:28:52.384 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.384 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.387 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.387 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.387 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.388 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.388 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.388 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.390 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.390 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.390 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.391 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.391 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.391 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.393 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.393 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.393 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.394 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.394 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.394 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.395 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.396 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.396 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.397 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.397 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.397 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.404 +03:00 [INF] Executed action /Blog/Posts/Detail in 68.8955ms +2018-09-21 14:28:52.404 +03:00 [INF] Request finished in 70.8671ms 200 text/html; charset=utf-8 +2018-09-21 14:28:52.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:28:52.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:28:52.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.434 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:28:52.434 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:28:52.434 +03:00 [INF] Request finished in 1.2137ms 304 text/css +2018-09-21 14:28:52.434 +03:00 [INF] Request finished in 0.6762ms 304 text/css +2018-09-21 14:28:52.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:28:52.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.437 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:28:52.438 +03:00 [INF] Request finished in 1.5226ms 304 text/css +2018-09-21 14:28:52.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:28:52.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.445 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.445 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:28:52.446 +03:00 [INF] Request finished in 1.0988ms 304 text/css +2018-09-21 14:28:52.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:28:52.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.448 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:28:52.448 +03:00 [INF] Request finished in 0.8001ms 304 text/css +2018-09-21 14:28:52.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-21 14:28:52.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.451 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-21 14:28:52.452 +03:00 [INF] Request finished in 1.7234ms 304 text/css +2018-09-21 14:28:52.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-21 14:28:52.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-21 14:28:52.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.461 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-21 14:28:52.461 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-21 14:28:52.461 +03:00 [INF] Request finished in 1.5859ms 304 text/css +2018-09-21 14:28:52.461 +03:00 [INF] Request finished in 0.6614ms 304 text/css +2018-09-21 14:28:52.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:28:52.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.468 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:28:52.471 +03:00 [INF] Request finished in 2.83ms 304 text/css +2018-09-21 14:28:52.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:28:52.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.472 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.472 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:28:52.473 +03:00 [INF] Request finished in 0.8045ms 304 application/javascript +2018-09-21 14:28:52.478 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:28:52.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.479 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.479 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:28:52.479 +03:00 [INF] Request finished in 0.7523ms 304 application/javascript +2018-09-21 14:28:52.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:28:52.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.480 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.480 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:28:52.480 +03:00 [INF] Request finished in 0.7695ms 304 application/javascript +2018-09-21 14:28:52.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:28:52.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.488 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:28:52.488 +03:00 [INF] Request finished in 1.0572ms 304 application/javascript +2018-09-21 14:28:52.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:28:52.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.494 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:28:52.495 +03:00 [INF] Request finished in 1.6123ms 304 application/javascript +2018-09-21 14:28:52.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:28:52.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.499 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:28:52.499 +03:00 [INF] Request finished in 2.4594ms 304 application/javascript +2018-09-21 14:28:52.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:28:52.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.503 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.503 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:28:52.503 +03:00 [INF] Request finished in 0.6527ms 304 application/javascript +2018-09-21 14:28:52.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:28:52.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.514 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:28:52.514 +03:00 [INF] Request finished in 1.5886ms 304 application/javascript +2018-09-21 14:28:52.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:28:52.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.515 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:28:52.515 +03:00 [INF] Request finished in 1.021ms 304 application/javascript +2018-09-21 14:28:52.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:28:52.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.523 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:28:52.523 +03:00 [INF] Request finished in 2.5716ms 304 application/javascript +2018-09-21 14:28:52.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:28:52.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.535 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:28:52.536 +03:00 [INF] Request finished in 1.2835ms 304 application/javascript +2018-09-21 14:28:52.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:28:52.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.537 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:28:52.537 +03:00 [INF] Request finished in 1.1162ms 304 application/javascript +2018-09-21 14:28:52.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:28:52.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:28:52.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.549 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:28:52.549 +03:00 [INF] Request finished in 0.938ms 304 application/javascript +2018-09-21 14:28:52.549 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:28:52.550 +03:00 [INF] Request finished in 1.5063ms 304 application/javascript +2018-09-21 14:28:52.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-21 14:28:52.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.554 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.555 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-21 14:28:52.555 +03:00 [INF] Request finished in 3.2604ms 304 application/javascript +2018-09-21 14:28:52.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-21 14:28:52.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.562 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-21 14:28:52.562 +03:00 [INF] Request finished in 1.2737ms 304 application/javascript +2018-09-21 14:28:52.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-21 14:28:52.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.564 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.565 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-21 14:28:52.565 +03:00 [INF] Request finished in 4.7592ms 304 application/javascript +2018-09-21 14:28:52.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-21 14:28:52.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.571 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.572 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-21 14:28:52.573 +03:00 [INF] Request finished in 2.4342ms 304 application/javascript +2018-09-21 14:28:52.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-21 14:28:52.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.580 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-21 14:28:52.580 +03:00 [INF] Request finished in 5.2542ms 304 application/javascript +2018-09-21 14:28:52.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-21 14:28:52.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.581 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-21 14:28:52.582 +03:00 [INF] Request finished in 1.2276ms 304 application/javascript +2018-09-21 14:28:52.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-21 14:28:52.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.587 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-21 14:28:52.587 +03:00 [INF] Request finished in 1.1041ms 304 application/javascript +2018-09-21 14:28:52.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636731107404030958 +2018-09-21 14:28:52.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.592 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.592 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-21 14:28:52.593 +03:00 [INF] Request finished in 1.4446ms 304 application/javascript +2018-09-21 14:28:52.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:28:52.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:28:52.599 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:28:52.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.600 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.600 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.601 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.20500000000000002ms. +2018-09-21 14:28:52.601 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0036ms +2018-09-21 14:28:52.602 +03:00 [INF] Authorization failed. +2018-09-21 14:28:52.602 +03:00 [INF] Request finished in 3.301ms 200 text/plain; charset=utf-8 +2018-09-21 14:28:52.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-21 14:28:52.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.604 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.604 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.9522000000000004ms. +2018-09-21 14:28:52.604 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:28:52.604 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.0649000000000006ms +2018-09-21 14:28:52.604 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-21 14:28:52.604 +03:00 [INF] Request finished in 7.955ms 200 text/plain; charset=utf-8 +2018-09-21 14:28:52.604 +03:00 [INF] Request finished in 0.9926ms 304 application/javascript +2018-09-21 14:28:52.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-21 14:28:52.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.611 +03:00 [INF] The file /js/vs.js was not modified +2018-09-21 14:28:52.611 +03:00 [INF] Request finished in 2.089ms 304 application/javascript +2018-09-21 14:28:52.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-21 14:28:52.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.620 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.621 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-21 14:28:52.621 +03:00 [INF] Request finished in 1.1136ms 304 application/javascript +2018-09-21 14:28:52.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-21 14:28:52.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.625 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-21 14:28:52.625 +03:00 [INF] Request finished in 1.2436ms 304 application/javascript +2018-09-21 14:28:52.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-21 14:28:52.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.629 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-21 14:28:52.629 +03:00 [INF] Request finished in 2.3738ms 304 image/svg+xml +2018-09-21 14:28:52.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/59bcb5b452169f4710f839e8db24ceca.png +2018-09-21 14:28:52.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-21 14:28:52.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.639 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-21 14:28:52.639 +03:00 [INF] Request finished in 0.9475ms 304 image/png +2018-09-21 14:28:52.639 +03:00 [INF] The file /files/59bcb5b452169f4710f839e8db24ceca.png was not modified +2018-09-21 14:28:52.640 +03:00 [INF] Request finished in 1.3113ms 304 image/png +2018-09-21 14:28:52.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-21 14:28:52.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-21 14:28:52.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.644 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-21 14:28:52.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.644 +03:00 [INF] Request finished in 1.357ms 304 image/svg+xml +2018-09-21 14:28:52.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.644 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-21 14:28:52.644 +03:00 [INF] Request finished in 1.3147ms 304 image/jpeg +2018-09-21 14:28:52.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-21 14:28:52.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.647 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-21 14:28:52.647 +03:00 [INF] Request finished in 1.6799ms 304 image/jpeg +2018-09-21 14:28:52.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-21 14:28:52.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.826 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-21 14:28:52.826 +03:00 [INF] Request finished in 1.0179ms 304 image/png +2018-09-21 14:28:52.826 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-21 14:28:52.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:28:52.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:28:52.827 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-21 14:28:52.827 +03:00 [INF] Request finished in 0.6937ms 304 image/png +2018-09-21 14:34:17.891 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:34:17.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.896 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:34:17.897 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:34:17.904 +03:00 [INF] Executed action /Index in 8.0088ms +2018-09-21 14:34:17.905 +03:00 [INF] Request finished in 14.0686ms 200 text/html; charset=utf-8 +2018-09-21 14:34:17.947 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:34:17.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.948 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.949 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:34:17.949 +03:00 [INF] Request finished in 2.5052ms 304 text/css +2018-09-21 14:34:17.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:34:17.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.951 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:34:17.951 +03:00 [INF] Request finished in 0.8055ms 304 text/css +2018-09-21 14:34:17.964 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:34:17.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:34:17.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.965 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.965 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:34:17.966 +03:00 [INF] Request finished in 1.5864ms 304 text/css +2018-09-21 14:34:17.966 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:34:17.966 +03:00 [INF] Request finished in 1.7262ms 304 text/css +2018-09-21 14:34:17.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:34:17.966 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:17.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:17.967 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:34:17.967 +03:00 [INF] Request finished in 0.7876ms 304 text/css +2018-09-21 14:34:18.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:34:18.083 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.084 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.085 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:34:18.085 +03:00 [INF] Request finished in 2.2057ms 304 application/javascript +2018-09-21 14:34:18.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:34:18.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.100 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.101 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:34:18.101 +03:00 [INF] Request finished in 1.0139ms 304 application/javascript +2018-09-21 14:34:18.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:34:18.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.101 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:34:18.102 +03:00 [INF] Request finished in 0.6051ms 304 application/javascript +2018-09-21 14:34:18.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:34:18.113 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.115 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:34:18.115 +03:00 [INF] Request finished in 2.7391ms 304 application/javascript +2018-09-21 14:34:18.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:34:18.122 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:34:18.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.122 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.122 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:34:18.122 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:34:18.122 +03:00 [INF] Request finished in 0.7695ms 304 application/javascript +2018-09-21 14:34:18.122 +03:00 [INF] Request finished in 0.7513ms 304 application/javascript +2018-09-21 14:34:18.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:34:18.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.129 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.129 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:34:18.129 +03:00 [INF] Request finished in 1.0639ms 304 application/javascript +2018-09-21 14:34:18.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:34:18.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.133 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.133 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:34:18.134 +03:00 [INF] Request finished in 2.2918ms 304 application/javascript +2018-09-21 14:34:18.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:34:18.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.135 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.135 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:34:18.136 +03:00 [INF] Request finished in 0.9302ms 304 application/javascript +2018-09-21 14:34:18.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:34:18.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.140 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.141 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:34:18.141 +03:00 [INF] Request finished in 2.1406ms 304 application/javascript +2018-09-21 14:34:18.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:34:18.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.145 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:34:18.146 +03:00 [INF] Request finished in 1.3165ms 304 application/javascript +2018-09-21 14:34:18.146 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:34:18.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.147 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:34:18.147 +03:00 [INF] Request finished in 1.2187ms 304 application/javascript +2018-09-21 14:34:18.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:34:18.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.148 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.148 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:34:18.148 +03:00 [INF] Request finished in 0.887ms 304 application/javascript +2018-09-21 14:34:18.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:34:18.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.162 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.163 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:34:18.163 +03:00 [INF] Request finished in 1.9589ms 304 application/javascript +2018-09-21 14:34:18.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:34:18.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.178 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:34:18.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.179 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:18.180 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:34:18.180 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:34:18.181 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:34:18.181 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2896ms. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.181 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5741ms +2018-09-21 14:34:18.181 +03:00 [INF] Request finished in 3.0131ms 200 text/plain; charset=utf-8 +2018-09-21 14:34:18.181 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.182 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.183 +03:00 [INF] Authorization failed. +2018-09-21 14:34:18.186 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.7736ms. +2018-09-21 14:34:18.186 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:34:18.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.5229ms +2018-09-21 14:34:18.186 +03:00 [INF] Request finished in 8.2861ms 200 text/plain; charset=utf-8 +2018-09-21 14:34:18.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:34:18.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:18.870 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.212 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:34:19.217 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:34:19.293 +03:00 [INF] Executed action /Blog/Posts/Index in 80.3193ms +2018-09-21 14:34:19.293 +03:00 [INF] Request finished in 422.9942ms 200 text/html; charset=utf-8 +2018-09-21 14:34:19.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:34:19.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.343 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-21 14:34:19.343 +03:00 [INF] Request finished in 1.3777ms 200 text/css +2018-09-21 14:34:19.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:34:19.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.347 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-21 14:34:19.347 +03:00 [INF] Request finished in 1.4848ms 200 text/css +2018-09-21 14:34:19.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:34:19.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.356 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-21 14:34:19.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-21 14:34:19.356 +03:00 [INF] Request finished in 3.149ms 200 text/css +2018-09-21 14:34:19.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.362 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-21 14:34:19.363 +03:00 [INF] Request finished in 7.1165ms 304 text/css +2018-09-21 14:34:19.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:34:19.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.416 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:34:19.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:34:19.417 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:34:19.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.417 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.418 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1063ms. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.419 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3037ms +2018-09-21 14:34:19.419 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Request finished in 2.6565ms 200 text/plain; charset=utf-8 +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.420 +03:00 [INF] Authorization failed. +2018-09-21 14:34:19.423 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.3881000000000006ms. +2018-09-21 14:34:19.423 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:34:19.424 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.3506ms +2018-09-21 14:34:19.424 +03:00 [INF] Request finished in 9.1693ms 200 text/plain; charset=utf-8 +2018-09-21 14:34:19.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:34:19.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:34:19.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:34:19.435 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 14:34:19.435 +03:00 [INF] Request finished in 1.0018ms 304 application/javascript +2018-09-21 14:35:47.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-21 14:35:47.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.759 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-21 14:35:47.760 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-21 14:35:47.767 +03:00 [INF] Executed action /Index in 7.4726000000000008ms +2018-09-21 14:35:47.767 +03:00 [INF] Request finished in 8.9696ms 200 text/html; charset=utf-8 +2018-09-21 14:35:47.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-21 14:35:47.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.802 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-21 14:35:47.803 +03:00 [INF] Request finished in 3.3236ms 304 text/css +2018-09-21 14:35:47.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-21 14:35:47.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-21 14:35:47.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.805 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-21 14:35:47.805 +03:00 [INF] Request finished in 1.7591ms 304 text/css +2018-09-21 14:35:47.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.806 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.807 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-21 14:35:47.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-21 14:35:47.807 +03:00 [INF] Request finished in 3.1198ms 304 text/css +2018-09-21 14:35:47.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.808 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-21 14:35:47.809 +03:00 [INF] Request finished in 3.4938ms 304 text/css +2018-09-21 14:35:47.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-21 14:35:47.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.829 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-21 14:35:47.829 +03:00 [INF] Request finished in 2.3109ms 304 text/css +2018-09-21 14:35:47.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-21 14:35:47.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.835 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-21 14:35:47.835 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-21 14:35:47.835 +03:00 [INF] Request finished in 0.6022ms 304 application/javascript +2018-09-21 14:35:47.835 +03:00 [INF] Request finished in 0.7118ms 304 application/javascript +2018-09-21 14:35:47.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.836 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-21 14:35:47.836 +03:00 [INF] Request finished in 0.5717ms 304 application/javascript +2018-09-21 14:35:47.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-21 14:35:47.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.838 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-21 14:35:47.838 +03:00 [INF] Request finished in 1.5127ms 304 application/javascript +2018-09-21 14:35:47.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-21 14:35:47.838 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.839 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-21 14:35:47.839 +03:00 [INF] Request finished in 0.8289ms 304 application/javascript +2018-09-21 14:35:47.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-21 14:35:47.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.852 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-21 14:35:47.852 +03:00 [INF] Request finished in 1.422ms 304 application/javascript +2018-09-21 14:35:47.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-21 14:35:47.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-21 14:35:47.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.858 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-21 14:35:47.858 +03:00 [INF] Request finished in 1.01ms 304 application/javascript +2018-09-21 14:35:47.858 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-21 14:35:47.858 +03:00 [INF] Request finished in 1.5211ms 304 application/javascript +2018-09-21 14:35:47.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-21 14:35:47.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.864 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.865 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-21 14:35:47.865 +03:00 [INF] Request finished in 1.1891ms 304 application/javascript +2018-09-21 14:35:47.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-21 14:35:47.880 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.881 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.881 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-21 14:35:47.881 +03:00 [INF] Request finished in 2.0412ms 304 application/javascript +2018-09-21 14:35:47.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-21 14:35:47.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.882 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.883 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-21 14:35:47.883 +03:00 [INF] Request finished in 1.3658ms 304 application/javascript +2018-09-21 14:35:47.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-21 14:35:47.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.889 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.892 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-21 14:35:47.892 +03:00 [INF] Request finished in 4.6002ms 304 application/javascript +2018-09-21 14:35:47.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-21 14:35:47.901 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-21 14:35:47.902 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-21 14:35:47.902 +03:00 [INF] Request finished in 1.2881ms 304 application/javascript +2018-09-21 14:35:47.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.904 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-21 14:35:47.904 +03:00 [INF] Request finished in 1.7077ms 304 application/javascript +2018-09-21 14:35:47.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:35:47.928 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.930 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:35:47.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:35:47.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:47.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:47.933 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:35:47.934 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:35:47.934 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:35:47.934 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1655ms. +2018-09-21 14:35:47.934 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:35:47.934 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.935 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.935 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6264ms +2018-09-21 14:35:47.935 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.935 +03:00 [INF] Request finished in 4.6266ms 200 text/plain; charset=utf-8 +2018-09-21 14:35:47.935 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.935 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.935 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.936 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.936 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.936 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.937 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.938 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.938 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.938 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.938 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.939 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.940 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.940 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.940 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.940 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.941 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.941 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.941 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.941 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.941 +03:00 [INF] Authorization failed. +2018-09-21 14:35:47.945 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 11.2979ms. +2018-09-21 14:35:47.946 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:35:47.946 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 16.160500000000003ms +2018-09-21 14:35:47.946 +03:00 [INF] Request finished in 18.2247ms 200 text/plain; charset=utf-8 +2018-09-21 14:35:50.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-21 14:35:50.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.630 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-21 14:35:50.637 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-21 14:35:50.677 +03:00 [INF] Executed action /Blog/Posts/Index in 46.499ms +2018-09-21 14:35:50.677 +03:00 [INF] Request finished in 48.1004ms 200 text/html; charset=utf-8 +2018-09-21 14:35:50.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-21 14:35:50.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.733 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-21 14:35:50.733 +03:00 [INF] Request finished in 1.4542ms 304 text/css +2018-09-21 14:35:50.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-21 14:35:50.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.735 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-21 14:35:50.735 +03:00 [INF] Request finished in 0.7791ms 304 text/css +2018-09-21 14:35:50.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-21 14:35:50.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.737 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-21 14:35:50.737 +03:00 [INF] Request finished in 0.9659ms 304 text/css +2018-09-21 14:35:50.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-21 14:35:50.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.849 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.850 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:35:50.855 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-21 14:35:50.856 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.856 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.856 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.856 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.856 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.857 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.857 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-21 14:35:50.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.859 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.859 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-21 14:35:50.860 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.860 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.860 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-21 14:35:50.860 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.860 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.860 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1317ms. +2018-09-21 14:35:50.861 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:35:50.861 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2708000000000002ms +2018-09-21 14:35:50.861 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.861 +03:00 [INF] Request finished in 3.2761ms 200 text/plain; charset=utf-8 +2018-09-21 14:35:50.861 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.861 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.861 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.861 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.862 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.863 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.863 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.863 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.863 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.863 +03:00 [INF] Authorization failed. +2018-09-21 14:35:50.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.0781000000000009ms. +2018-09-21 14:35:50.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-21 14:35:50.866 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 15.3343ms +2018-09-21 14:35:50.866 +03:00 [INF] Request finished in 16.824ms 200 text/plain; charset=utf-8 +2018-09-21 14:35:50.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-21 14:35:50.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-21 14:35:50.868 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-21 14:35:50.868 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-21 14:35:50.868 +03:00 [INF] Request finished in 0.9969ms 304 application/javascript +2018-09-24 09:27:48.720 +03:00 [INF] Loaded modules: +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 09:27:48.735 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 09:27:48.736 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 09:27:48.737 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 09:27:48.738 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 09:27:48.738 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 09:27:48.738 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 09:27:50.396 +03:00 [INF] Initialized all modules. +2018-09-24 09:27:50.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 09:27:50.640 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:50.644 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:52.798 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 09:27:52.823 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 09:27:54.158 +03:00 [INF] Executed action /Index in 1354.4599ms +2018-09-24 09:27:54.175 +03:00 [INF] Request finished in 3566.208ms 200 text/html; charset=utf-8 +2018-09-24 09:27:54.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 09:27:54.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 09:27:54.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.233 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 09:27:54.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.241 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 09:27:54.241 +03:00 [INF] Request finished in 2.0311ms 200 text/css +2018-09-24 09:27:54.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 09:27:54.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 09:27:54.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 09:27:54.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.250 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 09:27:54.250 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 09:27:54.250 +03:00 [INF] Request finished in 18.6555ms 200 text/css +2018-09-24 09:27:54.250 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 09:27:54.250 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 09:27:54.250 +03:00 [INF] Request finished in 6.8568ms 200 text/css +2018-09-24 09:27:54.250 +03:00 [INF] Request finished in 4.9174ms 200 text/css +2018-09-24 09:27:54.250 +03:00 [INF] Request finished in 8.5951ms 200 text/css +2018-09-24 09:27:54.256 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 09:27:54.256 +03:00 [INF] Request finished in 33.2664ms 200 text/css +2018-09-24 09:27:54.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 09:27:54.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.343 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 09:27:54.345 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-24 09:27:54.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.346 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-24 09:27:54.348 +03:00 [INF] Request finished in 6.5906ms 304 application/javascript +2018-09-24 09:27:54.348 +03:00 [INF] Request finished in 3.6651ms 304 application/javascript +2018-09-24 09:27:54.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 09:27:54.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.349 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-24 09:27:54.350 +03:00 [INF] Request finished in 0.8369ms 304 application/javascript +2018-09-24 09:27:54.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 09:27:54.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.356 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-24 09:27:54.356 +03:00 [INF] Request finished in 1.1629ms 304 application/javascript +2018-09-24 09:27:54.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 09:27:54.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.359 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-24 09:27:54.359 +03:00 [INF] Request finished in 1.0977ms 304 application/javascript +2018-09-24 09:27:54.360 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 09:27:54.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.361 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-24 09:27:54.362 +03:00 [INF] Request finished in 1.4364ms 304 application/javascript +2018-09-24 09:27:54.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 09:27:54.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.363 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-24 09:27:54.363 +03:00 [INF] Request finished in 0.8326ms 304 application/javascript +2018-09-24 09:27:54.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 09:27:54.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.366 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-24 09:27:54.366 +03:00 [INF] Request finished in 0.6894ms 304 application/javascript +2018-09-24 09:27:54.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 09:27:54.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.368 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-24 09:27:54.371 +03:00 [INF] Request finished in 3.5551ms 304 application/javascript +2018-09-24 09:27:54.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 09:27:54.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.375 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-24 09:27:54.376 +03:00 [INF] Request finished in 1.9478ms 304 application/javascript +2018-09-24 09:27:54.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 09:27:54.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 09:27:54.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.380 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-24 09:27:54.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.380 +03:00 [INF] Request finished in 2.532ms 304 application/javascript +2018-09-24 09:27:54.380 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-24 09:27:54.381 +03:00 [INF] Request finished in 2.553ms 304 application/javascript +2018-09-24 09:27:54.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 09:27:54.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.385 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-24 09:27:54.385 +03:00 [INF] Request finished in 1.5397ms 304 application/javascript +2018-09-24 09:27:54.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 09:27:54.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.388 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-24 09:27:54.388 +03:00 [INF] Request finished in 1.0468ms 304 application/javascript +2018-09-24 09:27:54.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 09:27:54.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.397 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-24 09:27:54.397 +03:00 [INF] Request finished in 1.17ms 304 application/javascript +2018-09-24 09:27:54.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 09:27:54.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.407 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 09:27:54.407 +03:00 [INF] Request finished in 2.3636ms 200 application/javascript +2018-09-24 09:27:54.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 09:27:54.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 09:27:54.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 09:27:54.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:54.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:27:54.425 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-09-24 09:27:54.425 +03:00 [INF] Request finished in 0.9085ms 304 font/woff2 +2018-09-24 09:27:54.433 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:27:54.435 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:27:54.482 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 09:27:54.486 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 09:27:54.514 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.515 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.543 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.544 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.545 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.545 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.545 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.545 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.545 +03:00 [INF] Authorization failed. +2018-09-24 09:27:54.561 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 75.6901ms. +2018-09-24 09:27:54.566 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:27:54.567 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 132.3175ms +2018-09-24 09:27:54.568 +03:00 [INF] Request finished in 155.8266ms 200 text/plain; charset=utf-8 +2018-09-24 09:27:54.580 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 93.388100000000009ms. +2018-09-24 09:27:54.580 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:27:54.581 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 147.07080000000002ms +2018-09-24 09:27:54.581 +03:00 [INF] Request finished in 171.2554ms 200 text/plain; charset=utf-8 +2018-09-24 09:27:59.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-24 09:27:59.819 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:27:59.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:00.199 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 09:28:00.376 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 09:28:01.180 +03:00 [INF] Executed action /Blog/Posts/Index in 981.1176ms +2018-09-24 09:28:01.180 +03:00 [INF] Request finished in 1361.1849ms 200 text/html; charset=utf-8 +2018-09-24 09:28:01.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 09:28:01.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.215 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 09:28:01.215 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-24 09:28:01.215 +03:00 [INF] Request finished in 1.3289ms 304 text/css +2018-09-24 09:28:01.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.216 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-24 09:28:01.216 +03:00 [INF] Request finished in 1.2845ms 304 text/css +2018-09-24 09:28:01.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 09:28:01.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.217 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.217 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-24 09:28:01.217 +03:00 [INF] Request finished in 0.8397ms 304 text/css +2018-09-24 09:28:01.219 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 09:28:01.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.221 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.222 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-24 09:28:01.222 +03:00 [INF] Request finished in 2.698ms 304 text/css +2018-09-24 09:28:01.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 09:28:01.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.229 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-24 09:28:01.229 +03:00 [INF] Request finished in 0.9176ms 304 text/css +2018-09-24 09:28:01.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-24 09:28:01.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.240 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-24 09:28:01.241 +03:00 [INF] Request finished in 0.9673ms 304 text/css +2018-09-24 09:28:01.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-24 09:28:01.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.245 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-24 09:28:01.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.245 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.246 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-24 09:28:01.246 +03:00 [INF] Request finished in 3.2807ms 304 text/css +2018-09-24 09:28:01.246 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-24 09:28:01.246 +03:00 [INF] Request finished in 0.6344ms 304 text/css +2018-09-24 09:28:01.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-24 09:28:01.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.248 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-24 09:28:01.248 +03:00 [INF] Request finished in 1.3269ms 304 text/css +2018-09-24 09:28:01.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/839a3504c77b9862bf4d39e8db23a971.jpg +2018-09-24 09:28:01.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.257 +03:00 [INF] The file /files/839a3504c77b9862bf4d39e8db23a971.jpg was not modified +2018-09-24 09:28:01.261 +03:00 [INF] Request finished in 5.3858ms 304 image/jpeg +2018-09-24 09:28:01.316 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 09:28:01.317 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.317 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.318 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:28:01.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 09:28:01.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.320 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 09:28:01.321 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.321 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.321 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.322 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.322 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.322 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.322 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.322 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.323 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.324 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.325 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.325 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.325 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 09:28:01.325 +03:00 [INF] Authorization failed. +2018-09-24 09:28:01.325 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.4937ms. +2018-09-24 09:28:01.326 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:28:01.327 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.3886000000000003ms +2018-09-24 09:28:01.328 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.5621ms. +2018-09-24 09:28:01.328 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:28:01.328 +03:00 [INF] Request finished in 9.8132ms 200 text/plain; charset=utf-8 +2018-09-24 09:28:01.329 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.415000000000001ms +2018-09-24 09:28:01.329 +03:00 [INF] Request finished in 13.4121ms 200 text/plain; charset=utf-8 +2018-09-24 09:28:01.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-24 09:28:01.330 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.331 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.332 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-24 09:28:01.332 +03:00 [INF] Request finished in 2.4047ms 304 application/javascript +2018-09-24 09:28:01.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-24 09:28:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.333 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-24 09:28:01.334 +03:00 [INF] Request finished in 1.3055ms 304 application/javascript +2018-09-24 09:28:01.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-24 09:28:01.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:01.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:01.345 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-24 09:28:01.346 +03:00 [INF] Request finished in 1.5847ms 304 application/javascript +2018-09-24 09:28:50.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 09:28:50.051 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:50.052 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:50.053 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 09:28:50.053 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 09:28:50.064 +03:00 [INF] Executed action /Index in 10.8909ms +2018-09-24 09:28:50.064 +03:00 [INF] Request finished in 12.6273ms 200 text/html; charset=utf-8 +2018-09-24 09:28:50.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 09:28:50.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:50.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:50.254 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:28:50.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 09:28:50.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:28:50.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:28:50.255 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 09:28:50.256 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.257 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:28:50.257 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.258 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.259 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 09:28:50.259 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17450000000000002ms. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:28:50.260 +03:00 [INF] Authorization failed. +2018-09-24 09:28:50.260 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4759ms +2018-09-24 09:28:50.260 +03:00 [INF] Request finished in 5.3014ms 200 text/plain; charset=utf-8 +2018-09-24 09:28:50.262 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.1282000000000005ms. +2018-09-24 09:28:50.263 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:28:50.263 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.6301ms +2018-09-24 09:28:50.263 +03:00 [INF] Request finished in 10.493ms 200 text/plain; charset=utf-8 +2018-09-24 09:29:50.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 09:29:50.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:50.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:50.904 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 09:29:50.905 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 09:29:51.200 +03:00 [INF] Executed action /Index in 295.0373ms +2018-09-24 09:29:51.200 +03:00 [INF] Request finished in 303.8174ms 200 text/html; charset=utf-8 +2018-09-24 09:29:51.236 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 09:29:51.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.237 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.238 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-24 09:29:51.238 +03:00 [INF] Request finished in 1.2678ms 304 text/css +2018-09-24 09:29:51.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 09:29:51.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.238 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 09:29:51.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.239 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-24 09:29:51.239 +03:00 [INF] Request finished in 0.9021ms 304 text/css +2018-09-24 09:29:51.239 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-24 09:29:51.239 +03:00 [INF] Request finished in 0.6015ms 304 text/css +2018-09-24 09:29:51.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 09:29:51.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.242 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-24 09:29:51.243 +03:00 [INF] Request finished in 3.12ms 304 text/css +2018-09-24 09:29:51.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 09:29:51.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.254 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-24 09:29:51.254 +03:00 [INF] Request finished in 2.4709ms 304 text/css +2018-09-24 09:29:51.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 09:29:51.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 09:29:51.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.256 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-24 09:29:51.256 +03:00 [INF] Request finished in 1.4111ms 304 text/css +2018-09-24 09:29:51.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.257 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.257 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-24 09:29:51.257 +03:00 [INF] Request finished in 1.8566ms 304 text/css +2018-09-24 09:29:51.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 09:29:51.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.264 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-24 09:29:51.264 +03:00 [INF] Request finished in 1.476ms 304 text/css +2018-09-24 09:29:51.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 09:29:51.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.274 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-24 09:29:51.274 +03:00 [INF] Request finished in 2.3523ms 304 application/javascript +2018-09-24 09:29:51.276 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 09:29:51.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.276 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.276 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-24 09:29:51.276 +03:00 [INF] Request finished in 0.8413ms 304 application/javascript +2018-09-24 09:29:51.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 09:29:51.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.288 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-24 09:29:51.288 +03:00 [INF] Request finished in 0.8664ms 304 application/javascript +2018-09-24 09:29:51.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 09:29:51.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.295 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.295 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-24 09:29:51.295 +03:00 [INF] Request finished in 1.4712ms 304 application/javascript +2018-09-24 09:29:51.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 09:29:51.299 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.300 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-24 09:29:51.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 09:29:51.300 +03:00 [INF] Request finished in 0.9801ms 304 application/javascript +2018-09-24 09:29:51.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.300 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.301 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-24 09:29:51.306 +03:00 [INF] Request finished in 3.7625ms 304 application/javascript +2018-09-24 09:29:51.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 09:29:51.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.309 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-24 09:29:51.309 +03:00 [INF] Request finished in 1.2373ms 304 application/javascript +2018-09-24 09:29:51.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 09:29:51.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.320 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-24 09:29:51.320 +03:00 [INF] Request finished in 2.7094ms 304 application/javascript +2018-09-24 09:29:51.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 09:29:51.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 09:29:51.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.321 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-24 09:29:51.321 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-24 09:29:51.321 +03:00 [INF] Request finished in 1.0966ms 304 application/javascript +2018-09-24 09:29:51.321 +03:00 [INF] Request finished in 1.027ms 304 application/javascript +2018-09-24 09:29:51.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 09:29:51.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 09:29:51.326 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-24 09:29:51.326 +03:00 [INF] Request finished in 1.917ms 304 application/javascript +2018-09-24 09:29:51.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.327 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-24 09:29:51.327 +03:00 [INF] Request finished in 1.6821ms 304 application/javascript +2018-09-24 09:29:51.340 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 09:29:51.340 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.341 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 09:29:51.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.345 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-24 09:29:51.345 +03:00 [INF] Request finished in 5.413ms 304 application/javascript +2018-09-24 09:29:51.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.345 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-24 09:29:51.345 +03:00 [INF] Request finished in 1.3748ms 304 application/javascript +2018-09-24 09:29:51.351 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 09:29:51.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.352 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.352 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-24 09:29:51.352 +03:00 [INF] Request finished in 1.3854ms 304 application/javascript +2018-09-24 09:29:51.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 09:29:51.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.355 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.356 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-24 09:29:51.357 +03:00 [INF] Request finished in 2.2319ms 304 application/javascript +2018-09-24 09:29:51.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 09:29:51.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.363 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-24 09:29:51.363 +03:00 [INF] Request finished in 2.0689ms 304 application/javascript +2018-09-24 09:29:51.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 09:29:51.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.366 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.367 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-24 09:29:51.367 +03:00 [INF] Request finished in 1.9505ms 304 application/javascript +2018-09-24 09:29:51.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 09:29:51.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.372 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-24 09:29:51.372 +03:00 [INF] Request finished in 1.7595ms 304 application/javascript +2018-09-24 09:29:51.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 09:29:51.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.380 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-24 09:29:51.382 +03:00 [INF] Request finished in 3.9593ms 304 application/javascript +2018-09-24 09:29:51.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 09:29:51.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.389 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-24 09:29:51.389 +03:00 [INF] Request finished in 1.0639ms 304 application/javascript +2018-09-24 09:29:51.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 09:29:51.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.392 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 09:29:51.392 +03:00 [INF] Request finished in 2.5822ms 304 application/javascript +2018-09-24 09:29:51.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 09:29:51.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.396 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 09:29:51.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.401 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:29:51.402 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 09:29:51.403 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3511ms. +2018-09-24 09:29:51.403 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:29:51.404 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6218ms +2018-09-24 09:29:51.404 +03:00 [INF] Request finished in 5.7097ms 200 text/plain; charset=utf-8 +2018-09-24 09:29:51.407 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:29:51.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 09:29:51.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.408 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-24 09:29:51.408 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 09:29:51.408 +03:00 [INF] Request finished in 0.7395ms 304 application/javascript +2018-09-24 09:29:51.408 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.408 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.408 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.408 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.408 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.409 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.410 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Authorization failed. +2018-09-24 09:29:51.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 09:29:51.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.412 +03:00 [INF] The file /js/vs.js was not modified +2018-09-24 09:29:51.412 +03:00 [INF] Request finished in 1.1686ms 304 application/javascript +2018-09-24 09:29:51.416 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.0177ms. +2018-09-24 09:29:51.416 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:29:51.416 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.3904ms +2018-09-24 09:29:51.417 +03:00 [INF] Request finished in 22.322ms 200 text/plain; charset=utf-8 +2018-09-24 09:29:51.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 09:29:51.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.425 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-24 09:29:51.425 +03:00 [INF] Request finished in 1.9544ms 304 image/svg+xml +2018-09-24 09:29:51.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-24 09:29:51.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.428 +03:00 [INF] The file /img/modular.png was not modified +2018-09-24 09:29:51.429 +03:00 [INF] Request finished in 0.9409ms 304 image/png +2018-09-24 09:29:51.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-24 09:29:51.429 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.432 +03:00 [INF] The file /assets/icons/1-modular.png was not modified +2018-09-24 09:29:51.432 +03:00 [INF] Request finished in 3.2772ms 304 image/png +2018-09-24 09:29:51.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-24 09:29:51.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.439 +03:00 [INF] The file /assets/icons/2-micro.png was not modified +2018-09-24 09:29:51.439 +03:00 [INF] Request finished in 1.4027ms 304 image/png +2018-09-24 09:29:51.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-24 09:29:51.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.441 +03:00 [INF] The file /assets/icons/3-ddd.png was not modified +2018-09-24 09:29:51.441 +03:00 [INF] Request finished in 1.5152ms 304 image/png +2018-09-24 09:29:51.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-24 09:29:51.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.445 +03:00 [INF] The file /assets/icons/4-autho.png was not modified +2018-09-24 09:29:51.445 +03:00 [INF] Request finished in 1.0908ms 304 image/png +2018-09-24 09:29:51.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-24 09:29:51.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.449 +03:00 [INF] The file /assets/icons/5-multi-tenancy.png was not modified +2018-09-24 09:29:51.449 +03:00 [INF] Request finished in 1.5717ms 304 image/png +2018-09-24 09:29:51.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-24 09:29:51.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.450 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.450 +03:00 [INF] The file /assets/icons/cross.png was not modified +2018-09-24 09:29:51.450 +03:00 [INF] Request finished in 0.698ms 304 image/png +2018-09-24 09:29:51.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-24 09:29:51.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.452 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.453 +03:00 [INF] The file /assets/icons/bundle.png was not modified +2018-09-24 09:29:51.453 +03:00 [INF] Request finished in 1.5842ms 304 image/png +2018-09-24 09:29:51.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-24 09:29:51.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-24 09:29:51.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.461 +03:00 [INF] The file /assets/icons/theming.png was not modified +2018-09-24 09:29:51.461 +03:00 [INF] The file /assets/icons/virtualfile.png was not modified +2018-09-24 09:29:51.461 +03:00 [INF] Request finished in 0.6489ms 304 image/png +2018-09-24 09:29:51.461 +03:00 [INF] Request finished in 0.7283ms 304 image/png +2018-09-24 09:29:51.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-24 09:29:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.464 +03:00 [INF] The file /assets/icons/bg-job.png was not modified +2018-09-24 09:29:51.464 +03:00 [INF] Request finished in 1.5648ms 304 image/png +2018-09-24 09:29:51.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-24 09:29:51.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-24 09:29:51.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.468 +03:00 [INF] The file /assets/icons/custom.png was not modified +2018-09-24 09:29:51.468 +03:00 [INF] Request finished in 1.1448ms 304 image/png +2018-09-24 09:29:51.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.470 +03:00 [INF] The file /assets/icons/request.png was not modified +2018-09-24 09:29:51.470 +03:00 [INF] Request finished in 3.2532ms 304 image/png +2018-09-24 09:29:51.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-24 09:29:51.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-24 09:29:51.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.477 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.477 +03:00 [INF] The file /img/mt-left.png was not modified +2018-09-24 09:29:51.477 +03:00 [INF] Request finished in 1.0412ms 304 image/png +2018-09-24 09:29:51.479 +03:00 [INF] The file /img/multi-tenancy.png was not modified +2018-09-24 09:29:51.479 +03:00 [INF] Request finished in 3.8425ms 304 image/png +2018-09-24 09:29:51.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-24 09:29:51.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-24 09:29:51.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.487 +03:00 [INF] The file /assets/my-image.png was not modified +2018-09-24 09:29:51.487 +03:00 [INF] Request finished in 2.3472ms 304 image/png +2018-09-24 09:29:51.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.489 +03:00 [INF] The file /img/bootstrap.png was not modified +2018-09-24 09:29:51.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-24 09:29:51.489 +03:00 [INF] Request finished in 2.7382ms 304 image/png +2018-09-24 09:29:51.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.491 +03:00 [INF] The file /assets/dynamic.png was not modified +2018-09-24 09:29:51.491 +03:00 [INF] Request finished in 2.0106ms 304 image/png +2018-09-24 09:29:51.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-24 09:29:51.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-24 09:29:51.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.496 +03:00 [INF] The file /assets/tools/17.png was not modified +2018-09-24 09:29:51.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.496 +03:00 [INF] Request finished in 1.2446ms 304 image/png +2018-09-24 09:29:51.496 +03:00 [INF] The file /assets/multiple-db.png was not modified +2018-09-24 09:29:51.496 +03:00 [INF] Request finished in 2.1148ms 304 image/png +2018-09-24 09:29:51.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-24 09:29:51.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.509 +03:00 [INF] The file /assets/tools/18.png was not modified +2018-09-24 09:29:51.510 +03:00 [INF] Request finished in 1.7346ms 304 image/png +2018-09-24 09:29:51.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-24 09:29:51.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.510 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-24 09:29:51.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.511 +03:00 [INF] The file /assets/familiar.png was not modified +2018-09-24 09:29:51.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.511 +03:00 [INF] Request finished in 0.7146ms 304 image/png +2018-09-24 09:29:51.514 +03:00 [INF] The file /assets/tools/1.png was not modified +2018-09-24 09:29:51.515 +03:00 [INF] Request finished in 4.4485ms 304 image/png +2018-09-24 09:29:51.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-24 09:29:51.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.515 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.517 +03:00 [INF] The file /assets/tools/2.png was not modified +2018-09-24 09:29:51.517 +03:00 [INF] Request finished in 1.6795ms 304 image/png +2018-09-24 09:29:51.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-24 09:29:51.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.520 +03:00 [INF] The file /assets/tools/7.png was not modified +2018-09-24 09:29:51.521 +03:00 [INF] Request finished in 3.3151ms 304 image/png +2018-09-24 09:29:51.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-24 09:29:51.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.527 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.528 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-09-24 09:29:51.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-24 09:29:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.529 +03:00 [INF] Request finished in 1.7949ms 304 image/png +2018-09-24 09:29:51.529 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.529 +03:00 [INF] The file /assets/tools/8.png was not modified +2018-09-24 09:29:51.529 +03:00 [INF] Request finished in 1.4594ms 304 image/png +2018-09-24 09:29:51.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-24 09:29:51.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.534 +03:00 [INF] The file /assets/tools/9.png was not modified +2018-09-24 09:29:51.534 +03:00 [INF] Request finished in 0.91ms 304 image/png +2018-09-24 09:29:51.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-24 09:29:51.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.537 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-09-24 09:29:51.537 +03:00 [INF] Request finished in 1.8556ms 304 image/png +2018-09-24 09:29:51.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-24 09:29:51.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.540 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-09-24 09:29:51.540 +03:00 [INF] Request finished in 0.7914ms 304 image/png +2018-09-24 09:29:51.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-24 09:29:51.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-24 09:29:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.547 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-09-24 09:29:51.547 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-09-24 09:29:51.548 +03:00 [INF] Request finished in 0.7635ms 304 image/png +2018-09-24 09:29:51.548 +03:00 [INF] Request finished in 0.8963ms 304 image/png +2018-09-24 09:29:51.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-24 09:29:51.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.551 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.551 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-09-24 09:29:51.551 +03:00 [INF] Request finished in 0.8657ms 304 image/png +2018-09-24 09:29:51.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-24 09:29:51.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.558 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.559 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-09-24 09:29:51.559 +03:00 [INF] Request finished in 0.9295ms 304 image/png +2018-09-24 09:29:51.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 09:29:51.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.562 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-24 09:29:51.562 +03:00 [INF] Request finished in 0.892ms 304 image/png +2018-09-24 09:29:51.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 09:29:51.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.568 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-24 09:29:51.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 09:29:51.568 +03:00 [INF] Request finished in 0.9288ms 304 image/svg+xml +2018-09-24 09:29:51.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.568 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-24 09:29:51.568 +03:00 [INF] Request finished in 0.9075ms 304 image/jpeg +2018-09-24 09:29:51.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 09:29:51.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.700 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-24 09:29:51.701 +03:00 [INF] Request finished in 1.5596ms 304 image/png +2018-09-24 09:29:51.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 09:29:51.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:29:51.702 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:29:51.704 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-24 09:29:51.704 +03:00 [INF] Request finished in 3.0606ms 304 image/png +2018-09-24 09:51:35.471 +03:00 [INF] Loaded modules: +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 09:51:35.486 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 09:51:35.487 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 09:51:35.488 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 09:51:37.314 +03:00 [INF] Initialized all modules. +2018-09-24 09:51:37.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 09:51:37.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:51:37.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:51:39.616 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 09:51:39.633 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 09:51:40.920 +03:00 [INF] Executed action /Index in 1298.6707000000001ms +2018-09-24 09:51:40.940 +03:00 [INF] Request finished in 3342.7294ms 200 text/html; charset=utf-8 +2018-09-24 09:51:41.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 09:51:41.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:51:41.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:51:41.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 09:51:41.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:51:41.092 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:51:41.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 09:51:41.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 09:51:41.096 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 09:51:41.098 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 09:51:41.105 +03:00 [INF] Request finished in 16.1158ms 304 application/javascript +2018-09-24 09:51:41.118 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:51:41.118 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 09:51:41.170 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 09:51:41.174 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 09:51:41.205 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.206 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.221 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.221 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.221 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.222 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.223 +03:00 [INF] Authorization failed. +2018-09-24 09:51:41.259 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.1934ms. +2018-09-24 09:51:41.264 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 94.4546ms. +2018-09-24 09:51:41.267 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:51:41.267 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 09:51:41.268 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 150.17700000000002ms +2018-09-24 09:51:41.268 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 150.2098ms +2018-09-24 09:51:41.269 +03:00 [INF] Request finished in 176.791ms 200 text/plain; charset=utf-8 +2018-09-24 09:51:41.269 +03:00 [INF] Request finished in 173.0815ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:09.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:04:09.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:09.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:09.563 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:04:09.599 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:09.988 +03:00 [INF] Executed action /Blog/Index in 424.8333ms +2018-09-24 10:04:09.989 +03:00 [INF] Request finished in 786.8885ms 200 text/html; charset=utf-8 +2018-09-24 10:04:10.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:04:10.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:10.093 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:10.093 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 10:04:10.095 +03:00 [INF] Request finished in 3.1237ms 304 application/javascript +2018-09-24 10:04:10.096 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:04:10.097 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:10.098 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:10.100 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:10.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:04:10.101 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:10.102 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:04:10.102 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.102 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.103 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Authorization failed. +2018-09-24 10:04:10.104 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:10.105 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:04:10.106 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1952ms. +2018-09-24 10:04:10.106 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:10.106 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.221ms. +2018-09-24 10:04:10.106 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7025000000000001ms +2018-09-24 10:04:10.106 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:10.106 +03:00 [INF] Request finished in 4.9268ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:10.106 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.8974ms +2018-09-24 10:04:10.106 +03:00 [INF] Request finished in 9.9975ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:11.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:04:11.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:11.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:11.696 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:04:11.698 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:11.704 +03:00 [INF] Executed action /Blog/Index in 7.4473ms +2018-09-24 10:04:11.704 +03:00 [INF] Request finished in 9.392ms 200 text/html; charset=utf-8 +2018-09-24 10:04:11.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:04:11.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:11.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:11.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:04:11.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:11.801 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:11.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:11.802 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.802 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:11.802 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.803 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.804 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1558ms. +2018-09-24 10:04:11.804 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.805 +03:00 [INF] Authorization failed. +2018-09-24 10:04:11.805 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:11.805 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2536ms +2018-09-24 10:04:11.805 +03:00 [INF] Request finished in 4.7355ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:11.806 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3201ms. +2018-09-24 10:04:11.806 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:11.807 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.8717000000000006ms +2018-09-24 10:04:11.807 +03:00 [INF] Request finished in 7.6389ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:16.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:04:16.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:16.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:16.755 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:04:16.896 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:16.924 +03:00 [INF] Executed action /Blog/Posts/Index in 169.48760000000001ms +2018-09-24 10:04:16.964 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Blogs.Blog, id: abp + at Volo.Blogging.Blogs.BlogAppService.GetByShortNameAsync(String shortName) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Blogs\BlogAppService.cs:line 50 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.IndexModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Index.cshtml.cs:line 40 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-24 10:04:17.015 +03:00 [INF] Request finished in 587.4426ms 500 text/html; charset=utf-8 +2018-09-24 10:04:17.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:04:17.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:17.035 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:17.037 +03:00 [INF] Request finished in 2.7135ms 404 +2018-09-24 10:04:19.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:04:19.104 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:19.105 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:19.105 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:04:19.107 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:19.111 +03:00 [INF] Executed action /Blog/Index in 5.7304ms +2018-09-24 10:04:19.111 +03:00 [INF] Request finished in 6.9918ms 200 text/html; charset=utf-8 +2018-09-24 10:04:43.237 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:04:43.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.238 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.238 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:04:43.240 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:43.287 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-24 10:04:43.287 +03:00 [INF] Executed action /Blog/Index in 48.6738ms +2018-09-24 10:04:43.287 +03:00 [INF] Request finished in 50.2749ms 302 +2018-09-24 10:04:43.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:04:43.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.303 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.303 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:04:43.307 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:43.423 +03:00 [INF] Executed action /Blog/Posts/Index in 119.3631ms +2018-09-24 10:04:43.423 +03:00 [INF] Request finished in 120.7482ms 200 text/html; charset=utf-8 +2018-09-24 10:04:43.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:04:43.451 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:04:43.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.451 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.452 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-09-24 10:04:43.452 +03:00 [INF] Request finished in 0.8029ms 304 text/css +2018-09-24 10:04:43.452 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-09-24 10:04:43.452 +03:00 [INF] Request finished in 1.1466ms 304 text/css +2018-09-24 10:04:43.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:04:43.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:04:43.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.453 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.455 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-09-24 10:04:43.455 +03:00 [INF] Request finished in 1.8672ms 304 text/css +2018-09-24 10:04:43.455 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-09-24 10:04:43.455 +03:00 [INF] Request finished in 2.0136ms 304 text/css +2018-09-24 10:04:43.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:04:43.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:04:43.464 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-09-24 10:04:43.464 +03:00 [INF] Request finished in 1.9762ms 304 text/css +2018-09-24 10:04:43.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.464 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.465 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-09-24 10:04:43.465 +03:00 [INF] Request finished in 1.7967ms 304 text/css +2018-09-24 10:04:43.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:04:43.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.470 +03:00 [INF] The file /scss/vs.css was not modified +2018-09-24 10:04:43.470 +03:00 [INF] Request finished in 0.8646ms 304 text/css +2018-09-24 10:04:43.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:04:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.471 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-09-24 10:04:43.471 +03:00 [INF] Request finished in 1.0051ms 304 text/css +2018-09-24 10:04:43.472 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-24 10:04:43.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-24 10:04:43.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.475 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.default.min.css was not modified +2018-09-24 10:04:43.475 +03:00 [INF] Request finished in 1.629ms 304 text/css +2018-09-24 10:04:43.477 +03:00 [INF] The file /libs/owl.carousel/assets/owl.carousel.min.css was not modified +2018-09-24 10:04:43.477 +03:00 [INF] Request finished in 5.4726ms 304 text/css +2018-09-24 10:04:43.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-24 10:04:43.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.482 +03:00 [INF] The file /libs/owl.carousel/assets/owl.theme.green.min.css was not modified +2018-09-24 10:04:43.482 +03:00 [INF] Request finished in 1.1754ms 304 text/css +2018-09-24 10:04:43.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636731251186869901 +2018-09-24 10:04:43.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.484 +03:00 [INF] The file /Pages/Blog/Shared/Styles/blog.css was not modified +2018-09-24 10:04:43.484 +03:00 [INF] Request finished in 1.4026ms 304 text/css +2018-09-24 10:04:43.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:04:43.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.489 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.490 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-09-24 10:04:43.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:04:43.490 +03:00 [INF] Request finished in 1.4843ms 304 application/javascript +2018-09-24 10:04:43.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.491 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-09-24 10:04:43.491 +03:00 [INF] Request finished in 0.8777ms 304 application/javascript +2018-09-24 10:04:43.499 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:04:43.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.499 +03:00 [INF] The file /assets/abp-logo-light.svg was not modified +2018-09-24 10:04:43.500 +03:00 [INF] Request finished in 0.7569ms 304 image/svg+xml +2018-09-24 10:04:43.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:04:43.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.500 +03:00 [INF] The file /assets/fork.png was not modified +2018-09-24 10:04:43.500 +03:00 [INF] Request finished in 0.6977ms 304 image/png +2018-09-24 10:04:43.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:04:43.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:04:43.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.508 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-09-24 10:04:43.508 +03:00 [INF] Request finished in 2.659ms 304 image/svg+xml +2018-09-24 10:04:43.508 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-09-24 10:04:43.508 +03:00 [INF] Request finished in 0.9779ms 304 application/javascript +2018-09-24 10:04:43.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:04:43.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.511 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.512 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-09-24 10:04:43.512 +03:00 [INF] Request finished in 1.6002ms 304 application/javascript +2018-09-24 10:04:43.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:04:43.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:04:43.520 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-09-24 10:04:43.520 +03:00 [INF] Request finished in 1.1193ms 304 application/javascript +2018-09-24 10:04:43.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.521 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-09-24 10:04:43.521 +03:00 [INF] Request finished in 0.9495ms 304 application/javascript +2018-09-24 10:04:43.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:04:43.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.524 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-09-24 10:04:43.524 +03:00 [INF] Request finished in 4.2535ms 304 application/javascript +2018-09-24 10:04:43.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:04:43.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.527 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-09-24 10:04:43.527 +03:00 [INF] Request finished in 1.4212ms 304 application/javascript +2018-09-24 10:04:43.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:04:43.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.530 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-09-24 10:04:43.530 +03:00 [INF] Request finished in 2.3524ms 304 application/javascript +2018-09-24 10:04:43.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:04:43.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.536 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-09-24 10:04:43.537 +03:00 [INF] Request finished in 1.3212ms 304 application/javascript +2018-09-24 10:04:43.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:04:43.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.539 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-09-24 10:04:43.539 +03:00 [INF] Request finished in 1.8975ms 304 application/javascript +2018-09-24 10:04:43.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:04:43.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.541 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-09-24 10:04:43.541 +03:00 [INF] Request finished in 0.9053ms 304 application/javascript +2018-09-24 10:04:43.552 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:04:43.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.553 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-09-24 10:04:43.554 +03:00 [INF] Request finished in 1.8052ms 304 application/javascript +2018-09-24 10:04:43.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:04:43.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.557 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-09-24 10:04:43.559 +03:00 [INF] Request finished in 2.3733ms 304 application/javascript +2018-09-24 10:04:43.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:04:43.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:04:43.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.567 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-09-24 10:04:43.567 +03:00 [INF] Request finished in 2.6678ms 304 application/javascript +2018-09-24 10:04:43.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.568 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-09-24 10:04:43.568 +03:00 [INF] Request finished in 2.3999ms 304 application/javascript +2018-09-24 10:04:43.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:04:43.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.571 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-09-24 10:04:43.571 +03:00 [INF] Request finished in 2.0705ms 304 application/javascript +2018-09-24 10:04:43.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:04:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:04:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.585 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-09-24 10:04:43.585 +03:00 [INF] Request finished in 1.3697ms 304 application/javascript +2018-09-24 10:04:43.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:04:43.586 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-09-24 10:04:43.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.586 +03:00 [INF] Request finished in 1.0015ms 304 application/javascript +2018-09-24 10:04:43.586 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.587 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-09-24 10:04:43.587 +03:00 [INF] Request finished in 1.3954ms 304 application/javascript +2018-09-24 10:04:43.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:04:43.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.593 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.594 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-09-24 10:04:43.594 +03:00 [INF] Request finished in 2.5136ms 304 application/javascript +2018-09-24 10:04:43.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:04:43.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.599 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 10:04:43.599 +03:00 [INF] Request finished in 1.2015ms 304 application/javascript +2018-09-24 10:04:43.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:04:43.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:04:43.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.602 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.603 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:43.603 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:43.604 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:04:43.604 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:04:43.604 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1101ms. +2018-09-24 10:04:43.604 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2185000000000001ms +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Request finished in 4.7767ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.605 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.606 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [INF] Authorization failed. +2018-09-24 10:04:43.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.607 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.608 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-09-24 10:04:43.608 +03:00 [INF] Request finished in 1.0214ms 304 application/javascript +2018-09-24 10:04:43.611 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.8345ms. +2018-09-24 10:04:43.611 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:43.612 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.2807000000000013ms +2018-09-24 10:04:43.612 +03:00 [INF] Request finished in 12.7101ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:43.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:04:43.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.619 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.619 +03:00 [INF] The file /js/vs.js was not modified +2018-09-24 10:04:43.620 +03:00 [INF] Request finished in 1.9166ms 304 application/javascript +2018-09-24 10:04:43.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636728507195132277 +2018-09-24 10:04:43.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.625 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.626 +03:00 [INF] The file /Pages/Blog/Posts/detail.js was not modified +2018-09-24 10:04:43.627 +03:00 [INF] Request finished in 1.6653ms 304 application/javascript +2018-09-24 10:04:43.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-24 10:04:43.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.628 +03:00 [INF] The file /libs/owl.carousel/owl.carousel.min.js was not modified +2018-09-24 10:04:43.629 +03:00 [INF] Request finished in 0.9042ms 304 application/javascript +2018-09-24 10:04:43.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-09-24 10:04:43.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.631 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-09-24 10:04:43.631 +03:00 [INF] Request finished in 1.8405ms 304 application/javascript +2018-09-24 10:04:43.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:04:43.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.634 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.634 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-09-24 10:04:43.634 +03:00 [INF] Request finished in 0.867ms 304 image/jpeg +2018-09-24 10:04:43.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:04:43.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.801 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-09-24 10:04:43.801 +03:00 [INF] Request finished in 0.7396ms 304 image/png +2018-09-24 10:04:43.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 10:04:43.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:43.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:43.803 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-09-24 10:04:43.803 +03:00 [INF] Request finished in 0.8ms 304 image/png +2018-09-24 10:04:57.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/ +2018-09-24 10:04:57.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:57.255 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:57.256 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:04:57.258 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:57.260 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Posts/Index. +2018-09-24 10:04:57.261 +03:00 [INF] Executed action /Blog/Index in 4.5137ms +2018-09-24 10:04:57.261 +03:00 [INF] Request finished in 6.1689ms 302 +2018-09-24 10:04:57.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:04:57.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:57.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:57.270 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:04:57.274 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:04:57.283 +03:00 [INF] Executed action /Blog/Posts/Index in 13.727300000000001ms +2018-09-24 10:04:57.284 +03:00 [INF] Request finished in 14.6429ms 200 text/html; charset=utf-8 +2018-09-24 10:04:57.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:04:57.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:57.387 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:57.388 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:57.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:04:57.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:04:57.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:04:57.389 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:04:57.389 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.390 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.391 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2561ms. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.392 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7416ms +2018-09-24 10:04:57.392 +03:00 [INF] Request finished in 4.3323ms 200 text/plain; charset=utf-8 +2018-09-24 10:04:57.392 +03:00 [INF] Authorization failed. +2018-09-24 10:04:57.394 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.0755ms. +2018-09-24 10:04:57.394 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:04:57.395 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.652ms +2018-09-24 10:04:57.395 +03:00 [INF] Request finished in 9.1413ms 200 text/plain; charset=utf-8 +2018-09-24 10:05:52.145 +03:00 [INF] Loaded modules: +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:05:52.165 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:05:52.166 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:05:52.167 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:05:53.905 +03:00 [INF] Initialized all modules. +2018-09-24 10:05:54.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:05:54.065 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:54.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:56.236 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:05:56.256 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:05:57.770 +03:00 [INF] Executed action /Index in 1526.9936ms +2018-09-24 10:05:57.795 +03:00 [INF] Request finished in 3756.8691ms 200 text/html; charset=utf-8 +2018-09-24 10:05:57.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:05:57.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.810 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:05:57.810 +03:00 [INF] Request finished in 10.6225ms 200 text/css +2018-09-24 10:05:57.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:05:57.926 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.927 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.928 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:05:57.929 +03:00 [INF] Request finished in 4.0576ms 200 application/javascript +2018-09-24 10:05:57.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:05:57.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.930 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.930 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:05:57.931 +03:00 [INF] Request finished in 1.1151ms 200 application/javascript +2018-09-24 10:05:57.933 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:05:57.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.933 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.934 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:05:57.935 +03:00 [INF] Request finished in 2.0899ms 200 application/javascript +2018-09-24 10:05:57.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:05:57.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.941 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:05:57.941 +03:00 [INF] Request finished in 0.8793ms 200 application/javascript +2018-09-24 10:05:57.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:05:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:05:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.959 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:05:57.959 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.959 +03:00 [INF] Request finished in 0.9298ms 200 application/javascript +2018-09-24 10:05:57.960 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:05:57.960 +03:00 [INF] Request finished in 1.2305ms 200 application/javascript +2018-09-24 10:05:57.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:05:57.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.960 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.961 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:05:57.961 +03:00 [INF] Request finished in 1.2229ms 200 application/javascript +2018-09-24 10:05:57.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:05:57.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:05:57.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:57.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:57.986 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:05:57.989 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:05:58.036 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:05:58.041 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:05:58.074 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.075 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.105 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.106 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.106 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.106 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.106 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.107 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.108 +03:00 [INF] Authorization failed. +2018-09-24 10:05:58.145 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 97.528900000000007ms. +2018-09-24 10:05:58.148 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 107.21050000000001ms. +2018-09-24 10:05:58.151 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:05:58.151 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:05:58.152 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 165.7161ms +2018-09-24 10:05:58.152 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 163.2442ms +2018-09-24 10:05:58.153 +03:00 [INF] Request finished in 190.4192ms 200 text/plain; charset=utf-8 +2018-09-24 10:05:58.153 +03:00 [INF] Request finished in 189.7876ms 200 text/plain; charset=utf-8 +2018-09-24 10:05:59.494 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:05:59.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:59.494 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:59.497 +03:00 [INF] Request finished in 3.3479ms 404 +2018-09-24 10:05:59.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:05:59.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:05:59.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:05:59.521 +03:00 [INF] Request finished in 1.0849ms 404 +2018-09-24 10:06:02.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:06:02.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:02.484 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:02.485 +03:00 [INF] Request finished in 0.7913ms 404 +2018-09-24 10:06:02.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:06:02.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:02.505 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:02.506 +03:00 [INF] Request finished in 2.2298ms 404 +2018-09-24 10:06:08.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:06:08.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:08.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:08.386 +03:00 [INF] Request finished in 0.9798ms 404 +2018-09-24 10:06:08.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:06:08.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:08.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:08.424 +03:00 [INF] Request finished in 1.0569ms 404 +2018-09-24 10:06:11.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:06:11.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:11.144 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:11.145 +03:00 [INF] Request finished in 1.4276ms 404 +2018-09-24 10:06:11.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:06:11.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:06:11.195 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:06:11.196 +03:00 [INF] Request finished in 1.4379ms 404 +2018-09-24 10:11:08.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:11:08.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:08.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:08.202 +03:00 [INF] Request finished in 0.9001ms 404 +2018-09-24 10:11:08.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:11:08.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:08.265 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:08.266 +03:00 [INF] Request finished in 1.8837ms 404 +2018-09-24 10:11:25.115 +03:00 [INF] Loaded modules: +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:11:25.134 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:11:25.135 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:11:27.015 +03:00 [INF] Initialized all modules. +2018-09-24 10:11:27.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:11:27.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:27.316 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:29.787 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:11:29.806 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:11:31.294 +03:00 [INF] Executed action /Index in 1500.0433ms +2018-09-24 10:11:31.319 +03:00 [INF] Request finished in 4042.8212ms 200 text/html; charset=utf-8 +2018-09-24 10:11:31.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:11:31.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:11:31.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:31.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:31.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:31.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:31.510 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:11:31.513 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:11:31.567 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:11:31.572 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:11:31.613 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.614 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.643 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.643 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.643 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.643 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.644 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.645 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.646 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.646 +03:00 [INF] Authorization failed. +2018-09-24 10:11:31.674 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 101.8343ms. +2018-09-24 10:11:31.679 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 107.3651ms. +2018-09-24 10:11:31.682 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:11:31.682 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:11:31.684 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 173.399ms +2018-09-24 10:11:31.684 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 171.2559ms +2018-09-24 10:11:31.685 +03:00 [INF] Request finished in 197.9717ms 200 text/plain; charset=utf-8 +2018-09-24 10:11:31.685 +03:00 [INF] Request finished in 197.7638ms 200 text/plain; charset=utf-8 +2018-09-24 10:11:31.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:11:31.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:31.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:31.920 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:11:31.921 +03:00 [INF] Request finished in 17.1134ms 200 image/png +2018-09-24 10:11:32.269 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:11:32.269 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:32.270 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:32.632 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:11:32.678 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:11:33.199 +03:00 [INF] Executed action /Blog/Index in 567.7128ms +2018-09-24 10:11:33.200 +03:00 [INF] Request finished in 930.8099ms 200 text/html; charset=utf-8 +2018-09-24 10:11:33.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:11:33.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.222 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:11:33.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.234 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:11:33.234 +03:00 [INF] Request finished in 3.3702ms 200 text/css +2018-09-24 10:11:33.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:11:33.239 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.241 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:11:33.242 +03:00 [INF] Request finished in 2.061ms 200 text/css +2018-09-24 10:11:33.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:11:33.244 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:11:33.244 +03:00 [INF] Request finished in 22.7532ms 200 text/css +2018-09-24 10:11:33.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.244 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.245 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:11:33.245 +03:00 [INF] Request finished in 1.8415ms 200 text/css +2018-09-24 10:11:33.260 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:11:33.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.261 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:11:33.262 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:11:33.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.262 +03:00 [INF] Request finished in 2.0852ms 200 text/css +2018-09-24 10:11:33.262 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.266 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:11:33.266 +03:00 [INF] Request finished in 4.4589ms 200 text/css +2018-09-24 10:11:33.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:11:33.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.273 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:11:33.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.274 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:11:33.274 +03:00 [INF] Request finished in 1.6865ms 200 text/css +2018-09-24 10:11:33.275 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:11:33.275 +03:00 [INF] Request finished in 1.626ms 200 text/css +2018-09-24 10:11:33.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:11:33.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:11:33.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.288 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.288 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:11:33.288 +03:00 [INF] Request finished in 2.0922ms 200 image/png +2018-09-24 10:11:33.288 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:11:33.289 +03:00 [INF] Request finished in 1.9031ms 200 image/svg+xml +2018-09-24 10:11:33.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:11:33.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.336 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.337 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:11:33.338 +03:00 [INF] Request finished in 2.0031ms 200 image/svg+xml +2018-09-24 10:11:33.344 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:11:33.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.344 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.345 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:11:33.345 +03:00 [INF] Request finished in 1.2772ms 200 application/javascript +2018-09-24 10:11:33.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:11:33.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.356 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.367 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:11:33.367 +03:00 [INF] Request finished in 10.809ms 200 application/javascript +2018-09-24 10:11:33.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:11:33.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.370 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:11:33.370 +03:00 [INF] Request finished in 2.1779ms 200 application/javascript +2018-09-24 10:11:33.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:11:33.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:11:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.380 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:11:33.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.380 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.381 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:11:33.381 +03:00 [INF] Request finished in 1.0019ms 200 application/javascript +2018-09-24 10:11:33.381 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:11:33.383 +03:00 [INF] Request finished in 3.4384ms 200 application/javascript +2018-09-24 10:11:33.390 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:11:33.390 +03:00 [INF] Request finished in 12.7527ms 200 application/javascript +2018-09-24 10:11:33.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:11:33.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.391 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.393 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:11:33.393 +03:00 [INF] Request finished in 2.8382ms 200 application/javascript +2018-09-24 10:11:33.414 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:11:33.414 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.416 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:11:33.416 +03:00 [INF] Request finished in 2.5457ms 200 application/javascript +2018-09-24 10:11:33.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:11:33.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.419 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:11:33.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.426 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:11:33.426 +03:00 [INF] Request finished in 4.3718ms 200 application/javascript +2018-09-24 10:11:33.431 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:11:33.431 +03:00 [INF] Request finished in 14.9152ms 200 application/javascript +2018-09-24 10:11:33.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:11:33.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.436 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:11:33.438 +03:00 [INF] Request finished in 3.9406ms 200 application/javascript +2018-09-24 10:11:33.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:11:33.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.456 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:11:33.456 +03:00 [INF] Request finished in 7.6832ms 200 application/javascript +2018-09-24 10:11:33.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:11:33.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.459 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.460 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:11:33.460 +03:00 [INF] Request finished in 1.3777ms 200 application/javascript +2018-09-24 10:11:33.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:11:33.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:11:33.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.463 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:11:33.463 +03:00 [INF] Request finished in 1.6138ms 200 application/javascript +2018-09-24 10:11:33.470 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:11:33.470 +03:00 [INF] Request finished in 8.0676ms 200 application/javascript +2018-09-24 10:11:33.476 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:11:33.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.477 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:11:33.477 +03:00 [INF] Request finished in 0.9682ms 200 application/javascript +2018-09-24 10:11:33.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:11:33.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.478 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.478 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:11:33.478 +03:00 [INF] Request finished in 1.167ms 200 application/javascript +2018-09-24 10:11:33.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:11:33.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.489 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:11:33.489 +03:00 [INF] Request finished in 1.15ms 200 application/javascript +2018-09-24 10:11:33.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:11:33.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:11:33.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.491 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.491 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:11:33.491 +03:00 [INF] Request finished in 0.7794ms 200 application/javascript +2018-09-24 10:11:33.491 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:11:33.492 +03:00 [INF] Request finished in 1.4645ms 200 application/javascript +2018-09-24 10:11:33.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:11:33.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.496 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:11:33.496 +03:00 [INF] Request finished in 1.2158ms 200 application/javascript +2018-09-24 10:11:33.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:11:33.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.500 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:11:33.501 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.502 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.503 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.503 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.503 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:11:33.504 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:11:33.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:11:33.504 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.504 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.504 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.504 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.504 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:11:33.504 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.504 +03:00 [INF] Request finished in 0.6406ms 200 application/javascript +2018-09-24 10:11:33.506 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.506 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.506 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:11:33.506 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.506 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.506 +03:00 [INF] Request finished in 2.998ms 200 application/javascript +2018-09-24 10:11:33.506 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [INF] Authorization failed. +2018-09-24 10:11:33.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.509 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.7389ms. +2018-09-24 10:11:33.509 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:11:33.510 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.9035000000000011ms +2018-09-24 10:11:33.510 +03:00 [INF] Request finished in 11.5302ms 200 text/plain; charset=utf-8 +2018-09-24 10:11:33.511 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:11:33.512 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:11:33.513 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2033ms. +2018-09-24 10:11:33.513 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:11:33.513 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.7475ms +2018-09-24 10:11:33.513 +03:00 [INF] Request finished in 9.2572ms 200 text/plain; charset=utf-8 +2018-09-24 10:11:33.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:11:33.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.524 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.526 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:11:33.526 +03:00 [INF] Request finished in 2.7476ms 200 application/javascript +2018-09-24 10:11:33.866 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:11:33.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.866 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.873 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:11:33.873 +03:00 [INF] Request finished in 8.0971ms 200 font/woff2 +2018-09-24 10:11:33.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:11:33.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:33.988 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:33.998 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:11:33.998 +03:00 [INF] Request finished in 10.4918ms 200 image/jpeg +2018-09-24 10:11:34.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:11:34.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:11:34.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:34.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:11:34.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:34.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:11:34.287 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:11:34.288 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:11:34.288 +03:00 [INF] Request finished in 0.9991ms 200 image/png +2018-09-24 10:11:34.288 +03:00 [INF] Request finished in 1.1966ms 200 image/png +2018-09-24 10:13:52.452 +03:00 [INF] Loaded modules: +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:13:52.469 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:13:52.470 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:13:52.471 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:13:52.471 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:13:52.471 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:13:54.297 +03:00 [INF] Initialized all modules. +2018-09-24 10:13:54.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:13:54.633 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:13:54.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:13:56.856 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:13:56.880 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:13:58.718 +03:00 [INF] Executed action /Index in 1853.8489000000002ms +2018-09-24 10:13:58.753 +03:00 [INF] Request finished in 4149.8747ms 200 text/html; charset=utf-8 +2018-09-24 10:13:58.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:13:58.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:13:58.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:13:58.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:13:58.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:13:58.914 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:13:58.917 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 10:13:58.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:13:58.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:13:58.921 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:13:58.925 +03:00 [INF] Request finished in 14.8094ms 304 application/javascript +2018-09-24 10:13:58.937 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:13:58.937 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:13:58.998 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:13:59.002 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:13:59.041 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.042 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.094 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.094 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.095 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.096 +03:00 [INF] Authorization failed. +2018-09-24 10:13:59.129 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 125.5652ms. +2018-09-24 10:13:59.139 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:13:59.140 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 202.77970000000002ms +2018-09-24 10:13:59.141 +03:00 [INF] Request finished in 220.5098ms 200 text/plain; charset=utf-8 +2018-09-24 10:13:59.142 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 140.1433ms. +2018-09-24 10:13:59.143 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:13:59.144 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 206.08710000000002ms +2018-09-24 10:13:59.144 +03:00 [INF] Request finished in 232.1163ms 200 text/plain; charset=utf-8 +2018-09-24 10:14:01.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:14:01.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:01.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:01.205 +03:00 [INF] Request finished in 4.755ms 404 +2018-09-24 10:14:01.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:14:01.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:01.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:01.235 +03:00 [INF] Request finished in 1.4115ms 404 +2018-09-24 10:14:02.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:14:02.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:02.397 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:02.397 +03:00 [INF] Request finished in 0.9366ms 404 +2018-09-24 10:14:02.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:14:02.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:02.420 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:02.421 +03:00 [INF] Request finished in 1.0737ms 404 +2018-09-24 10:14:14.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:14:14.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:14.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:14.750 +03:00 [INF] Request finished in 1.6758ms 404 +2018-09-24 10:14:14.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:14:14.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:14:14.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:14:14.782 +03:00 [INF] Request finished in 1.3527ms 404 +2018-09-24 10:15:32.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-09-24 10:15:32.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:32.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:32.707 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", controller = "", area = "", action = ""}. Executing action /Identity/Users/Index +2018-09-24 10:15:32.713 +03:00 [INF] Authorization failed. +2018-09-24 10:15:32.713 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.Authorization.AuthorizeFilter'. +2018-09-24 10:15:32.716 +03:00 [INF] Executing ChallengeResult with authentication schemes ([]). +2018-09-24 10:15:32.720 +03:00 [INF] AuthenticationScheme: Identity.Application was challenged. +2018-09-24 10:15:32.720 +03:00 [INF] Executed action /Identity/Users/Index in 12.9482ms +2018-09-24 10:15:32.720 +03:00 [INF] Request finished in 293.3791ms 302 +2018-09-24 10:15:32.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers +2018-09-24 10:15:32.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:32.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:33.369 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 10:15:33.418 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:15:34.037 +03:00 [INF] Executed action /Account/Login in 667.8541ms +2018-09-24 10:15:34.037 +03:00 [INF] Request finished in 1308.7702ms 200 text/html; charset=utf-8 +2018-09-24 10:15:34.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:15:34.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:34.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:34.174 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:15:34.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:15:34.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:34.178 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:34.179 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:15:34.180 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.180 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.180 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.180 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.181 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.182 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.183 +03:00 [INF] Authorization failed. +2018-09-24 10:15:34.184 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:15:34.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.0379000000000005ms. +2018-09-24 10:15:34.185 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.5717ms. +2018-09-24 10:15:34.185 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:15:34.185 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:15:34.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4469000000000003ms +2018-09-24 10:15:34.186 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.4999ms +2018-09-24 10:15:34.186 +03:00 [INF] Request finished in 8.7135ms 200 text/plain; charset=utf-8 +2018-09-24 10:15:34.186 +03:00 [INF] Request finished in 14.9744ms 200 text/plain; charset=utf-8 +2018-09-24 10:15:43.153 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login?ReturnUrl=%2FIdentity%2FUsers application/x-www-form-urlencoded 263 +2018-09-24 10:15:43.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.155 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 10:15:43.237 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:15:43.462 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-24 10:15:43.478 +03:00 [INF] Executing RedirectResult, redirecting to /Identity/Users. +2018-09-24 10:15:43.479 +03:00 [INF] Executed action /Account/Login in 322.9753ms +2018-09-24 10:15:43.479 +03:00 [INF] Request finished in 325.914ms 302 +2018-09-24 10:15:43.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Identity/Users +2018-09-24 10:15:43.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.524 +03:00 [INF] Route matched with {page = "/Identity/Users/Index", controller = "", area = "", action = ""}. Executing action /Identity/Users/Index +2018-09-24 10:15:43.592 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.596 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:15:43.627 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.665 +03:00 [INF] Executed action /Identity/Users/Index in 140.6005ms +2018-09-24 10:15:43.665 +03:00 [INF] Request finished in 177.5979ms 200 text/html; charset=utf-8 +2018-09-24 10:15:43.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:15:43.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:15:43.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/pages/abp-permission-management/permission-management-modal.js?_v=636731107265573819 +2018-09-24 10:15:43.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/identity/users/index.js?_v=636733644156578398 +2018-09-24 10:15:43.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:43.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:43.806 +03:00 [INF] Sending file. Request path: '/Pages/identity/users/index.js'. Physical path: '/Pages/Identity/Users/index.js' +2018-09-24 10:15:43.806 +03:00 [INF] Sending file. Request path: '/pages/abp-permission-management/permission-management-modal.js'. Physical path: '/wwwroot/pages/abp_permission_management/permission-management-modal.js' +2018-09-24 10:15:43.806 +03:00 [INF] Request finished in 3.6684ms 200 application/javascript +2018-09-24 10:15:43.806 +03:00 [INF] Request finished in 6.955ms 200 application/javascript +2018-09-24 10:15:43.826 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:15:43.826 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:15:43.827 +03:00 [INF] Authorization failed. +2018-09-24 10:15:43.827 +03:00 [INF] Authorization failed. +2018-09-24 10:15:43.830 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:15:43.831 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:15:43.831 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12350000000000001ms. +2018-09-24 10:15:43.832 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:15:43.832 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2546000000000002ms +2018-09-24 10:15:43.832 +03:00 [INF] Request finished in 44.6997ms 200 text/plain; charset=utf-8 +2018-09-24 10:15:43.832 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.838 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.844 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.848 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.851 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.861 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.861 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.864 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.865 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.867 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.869 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.872 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.874 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.876 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.877 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.879 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.880 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.882 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.884 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.886 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.889 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.891 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.893 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.895 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.896 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.898 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.899 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:43.903 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 76.5224ms. +2018-09-24 10:15:43.908 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:15:43.908 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 82.2283ms +2018-09-24 10:15:43.908 +03:00 [INF] Request finished in 124.4383ms 200 text/plain; charset=utf-8 +2018-09-24 10:15:44.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/api/identity/identityUser?sorting=userName%20asc&skipCount=0&maxResultCount=10 application/json +2018-09-24 10:15:44.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:44.013 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:44.051 +03:00 [INF] Route matched with {area = "identity", controller = "User", action = "GetListAsync", page = ""}. Executing action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) +2018-09-24 10:15:44.109 +03:00 [INF] Executing action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) with arguments (["Volo.Abp.Identity.GetIdentityUsersInput"]) - Validation state: "Valid" +2018-09-24 10:15:44.117 +03:00 [INF] Authorization was successful. +2018-09-24 10:15:44.569 +03:00 [INF] Executed action method Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 459.9657ms. +2018-09-24 10:15:44.569 +03:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Volo.Abp.Identity.IdentityUserDto, Volo.Abp.Identity.Application.Contracts, Version=0.4.1.0, Culture=neutral, PublicKeyToken=null]]'. +2018-09-24 10:15:44.580 +03:00 [INF] Executed action Volo.Abp.Identity.IdentityUserController.GetListAsync (Volo.Abp.Identity.HttpApi) in 528.37700000000007ms +2018-09-24 10:15:44.580 +03:00 [INF] Request finished in 567.9537ms 200 application/json; charset=utf-8 +2018-09-24 10:15:47.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:15:47.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:47.962 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:47.987 +03:00 [INF] Request finished in 25.0075ms 404 +2018-09-24 10:15:48.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:15:48.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:15:48.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:15:48.046 +03:00 [INF] Request finished in 30.8837ms 404 +2018-09-24 10:17:01.860 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/posts/new +2018-09-24 10:17:01.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:01.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:01.892 +03:00 [INF] Request finished in 32.0548ms 404 +2018-09-24 10:17:01.941 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:01.941 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:01.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:01.976 +03:00 [INF] Request finished in 34.6736ms 404 +2018-09-24 10:17:03.362 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:03.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:03.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:03.389 +03:00 [INF] Request finished in 26.7562ms 404 +2018-09-24 10:17:14.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:17:14.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:14.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:14.192 +03:00 [INF] Request finished in 32.3732ms 404 +2018-09-24 10:17:14.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:14.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:14.242 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:14.272 +03:00 [INF] Request finished in 30.4019ms 404 +2018-09-24 10:17:15.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:15.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:15.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:15.747 +03:00 [INF] Request finished in 26.7045ms 404 +2018-09-24 10:17:23.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Blog +2018-09-24 10:17:23.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:23.906 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:23.932 +03:00 [INF] Request finished in 26.1869ms 404 +2018-09-24 10:17:23.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:23.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:23.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:23.988 +03:00 [INF] Request finished in 34.8689ms 404 +2018-09-24 10:17:25.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:25.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:25.804 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:25.829 +03:00 [INF] Request finished in 25.4658ms 404 +2018-09-24 10:17:27.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:17:27.274 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:27.275 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:27.301 +03:00 [INF] Request finished in 27.1747ms 404 +2018-09-24 10:17:27.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:17:27.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:17:27.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:17:27.354 +03:00 [INF] Request finished in 30.152ms 404 +2018-09-24 10:20:17.740 +03:00 [INF] Loaded modules: +2018-09-24 10:20:17.755 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:20:17.755 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:20:17.755 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:20:17.755 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:20:17.756 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:20:17.757 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:20:17.758 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:20:19.712 +03:00 [INF] Initialized all modules. +2018-09-24 10:20:19.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:20:19.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:19.947 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:22.412 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:20:22.479 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:20:24.259 +03:00 [INF] Executed action /Blog/Index in 1842.9547ms +2018-09-24 10:20:24.270 +03:00 [INF] Request finished in 4359.4792ms 200 text/html; charset=utf-8 +2018-09-24 10:20:24.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:20:24.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.287 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:20:24.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:20:24.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.298 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.302 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:20:24.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.302 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.320 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:20:24.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.323 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:20:24.323 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:20:24.323 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:20:24.323 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:20:24.323 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:20:24.336 +03:00 [INF] Request finished in 50.4679ms 200 text/css +2018-09-24 10:20:24.336 +03:00 [INF] Request finished in 16.9591ms 200 text/css +2018-09-24 10:20:24.336 +03:00 [INF] Request finished in 34.3336ms 200 text/css +2018-09-24 10:20:24.336 +03:00 [INF] Request finished in 39.3891ms 200 text/css +2018-09-24 10:20:24.336 +03:00 [INF] Request finished in 39.7681ms 200 text/css +2018-09-24 10:20:24.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:20:24.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.337 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.338 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:20:24.338 +03:00 [INF] Request finished in 1.1042ms 200 text/css +2018-09-24 10:20:24.338 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:20:24.338 +03:00 [INF] Request finished in 0.8134ms 200 text/css +2018-09-24 10:20:24.338 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:20:24.338 +03:00 [INF] Request finished in 1.5642ms 200 text/css +2018-09-24 10:20:24.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:20:24.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.390 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:20:24.391 +03:00 [INF] Request finished in 3.7256ms 200 application/javascript +2018-09-24 10:20:24.413 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:20:24.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.413 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:20:24.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.419 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:20:24.419 +03:00 [INF] Request finished in 3.1071ms 200 application/javascript +2018-09-24 10:20:24.421 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:20:24.421 +03:00 [INF] Request finished in 8.4215ms 200 application/javascript +2018-09-24 10:20:24.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:20:24.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:20:24.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.431 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:20:24.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.435 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:20:24.436 +03:00 [INF] Request finished in 3.6884ms 200 image/svg+xml +2018-09-24 10:20:24.436 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:20:24.437 +03:00 [INF] Request finished in 5.6017ms 200 application/javascript +2018-09-24 10:20:24.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:20:24.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.440 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:20:24.440 +03:00 [INF] Request finished in 2.9273ms 200 image/svg+xml +2018-09-24 10:20:24.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:20:24.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:20:24.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.443 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:20:24.444 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.444 +03:00 [INF] Request finished in 0.9985ms 200 image/png +2018-09-24 10:20:24.444 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:20:24.444 +03:00 [INF] Request finished in 1.1579ms 200 application/javascript +2018-09-24 10:20:24.454 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:20:24.454 +03:00 [INF] Request finished in 22.7773ms 200 application/javascript +2018-09-24 10:20:24.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:20:24.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.460 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:20:24.461 +03:00 [INF] Request finished in 1.118ms 200 application/javascript +2018-09-24 10:20:24.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:20:24.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.462 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:20:24.462 +03:00 [INF] Request finished in 1.3183ms 200 application/javascript +2018-09-24 10:20:24.467 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:20:24.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.467 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:20:24.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.474 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.476 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:20:24.476 +03:00 [INF] Request finished in 3.4231ms 200 application/javascript +2018-09-24 10:20:24.477 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:20:24.477 +03:00 [INF] Request finished in 9.9992ms 200 application/javascript +2018-09-24 10:20:24.484 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:20:24.485 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.486 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.486 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:20:24.486 +03:00 [INF] Request finished in 2.643ms 200 application/javascript +2018-09-24 10:20:24.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:20:24.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:20:24.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.496 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:20:24.496 +03:00 [INF] Request finished in 4.1267ms 200 application/javascript +2018-09-24 10:20:24.497 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:20:24.497 +03:00 [INF] Request finished in 2.6664ms 200 application/javascript +2018-09-24 10:20:24.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:20:24.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.509 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:20:24.509 +03:00 [INF] Request finished in 0.8631ms 200 application/javascript +2018-09-24 10:20:24.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:20:24.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.514 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:20:24.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:20:24.514 +03:00 [INF] Request finished in 2.227ms 200 application/javascript +2018-09-24 10:20:24.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.514 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.518 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:20:24.519 +03:00 [INF] Request finished in 4.9882ms 200 application/javascript +2018-09-24 10:20:24.526 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:20:24.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.526 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.527 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:20:24.527 +03:00 [INF] Request finished in 1.1185ms 200 application/javascript +2018-09-24 10:20:24.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:20:24.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.534 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.534 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:20:24.535 +03:00 [INF] Request finished in 2.9136ms 200 application/javascript +2018-09-24 10:20:24.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:20:24.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.537 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:20:24.538 +03:00 [INF] Request finished in 1.6033ms 200 application/javascript +2018-09-24 10:20:24.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:20:24.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:20:24.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:20:24.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.547 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:20:24.547 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:20:24.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.547 +03:00 [INF] Request finished in 3.8591ms 200 application/javascript +2018-09-24 10:20:24.547 +03:00 [INF] Request finished in 3.2772ms 200 application/javascript +2018-09-24 10:20:24.548 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:20:24.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:20:24.548 +03:00 [INF] Request finished in 5.374ms 200 application/javascript +2018-09-24 10:20:24.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:20:24.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.555 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:20:24.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:20:24.561 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:20:24.561 +03:00 [INF] Request finished in 1.195ms 200 application/javascript +2018-09-24 10:20:24.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.562 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:20:24.562 +03:00 [INF] Request finished in 1.4955ms 200 application/javascript +2018-09-24 10:20:24.642 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:20:24.657 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:20:24.681 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:20:24.713 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:20:24.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:20:24.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.733 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:20:24.733 +03:00 [INF] Request finished in 7.8738ms 200 font/woff2 +2018-09-24 10:20:24.744 +03:00 [INF] Authorization failed. +2018-09-24 10:20:24.744 +03:00 [INF] Authorization failed. +2018-09-24 10:20:24.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:20:24.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:24.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:24.902 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:20:24.904 +03:00 [INF] Request finished in 11.9215ms 200 image/jpeg +2018-09-24 10:20:24.918 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 171.23350000000002ms. +2018-09-24 10:20:24.921 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.929 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:20:24.930 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 272.866ms +2018-09-24 10:20:24.930 +03:00 [INF] Request finished in 375.5688ms 200 text/plain; charset=utf-8 +2018-09-24 10:20:24.931 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.939 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.944 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.947 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.956 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.960 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.964 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.971 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.976 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.979 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.983 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.988 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.991 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.994 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:24.997 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.000 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.004 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.008 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.010 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.013 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.017 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.021 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.025 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.027 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.030 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.034 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:25.082 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 399.7153ms. +2018-09-24 10:20:25.100 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:20:25.103 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 460.482ms +2018-09-24 10:20:25.107 +03:00 [INF] Request finished in 558.7967ms 200 text/plain; charset=utf-8 +2018-09-24 10:20:25.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:20:25.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:25.383 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:25.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:20:25.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:25.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:25.388 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:20:25.388 +03:00 [INF] Request finished in 3.1677ms 200 image/png +2018-09-24 10:20:25.390 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:20:25.390 +03:00 [INF] Request finished in 8.5661ms 200 image/png +2018-09-24 10:20:28.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:20:28.040 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:28.041 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:28.802 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:20:29.085 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:20:29.450 +03:00 [INF] Executed action /Blog/Posts/Index in 648.3689ms +2018-09-24 10:20:29.451 +03:00 [INF] Request finished in 1410.9136ms 200 text/html; charset=utf-8 +2018-09-24 10:20:29.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:20:29.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:20:29.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.503 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:20:29.503 +03:00 [INF] Request finished in 5.203ms 200 text/css +2018-09-24 10:20:29.506 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:20:29.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:20:29.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.507 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.507 +03:00 [INF] Request finished in 5.3505ms 200 text/css +2018-09-24 10:20:29.508 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:20:29.508 +03:00 [INF] Request finished in 1.5344ms 200 text/css +2018-09-24 10:20:29.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:20:29.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.525 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:20:29.529 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:20:29.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.531 +03:00 [INF] Request finished in 13.204ms 200 text/css +2018-09-24 10:20:29.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.532 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:20:29.533 +03:00 [INF] Request finished in 3.1615ms 200 text/css +2018-09-24 10:20:29.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:20:29.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.537 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:20:29.537 +03:00 [INF] Request finished in 2.1538ms 200 text/css +2018-09-24 10:20:29.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:20:29.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.541 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:20:29.541 +03:00 [INF] Request finished in 2.9456ms 200 text/css +2018-09-24 10:20:29.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:20:29.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.546 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.546 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:20:29.547 +03:00 [INF] Request finished in 1.2252ms 200 text/css +2018-09-24 10:20:29.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-24 10:20:29.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.549 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.551 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-24 10:20:29.551 +03:00 [INF] Request finished in 2.3096ms 200 text/css +2018-09-24 10:20:29.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-24 10:20:29.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-24 10:20:29.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636733704018398099 +2018-09-24 10:20:29.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.583 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.583 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-24 10:20:29.584 +03:00 [INF] Request finished in 1.0743ms 200 text/css +2018-09-24 10:20:29.586 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-24 10:20:29.586 +03:00 [INF] Request finished in 5.589ms 200 text/css +2018-09-24 10:20:29.587 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-24 10:20:29.587 +03:00 [INF] Request finished in 5.4716ms 200 text/css +2018-09-24 10:20:29.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:20:29.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.612 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:20:29.612 +03:00 [INF] Request finished in 1.6392ms 200 application/javascript +2018-09-24 10:20:29.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:20:29.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.628 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:20:29.629 +03:00 [INF] Request finished in 12.1344ms 200 application/javascript +2018-09-24 10:20:29.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:20:29.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.632 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:20:29.632 +03:00 [INF] Request finished in 1.8078ms 200 application/javascript +2018-09-24 10:20:29.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:20:29.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.652 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.659 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:20:29.659 +03:00 [INF] Request finished in 7.3971ms 200 application/javascript +2018-09-24 10:20:29.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:20:29.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.667 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.668 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:20:29.668 +03:00 [INF] Request finished in 1.6158ms 200 image/svg+xml +2018-09-24 10:20:29.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:20:29.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.670 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:20:29.670 +03:00 [INF] Request finished in 1.6016ms 200 image/png +2018-09-24 10:20:29.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:20:29.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.677 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:20:29.677 +03:00 [INF] Request finished in 2.8478ms 200 application/javascript +2018-09-24 10:20:29.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:20:29.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:20:29.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:20:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.680 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.680 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:20:29.681 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:20:29.681 +03:00 [INF] Request finished in 1.7594ms 200 application/javascript +2018-09-24 10:20:29.681 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:20:29.681 +03:00 [INF] Request finished in 3.1283ms 200 image/svg+xml +2018-09-24 10:20:29.681 +03:00 [INF] Request finished in 1.8483ms 200 application/javascript +2018-09-24 10:20:29.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:20:29.695 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.696 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:20:29.696 +03:00 [INF] Request finished in 1.4338ms 200 application/javascript +2018-09-24 10:20:29.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:20:29.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:20:29.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:20:29.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.716 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.720 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:20:29.720 +03:00 [INF] Request finished in 4.6224ms 200 application/javascript +2018-09-24 10:20:29.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:20:29.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.720 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:20:29.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.721 +03:00 [INF] Request finished in 9.5358ms 200 application/javascript +2018-09-24 10:20:29.722 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:20:29.722 +03:00 [INF] Request finished in 1.9339ms 200 application/javascript +2018-09-24 10:20:29.723 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:20:29.723 +03:00 [INF] Request finished in 17.6423ms 200 application/javascript +2018-09-24 10:20:29.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:20:29.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:20:29.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.734 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:20:29.734 +03:00 [INF] Request finished in 1.4144ms 200 application/javascript +2018-09-24 10:20:29.734 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:20:29.734 +03:00 [INF] Request finished in 1.6197ms 200 application/javascript +2018-09-24 10:20:29.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:20:29.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:20:29.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.758 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:20:29.758 +03:00 [INF] Request finished in 1.2039ms 200 application/javascript +2018-09-24 10:20:29.758 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:20:29.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:20:29.759 +03:00 [INF] Request finished in 1.5008ms 200 application/javascript +2018-09-24 10:20:29.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.760 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:20:29.761 +03:00 [INF] Request finished in 2.0216ms 200 application/javascript +2018-09-24 10:20:29.764 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:20:29.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.765 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:20:29.765 +03:00 [INF] Request finished in 1.4593ms 200 application/javascript +2018-09-24 10:20:29.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:20:29.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:20:29.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:20:29.769 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.769 +03:00 [INF] Request finished in 1.1427ms 200 application/javascript +2018-09-24 10:20:29.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:20:29.769 +03:00 [INF] Request finished in 0.7166ms 200 application/javascript +2018-09-24 10:20:29.786 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:20:29.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.787 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.787 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:20:29.787 +03:00 [INF] Request finished in 0.8836ms 200 application/javascript +2018-09-24 10:20:29.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:20:29.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.790 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:20:29.790 +03:00 [INF] Request finished in 1.7617ms 200 application/javascript +2018-09-24 10:20:29.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:20:29.793 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:20:29.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:20:29.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.803 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:20:29.803 +03:00 [INF] Request finished in 1.4842ms 200 application/javascript +2018-09-24 10:20:29.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:20:29.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.848 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:20:29.848 +03:00 [INF] Request finished in 1.2314ms 200 application/javascript +2018-09-24 10:20:29.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-24 10:20:29.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636733704018398099 +2018-09-24 10:20:29.860 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-24 10:20:29.860 +03:00 [INF] Request finished in 3.1702ms 200 application/javascript +2018-09-24 10:20:29.859 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.860 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.860 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-24 10:20:29.861 +03:00 [INF] Request finished in 1.6999ms 200 application/javascript +2018-09-24 10:20:29.895 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:20:29.896 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:20:29.896 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2029ms. +2018-09-24 10:20:29.896 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:20:29.897 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5879ms +2018-09-24 10:20:29.897 +03:00 [INF] Request finished in 97.3912ms 200 text/plain; charset=utf-8 +2018-09-24 10:20:29.897 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:20:29.898 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:20:29.899 +03:00 [INF] Authorization failed. +2018-09-24 10:20:29.899 +03:00 [INF] Authorization failed. +2018-09-24 10:20:29.914 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.916 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.917 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.917 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.918 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.919 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.920 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.921 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.921 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.922 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.923 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.924 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.926 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.927 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.928 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.930 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.930 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.931 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.932 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.932 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.933 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.934 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.935 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.936 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.936 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.937 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.938 +03:00 [INF] Authorization was successful. +2018-09-24 10:20:29.941 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 42.775800000000004ms. +2018-09-24 10:20:29.942 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:20:29.942 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 44.2031ms +2018-09-24 10:20:29.942 +03:00 [INF] Request finished in 150.069ms 200 text/plain; charset=utf-8 +2018-09-24 10:20:29.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636733704018398099 +2018-09-24 10:20:29.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:29.975 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:29.975 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-24 10:20:29.975 +03:00 [INF] Request finished in 0.9267ms 200 application/javascript +2018-09-24 10:20:30.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:20:30.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:30.034 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:30.036 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:20:30.036 +03:00 [INF] Request finished in 2.926ms 200 font/woff2 +2018-09-24 10:20:30.115 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:20:30.115 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:30.116 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:30.125 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:20:30.125 +03:00 [INF] Request finished in 9.9134ms 200 image/jpeg +2018-09-24 10:20:30.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:20:30.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:30.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:30.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:20:30.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:20:30.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:20:30.434 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:20:30.434 +03:00 [INF] Request finished in 1.1508ms 200 image/png +2018-09-24 10:20:30.435 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:20:30.435 +03:00 [INF] Request finished in 1.241ms 200 image/png +2018-09-24 10:22:52.913 +03:00 [INF] Loaded modules: +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:22:52.930 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:22:52.931 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:22:52.932 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:22:52.933 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:22:54.775 +03:00 [INF] Initialized all modules. +2018-09-24 10:22:54.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:22:54.943 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:22:54.946 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:22:57.432 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:22:57.457 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:22:59.029 +03:00 [INF] Executed action /Index in 1591.4748000000002ms +2018-09-24 10:22:59.057 +03:00 [INF] Request finished in 4143.9641ms 200 text/html; charset=utf-8 +2018-09-24 10:22:59.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:22:59.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:22:59.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:22:59.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:22:59.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:22:59.219 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:22:59.291 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:22:59.291 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:22:59.341 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:22:59.346 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:22:59.384 +03:00 [INF] Authorization failed. +2018-09-24 10:22:59.385 +03:00 [INF] Authorization failed. +2018-09-24 10:22:59.446 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 100.11330000000001ms. +2018-09-24 10:22:59.452 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:22:59.453 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 161.9591ms +2018-09-24 10:22:59.454 +03:00 [INF] Request finished in 235.471ms 200 text/plain; charset=utf-8 +2018-09-24 10:22:59.493 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.498 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.502 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.508 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.511 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.514 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.517 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.521 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.524 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.527 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.531 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.535 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.540 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.548 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.553 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.557 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.560 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.563 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.566 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.571 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.575 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.579 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.583 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.587 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.591 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.595 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.600 +03:00 [INF] Authorization was successful. +2018-09-24 10:22:59.639 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 292.6259ms. +2018-09-24 10:22:59.656 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:22:59.657 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 365.27340000000004ms +2018-09-24 10:22:59.657 +03:00 [INF] Request finished in 439.7861ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:27.239 +03:00 [INF] Loaded modules: +2018-09-24 10:23:27.252 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:23:27.253 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:23:27.254 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:23:29.103 +03:00 [INF] Initialized all modules. +2018-09-24 10:23:29.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:23:29.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:29.390 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:32.343 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:23:32.365 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:23:33.958 +03:00 [INF] Executed action /Index in 1606.8179ms +2018-09-24 10:23:33.982 +03:00 [INF] Request finished in 4627.1464ms 200 text/html; charset=utf-8 +2018-09-24 10:23:34.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:23:34.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:34.204 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:34.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:23:34.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:34.227 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:34.230 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 10:23:34.232 +03:00 [INF] Request finished in 5.9778ms 304 application/javascript +2018-09-24 10:23:34.233 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:23:34.233 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:34.233 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:34.349 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:34.351 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:34.395 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:23:34.400 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:23:34.433 +03:00 [INF] Authorization failed. +2018-09-24 10:23:34.434 +03:00 [INF] Authorization failed. +2018-09-24 10:23:34.495 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 95.5124ms. +2018-09-24 10:23:34.503 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:34.505 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 155.21620000000001ms +2018-09-24 10:23:34.505 +03:00 [INF] Request finished in 302.9726ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:34.549 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.554 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.557 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.561 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.563 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.566 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.570 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.573 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.576 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.579 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.582 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.585 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.588 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.591 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.594 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.597 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.599 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.602 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.605 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.608 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.611 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.614 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.617 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.620 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.623 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.625 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.628 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:34.650 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 250.1074ms. +2018-09-24 10:23:34.662 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:34.663 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 311.9594ms +2018-09-24 10:23:34.663 +03:00 [INF] Request finished in 430.3307ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:36.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:23:36.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:36.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:37.455 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:23:37.678 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:23:38.348 +03:00 [INF] Executed action /Blog/Posts/Index in 892.5552ms +2018-09-24 10:23:38.348 +03:00 [INF] Request finished in 1363.3291ms 200 text/html; charset=utf-8 +2018-09-24 10:23:38.375 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:23:38.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:23:38.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.386 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:23:38.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.386 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.388 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:23:38.389 +03:00 [INF] Request finished in 2.5429ms 200 text/css +2018-09-24 10:23:38.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:23:38.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.402 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:23:38.402 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:23:38.402 +03:00 [INF] Request finished in 16.3735ms 200 text/css +2018-09-24 10:23:38.402 +03:00 [INF] Request finished in 4.809ms 200 text/css +2018-09-24 10:23:38.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:23:38.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.404 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:23:38.404 +03:00 [INF] Request finished in 1.4257ms 200 text/css +2018-09-24 10:23:38.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:23:38.409 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:23:38.410 +03:00 [INF] Request finished in 35.034ms 200 text/css +2018-09-24 10:23:38.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.413 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:23:38.414 +03:00 [INF] Request finished in 5.6653ms 200 text/css +2018-09-24 10:23:38.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:23:38.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:23:38.426 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:23:38.426 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.427 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.427 +03:00 [INF] Request finished in 5.2336ms 200 text/css +2018-09-24 10:23:38.429 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:23:38.429 +03:00 [INF] Request finished in 3.374ms 200 text/css +2018-09-24 10:23:38.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636731257341228548 +2018-09-24 10:23:38.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636731257341358544 +2018-09-24 10:23:38.434 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-09-24 10:23:38.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.435 +03:00 [INF] Request finished in 1.6225ms 200 text/css +2018-09-24 10:23:38.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.435 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-09-24 10:23:38.435 +03:00 [INF] Request finished in 1.1108ms 200 text/css +2018-09-24 10:23:38.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636731257341598548 +2018-09-24 10:23:38.482 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.483 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.485 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-09-24 10:23:38.485 +03:00 [INF] Request finished in 3.8501ms 200 text/css +2018-09-24 10:23:38.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636733705577714733 +2018-09-24 10:23:38.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.508 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: '/Pages/Blog/Shared/Styles/blog.css' +2018-09-24 10:23:38.509 +03:00 [INF] Request finished in 1.3569ms 200 text/css +2018-09-24 10:23:38.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:23:38.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.512 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.514 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:23:38.514 +03:00 [INF] Request finished in 3.3697ms 200 application/javascript +2018-09-24 10:23:38.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:23:38.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:23:38.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.520 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:23:38.520 +03:00 [INF] Request finished in 1.8138ms 200 image/svg+xml +2018-09-24 10:23:38.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:23:38.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.524 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:23:38.524 +03:00 [INF] Request finished in 3.767ms 200 image/png +2018-09-24 10:23:38.527 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:23:38.527 +03:00 [INF] Request finished in 9.875ms 200 application/javascript +2018-09-24 10:23:38.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:23:38.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:23:38.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:23:38.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.530 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.530 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:23:38.530 +03:00 [INF] Request finished in 2.8923ms 200 image/svg+xml +2018-09-24 10:23:38.531 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:23:38.531 +03:00 [INF] Request finished in 0.9785ms 200 application/javascript +2018-09-24 10:23:38.536 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:23:38.538 +03:00 [INF] Request finished in 6.5483ms 200 application/javascript +2018-09-24 10:23:38.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:23:38.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.542 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:23:38.543 +03:00 [INF] Request finished in 4.6904ms 200 application/javascript +2018-09-24 10:23:38.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:23:38.548 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:23:38.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.548 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.550 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:23:38.550 +03:00 [INF] Request finished in 2.3531ms 200 application/javascript +2018-09-24 10:23:38.551 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:23:38.551 +03:00 [INF] Request finished in 3.9354ms 200 application/javascript +2018-09-24 10:23:38.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:23:38.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.561 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:23:38.562 +03:00 [INF] Request finished in 5.4555ms 200 application/javascript +2018-09-24 10:23:38.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:23:38.568 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.571 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:23:38.571 +03:00 [INF] Request finished in 3.3347ms 200 application/javascript +2018-09-24 10:23:38.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:23:38.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.574 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:23:38.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.585 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:23:38.585 +03:00 [INF] Request finished in 1.0655ms 200 application/javascript +2018-09-24 10:23:38.599 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:23:38.599 +03:00 [INF] Request finished in 25.2935ms 200 application/javascript +2018-09-24 10:23:38.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:23:38.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.600 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.602 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:23:38.603 +03:00 [INF] Request finished in 3.2345ms 200 application/javascript +2018-09-24 10:23:38.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:23:38.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.605 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:23:38.606 +03:00 [INF] Request finished in 1.4645ms 200 application/javascript +2018-09-24 10:23:38.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:23:38.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.611 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.612 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:23:38.612 +03:00 [INF] Request finished in 1.4616ms 200 application/javascript +2018-09-24 10:23:38.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:23:38.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:23:38.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.637 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.637 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:23:38.637 +03:00 [INF] Request finished in 14.68ms 200 application/javascript +2018-09-24 10:23:38.638 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:23:38.638 +03:00 [INF] Request finished in 2.1634ms 200 application/javascript +2018-09-24 10:23:38.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:23:38.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.654 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.654 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:23:38.654 +03:00 [INF] Request finished in 1.3861ms 200 application/javascript +2018-09-24 10:23:38.665 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:23:38.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.666 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:23:38.666 +03:00 [INF] Request finished in 1.6307ms 200 application/javascript +2018-09-24 10:23:38.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:23:38.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.669 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.669 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:23:38.669 +03:00 [INF] Request finished in 0.8842ms 200 application/javascript +2018-09-24 10:23:38.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:23:38.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:23:38.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.679 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:23:38.680 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:23:38.680 +03:00 [INF] Request finished in 2.3506ms 200 application/javascript +2018-09-24 10:23:38.680 +03:00 [INF] Request finished in 4.1056ms 200 application/javascript +2018-09-24 10:23:38.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:23:38.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.685 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:23:38.685 +03:00 [INF] Request finished in 3.0639ms 200 application/javascript +2018-09-24 10:23:38.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:23:38.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:23:38.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.714 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636731257340148526 +2018-09-24 10:23:38.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:23:38.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.722 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-09-24 10:23:38.723 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:23:38.724 +03:00 [INF] Request finished in 2.6861ms 200 application/javascript +2018-09-24 10:23:38.722 +03:00 [INF] Request finished in 2.6516ms 200 application/javascript +2018-09-24 10:23:38.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:23:38.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.734 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:23:38.734 +03:00 [INF] Request finished in 1.2176ms 200 application/javascript +2018-09-24 10:23:38.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636733705577714733 +2018-09-24 10:23:38.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.738 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: '/Pages/Blog/Posts/detail.js' +2018-09-24 10:23:38.739 +03:00 [INF] Request finished in 1.3936ms 200 application/javascript +2018-09-24 10:23:38.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636733705577714733 +2018-09-24 10:23:38.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.758 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.761 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Scripts/blog.js'. Physical path: '/Pages/Blog/Shared/Scripts/blog.js' +2018-09-24 10:23:38.762 +03:00 [INF] Request finished in 3.9369ms 200 application/javascript +2018-09-24 10:23:38.829 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:38.832 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:23:38.833 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.66760000000000008ms. +2018-09-24 10:23:38.833 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:38.833 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.0241ms +2018-09-24 10:23:38.833 +03:00 [INF] Request finished in 120.882ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:38.846 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:38.848 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:23:38.850 +03:00 [INF] Authorization failed. +2018-09-24 10:23:38.850 +03:00 [INF] Authorization failed. +2018-09-24 10:23:38.864 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.866 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.867 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.868 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.868 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.869 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.870 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.871 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.872 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.873 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.874 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.874 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.875 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.877 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.879 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.880 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.881 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.881 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.882 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.882 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.883 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.883 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.884 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.885 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.886 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.887 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.888 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:38.891 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 42.1998ms. +2018-09-24 10:23:38.893 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:38.894 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 47.639500000000005ms +2018-09-24 10:23:38.894 +03:00 [INF] Request finished in 181.4446ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:38.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:23:38.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:38.942 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:38.946 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:23:38.946 +03:00 [INF] Request finished in 4.0982ms 200 font/woff2 +2018-09-24 10:23:39.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:23:39.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:39.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:39.037 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:23:39.037 +03:00 [INF] Request finished in 7.518ms 200 image/jpeg +2018-09-24 10:23:39.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:23:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:39.328 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:39.329 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:23:39.329 +03:00 [INF] Request finished in 2.2804ms 200 image/png +2018-09-24 10:23:39.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:23:39.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:39.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:39.339 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:23:39.339 +03:00 [INF] Request finished in 1.6113ms 200 image/png +2018-09-24 10:23:41.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-09-24 10:23:41.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:41.061 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:41.099 +03:00 [INF] Request finished in 38.8179ms 404 +2018-09-24 10:23:41.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:23:41.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:41.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:41.157 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:23:41.157 +03:00 [INF] Request finished in 1.2626ms 200 image/png +2018-09-24 10:23:41.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:23:41.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:41.158 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:41.159 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:23:41.159 +03:00 [INF] Request finished in 1.0338ms 200 image/png +2018-09-24 10:23:41.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:23:41.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:41.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.138 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:23:42.139 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:23:42.186 +03:00 [INF] Executed action /Blog/Index in 48.359ms +2018-09-24 10:23:42.186 +03:00 [INF] Request finished in 367.2245ms 200 text/html; charset=utf-8 +2018-09-24 10:23:42.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:23:42.223 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:23:42.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.226 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.227 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:23:42.227 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:23:42.227 +03:00 [INF] Request finished in 2.5723ms 200 text/css +2018-09-24 10:23:42.228 +03:00 [INF] Request finished in 4.6547ms 200 text/css +2018-09-24 10:23:42.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:23:42.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.229 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:23:42.229 +03:00 [INF] Request finished in 1.0408ms 200 text/css +2018-09-24 10:23:42.231 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:23:42.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.232 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.233 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:23:42.233 +03:00 [INF] Request finished in 1.7515ms 200 text/css +2018-09-24 10:23:42.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:23:42.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.240 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.241 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:23:42.242 +03:00 [INF] Request finished in 1.6215ms 200 text/css +2018-09-24 10:23:42.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:23:42.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.251 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:23:42.252 +03:00 [INF] Request finished in 3.2208ms 200 text/css +2018-09-24 10:23:42.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:23:42.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.259 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:23:42.259 +03:00 [INF] Request finished in 1.1038ms 200 text/css +2018-09-24 10:23:42.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:23:42.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.289 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.290 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:23:42.290 +03:00 [INF] Request finished in 1.4654ms 200 text/css +2018-09-24 10:23:42.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:23:42.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.292 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:23:42.292 +03:00 [INF] Request finished in 1.2867ms 200 application/javascript +2018-09-24 10:23:42.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:23:42.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:23:42.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.297 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.302 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:23:42.302 +03:00 [INF] Request finished in 6.2731ms 200 application/javascript +2018-09-24 10:23:42.303 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:23:42.303 +03:00 [INF] Request finished in 11.2828ms 200 application/javascript +2018-09-24 10:23:42.308 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:23:42.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.309 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.313 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:23:42.313 +03:00 [INF] Request finished in 5.5495ms 200 application/javascript +2018-09-24 10:23:42.323 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:23:42.323 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.325 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:23:42.325 +03:00 [INF] Request finished in 1.9019ms 200 application/javascript +2018-09-24 10:23:42.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:23:42.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.343 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:23:42.345 +03:00 [INF] Request finished in 3.1651ms 200 application/javascript +2018-09-24 10:23:42.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:23:42.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.346 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.347 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:23:42.347 +03:00 [INF] Request finished in 1.0474ms 200 application/javascript +2018-09-24 10:23:42.353 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:23:42.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.354 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:23:42.355 +03:00 [INF] Request finished in 0.9805ms 200 application/javascript +2018-09-24 10:23:42.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:23:42.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.365 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:23:42.365 +03:00 [INF] Request finished in 5.6957ms 200 application/javascript +2018-09-24 10:23:42.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:23:42.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:23:42.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.372 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:23:42.372 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.374 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:23:42.374 +03:00 [INF] Request finished in 3.1218ms 200 application/javascript +2018-09-24 10:23:42.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:23:42.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.377 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:23:42.377 +03:00 [INF] Request finished in 1.5898ms 200 application/javascript +2018-09-24 10:23:42.378 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:23:42.378 +03:00 [INF] Request finished in 5.6197ms 200 application/javascript +2018-09-24 10:23:42.383 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:23:42.385 +03:00 [INF] Request finished in 16.9818ms 200 application/javascript +2018-09-24 10:23:42.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:23:42.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.388 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:23:42.388 +03:00 [INF] Request finished in 1.1634ms 200 application/javascript +2018-09-24 10:23:42.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:23:42.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.394 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:23:42.394 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:23:42.394 +03:00 [INF] Request finished in 2.3336ms 200 application/javascript +2018-09-24 10:23:42.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.394 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:23:42.394 +03:00 [INF] Request finished in 0.8227ms 200 application/javascript +2018-09-24 10:23:42.395 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:23:42.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.395 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.396 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:23:42.396 +03:00 [INF] Request finished in 1.241ms 200 application/javascript +2018-09-24 10:23:42.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:23:42.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.399 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:23:42.399 +03:00 [INF] Request finished in 2.2724ms 200 application/javascript +2018-09-24 10:23:42.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:23:42.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.404 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:23:42.404 +03:00 [INF] Request finished in 2.4499ms 200 application/javascript +2018-09-24 10:23:42.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:23:42.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:23:42.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.405 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:23:42.405 +03:00 [INF] Request finished in 1.0855ms 200 application/javascript +2018-09-24 10:23:42.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:23:42.406 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:23:42.406 +03:00 [INF] Request finished in 0.9021ms 200 application/javascript +2018-09-24 10:23:42.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.406 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:23:42.407 +03:00 [INF] Request finished in 1.3296ms 200 application/javascript +2018-09-24 10:23:42.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:23:42.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:23:42.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.411 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:23:42.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.412 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.413 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:23:42.413 +03:00 [INF] Request finished in 2.0271ms 200 application/javascript +2018-09-24 10:23:42.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:23:42.454 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.455 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:23:42.455 +03:00 [INF] Request finished in 0.9783ms 200 application/javascript +2018-09-24 10:23:42.456 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:42.456 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:23:42.456 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1177ms. +2018-09-24 10:23:42.457 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:42.457 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1295ms +2018-09-24 10:23:42.457 +03:00 [INF] Request finished in 45.7827ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:42.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:23:42.460 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:23:42.460 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:23:42.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.461 +03:00 [INF] Authorization failed. +2018-09-24 10:23:42.461 +03:00 [INF] Authorization failed. +2018-09-24 10:23:42.461 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:23:42.461 +03:00 [INF] Request finished in 4.5166ms 200 image/svg+xml +2018-09-24 10:23:42.462 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.463 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.464 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.465 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.467 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.468 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.469 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.469 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.470 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.471 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.472 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.473 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:23:42.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:23:42.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.473 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.473 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.474 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:23:42.474 +03:00 [INF] Request finished in 0.9772ms 200 image/svg+xml +2018-09-24 10:23:42.474 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.474 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:23:42.474 +03:00 [INF] Request finished in 1.0537ms 200 image/png +2018-09-24 10:23:42.474 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.475 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.476 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.477 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.477 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.478 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.478 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.479 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.480 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.482 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.483 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.484 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.485 +03:00 [INF] Authorization was successful. +2018-09-24 10:23:42.486 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 25.4175ms. +2018-09-24 10:23:42.486 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:23:42.486 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 26.7433ms +2018-09-24 10:23:42.487 +03:00 [INF] Request finished in 75.8309ms 200 text/plain; charset=utf-8 +2018-09-24 10:23:42.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:23:42.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.644 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:23:42.644 +03:00 [INF] Request finished in 2.4728ms 200 font/woff2 +2018-09-24 10:23:42.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:23:42.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:42.660 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:42.668 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:23:42.668 +03:00 [INF] Request finished in 8.3677ms 200 image/jpeg +2018-09-24 10:23:43.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:23:43.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:43.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:43.008 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:23:43.008 +03:00 [INF] Request finished in 1.3509ms 200 image/png +2018-09-24 10:23:43.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:23:43.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:23:43.011 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:23:43.011 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:23:43.011 +03:00 [INF] Request finished in 0.8526ms 200 image/png +2018-09-24 10:34:50.803 +03:00 [INF] Loaded modules: +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:34:50.821 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:34:50.822 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:34:50.823 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:34:52.543 +03:00 [INF] Initialized all modules. +2018-09-24 10:34:52.739 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:34:52.770 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:52.773 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:55.241 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:34:55.265 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:34:56.929 +03:00 [INF] Executed action /Index in 1682.6593ms +2018-09-24 10:34:56.956 +03:00 [INF] Request finished in 4219.4945ms 200 text/html; charset=utf-8 +2018-09-24 10:34:57.158 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:34:57.160 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:57.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:34:57.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:57.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:57.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:57.165 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-09-24 10:34:57.168 +03:00 [INF] Request finished in 10.8845ms 304 application/javascript +2018-09-24 10:34:57.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:34:57.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:57.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:57.192 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:34:57.192 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:34:57.246 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:34:57.254 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:34:57.286 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.286 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.530 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.530 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.530 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.530 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.530 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.531 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.532 +03:00 [INF] Authorization failed. +2018-09-24 10:34:57.548 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 298.3387ms. +2018-09-24 10:34:57.556 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:34:57.557 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 365.3354ms +2018-09-24 10:34:57.558 +03:00 [INF] Request finished in 382.4092ms 200 text/plain; charset=utf-8 +2018-09-24 10:34:57.567 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 312.9735ms. +2018-09-24 10:34:57.568 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:34:57.568 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 376.04150000000004ms +2018-09-24 10:34:57.568 +03:00 [INF] Request finished in 407.7318ms 200 text/plain; charset=utf-8 +2018-09-24 10:34:57.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:34:57.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:57.641 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:57.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:34:57.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:34:57.642 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:34:57.647 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:34:57.647 +03:00 [INF] Request finished in 5.4652ms 200 image/png +2018-09-24 10:34:57.652 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:34:57.652 +03:00 [INF] Request finished in 12.0799ms 200 image/png +2018-09-24 10:35:08.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog +2018-09-24 10:35:08.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:08.696 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:09.030 +03:00 [INF] Route matched with {page = "/Blog/Index", controller = "", area = "", action = ""}. Executing action /Blog/Index +2018-09-24 10:35:09.069 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:09.597 +03:00 [INF] Executed action /Blog/Index in 566.52330000000006ms +2018-09-24 10:35:09.597 +03:00 [INF] Request finished in 901.7778ms 200 text/html; charset=utf-8 +2018-09-24 10:35:09.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:09.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:09.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:09.709 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:09.710 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:09.711 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.711 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.711 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.711 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.712 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.712 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.712 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.712 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.713 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.714 +03:00 [INF] Authorization failed. +2018-09-24 10:35:09.716 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.8167ms. +2018-09-24 10:35:09.717 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:09.717 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:09.718 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.3199ms +2018-09-24 10:35:09.718 +03:00 [INF] Request finished in 11.4635ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:09.720 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:09.720 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.27790000000000004ms. +2018-09-24 10:35:09.720 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:09.720 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.2335000000000003ms +2018-09-24 10:35:09.721 +03:00 [INF] Request finished in 8.1274ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:11.026 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:35:11.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:11.026 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:11.443 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:35:11.611 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:11.772 +03:00 [INF] Executed action /Blog/Posts/Index in 329.1949ms +2018-09-24 10:35:11.772 +03:00 [INF] Request finished in 746.4218ms 200 text/html; charset=utf-8 +2018-09-24 10:35:11.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:11.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:11.886 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:11.887 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:11.888 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:11.889 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.890 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.890 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.890 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.891 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.891 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.892 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.892 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.893 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.894 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.895 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:11.895 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.896 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:11.896 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.896 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.896 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.897 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:11.897 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.897 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.897 +03:00 [INF] Authorization failed. +2018-09-24 10:35:11.897 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:11.897 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.109ms. +2018-09-24 10:35:11.899 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:11.899 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5799000000000003ms +2018-09-24 10:35:11.899 +03:00 [INF] Request finished in 4.1572ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:11.900 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 10.8436ms. +2018-09-24 10:35:11.900 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:11.901 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.410400000000001ms +2018-09-24 10:35:11.901 +03:00 [INF] Request finished in 16.2095ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:17.068 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:35:17.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:17.068 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:17.515 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:35:17.520 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:17.521 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.523 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-24 10:35:17.523 +03:00 [INF] Executed action /Blog/Posts/New in 7.8932ms +2018-09-24 10:35:17.523 +03:00 [INF] Request finished in 455.4667ms 302 +2018-09-24 10:35:17.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:35:17.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:17.536 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:17.537 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:35:17.537 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:17.547 +03:00 [INF] Executed action /Index in 9.7540000000000013ms +2018-09-24 10:35:17.547 +03:00 [INF] Request finished in 11.1932ms 200 text/html; charset=utf-8 +2018-09-24 10:35:17.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:17.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:17.648 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:17.654 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:17.656 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:17.656 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.657 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.657 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.657 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.657 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.657 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:17.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:17.658 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.658 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:17.658 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.658 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.659 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.659 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.659 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.659 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:17.659 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.659 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1852ms. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.660 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.318ms +2018-09-24 10:35:17.660 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Request finished in 3.0626ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.661 +03:00 [INF] Authorization failed. +2018-09-24 10:35:17.664 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.5868ms. +2018-09-24 10:35:17.665 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:17.665 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.6622ms +2018-09-24 10:35:17.665 +03:00 [INF] Request finished in 17.1455ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:19.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp +2018-09-24 10:35:19.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:19.668 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:19.669 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 10:35:19.672 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:19.683 +03:00 [INF] Executed action /Blog/Posts/Index in 13.397ms +2018-09-24 10:35:19.683 +03:00 [INF] Request finished in 14.6528ms 200 text/html; charset=utf-8 +2018-09-24 10:35:25.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:35:25.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:25.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:25.423 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:35:25.426 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:25.426 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.426 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-24 10:35:25.426 +03:00 [INF] Executed action /Blog/Posts/New in 3.3075ms +2018-09-24 10:35:25.426 +03:00 [INF] Request finished in 4.8607ms 302 +2018-09-24 10:35:25.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:35:25.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:25.434 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:25.435 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:35:25.435 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:25.442 +03:00 [INF] Executed action /Index in 6.8528ms +2018-09-24 10:35:25.442 +03:00 [INF] Request finished in 8.3443ms 200 text/html; charset=utf-8 +2018-09-24 10:35:25.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:25.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:25.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:25.538 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:25.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:25.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:25.539 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:25.539 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:25.539 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.539 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.539 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.540 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.541 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.542 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1124ms. +2018-09-24 10:35:25.543 +03:00 [INF] Authorization failed. +2018-09-24 10:35:25.543 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:25.543 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4474ms +2018-09-24 10:35:25.543 +03:00 [INF] Request finished in 4.1423ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:25.544 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.9515ms. +2018-09-24 10:35:25.545 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:25.545 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.9694ms +2018-09-24 10:35:25.545 +03:00 [INF] Request finished in 8.7949ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:42.997 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:35:42.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:42.997 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:42.998 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:35:43.003 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:43.004 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.004 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-24 10:35:43.004 +03:00 [INF] Executed action /Blog/Posts/New in 5.7490000000000006ms +2018-09-24 10:35:43.004 +03:00 [INF] Request finished in 7.2961ms 302 +2018-09-24 10:35:43.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:35:43.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.029 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.030 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:35:43.030 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:43.038 +03:00 [INF] Executed action /Index in 7.5152ms +2018-09-24 10:35:43.038 +03:00 [INF] Request finished in 9.0583ms 200 text/html; charset=utf-8 +2018-09-24 10:35:43.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:35:43.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:35:43.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.145 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.146 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:35:43.146 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.146 +03:00 [INF] Request finished in 1.6161ms 200 text/css +2018-09-24 10:35:43.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:35:43.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.154 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.154 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:35:43.155 +03:00 [INF] Request finished in 2.3729ms 200 text/css +2018-09-24 10:35:43.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:35:43.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.157 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.158 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:35:43.158 +03:00 [INF] Request finished in 1.9953ms 200 text/css +2018-09-24 10:35:43.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:35:43.159 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:35:43.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.159 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.160 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:35:43.160 +03:00 [INF] Request finished in 1.6225ms 200 text/css +2018-09-24 10:35:43.162 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-24 10:35:43.162 +03:00 [INF] Request finished in 3.5349ms 200 text/css +2018-09-24 10:35:43.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:35:43.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.163 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.164 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:35:43.165 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:35:43.164 +03:00 [INF] Request finished in 20.7463ms 200 text/css +2018-09-24 10:35:43.165 +03:00 [INF] Request finished in 2.4278ms 200 text/css +2018-09-24 10:35:43.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:35:43.166 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.167 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.169 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:35:43.169 +03:00 [INF] Request finished in 3.655ms 200 text/css +2018-09-24 10:35:43.170 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:35:43.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.170 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.171 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:35:43.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.173 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.176 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:35:43.176 +03:00 [INF] Request finished in 6.4672ms 200 application/javascript +2018-09-24 10:35:43.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:35:43.176 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:35:43.176 +03:00 [INF] Request finished in 5.7007ms 200 application/javascript +2018-09-24 10:35:43.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:35:43.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.177 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.178 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:35:43.179 +03:00 [INF] Request finished in 2.4674ms 200 application/javascript +2018-09-24 10:35:43.181 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:35:43.181 +03:00 [INF] Request finished in 4.9357ms 200 application/javascript +2018-09-24 10:35:43.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:35:43.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.183 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.187 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:35:43.187 +03:00 [INF] Request finished in 4.5197ms 200 application/javascript +2018-09-24 10:35:43.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:35:43.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:35:43.193 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.194 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.194 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:35:43.194 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:35:43.194 +03:00 [INF] Request finished in 1.6079ms 200 application/javascript +2018-09-24 10:35:43.194 +03:00 [INF] Request finished in 1.6346ms 200 application/javascript +2018-09-24 10:35:43.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:35:43.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.202 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:35:43.202 +03:00 [INF] Request finished in 3.0377ms 200 application/javascript +2018-09-24 10:35:43.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:35:43.207 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.208 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.210 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:35:43.210 +03:00 [INF] Request finished in 3.3816ms 200 application/javascript +2018-09-24 10:35:43.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:35:43.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.211 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:35:43.223 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:35:43.224 +03:00 [INF] Request finished in 13.5145ms 200 application/javascript +2018-09-24 10:35:43.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.224 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.225 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:35:43.225 +03:00 [INF] Request finished in 5.2375ms 200 application/javascript +2018-09-24 10:35:43.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:35:43.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.229 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:35:43.229 +03:00 [INF] Request finished in 1.3615ms 200 application/javascript +2018-09-24 10:35:43.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:35:43.241 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:35:43.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.241 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.241 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:35:43.242 +03:00 [INF] Request finished in 1.3348ms 200 application/javascript +2018-09-24 10:35:43.242 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:35:43.242 +03:00 [INF] Request finished in 1.2605ms 200 application/javascript +2018-09-24 10:35:43.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:35:43.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.248 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-24 10:35:43.248 +03:00 [INF] Request finished in 5.1172ms 200 application/javascript +2018-09-24 10:35:43.248 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:35:43.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.248 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.253 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-24 10:35:43.254 +03:00 [INF] Request finished in 5.7257ms 200 application/javascript +2018-09-24 10:35:43.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:35:43.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.275 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-24 10:35:43.275 +03:00 [INF] Request finished in 3.5788ms 200 application/javascript +2018-09-24 10:35:43.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:35:43.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.292 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-24 10:35:43.293 +03:00 [INF] Request finished in 1.8257ms 200 application/javascript +2018-09-24 10:35:43.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:35:43.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:35:43.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.371 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.373 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-24 10:35:43.373 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-24 10:35:43.373 +03:00 [INF] Request finished in 4.5062ms 200 application/javascript +2018-09-24 10:35:43.373 +03:00 [INF] Request finished in 2.8716ms 200 application/javascript +2018-09-24 10:35:43.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:35:43.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.375 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.377 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-24 10:35:43.377 +03:00 [INF] Request finished in 3.089ms 200 application/javascript +2018-09-24 10:35:43.381 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:35:43.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.381 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.382 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:35:43.382 +03:00 [INF] Request finished in 1.0905ms 200 application/javascript +2018-09-24 10:35:43.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:43.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.389 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.390 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:43.391 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:43.391 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.391 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.391 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.391 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.392 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.393 +03:00 [INF] Authorization failed. +2018-09-24 10:35:43.395 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 3.8709000000000002ms. +2018-09-24 10:35:43.395 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:43.396 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.2298ms +2018-09-24 10:35:43.396 +03:00 [INF] Request finished in 6.9664ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:43.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:43.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.398 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.400 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:43.401 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:43.402 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1188ms. +2018-09-24 10:35:43.402 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:43.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:35:43.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.402 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0183ms +2018-09-24 10:35:43.402 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.402 +03:00 [INF] Request finished in 4.5738ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:43.403 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:35:43.403 +03:00 [INF] Request finished in 1.1976ms 200 application/javascript +2018-09-24 10:35:43.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:35:43.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.409 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:35:43.409 +03:00 [INF] Request finished in 1.1669ms 200 application/javascript +2018-09-24 10:35:43.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:35:43.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.424 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-24 10:35:43.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.424 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:35:43.424 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.424 +03:00 [INF] Request finished in 1.3567ms 200 image/svg+xml +2018-09-24 10:35:43.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-24 10:35:43.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.425 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.426 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-24 10:35:43.426 +03:00 [INF] Request finished in 0.9842ms 200 image/png +2018-09-24 10:35:43.426 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-24 10:35:43.427 +03:00 [INF] Request finished in 2.2477ms 200 image/png +2018-09-24 10:35:43.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-24 10:35:43.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.434 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-24 10:35:43.435 +03:00 [INF] Request finished in 2.7092ms 200 image/png +2018-09-24 10:35:43.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-24 10:35:43.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-24 10:35:43.438 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-24 10:35:43.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.439 +03:00 [INF] Request finished in 4.0966ms 200 image/png +2018-09-24 10:35:43.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-24 10:35:43.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.439 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-24 10:35:43.440 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-24 10:35:43.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.440 +03:00 [INF] Request finished in 0.9638ms 200 image/png +2018-09-24 10:35:43.440 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.440 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-24 10:35:43.440 +03:00 [INF] Request finished in 2.047ms 200 image/png +2018-09-24 10:35:43.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-24 10:35:43.441 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-24 10:35:43.441 +03:00 [INF] Request finished in 1.031ms 200 image/png +2018-09-24 10:35:43.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.441 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-24 10:35:43.442 +03:00 [INF] Request finished in 1.1814ms 200 image/png +2018-09-24 10:35:43.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-24 10:35:43.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.448 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.448 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-24 10:35:43.449 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-24 10:35:43.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.449 +03:00 [INF] Request finished in 1.151ms 200 image/png +2018-09-24 10:35:43.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.449 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-24 10:35:43.450 +03:00 [INF] Request finished in 1.276ms 200 image/png +2018-09-24 10:35:43.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-24 10:35:43.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-24 10:35:43.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.456 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-24 10:35:43.456 +03:00 [INF] Request finished in 1.0676ms 200 image/png +2018-09-24 10:35:43.457 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-24 10:35:43.457 +03:00 [INF] Request finished in 1.7286ms 200 image/png +2018-09-24 10:35:43.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-24 10:35:43.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.462 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-24 10:35:43.462 +03:00 [INF] Request finished in 1.8747ms 200 image/png +2018-09-24 10:35:43.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-24 10:35:43.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.462 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.463 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-24 10:35:43.463 +03:00 [INF] Request finished in 1.08ms 200 image/png +2018-09-24 10:35:43.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-24 10:35:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.470 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.471 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-24 10:35:43.471 +03:00 [INF] Request finished in 1.1623ms 200 image/png +2018-09-24 10:35:43.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-24 10:35:43.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.481 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.482 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-24 10:35:43.482 +03:00 [INF] Request finished in 1.2105ms 200 image/png +2018-09-24 10:35:43.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-24 10:35:43.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.487 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-24 10:35:43.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.491 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-24 10:35:43.491 +03:00 [INF] Request finished in 1.6369ms 200 image/png +2018-09-24 10:35:43.492 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-24 10:35:43.492 +03:00 [INF] Request finished in 5.3445ms 200 image/png +2018-09-24 10:35:43.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-24 10:35:43.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.493 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-24 10:35:43.493 +03:00 [INF] Request finished in 1.0641ms 200 image/png +2018-09-24 10:35:43.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-24 10:35:43.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.538 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-24 10:35:43.538 +03:00 [INF] Request finished in 2.0716ms 200 image/png +2018-09-24 10:35:43.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-24 10:35:43.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.542 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-24 10:35:43.542 +03:00 [INF] Request finished in 1.7302ms 200 image/png +2018-09-24 10:35:43.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-24 10:35:43.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.546 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-24 10:35:43.546 +03:00 [INF] Request finished in 2.1662ms 200 image/png +2018-09-24 10:35:43.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-24 10:35:43.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.556 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-24 10:35:43.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.557 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.557 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-24 10:35:43.557 +03:00 [INF] Request finished in 2.4843ms 200 image/png +2018-09-24 10:35:43.559 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-24 10:35:43.559 +03:00 [INF] Request finished in 2.4662ms 200 image/png +2018-09-24 10:35:43.559 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-24 10:35:43.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.559 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.560 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-24 10:35:43.560 +03:00 [INF] Request finished in 1.0516ms 200 image/png +2018-09-24 10:35:43.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-24 10:35:43.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.566 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.568 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-24 10:35:43.568 +03:00 [INF] Request finished in 2.4338ms 200 image/png +2018-09-24 10:35:43.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-24 10:35:43.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-24 10:35:43.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.578 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-24 10:35:43.578 +03:00 [INF] Request finished in 1.3196ms 200 image/png +2018-09-24 10:35:43.578 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-24 10:35:43.578 +03:00 [INF] Request finished in 1.1628ms 200 image/png +2018-09-24 10:35:43.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-24 10:35:43.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.579 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-24 10:35:43.579 +03:00 [INF] Request finished in 1.0351ms 200 image/png +2018-09-24 10:35:43.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-24 10:35:43.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-24 10:35:43.584 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.585 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.585 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-24 10:35:43.585 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-24 10:35:43.585 +03:00 [INF] Request finished in 1.1039ms 200 image/png +2018-09-24 10:35:43.585 +03:00 [INF] Request finished in 2.1821ms 200 image/png +2018-09-24 10:35:43.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-24 10:35:43.595 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-24 10:35:43.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.596 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-24 10:35:43.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-24 10:35:43.596 +03:00 [INF] Request finished in 1.7921ms 200 image/png +2018-09-24 10:35:43.597 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-24 10:35:43.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.597 +03:00 [INF] Request finished in 0.9343ms 200 image/png +2018-09-24 10:35:43.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:35:43.597 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-24 10:35:43.597 +03:00 [INF] Request finished in 1.0501ms 200 image/png +2018-09-24 10:35:43.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.598 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.599 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:35:43.600 +03:00 [INF] Request finished in 2.915ms 200 image/svg+xml +2018-09-24 10:35:43.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:35:43.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.601 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.602 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:35:43.602 +03:00 [INF] Request finished in 1.7779ms 200 image/png +2018-09-24 10:35:43.688 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:35:43.688 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.689 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.691 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:35:43.691 +03:00 [INF] Request finished in 3.009ms 200 font/woff2 +2018-09-24 10:35:43.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:35:43.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:43.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:43.901 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:35:43.901 +03:00 [INF] Request finished in 8.3393ms 200 image/jpeg +2018-09-24 10:35:44.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:35:44.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:44.293 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:44.294 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:35:44.294 +03:00 [INF] Request finished in 1.4251ms 200 image/png +2018-09-24 10:35:44.296 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 10:35:44.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:44.296 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:44.297 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 10:35:44.297 +03:00 [INF] Request finished in 1.9062ms 200 image/png +2018-09-24 10:35:54.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-24 10:35:54.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:54.506 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:54.511 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-24 10:35:54.541 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-24 10:35:54.549 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-24 10:35:54.550 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-24 10:35:54.550 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-24 10:35:54.551 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 9.8127000000000013ms. +2018-09-24 10:35:54.552 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-24 10:35:54.553 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 41.4328ms +2018-09-24 10:35:54.553 +03:00 [INF] Request finished in 47.2459ms 302 +2018-09-24 10:35:54.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-24 10:35:54.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:54.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.333 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 10:35:55.367 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:35:55.676 +03:00 [INF] Executed action /Account/Login in 342.635ms +2018-09-24 10:35:55.676 +03:00 [INF] Request finished in 1066.3997ms 200 text/html; charset=utf-8 +2018-09-24 10:35:55.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:35:55.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.736 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:35:55.736 +03:00 [INF] Request finished in 3.8764ms 200 text/css +2018-09-24 10:35:55.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:35:55.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.744 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.748 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:35:55.748 +03:00 [INF] Request finished in 4.7892ms 200 text/css +2018-09-24 10:35:55.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:35:55.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:35:55.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.783 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.784 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:35:55.784 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:35:55.784 +03:00 [INF] Request finished in 1.0023ms 200 text/css +2018-09-24 10:35:55.784 +03:00 [INF] Request finished in 1.2049ms 200 text/css +2018-09-24 10:35:55.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:35:55.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.795 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:35:55.795 +03:00 [INF] Request finished in 1.5466ms 200 text/css +2018-09-24 10:35:55.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:35:55.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:35:55.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.795 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.798 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-24 10:35:55.799 +03:00 [INF] Request finished in 4.2621ms 200 text/css +2018-09-24 10:35:55.801 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:35:55.801 +03:00 [INF] Request finished in 5.905ms 200 text/css +2018-09-24 10:35:55.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:35:55.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.805 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.806 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:35:55.806 +03:00 [INF] Request finished in 1.6722ms 200 text/css +2018-09-24 10:35:55.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:35:55.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:35:55.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.807 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.808 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:35:55.808 +03:00 [INF] Request finished in 1.3225ms 200 application/javascript +2018-09-24 10:35:55.816 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:35:55.816 +03:00 [INF] Request finished in 9.7054ms 200 application/javascript +2018-09-24 10:35:55.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:35:55.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:35:55.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:35:55.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.821 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.821 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:35:55.821 +03:00 [INF] Request finished in 1.1842ms 200 application/javascript +2018-09-24 10:35:55.821 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:35:55.822 +03:00 [INF] Request finished in 1.4647ms 200 application/javascript +2018-09-24 10:35:55.823 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:35:55.823 +03:00 [INF] Request finished in 3.0986ms 200 application/javascript +2018-09-24 10:35:55.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:35:55.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.826 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:35:55.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.829 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.830 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:35:55.830 +03:00 [INF] Request finished in 2.1866ms 200 application/javascript +2018-09-24 10:35:55.834 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:35:55.834 +03:00 [INF] Request finished in 8.4906ms 200 application/javascript +2018-09-24 10:35:55.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:35:55.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.834 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.835 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:35:55.835 +03:00 [INF] Request finished in 1.364ms 200 application/javascript +2018-09-24 10:35:55.842 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:35:55.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.842 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:35:55.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.847 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:35:55.847 +03:00 [INF] Request finished in 6.1049ms 200 application/javascript +2018-09-24 10:35:55.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:35:55.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.852 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:35:55.852 +03:00 [INF] Request finished in 3.3868ms 200 application/javascript +2018-09-24 10:35:55.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:35:55.853 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:35:55.854 +03:00 [INF] Request finished in 10.6732ms 200 application/javascript +2018-09-24 10:35:55.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.854 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.855 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:35:55.855 +03:00 [INF] Request finished in 2.4013ms 200 application/javascript +2018-09-24 10:35:55.871 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:35:55.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.872 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:35:55.872 +03:00 [INF] Request finished in 6.3193ms 200 application/javascript +2018-09-24 10:35:55.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:35:55.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:35:55.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:35:55.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.883 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.884 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-24 10:35:55.884 +03:00 [INF] Request finished in 1.6052ms 200 application/javascript +2018-09-24 10:35:55.885 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:35:55.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.885 +03:00 [INF] Request finished in 8.2201ms 200 application/javascript +2018-09-24 10:35:55.885 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.889 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-24 10:35:55.889 +03:00 [INF] Request finished in 10.3621ms 200 application/javascript +2018-09-24 10:35:55.890 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:35:55.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.891 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.893 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-24 10:35:55.893 +03:00 [INF] Request finished in 2.4058ms 200 application/javascript +2018-09-24 10:35:55.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:35:55.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.894 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.895 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:35:55.896 +03:00 [INF] Request finished in 2.6526ms 200 image/svg+xml +2018-09-24 10:35:55.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:35:55.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.897 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.898 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:35:55.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:35:55.899 +03:00 [INF] Request finished in 2.4063ms 200 image/png +2018-09-24 10:35:55.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.899 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.900 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-24 10:35:55.901 +03:00 [INF] Request finished in 1.8966ms 200 application/javascript +2018-09-24 10:35:55.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:35:55.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.909 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:35:55.909 +03:00 [INF] Request finished in 1.2344ms 200 image/svg+xml +2018-09-24 10:35:55.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:35:55.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.912 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.919 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-24 10:35:55.920 +03:00 [INF] Request finished in 12.1186ms 200 application/javascript +2018-09-24 10:35:55.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:35:55.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.938 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.939 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-24 10:35:55.939 +03:00 [INF] Request finished in 1.3456ms 200 application/javascript +2018-09-24 10:35:55.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:35:55.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.983 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-24 10:35:55.983 +03:00 [INF] Request finished in 3.5808ms 200 application/javascript +2018-09-24 10:35:55.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:35:55.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.986 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.987 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:35:55.987 +03:00 [INF] Request finished in 1.5044ms 200 application/javascript +2018-09-24 10:35:55.995 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:35:55.995 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:55.996 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:55.997 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:55.999 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:55.999 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.000 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.001 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.001 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.001 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.001 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.001 +03:00 [INF] Authorization failed. +2018-09-24 10:35:56.004 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.359ms. +2018-09-24 10:35:56.004 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:56.005 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.3928ms +2018-09-24 10:35:56.005 +03:00 [INF] Request finished in 9.6034ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:56.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:35:56.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.010 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:35:56.011 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:35:56.014 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 2.6465ms. +2018-09-24 10:35:56.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:35:56.015 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:35:56.015 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.6507000000000005ms +2018-09-24 10:35:56.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.015 +03:00 [INF] Request finished in 7.1284ms 200 text/plain; charset=utf-8 +2018-09-24 10:35:56.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.016 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:35:56.016 +03:00 [INF] Request finished in 1.6867ms 200 application/javascript +2018-09-24 10:35:56.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:35:56.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.024 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.025 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:35:56.025 +03:00 [INF] Request finished in 1.0472ms 200 application/javascript +2018-09-24 10:35:56.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:35:56.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.260 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:35:56.260 +03:00 [INF] Request finished in 2.3632ms 200 font/woff2 +2018-09-24 10:35:56.345 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:35:56.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.345 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.353 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:35:56.353 +03:00 [INF] Request finished in 8.1765ms 200 image/jpeg +2018-09-24 10:35:56.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:35:56.496 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.498 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:35:56.498 +03:00 [INF] Request finished in 1.6571ms 200 image/png +2018-09-24 10:35:56.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 10:35:56.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:35:56.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:35:56.501 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 10:35:56.501 +03:00 [INF] Request finished in 1.0046ms 200 image/png +2018-09-24 10:36:00.109 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-24 10:36:00.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.110 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.110 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 10:36:00.188 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:36:00.380 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-24 10:36:00.394 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-24 10:36:00.394 +03:00 [INF] Executed action /Account/Login in 283.55850000000004ms +2018-09-24 10:36:00.394 +03:00 [INF] Request finished in 284.8828ms 302 +2018-09-24 10:36:00.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:36:00.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.434 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:36:00.434 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:36:00.442 +03:00 [INF] Executed action /Index in 7.6332ms +2018-09-24 10:36:00.442 +03:00 [INF] Request finished in 37.3932ms 200 text/html; charset=utf-8 +2018-09-24 10:36:00.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:36:00.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:36:00.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.561 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:36:00.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:36:00.561 +03:00 [INF] Request finished in 1.1478ms 200 text/css +2018-09-24 10:36:00.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:36:00.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.563 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:36:00.563 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.563 +03:00 [INF] Request finished in 1.633ms 200 text/css +2018-09-24 10:36:00.563 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:36:00.563 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:36:00.563 +03:00 [INF] Request finished in 3.4725ms 200 text/css +2018-09-24 10:36:00.563 +03:00 [INF] Request finished in 1.2076ms 200 text/css +2018-09-24 10:36:00.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:36:00.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.581 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.582 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:36:00.583 +03:00 [INF] Request finished in 2.0424ms 200 text/css +2018-09-24 10:36:00.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:36:00.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.591 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-24 10:36:00.591 +03:00 [INF] Request finished in 1.8739ms 200 text/css +2018-09-24 10:36:00.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:36:00.662 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.663 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.663 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:36:00.663 +03:00 [INF] Request finished in 1.7496ms 200 text/css +2018-09-24 10:36:00.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:36:00.664 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.665 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.665 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:36:00.665 +03:00 [INF] Request finished in 1.3075ms 200 text/css +2018-09-24 10:36:00.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:36:00.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.673 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.674 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:36:00.674 +03:00 [INF] Request finished in 1.3089ms 200 application/javascript +2018-09-24 10:36:00.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:36:00.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.676 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:36:00.677 +03:00 [INF] Request finished in 1.369ms 200 application/javascript +2018-09-24 10:36:00.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:36:00.678 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:36:00.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.678 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.681 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:36:00.681 +03:00 [INF] Request finished in 2.8603ms 200 application/javascript +2018-09-24 10:36:00.684 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:36:00.685 +03:00 [INF] Request finished in 6.4229ms 200 application/javascript +2018-09-24 10:36:00.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:36:00.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:36:00.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.692 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:36:00.692 +03:00 [INF] Request finished in 1.6742ms 200 application/javascript +2018-09-24 10:36:00.692 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:36:00.692 +03:00 [INF] Request finished in 1.5277ms 200 application/javascript +2018-09-24 10:36:00.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:36:00.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.695 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:36:00.695 +03:00 [INF] Request finished in 1.4394ms 200 application/javascript +2018-09-24 10:36:00.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:36:00.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.715 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.716 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:36:00.716 +03:00 [INF] Request finished in 1.8336ms 200 application/javascript +2018-09-24 10:36:00.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:36:00.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.721 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:36:00.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.728 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:36:00.728 +03:00 [INF] Request finished in 7.2212ms 200 application/javascript +2018-09-24 10:36:00.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:36:00.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.730 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:36:00.731 +03:00 [INF] Request finished in 1.5664ms 200 application/javascript +2018-09-24 10:36:00.732 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:36:00.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.733 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.736 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:36:00.736 +03:00 [INF] Request finished in 3.5256ms 200 application/javascript +2018-09-24 10:36:00.737 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:36:00.737 +03:00 [INF] Request finished in 12.6325ms 200 application/javascript +2018-09-24 10:36:00.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:36:00.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.738 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.739 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:36:00.740 +03:00 [INF] Request finished in 2.2922ms 200 application/javascript +2018-09-24 10:36:00.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:36:00.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.742 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:36:00.742 +03:00 [INF] Request finished in 1.0342ms 200 application/javascript +2018-09-24 10:36:00.751 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:36:00.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.751 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.753 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-24 10:36:00.753 +03:00 [INF] Request finished in 2.4879ms 200 application/javascript +2018-09-24 10:36:00.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:36:00.754 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.755 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-24 10:36:00.757 +03:00 [INF] Request finished in 3.5994ms 200 application/javascript +2018-09-24 10:36:00.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:36:00.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.763 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-24 10:36:00.764 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:36:00.764 +03:00 [INF] Request finished in 3.8223ms 200 image/svg+xml +2018-09-24 10:36:00.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.764 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.765 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-24 10:36:00.765 +03:00 [INF] Request finished in 1.4939ms 200 image/png +2018-09-24 10:36:00.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-24 10:36:00.774 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.775 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.776 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-24 10:36:00.776 +03:00 [INF] Request finished in 9.5288ms 200 image/png +2018-09-24 10:36:00.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-24 10:36:00.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.777 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-24 10:36:00.778 +03:00 [INF] Request finished in 1.0769ms 200 image/png +2018-09-24 10:36:00.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-24 10:36:00.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.780 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-24 10:36:00.780 +03:00 [INF] Request finished in 1.2855ms 200 image/png +2018-09-24 10:36:00.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-24 10:36:00.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.782 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-24 10:36:00.782 +03:00 [INF] Request finished in 1.0526ms 200 image/png +2018-09-24 10:36:00.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-24 10:36:00.784 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.786 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-24 10:36:00.786 +03:00 [INF] Request finished in 4.8054ms 200 image/png +2018-09-24 10:36:00.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-24 10:36:00.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-24 10:36:00.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.788 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.789 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-24 10:36:00.789 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-24 10:36:00.789 +03:00 [INF] Request finished in 0.9969ms 200 image/png +2018-09-24 10:36:00.789 +03:00 [INF] Request finished in 2.8703ms 200 image/png +2018-09-24 10:36:00.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-24 10:36:00.791 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.792 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.792 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-24 10:36:00.792 +03:00 [INF] Request finished in 0.9825ms 200 image/png +2018-09-24 10:36:00.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-24 10:36:00.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.796 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-24 10:36:00.796 +03:00 [INF] Request finished in 2.4284ms 200 image/png +2018-09-24 10:36:00.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-24 10:36:00.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.797 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.798 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-24 10:36:00.798 +03:00 [INF] Request finished in 1.5241ms 200 image/png +2018-09-24 10:36:00.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-24 10:36:00.798 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.799 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.799 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-24 10:36:00.799 +03:00 [INF] Request finished in 1.2279ms 200 image/png +2018-09-24 10:36:00.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-24 10:36:00.801 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.802 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-24 10:36:00.802 +03:00 [INF] Request finished in 1.8384ms 200 image/png +2018-09-24 10:36:00.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-24 10:36:00.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.803 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.804 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-24 10:36:00.804 +03:00 [INF] Request finished in 1.2999ms 200 image/png +2018-09-24 10:36:00.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-24 10:36:00.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-24 10:36:00.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.808 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.808 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-24 10:36:00.808 +03:00 [INF] Request finished in 1.3956ms 200 image/png +2018-09-24 10:36:00.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-24 10:36:00.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.810 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-24 10:36:00.810 +03:00 [INF] Request finished in 1.082ms 200 image/png +2018-09-24 10:36:00.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-24 10:36:00.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-24 10:36:00.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.811 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.812 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.813 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-24 10:36:00.813 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-24 10:36:00.813 +03:00 [INF] Request finished in 2.3676ms 200 image/png +2018-09-24 10:36:00.814 +03:00 [INF] Request finished in 5.8859ms 200 image/png +2018-09-24 10:36:00.814 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-24 10:36:00.814 +03:00 [INF] Request finished in 2.5695ms 200 image/png +2018-09-24 10:36:00.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-24 10:36:00.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.820 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.821 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-24 10:36:00.822 +03:00 [INF] Request finished in 3.1721ms 200 image/png +2018-09-24 10:36:00.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-24 10:36:00.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-24 10:36:00.822 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.823 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-24 10:36:00.823 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-24 10:36:00.823 +03:00 [INF] Request finished in 1.4443ms 200 image/png +2018-09-24 10:36:00.823 +03:00 [INF] Request finished in 1.3344ms 200 image/png +2018-09-24 10:36:00.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-24 10:36:00.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.829 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-24 10:36:00.830 +03:00 [INF] Request finished in 1.8771ms 200 image/png +2018-09-24 10:36:00.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-24 10:36:00.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.830 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.830 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-24 10:36:00.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.831 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-24 10:36:00.831 +03:00 [INF] Request finished in 1.1479ms 200 image/png +2018-09-24 10:36:00.831 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-24 10:36:00.831 +03:00 [INF] Request finished in 0.9525ms 200 image/png +2018-09-24 10:36:00.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-24 10:36:00.835 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.836 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-24 10:36:00.837 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-24 10:36:00.837 +03:00 [INF] Request finished in 3.2313ms 200 image/png +2018-09-24 10:36:00.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.837 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.838 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-24 10:36:00.838 +03:00 [INF] Request finished in 1.7032ms 200 image/png +2018-09-24 10:36:00.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-24 10:36:00.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.839 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-24 10:36:00.839 +03:00 [INF] Request finished in 1.1418ms 200 image/png +2018-09-24 10:36:00.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-24 10:36:00.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.841 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.842 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-24 10:36:00.842 +03:00 [INF] Request finished in 1.7125ms 200 image/png +2018-09-24 10:36:00.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-24 10:36:00.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-24 10:36:00.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.844 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-24 10:36:00.844 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-24 10:36:00.844 +03:00 [INF] Request finished in 0.9403ms 200 image/png +2018-09-24 10:36:00.844 +03:00 [INF] Request finished in 0.7837ms 200 image/png +2018-09-24 10:36:00.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-24 10:36:00.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.850 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:36:00.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.851 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.852 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-24 10:36:00.852 +03:00 [INF] Request finished in 5.7366ms 200 image/png +2018-09-24 10:36:00.852 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:36:00.853 +03:00 [INF] Request finished in 2.4187ms 200 image/svg+xml +2018-09-24 10:36:00.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-24 10:36:00.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.857 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-24 10:36:00.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.858 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.858 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-24 10:36:00.858 +03:00 [INF] Request finished in 2.695ms 200 image/png +2018-09-24 10:36:00.858 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-24 10:36:00.859 +03:00 [INF] Request finished in 1.6447ms 200 image/png +2018-09-24 10:36:00.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:36:00.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.862 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.863 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:36:00.863 +03:00 [INF] Request finished in 2.1874ms 200 image/png +2018-09-24 10:36:00.874 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:36:00.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.874 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.875 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-24 10:36:00.876 +03:00 [INF] Request finished in 2.1029ms 200 application/javascript +2018-09-24 10:36:00.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:36:00.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.985 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.987 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-24 10:36:00.987 +03:00 [INF] Request finished in 2.7767ms 200 application/javascript +2018-09-24 10:36:00.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:36:00.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:00.994 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:00.995 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-24 10:36:00.995 +03:00 [INF] Request finished in 1.2924ms 200 application/javascript +2018-09-24 10:36:01.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:36:01.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.003 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-24 10:36:01.003 +03:00 [INF] Request finished in 2.7374ms 200 application/javascript +2018-09-24 10:36:01.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:36:01.008 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.009 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.009 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-24 10:36:01.009 +03:00 [INF] Request finished in 1.7925ms 200 application/javascript +2018-09-24 10:36:01.013 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:36:01.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.014 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.014 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:36:01.014 +03:00 [INF] Request finished in 1.0225ms 200 application/javascript +2018-09-24 10:36:01.015 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:36:01.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.015 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.018 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:36:01.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.019 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:36:01.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.027 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.028 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:36:01.028 +03:00 [INF] Request finished in 1.598ms 200 application/javascript +2018-09-24 10:36:01.033 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:36:01.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.033 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.034 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:36:01.034 +03:00 [INF] Request finished in 1.5151ms 200 application/javascript +2018-09-24 10:36:01.071 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:36:01.072 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:36:01.072 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10070000000000001ms. +2018-09-24 10:36:01.072 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:36:01.072 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0852ms +2018-09-24 10:36:01.072 +03:00 [INF] Request finished in 54.7941ms 200 text/plain; charset=utf-8 +2018-09-24 10:36:01.074 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:36:01.074 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:36:01.075 +03:00 [INF] Authorization failed. +2018-09-24 10:36:01.075 +03:00 [INF] Authorization failed. +2018-09-24 10:36:01.131 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.137 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.140 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.143 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.145 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.148 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.150 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.154 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.157 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.160 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.162 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.164 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.167 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.170 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.172 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.174 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.177 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.179 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.181 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.184 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.187 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.190 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.192 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.195 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.197 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.199 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.202 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:01.206 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 131.6368ms. +2018-09-24 10:36:01.214 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:36:01.215 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 140.9821ms +2018-09-24 10:36:01.215 +03:00 [INF] Request finished in 200.2587ms 200 text/plain; charset=utf-8 +2018-09-24 10:36:01.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:36:01.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.311 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.313 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:36:01.314 +03:00 [INF] Request finished in 2.3886ms 200 font/woff2 +2018-09-24 10:36:01.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:36:01.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.394 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:36:01.394 +03:00 [INF] Request finished in 9.8285ms 200 image/jpeg +2018-09-24 10:36:01.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:36:01.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 10:36:01.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.728 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:01.729 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 10:36:01.729 +03:00 [INF] Request finished in 1.0135ms 200 image/png +2018-09-24 10:36:01.729 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:36:01.729 +03:00 [INF] Request finished in 1.2506ms 200 image/png +2018-09-24 10:36:01.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:36:01.976 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:01.977 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.004 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:36:02.007 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:36:02.017 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.129 +03:00 [INF] Executed action /Blog/Posts/New in 125.6718ms +2018-09-24 10:36:02.130 +03:00 [INF] Request finished in 153.424ms 200 text/html; charset=utf-8 +2018-09-24 10:36:02.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:36:02.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.196 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.196 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:36:02.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.197 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:36:02.198 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.199 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.199 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:36:02.199 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:36:02.199 +03:00 [INF] Request finished in 3.7769ms 200 text/css +2018-09-24 10:36:02.199 +03:00 [INF] Request finished in 1.4071ms 200 text/css +2018-09-24 10:36:02.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:36:02.200 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:36:02.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.200 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:36:02.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.201 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.201 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:36:02.201 +03:00 [INF] Request finished in 1.3966ms 200 text/css +2018-09-24 10:36:02.201 +03:00 [INF] Request finished in 4.4894ms 200 text/css +2018-09-24 10:36:02.202 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:36:02.202 +03:00 [INF] Request finished in 1.5689ms 200 text/css +2018-09-24 10:36:02.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:36:02.202 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.203 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.204 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-24 10:36:02.204 +03:00 [INF] Request finished in 2.0208ms 200 text/css +2018-09-24 10:36:02.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:36:02.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636731257339438539 +2018-09-24 10:36:02.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.214 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:36:02.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636731257344868550 +2018-09-24 10:36:02.214 +03:00 [INF] Request finished in 1.1472ms 200 text/css +2018-09-24 10:36:02.214 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:36:02.214 +03:00 [INF] Request finished in 1.1494ms 200 text/css +2018-09-24 10:36:02.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.215 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.215 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-24 10:36:02.215 +03:00 [INF] Request finished in 1.981ms 200 text/css +2018-09-24 10:36:02.216 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-24 10:36:02.216 +03:00 [INF] Request finished in 2.8333ms 200 text/css +2018-09-24 10:36:02.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636731257343168547 +2018-09-24 10:36:02.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.225 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.226 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-24 10:36:02.226 +03:00 [INF] Request finished in 1.0718ms 200 text/css +2018-09-24 10:36:02.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636676677213700151 +2018-09-24 10:36:02.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636731257340658507 +2018-09-24 10:36:02.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.229 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.229 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-24 10:36:02.230 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\new.css' +2018-09-24 10:36:02.230 +03:00 [INF] Request finished in 2.1439ms 200 text/css +2018-09-24 10:36:02.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:36:02.230 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.231 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.231 +03:00 [INF] Request finished in 1.2216ms 200 text/css +2018-09-24 10:36:02.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:36:02.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.243 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.244 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:36:02.244 +03:00 [INF] Request finished in 1.7779ms 200 application/javascript +2018-09-24 10:36:02.245 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:36:02.245 +03:00 [INF] Request finished in 14.788ms 200 application/javascript +2018-09-24 10:36:02.247 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:36:02.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.249 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:36:02.249 +03:00 [INF] Request finished in 2.2101ms 200 application/javascript +2018-09-24 10:36:02.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:36:02.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.290 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:36:02.291 +03:00 [INF] Request finished in 6.2678ms 200 application/javascript +2018-09-24 10:36:02.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:36:02.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.307 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:36:02.307 +03:00 [INF] Request finished in 1.3359ms 200 image/svg+xml +2018-09-24 10:36:02.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:36:02.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.313 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.314 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:36:02.314 +03:00 [INF] Request finished in 1.8485ms 200 image/png +2018-09-24 10:36:02.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:36:02.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.321 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.322 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:36:02.322 +03:00 [INF] Request finished in 1.3682ms 200 image/svg+xml +2018-09-24 10:36:02.324 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:36:02.324 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.325 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:36:02.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:36:02.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.326 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.326 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:36:02.326 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:36:02.326 +03:00 [INF] Request finished in 1.0984ms 200 application/javascript +2018-09-24 10:36:02.326 +03:00 [INF] Request finished in 0.9945ms 200 application/javascript +2018-09-24 10:36:02.327 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:36:02.327 +03:00 [INF] Request finished in 2.6354ms 200 application/javascript +2018-09-24 10:36:02.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:36:02.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.443 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.444 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:36:02.444 +03:00 [INF] Request finished in 1.2011ms 200 application/javascript +2018-09-24 10:36:02.468 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:36:02.468 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.469 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.472 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:36:02.472 +03:00 [INF] Request finished in 3.9719ms 200 application/javascript +2018-09-24 10:36:02.493 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:36:02.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.493 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:36:02.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:36:02.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:36:02.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.498 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.499 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:36:02.499 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:36:02.499 +03:00 [INF] Request finished in 1.0551ms 200 application/javascript +2018-09-24 10:36:02.499 +03:00 [INF] Request finished in 1.0942ms 200 application/javascript +2018-09-24 10:36:02.499 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:36:02.499 +03:00 [INF] Request finished in 0.7938ms 200 application/javascript +2018-09-24 10:36:02.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:36:02.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:36:02.501 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-24 10:36:02.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.501 +03:00 [INF] Request finished in 1.2705ms 200 application/javascript +2018-09-24 10:36:02.501 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.502 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:36:02.502 +03:00 [INF] Request finished in 8.7067ms 200 application/javascript +2018-09-24 10:36:02.502 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:36:02.502 +03:00 [INF] Request finished in 1.239ms 200 application/javascript +2018-09-24 10:36:02.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:36:02.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:36:02.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.518 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.519 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:36:02.519 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-24 10:36:02.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:36:02.521 +03:00 [INF] Request finished in 3.0889ms 200 application/javascript +2018-09-24 10:36:02.521 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-24 10:36:02.522 +03:00 [INF] Request finished in 3.7514ms 200 application/javascript +2018-09-24 10:36:02.521 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.522 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.522 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-24 10:36:02.522 +03:00 [INF] Request finished in 3.6876ms 200 application/javascript +2018-09-24 10:36:02.522 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-24 10:36:02.523 +03:00 [INF] Request finished in 1.4969ms 200 application/javascript +2018-09-24 10:36:02.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:36:02.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.528 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.530 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-24 10:36:02.531 +03:00 [INF] Request finished in 3.5695ms 200 application/javascript +2018-09-24 10:36:02.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:36:02.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.531 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.532 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:36:02.532 +03:00 [INF] Request finished in 0.8834ms 200 application/javascript +2018-09-24 10:36:02.532 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-24 10:36:02.532 +03:00 [INF] Request finished in 1.065ms 200 application/javascript +2018-09-24 10:36:02.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:36:02.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:36:02.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.540 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:36:02.540 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:36:02.541 +03:00 [INF] Request finished in 1.2779ms 200 application/javascript +2018-09-24 10:36:02.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.541 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.541 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:36:02.541 +03:00 [INF] Request finished in 0.9616ms 200 application/javascript +2018-09-24 10:36:02.547 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636731257339438539 +2018-09-24 10:36:02.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.547 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.548 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-24 10:36:02.548 +03:00 [INF] Request finished in 1.2813ms 200 application/javascript +2018-09-24 10:36:02.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636731257340138527 +2018-09-24 10:36:02.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.571 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-24 10:36:02.571 +03:00 [INF] Request finished in 9.389ms 200 application/javascript +2018-09-24 10:36:02.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636731257339498544 +2018-09-24 10:36:02.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636731257339448553 +2018-09-24 10:36:02.608 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.609 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-24 10:36:02.610 +03:00 [INF] Request finished in 1.3414ms 200 application/javascript +2018-09-24 10:36:02.611 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-24 10:36:02.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636731257339448553 +2018-09-24 10:36:02.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.612 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.612 +03:00 [INF] Request finished in 4.4169ms 200 application/javascript +2018-09-24 10:36:02.613 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-24 10:36:02.613 +03:00 [INF] Request finished in 1.146ms 200 application/javascript +2018-09-24 10:36:02.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636731257339448553 +2018-09-24 10:36:02.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.619 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-24 10:36:02.619 +03:00 [INF] Request finished in 1.8844ms 200 application/javascript +2018-09-24 10:36:02.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636731257341338548 +2018-09-24 10:36:02.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.629 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.635 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-24 10:36:02.636 +03:00 [INF] Request finished in 7.7834ms 200 application/javascript +2018-09-24 10:36:02.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636722685013655878 +2018-09-24 10:36:02.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.639 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.640 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\new.js' +2018-09-24 10:36:02.640 +03:00 [INF] Request finished in 1.3019ms 200 application/javascript +2018-09-24 10:36:02.651 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:36:02.651 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:36:02.652 +03:00 [INF] Authorization failed. +2018-09-24 10:36:02.652 +03:00 [INF] Authorization failed. +2018-09-24 10:36:02.653 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.654 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.656 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.657 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:36:02.657 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.657 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:36:02.657 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.657 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10300000000000001ms. +2018-09-24 10:36:02.658 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:36:02.658 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0859ms +2018-09-24 10:36:02.658 +03:00 [INF] Request finished in 118.5386ms 200 text/plain; charset=utf-8 +2018-09-24 10:36:02.658 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.658 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.659 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.660 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.660 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.661 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.661 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.661 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.662 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.662 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.663 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.663 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.664 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.664 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.665 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.665 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.666 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.666 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.667 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.667 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.668 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.668 +03:00 [INF] Authorization was successful. +2018-09-24 10:36:02.670 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 18.6997ms. +2018-09-24 10:36:02.671 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:36:02.671 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 20.0451ms +2018-09-24 10:36:02.671 +03:00 [INF] Request finished in 139.9341ms 200 text/plain; charset=utf-8 +2018-09-24 10:36:02.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:36:02.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.771 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:36:02.771 +03:00 [INF] Request finished in 2.9888ms 200 font/woff2 +2018-09-24 10:36:02.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:36:02.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:02.909 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:02.916 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:36:02.916 +03:00 [INF] Request finished in 7.2397ms 200 image/jpeg +2018-09-24 10:36:03.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 10:36:03.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:03.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:03.307 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 10:36:03.308 +03:00 [INF] Request finished in 1.1864ms 200 image/png +2018-09-24 10:36:03.416 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:36:03.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:03.417 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:03.417 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 10:36:03.418 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:36:03.418 +03:00 [INF] Request finished in 1.544ms 200 image/png +2018-09-24 10:36:03.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:36:03.418 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:36:03.418 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 10:36:03.418 +03:00 [INF] Request finished in 1.075ms 200 image/png +2018-09-24 10:37:40.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:37:40.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.382 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.413 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:37:40.416 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:37:40.417 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.496 +03:00 [INF] Executed action /Blog/Posts/New in 82.31110000000001ms +2018-09-24 10:37:40.496 +03:00 [INF] Request finished in 113.9836ms 200 text/html; charset=utf-8 +2018-09-24 10:37:40.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:37:40.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:37:40.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.544 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.544 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:37:40.545 +03:00 [INF] Request finished in 1.1266ms 200 text/css +2018-09-24 10:37:40.548 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:37:40.548 +03:00 [INF] Request finished in 5.3048ms 200 text/css +2018-09-24 10:37:40.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:37:40.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.552 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.554 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:37:40.554 +03:00 [INF] Request finished in 2.5355ms 200 text/css +2018-09-24 10:37:40.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:37:40.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:37:40.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.577 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.577 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:37:40.578 +03:00 [INF] Request finished in 1.6073ms 200 text/css +2018-09-24 10:37:40.578 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:37:40.579 +03:00 [INF] Request finished in 1.9724ms 200 text/css +2018-09-24 10:37:40.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-09-24 10:37:40.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.588 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-09-24 10:37:40.588 +03:00 [INF] Request finished in 1.5934ms 200 text/css +2018-09-24 10:37:40.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:37:40.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.623 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.624 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:37:40.624 +03:00 [INF] Request finished in 1.1977ms 200 text/css +2018-09-24 10:37:40.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:37:40.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636731257339438539 +2018-09-24 10:37:40.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.632 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:37:40.632 +03:00 [INF] Request finished in 1.6439ms 200 text/css +2018-09-24 10:37:40.632 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-24 10:37:40.632 +03:00 [INF] Request finished in 1.116ms 200 text/css +2018-09-24 10:37:40.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636731257343168547 +2018-09-24 10:37:40.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636731257344868550 +2018-09-24 10:37:40.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636731257340658507 +2018-09-24 10:37:40.675 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-24 10:37:40.676 +03:00 [INF] Request finished in 1.4149ms 200 text/css +2018-09-24 10:37:40.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.676 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.676 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-24 10:37:40.676 +03:00 [INF] Request finished in 1.8569ms 200 text/css +2018-09-24 10:37:40.676 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-24 10:37:40.677 +03:00 [INF] Request finished in 1.452ms 200 text/css +2018-09-24 10:37:40.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636676677213700151 +2018-09-24 10:37:40.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:37:40.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.684 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:37:40.685 +03:00 [INF] Request finished in 2.0176ms 200 application/javascript +2018-09-24 10:37:40.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.686 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.689 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\new.css' +2018-09-24 10:37:40.689 +03:00 [INF] Request finished in 6.6744ms 200 text/css +2018-09-24 10:37:40.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:37:40.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:37:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.690 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:37:40.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.691 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.692 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:37:40.692 +03:00 [INF] Request finished in 1.0584ms 200 application/javascript +2018-09-24 10:37:40.694 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:37:40.695 +03:00 [INF] Request finished in 4.8959ms 200 application/javascript +2018-09-24 10:37:40.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:37:40.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.697 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.699 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:37:40.699 +03:00 [INF] Request finished in 9.5375ms 200 application/javascript +2018-09-24 10:37:40.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:37:40.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.700 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.701 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:37:40.701 +03:00 [INF] Request finished in 1.7531ms 200 application/javascript +2018-09-24 10:37:40.702 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:37:40.702 +03:00 [INF] Request finished in 5.1623ms 200 application/javascript +2018-09-24 10:37:40.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:37:40.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.705 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:37:40.705 +03:00 [INF] Request finished in 2.4967ms 200 application/javascript +2018-09-24 10:37:40.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:37:40.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.708 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:37:40.709 +03:00 [INF] Request finished in 2.1583ms 200 image/svg+xml +2018-09-24 10:37:40.716 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:37:40.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.717 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.718 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:37:40.719 +03:00 [INF] Request finished in 2.215ms 200 image/png +2018-09-24 10:37:40.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:37:40.727 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:37:40.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.727 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.728 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:37:40.728 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:37:40.728 +03:00 [INF] Request finished in 1.2618ms 200 application/javascript +2018-09-24 10:37:40.728 +03:00 [INF] Request finished in 1.0944ms 200 image/svg+xml +2018-09-24 10:37:40.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:37:40.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.733 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:37:40.734 +03:00 [INF] Request finished in 4.7811ms 200 application/javascript +2018-09-24 10:37:40.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:37:40.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.741 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.741 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:37:40.742 +03:00 [INF] Request finished in 1.5715ms 200 application/javascript +2018-09-24 10:37:40.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:37:40.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.742 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:37:40.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.742 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.743 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:37:40.743 +03:00 [INF] Request finished in 1.4661ms 200 application/javascript +2018-09-24 10:37:40.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:37:40.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.746 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.748 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:37:40.748 +03:00 [INF] Request finished in 2.6574ms 200 application/javascript +2018-09-24 10:37:40.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:37:40.749 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.750 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.751 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:37:40.751 +03:00 [INF] Request finished in 2.549ms 200 application/javascript +2018-09-24 10:37:40.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-09-24 10:37:40.756 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:37:40.756 +03:00 [INF] Request finished in 14.2378ms 200 application/javascript +2018-09-24 10:37:40.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.756 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-09-24 10:37:40.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.757 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-09-24 10:37:40.757 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-09-24 10:37:40.757 +03:00 [INF] Request finished in 0.9645ms 200 application/javascript +2018-09-24 10:37:40.757 +03:00 [INF] Request finished in 1.6085ms 200 application/javascript +2018-09-24 10:37:40.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-09-24 10:37:40.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.760 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.761 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-09-24 10:37:40.761 +03:00 [INF] Request finished in 1.7531ms 200 application/javascript +2018-09-24 10:37:40.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-09-24 10:37:40.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-09-24 10:37:40.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.766 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.766 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-09-24 10:37:40.767 +03:00 [INF] Request finished in 1.415ms 200 application/javascript +2018-09-24 10:37:40.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-09-24 10:37:40.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.768 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.768 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-09-24 10:37:40.769 +03:00 [INF] Request finished in 1.0924ms 200 application/javascript +2018-09-24 10:37:40.769 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-09-24 10:37:40.770 +03:00 [INF] Request finished in 4.329ms 200 application/javascript +2018-09-24 10:37:40.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-09-24 10:37:40.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.773 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-09-24 10:37:40.773 +03:00 [INF] Request finished in 1.6108ms 200 application/javascript +2018-09-24 10:37:40.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:37:40.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.777 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.778 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:37:40.778 +03:00 [INF] Request finished in 5.3526ms 200 application/javascript +2018-09-24 10:37:40.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:37:40.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.779 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:37:40.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:37:40.780 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.781 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.781 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:37:40.782 +03:00 [INF] Request finished in 1.4106ms 200 application/javascript +2018-09-24 10:37:40.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:37:40.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.786 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.787 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:37:40.788 +03:00 [INF] Request finished in 3.5576ms 200 application/javascript +2018-09-24 10:37:40.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636731257339438539 +2018-09-24 10:37:40.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.789 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.793 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-24 10:37:40.793 +03:00 [INF] Request finished in 4.6681ms 200 application/javascript +2018-09-24 10:37:40.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636731257340138527 +2018-09-24 10:37:40.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.794 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636731257339448553 +2018-09-24 10:37:40.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.802 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.804 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-24 10:37:40.805 +03:00 [INF] Request finished in 11.6397ms 200 application/javascript +2018-09-24 10:37:40.805 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-24 10:37:40.806 +03:00 [INF] Request finished in 4.9799ms 200 application/javascript +2018-09-24 10:37:40.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636731257339498544 +2018-09-24 10:37:40.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.812 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-24 10:37:40.812 +03:00 [INF] Request finished in 2.6351ms 200 application/javascript +2018-09-24 10:37:40.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636731257339448553 +2018-09-24 10:37:40.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.825 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.826 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-24 10:37:40.826 +03:00 [INF] Request finished in 1.1292ms 200 application/javascript +2018-09-24 10:37:40.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636731257339448553 +2018-09-24 10:37:40.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.831 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.833 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-24 10:37:40.834 +03:00 [INF] Request finished in 2.4184ms 200 application/javascript +2018-09-24 10:37:40.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636731257341338548 +2018-09-24 10:37:40.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.843 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636722685013655878 +2018-09-24 10:37:40.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:40.847 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:40.848 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\new.js' +2018-09-24 10:37:40.848 +03:00 [INF] Request finished in 1.2649ms 200 application/javascript +2018-09-24 10:37:40.855 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-24 10:37:40.855 +03:00 [INF] Request finished in 11.5984ms 200 application/javascript +2018-09-24 10:37:40.890 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:37:40.890 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:37:40.891 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1226ms. +2018-09-24 10:37:40.891 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:37:40.891 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2305000000000001ms +2018-09-24 10:37:40.891 +03:00 [INF] Request finished in 112.4927ms 200 text/plain; charset=utf-8 +2018-09-24 10:37:40.894 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:37:40.895 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:37:40.895 +03:00 [INF] Authorization failed. +2018-09-24 10:37:40.895 +03:00 [INF] Authorization failed. +2018-09-24 10:37:40.896 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.897 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.897 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.898 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.899 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.899 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.900 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.901 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.902 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.903 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.904 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.904 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.905 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.906 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.906 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.907 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.907 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.908 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.909 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.910 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.911 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.911 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.912 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.912 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.913 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.914 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.914 +03:00 [INF] Authorization was successful. +2018-09-24 10:37:40.916 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.9431ms. +2018-09-24 10:37:40.916 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:37:40.917 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.3898ms +2018-09-24 10:37:40.917 +03:00 [INF] Request finished in 136.7643ms 200 text/plain; charset=utf-8 +2018-09-24 10:37:41.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:37:41.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:41.327 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:41.329 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:37:41.329 +03:00 [INF] Request finished in 2.2773ms 200 font/woff2 +2018-09-24 10:37:41.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:37:41.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:41.428 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:41.436 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:37:41.436 +03:00 [INF] Request finished in 8.5195ms 200 image/jpeg +2018-09-24 10:37:41.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 10:37:41.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:41.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:41.627 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 10:37:41.627 +03:00 [INF] Request finished in 1.2505ms 200 image/png +2018-09-24 10:37:41.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:37:41.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:41.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:41.824 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:37:41.825 +03:00 [INF] Request finished in 1.6409ms 200 image/png +2018-09-24 10:37:41.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:37:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:41.872 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:41.873 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:37:41.873 +03:00 [INF] Request finished in 1.2866ms 200 image/png +2018-09-24 10:37:54.060 +03:00 [INF] Loaded modules: +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:37:54.076 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:37:54.077 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:37:54.078 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:37:56.011 +03:00 [INF] Initialized all modules. +2018-09-24 10:37:56.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:37:56.307 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:37:56.310 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:37:58.860 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:37:59.170 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:37:59.306 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:01.285 +03:00 [INF] Executed action /Blog/Posts/New in 2419.8727ms +2018-09-24 10:38:01.306 +03:00 [INF] Request finished in 5027.3986ms 200 text/html; charset=utf-8 +2018-09-24 10:38:01.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-09-24 10:38:01.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-09-24 10:38:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.333 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.334 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.341 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-09-24 10:38:01.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.342 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.343 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-09-24 10:38:01.344 +03:00 [INF] Request finished in 2.4864ms 200 text/css +2018-09-24 10:38:01.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-09-24 10:38:01.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.349 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.353 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-09-24 10:38:01.353 +03:00 [INF] Request finished in 4.6363ms 200 text/css +2018-09-24 10:38:01.356 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-09-24 10:38:01.356 +03:00 [INF] Request finished in 23.63ms 200 text/css +2018-09-24 10:38:01.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636731107089578157 +2018-09-24 10:38:01.359 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-09-24 10:38:01.359 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.360 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.361 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-styles.css' +2018-09-24 10:38:01.361 +03:00 [INF] Request finished in 1.7742ms 200 text/css +2018-09-24 10:38:01.361 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-09-24 10:38:01.365 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-09-24 10:38:01.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.365 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.365 +03:00 [INF] Request finished in 5.34ms 200 text/css +2018-09-24 10:38:01.365 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-09-24 10:38:01.365 +03:00 [INF] Request finished in 1.3603ms 200 text/css +2018-09-24 10:38:01.371 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-09-24 10:38:01.373 +03:00 [INF] Request finished in 40.4404ms 200 text/css +2018-09-24 10:38:01.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/styles/github.css?_v=636731257344868550 +2018-09-24 10:38:01.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-09-24 10:38:01.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.378 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.css?_v=636731257339438539 +2018-09-24 10:38:01.379 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/styles/github.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\styles\github.css' +2018-09-24 10:38:01.379 +03:00 [INF] Request finished in 1.5846ms 200 text/css +2018-09-24 10:38:01.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.379 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-09-24 10:38:01.379 +03:00 [INF] Request finished in 1.8926ms 200 text/css +2018-09-24 10:38:01.380 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.css' +2018-09-24 10:38:01.380 +03:00 [INF] Request finished in 2.1078ms 200 text/css +2018-09-24 10:38:01.385 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.min.css?_v=636731257343168547 +2018-09-24 10:38:01.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.386 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.min.css' +2018-09-24 10:38:01.387 +03:00 [INF] Request finished in 1.307ms 200 text/css +2018-09-24 10:38:01.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-contents.min.css?_v=636731257340658507 +2018-09-24 10:38:01.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.403 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.css?_v=636733705577714733 +2018-09-24 10:38:01.404 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-contents.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-contents.min.css' +2018-09-24 10:38:01.404 +03:00 [INF] Request finished in 1.7262ms 200 text/css +2018-09-24 10:38:01.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.407 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.css'. Physical path: '/Pages/Blog/Posts/new.css' +2018-09-24 10:38:01.408 +03:00 [INF] Request finished in 3.3671ms 200 text/css +2018-09-24 10:38:01.454 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-09-24 10:38:01.455 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.456 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-09-24 10:38:01.456 +03:00 [INF] Request finished in 2.168ms 200 application/javascript +2018-09-24 10:38:01.508 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-09-24 10:38:01.508 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.509 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.510 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:38:01.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.513 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.514 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:38:01.514 +03:00 [INF] Request finished in 3.9524ms 200 image/svg+xml +2018-09-24 10:38:01.515 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-09-24 10:38:01.516 +03:00 [INF] Request finished in 7.5193ms 200 application/javascript +2018-09-24 10:38:01.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:38:01.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.516 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.517 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:38:01.517 +03:00 [INF] Request finished in 1.4337ms 200 image/png +2018-09-24 10:38:01.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:38:01.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.520 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.521 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:38:01.521 +03:00 [INF] Request finished in 1.2982ms 200 image/svg+xml +2018-09-24 10:38:01.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-09-24 10:38:01.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-09-24 10:38:01.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-09-24 10:38:01.532 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.533 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.533 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-09-24 10:38:01.534 +03:00 [INF] Request finished in 1.92ms 200 application/javascript +2018-09-24 10:38:01.534 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-09-24 10:38:01.534 +03:00 [INF] Request finished in 2.1069ms 200 application/javascript +2018-09-24 10:38:01.537 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-09-24 10:38:01.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-09-24 10:38:01.537 +03:00 [INF] Request finished in 5.0054ms 200 application/javascript +2018-09-24 10:38:01.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.538 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.541 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-09-24 10:38:01.541 +03:00 [INF] Request finished in 4.2725ms 200 application/javascript +2018-09-24 10:38:01.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-09-24 10:38:01.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.542 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.543 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-09-24 10:38:01.543 +03:00 [INF] Request finished in 1.3094ms 200 application/javascript +2018-09-24 10:38:01.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-09-24 10:38:01.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.562 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.563 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-09-24 10:38:01.563 +03:00 [INF] Request finished in 1.5451ms 200 application/javascript +2018-09-24 10:38:01.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-09-24 10:38:01.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.565 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.567 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-09-24 10:38:01.568 +03:00 [INF] Request finished in 2.8904ms 200 application/javascript +2018-09-24 10:38:01.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-09-24 10:38:01.575 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.576 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-09-24 10:38:01.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.579 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.580 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-09-24 10:38:01.581 +03:00 [INF] Request finished in 2.0594ms 200 application/javascript +2018-09-24 10:38:01.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-09-24 10:38:01.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.588 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.590 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-09-24 10:38:01.590 +03:00 [INF] Request finished in 3.4695ms 200 application/javascript +2018-09-24 10:38:01.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-09-24 10:38:01.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.596 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.597 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-09-24 10:38:01.598 +03:00 [INF] Request finished in 1.8214ms 200 application/javascript +2018-09-24 10:38:01.600 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-09-24 10:38:01.600 +03:00 [INF] Request finished in 25.1651ms 200 application/javascript +2018-09-24 10:38:01.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-09-24 10:38:01.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636731107089578157 +2018-09-24 10:38:01.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636731107089578157 +2018-09-24 10:38:01.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.614 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636731107089578157 +2018-09-24 10:38:01.614 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.615 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-09-24 10:38:01.615 +03:00 [INF] Request finished in 1.0852ms 200 application/javascript +2018-09-24 10:38:01.615 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery_form/jquery-form-extensions.js' +2018-09-24 10:38:01.615 +03:00 [INF] Request finished in 1.1635ms 200 application/javascript +2018-09-24 10:38:01.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.615 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/dom-event-handlers.js' +2018-09-24 10:38:01.616 +03:00 [INF] Request finished in 1.8675ms 200 application/javascript +2018-09-24 10:38:01.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636731107089578157 +2018-09-24 10:38:01.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.617 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/bootstrap/modal-manager.js' +2018-09-24 10:38:01.617 +03:00 [INF] Request finished in 0.896ms 200 application/javascript +2018-09-24 10:38:01.620 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/jquery/jquery-extensions.js' +2018-09-24 10:38:01.620 +03:00 [INF] Request finished in 6.0257ms 200 application/javascript +2018-09-24 10:38:01.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636731107089578157 +2018-09-24 10:38:01.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.627 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.627 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/sweetalert/abp-sweetalert.js' +2018-09-24 10:38:01.627 +03:00 [INF] Request finished in 0.8995ms 200 application/javascript +2018-09-24 10:38:01.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636733644156578398 +2018-09-24 10:38:01.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.628 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.628 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-09-24 10:38:01.628 +03:00 [INF] Request finished in 0.7364ms 200 application/javascript +2018-09-24 10:38:01.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636731107089578157 +2018-09-24 10:38:01.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.630 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.630 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/datatables/datatables-extensions.js' +2018-09-24 10:38:01.631 +03:00 [INF] Request finished in 1.266ms 200 application/javascript +2018-09-24 10:38:01.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:38:01.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636731107089578157 +2018-09-24 10:38:01.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.631 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.632 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: '/wwwroot/libs/abp/aspnetcore_mvc_ui_theme_shared/toastr/abp-toastr.js' +2018-09-24 10:38:01.632 +03:00 [INF] Request finished in 1.1171ms 200 application/javascript +2018-09-24 10:38:01.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:38:01.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.636 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-09-24 10:38:01.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.646 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.646 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-09-24 10:38:01.647 +03:00 [INF] Request finished in 1.4332ms 200 application/javascript +2018-09-24 10:38:01.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-09-24 10:38:01.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.649 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/highlight.js/highlight.pack.js?_v=636731257339438539 +2018-09-24 10:38:01.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.650 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.650 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-09-24 10:38:01.650 +03:00 [INF] Request finished in 1.8851ms 200 application/javascript +2018-09-24 10:38:01.651 +03:00 [INF] Sending file. Request path: '/libs/highlight.js/highlight.pack.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\highlight.js\highlight.pack.js' +2018-09-24 10:38:01.651 +03:00 [INF] Request finished in 1.1776ms 200 application/javascript +2018-09-24 10:38:01.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/codemirror/codemirror.js?_v=636731257340138527 +2018-09-24 10:38:01.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/markdown-it/markdown-it.min.js?_v=636731257339448553 +2018-09-24 10:38:01.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.689 +03:00 [INF] Sending file. Request path: '/libs/markdown-it/markdown-it.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\markdown-it\markdown-it.min.js' +2018-09-24 10:38:01.690 +03:00 [INF] Request finished in 5.8849ms 200 application/javascript +2018-09-24 10:38:01.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/to-mark/to-mark.min.js?_v=636731257339498544 +2018-09-24 10:38:01.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.694 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.695 +03:00 [INF] Sending file. Request path: '/libs/to-mark/to-mark.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\to-mark\to-mark.min.js' +2018-09-24 10:38:01.695 +03:00 [INF] Request finished in 1.2674ms 200 application/javascript +2018-09-24 10:38:01.697 +03:00 [INF] Sending file. Request path: '/libs/codemirror/codemirror.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\codemirror\codemirror.js' +2018-09-24 10:38:01.697 +03:00 [INF] Request finished in 15.0243ms 200 application/javascript +2018-09-24 10:38:01.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-code-snippet/tui-code-snippet.min.js?_v=636731257339448553 +2018-09-24 10:38:01.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.711 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.712 +03:00 [INF] Sending file. Request path: '/libs/tui-code-snippet/tui-code-snippet.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-code-snippet\tui-code-snippet.min.js' +2018-09-24 10:38:01.712 +03:00 [INF] Request finished in 1.0347ms 200 application/javascript +2018-09-24 10:38:01.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/squire-rte/squire.js?_v=636731257339448553 +2018-09-24 10:38:01.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.727 +03:00 [INF] Sending file. Request path: '/libs/squire-rte/squire.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\squire-rte\squire.js' +2018-09-24 10:38:01.727 +03:00 [INF] Request finished in 1.4124ms 200 application/javascript +2018-09-24 10:38:01.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor-Editor.min.js?_v=636731257341338548 +2018-09-24 10:38:01.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/new.js?_v=636733705577714733 +2018-09-24 10:38:01.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:01.743 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:01.744 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/new.js'. Physical path: '/Pages/Blog/Posts/new.js' +2018-09-24 10:38:01.744 +03:00 [INF] Request finished in 0.9825ms 200 application/javascript +2018-09-24 10:38:01.750 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor-Editor.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor-Editor.min.js' +2018-09-24 10:38:01.751 +03:00 [INF] Request finished in 7.6388ms 200 application/javascript +2018-09-24 10:38:01.848 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:38:01.848 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:38:01.897 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:38:01.905 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:38:01.917 +03:00 [INF] Authorization failed. +2018-09-24 10:38:01.917 +03:00 [INF] Authorization failed. +2018-09-24 10:38:01.935 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:01.952 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:01.966 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:01.980 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.037 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.061 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 156.6253ms. +2018-09-24 10:38:02.071 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:38:02.073 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 224.67700000000002ms +2018-09-24 10:38:02.073 +03:00 [INF] Request finished in 437.6993ms 200 text/plain; charset=utf-8 +2018-09-24 10:38:02.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:38:02.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:02.075 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:02.076 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:38:02.076 +03:00 [INF] Request finished in 2.575ms 200 font/woff2 +2018-09-24 10:38:02.086 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.163 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.197 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.209 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.216 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.220 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.229 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.233 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:38:02.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:02.234 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:02.244 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:38:02.244 +03:00 [INF] Request finished in 10.6688ms 200 image/jpeg +2018-09-24 10:38:02.251 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.255 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.264 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.268 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.276 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.288 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.297 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.303 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.313 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.316 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.318 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.321 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.324 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.328 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:02.363 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 457.33480000000003ms. +2018-09-24 10:38:02.374 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:38:02.374 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 525.9148ms +2018-09-24 10:38:02.374 +03:00 [INF] Request finished in 743.7388ms 200 text/plain; charset=utf-8 +2018-09-24 10:38:02.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 10:38:02.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:02.718 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:02.719 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 10:38:02.719 +03:00 [INF] Request finished in 1.1359ms 200 image/png +2018-09-24 10:38:02.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:38:02.967 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:02.968 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:02.969 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:38:02.969 +03:00 [INF] Request finished in 2.1273ms 200 image/png +2018-09-24 10:38:02.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:38:02.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:02.970 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:02.972 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:38:02.972 +03:00 [INF] Request finished in 2.6102ms 200 image/png +2018-09-24 10:38:31.347 +03:00 [INF] Loaded modules: +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 10:38:31.366 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 10:38:31.367 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 10:38:31.368 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 10:38:33.552 +03:00 [INF] Initialized all modules. +2018-09-24 10:38:33.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:38:33.828 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:33.832 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:37.404 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:38:37.712 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:38:37.829 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:39.585 +03:00 [INF] Bundling __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (8 files) +2018-09-24 10:38:39.704 +03:00 [INF] Minifying __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (265639 bytes) +2018-09-24 10:38:40.145 +03:00 [INF] Bundled __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (216573 bytes) +2018-09-24 10:38:40.208 +03:00 [INF] Bundling __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (5 files) +2018-09-24 10:38:40.218 +03:00 [INF] Minifying __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (42069 bytes) +2018-09-24 10:38:40.233 +03:00 [INF] Bundled __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (39002 bytes) +2018-09-24 10:38:41.266 +03:00 [INF] Bundling __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (22 files) +2018-09-24 10:38:41.328 +03:00 [INF] Minifying __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (1273272 bytes) +2018-09-24 10:38:42.105 +03:00 [INF] Bundled __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (500536 bytes) +2018-09-24 10:38:42.114 +03:00 [INF] Bundling __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (2 files) +2018-09-24 10:38:42.118 +03:00 [INF] Minifying __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (51842 bytes) +2018-09-24 10:38:42.138 +03:00 [INF] Bundled __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (50331 bytes) +2018-09-24 10:38:42.144 +03:00 [INF] Bundling __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (8 files) +2018-09-24 10:38:42.232 +03:00 [INF] Minifying __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (921274 bytes) +2018-09-24 10:38:42.493 +03:00 [INF] Bundled __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (699391 bytes) +2018-09-24 10:38:42.516 +03:00 [INF] Executed action /Blog/Posts/New in 5107.3674ms +2018-09-24 10:38:42.536 +03:00 [INF] Request finished in 8755.3573ms 200 text/html; charset=utf-8 +2018-09-24 10:38:42.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733715201479868 +2018-09-24 10:38:42.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.567 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css?_v=636733715202339036 +2018-09-24 10:38:42.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733715221070623 +2018-09-24 10:38:42.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.582 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.584 +03:00 [INF] Sending file. Request path: '/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css'. Physical path: '/wwwroot/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css' +2018-09-24 10:38:42.585 +03:00 [INF] Request finished in 3.3835ms 200 text/css +2018-09-24 10:38:42.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:38:42.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.589 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:38:42.590 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.591 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.592 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 10:38:42.592 +03:00 [INF] Request finished in 26.6616ms 200 text/css +2018-09-24 10:38:42.598 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 10:38:42.599 +03:00 [INF] Request finished in 16.7526ms 200 application/javascript +2018-09-24 10:38:42.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733715221382813 +2018-09-24 10:38:42.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.610 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 10:38:42.610 +03:00 [INF] Request finished in 0.8982ms 200 application/javascript +2018-09-24 10:38:42.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:38:42.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:38:42.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.624 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:38:42.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.626 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.626 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:38:42.626 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:38:42.626 +03:00 [INF] Request finished in 2.1378ms 200 image/png +2018-09-24 10:38:42.626 +03:00 [INF] Request finished in 2.3923ms 200 image/svg+xml +2018-09-24 10:38:42.626 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:38:42.627 +03:00 [INF] Request finished in 1.3721ms 200 image/svg+xml +2018-09-24 10:38:42.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js?_v=636733715224946581 +2018-09-24 10:38:42.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:42.638 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:42.652 +03:00 [INF] Sending file. Request path: '/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js'. Physical path: '/wwwroot/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js' +2018-09-24 10:38:42.652 +03:00 [INF] Request finished in 14.2758ms 200 application/javascript +2018-09-24 10:38:42.694 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:38:42.698 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:38:42.745 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:38:42.751 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:38:42.759 +03:00 [INF] Authorization failed. +2018-09-24 10:38:42.759 +03:00 [INF] Authorization failed. +2018-09-24 10:38:42.765 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.768 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.771 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.774 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.777 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.781 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.784 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.788 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.791 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.794 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.805 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.810 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.817 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.820 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.826 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.833 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.836 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.840 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.855 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.858 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.861 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.864 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 112.76620000000001ms. +2018-09-24 10:38:42.866 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.870 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.872 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:38:42.873 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.873 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 174.7176ms +2018-09-24 10:38:42.873 +03:00 [INF] Request finished in 283.7705ms 200 text/plain; charset=utf-8 +2018-09-24 10:38:42.877 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.882 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.885 +03:00 [INF] Authorization was successful. +2018-09-24 10:38:42.921 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 170.2399ms. +2018-09-24 10:38:42.930 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:38:42.932 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 237.0277ms +2018-09-24 10:38:42.933 +03:00 [INF] Request finished in 343.486ms 200 text/plain; charset=utf-8 +2018-09-24 10:38:43.089 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:38:43.089 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:43.090 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:43.093 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:38:43.094 +03:00 [INF] Request finished in 4.7667ms 200 font/woff2 +2018-09-24 10:38:43.097 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:38:43.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:43.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:43.107 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:38:43.107 +03:00 [INF] Request finished in 10.7185ms 200 image/jpeg +2018-09-24 10:38:43.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 10:38:43.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:43.291 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:43.292 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 10:38:43.292 +03:00 [INF] Request finished in 1.3562ms 200 image/png +2018-09-24 10:38:43.460 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:38:43.460 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:43.461 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:43.461 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:38:43.461 +03:00 [INF] Request finished in 1.8234ms 200 image/png +2018-09-24 10:38:43.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:38:43.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:38:43.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:38:43.467 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:38:43.467 +03:00 [INF] Request finished in 1.8359ms 200 image/png +2018-09-24 10:40:14.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 10:40:14.560 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:14.561 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:15.035 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 10:40:15.036 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 10:40:15.480 +03:00 [INF] Executed action /Index in 445.5289ms +2018-09-24 10:40:15.481 +03:00 [INF] Request finished in 920.5701ms 200 text/html; charset=utf-8 +2018-09-24 10:40:17.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:40:17.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:17.292 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:17.317 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:40:17.321 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:40:17.321 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:17.383 +03:00 [INF] Executed action /Blog/Posts/New in 65.459ms +2018-09-24 10:40:17.383 +03:00 [INF] Request finished in 91.4091ms 200 text/html; charset=utf-8 +2018-09-24 10:40:21.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 10:40:21.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.701 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.729 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 10:40:21.732 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 10:40:21.732 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.818 +03:00 [INF] Executed action /Blog/Posts/New in 88.9492ms +2018-09-24 10:40:21.818 +03:00 [INF] Request finished in 117.3938ms 200 text/html; charset=utf-8 +2018-09-24 10:40:21.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733715201479868 +2018-09-24 10:40:21.878 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.879 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.884 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 10:40:21.884 +03:00 [INF] Request finished in 6.5175ms 200 text/css +2018-09-24 10:40:21.902 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css?_v=636733715202339036 +2018-09-24 10:40:21.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.902 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.902 +03:00 [INF] Sending file. Request path: '/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css'. Physical path: '/wwwroot/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css' +2018-09-24 10:40:21.903 +03:00 [INF] Request finished in 1.0395ms 200 text/css +2018-09-24 10:40:21.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733715221070623 +2018-09-24 10:40:21.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 10:40:21.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.903 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.904 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.911 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 10:40:21.911 +03:00 [INF] Request finished in 8.3712ms 200 application/javascript +2018-09-24 10:40:21.916 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 10:40:21.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.916 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.918 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js?_v=636733715224946581 +2018-09-24 10:40:21.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 10:40:21.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.919 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 10:40:21.920 +03:00 [INF] Request finished in 1.3562ms 200 image/svg+xml +2018-09-24 10:40:21.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733715221382813 +2018-09-24 10:40:21.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.922 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.922 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 10:40:21.922 +03:00 [INF] Request finished in 0.7992ms 200 application/javascript +2018-09-24 10:40:21.932 +03:00 [INF] Sending file. Request path: '/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js'. Physical path: '/wwwroot/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js' +2018-09-24 10:40:21.932 +03:00 [INF] Request finished in 14.5973ms 200 application/javascript +2018-09-24 10:40:21.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 10:40:21.936 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:21.937 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:21.938 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 10:40:21.938 +03:00 [INF] Request finished in 1.8605ms 200 image/png +2018-09-24 10:40:21.975 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:40:21.976 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 10:40:21.976 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2675ms. +2018-09-24 10:40:21.977 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:40:21.977 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8335000000000001ms +2018-09-24 10:40:21.977 +03:00 [INF] Request finished in 60.9485ms 200 text/plain; charset=utf-8 +2018-09-24 10:40:21.991 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 10:40:21.993 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 10:40:21.993 +03:00 [INF] Authorization failed. +2018-09-24 10:40:21.993 +03:00 [INF] Authorization failed. +2018-09-24 10:40:21.994 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.996 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.996 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.997 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.997 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.997 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.998 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.998 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.998 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.999 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:21.999 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.000 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.001 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.002 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.003 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 10:40:22.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.003 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.003 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.004 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 10:40:22.004 +03:00 [INF] Request finished in 1.3961ms 200 image/svg+xml +2018-09-24 10:40:22.004 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.005 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.006 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.007 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.007 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.008 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.008 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.009 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.009 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.010 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.011 +03:00 [INF] Authorization was successful. +2018-09-24 10:40:22.013 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 19.8044ms. +2018-09-24 10:40:22.013 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 10:40:22.013 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.2853ms +2018-09-24 10:40:22.013 +03:00 [INF] Request finished in 110.2576ms 200 text/plain; charset=utf-8 +2018-09-24 10:40:22.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 10:40:22.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.272 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.274 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 10:40:22.274 +03:00 [INF] Request finished in 2.5327ms 200 font/woff2 +2018-09-24 10:40:22.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 10:40:22.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.308 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.316 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 10:40:22.316 +03:00 [INF] Request finished in 8.5536ms 200 image/jpeg +2018-09-24 10:40:22.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 10:40:22.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.493 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 10:40:22.493 +03:00 [INF] Request finished in 1.0046ms 200 image/png +2018-09-24 10:40:22.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 10:40:22.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-09-24 10:40:22.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 10:40:22.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.736 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 10:40:22.737 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-09-24 10:40:22.737 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 10:40:22.737 +03:00 [INF] Request finished in 0.9857ms 200 image/png +2018-09-24 10:40:22.737 +03:00 [INF] Request finished in 1.0304ms 200 image/png +2018-09-24 11:38:47.359 +03:00 [INF] Loaded modules: +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 11:38:47.377 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 11:38:47.378 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 11:38:47.379 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 11:38:49.134 +03:00 [INF] Initialized all modules. +2018-09-24 11:38:49.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 11:38:49.376 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:49.379 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:51.565 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 11:38:51.586 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 11:38:52.427 +03:00 [INF] Bundling __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (8 files) +2018-09-24 11:38:52.460 +03:00 [INF] Minifying __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (265639 bytes) +2018-09-24 11:38:52.659 +03:00 [INF] Bundled __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (216573 bytes) +2018-09-24 11:38:53.236 +03:00 [INF] Bundling __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (22 files) +2018-09-24 11:38:53.345 +03:00 [INF] Minifying __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (1273272 bytes) +2018-09-24 11:38:54.051 +03:00 [INF] Bundled __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (500536 bytes) +2018-09-24 11:38:54.063 +03:00 [INF] Bundling __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (2 files) +2018-09-24 11:38:54.067 +03:00 [INF] Minifying __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (51842 bytes) +2018-09-24 11:38:54.078 +03:00 [INF] Bundled __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (50331 bytes) +2018-09-24 11:38:54.107 +03:00 [INF] Executed action /Index in 2535.3967000000002ms +2018-09-24 11:38:54.130 +03:00 [INF] Request finished in 4784.2365ms 200 text/html; charset=utf-8 +2018-09-24 11:38:54.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733751326607402 +2018-09-24 11:38:54.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.171 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.203 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 11:38:54.204 +03:00 [INF] Request finished in 36.1107ms 200 text/css +2018-09-24 11:38:54.252 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733751340518577 +2018-09-24 11:38:54.252 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.253 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 11:38:54.259 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.260 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 11:38:54.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.263 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.266 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 11:38:54.267 +03:00 [INF] Request finished in 14.726ms 200 application/javascript +2018-09-24 11:38:54.268 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733751340789454 +2018-09-24 11:38:54.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.268 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.269 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 11:38:54.269 +03:00 [INF] Request finished in 1.0185ms 200 application/javascript +2018-09-24 11:38:54.294 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:38:54.295 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:38:54.347 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 11:38:54.353 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 11:38:54.394 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.396 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.434 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.435 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.435 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.435 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.435 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.435 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.436 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.437 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.438 +03:00 [INF] Authorization failed. +2018-09-24 11:38:54.478 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 127.12360000000001ms. +2018-09-24 11:38:54.480 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 127.05940000000001ms. +2018-09-24 11:38:54.484 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:38:54.484 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:38:54.485 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 191.3503ms +2018-09-24 11:38:54.485 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 190.36ms +2018-09-24 11:38:54.486 +03:00 [INF] Request finished in 223.1648ms 200 text/plain; charset=utf-8 +2018-09-24 11:38:54.486 +03:00 [INF] Request finished in 227.5587ms 200 text/plain; charset=utf-8 +2018-09-24 11:38:54.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 11:38:54.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:54.599 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:54.601 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 11:38:54.602 +03:00 [INF] Request finished in 4.2899ms 200 image/png +2018-09-24 11:38:56.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Logout +2018-09-24 11:38:56.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:56.180 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:56.185 +03:00 [INF] Route matched with {area = "Account", action = "Index", controller = "Logout", page = ""}. Executing action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) +2018-09-24 11:38:56.214 +03:00 [INF] Executing action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) - Validation state: "Valid" +2018-09-24 11:38:56.223 +03:00 [INF] AuthenticationScheme: Identity.Application signed out. +2018-09-24 11:38:56.224 +03:00 [INF] AuthenticationScheme: Identity.External signed out. +2018-09-24 11:38:56.225 +03:00 [INF] AuthenticationScheme: Identity.TwoFactorUserId signed out. +2018-09-24 11:38:56.225 +03:00 [INF] Executed action method Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web), returned result Microsoft.AspNetCore.Mvc.RedirectToPageResult in 10.5225ms. +2018-09-24 11:38:56.227 +03:00 [INF] Executing RedirectToPageResult, redirecting to /Account/Login. +2018-09-24 11:38:56.228 +03:00 [INF] Executed action Volo.Abp.Account.Web.Areas.Account.Controllers.LogoutController.Index (Volo.Abp.Account.Web) in 42.897800000000004ms +2018-09-24 11:38:56.229 +03:00 [INF] Request finished in 49.2076ms 302 +2018-09-24 11:38:56.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Account/Login +2018-09-24 11:38:56.246 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:56.247 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:56.996 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 11:38:57.030 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 11:38:57.674 +03:00 [INF] Executed action /Account/Login in 677.89650000000006ms +2018-09-24 11:38:57.675 +03:00 [INF] Request finished in 1428.5796ms 200 text/html; charset=utf-8 +2018-09-24 11:38:57.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733751326607402 +2018-09-24 11:38:57.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:57.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:57.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733751340518577 +2018-09-24 11:38:57.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:57.710 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:57.710 +03:00 [INF] The file /__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css was not modified +2018-09-24 11:38:57.711 +03:00 [INF] The file /__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js was not modified +2018-09-24 11:38:57.711 +03:00 [INF] Request finished in 5.3096ms 304 text/css +2018-09-24 11:38:57.711 +03:00 [INF] Request finished in 2.0405ms 304 application/javascript +2018-09-24 11:38:57.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 11:38:57.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:57.712 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:57.714 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:38:57.715 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.716 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.717 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.718 +03:00 [INF] Authorization failed. +2018-09-24 11:38:57.720 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1986ms. +2018-09-24 11:38:57.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733751340789454 +2018-09-24 11:38:57.720 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:38:57.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:57.720 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:57.721 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7488ms +2018-09-24 11:38:57.721 +03:00 [INF] Request finished in 8.6745ms 200 text/plain; charset=utf-8 +2018-09-24 11:38:57.721 +03:00 [INF] The file /__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js was not modified +2018-09-24 11:38:57.721 +03:00 [INF] Request finished in 1.0266ms 304 application/javascript +2018-09-24 11:38:57.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 11:38:57.722 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:38:57.723 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:38:57.728 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:38:57.729 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 11:38:57.729 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2482ms. +2018-09-24 11:38:57.730 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:38:57.730 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8010000000000002ms +2018-09-24 11:38:57.730 +03:00 [INF] Request finished in 8.2682ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:02.044 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Account/Login application/x-www-form-urlencoded 263 +2018-09-24 11:39:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.046 +03:00 [INF] Route matched with {page = "/Account/Login", controller = "", area = "", action = ""}. Executing action /Account/Login +2018-09-24 11:39:02.122 +03:00 [INF] Executing handler method OnPostAsync with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:02.318 +03:00 [INF] AuthenticationScheme: Identity.Application signed in. +2018-09-24 11:39:02.331 +03:00 [INF] Executing RedirectResult, redirecting to /. +2018-09-24 11:39:02.331 +03:00 [INF] Executed action /Account/Login in 285.34020000000004ms +2018-09-24 11:39:02.332 +03:00 [INF] Request finished in 287.4149ms 302 +2018-09-24 11:39:02.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 11:39:02.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.379 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 11:39:02.379 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:02.385 +03:00 [INF] Executed action /Index in 6.2301ms +2018-09-24 11:39:02.385 +03:00 [INF] Request finished in 46.5748ms 200 text/html; charset=utf-8 +2018-09-24 11:39:02.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733751326607402 +2018-09-24 11:39:02.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.430 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.431 +03:00 [INF] The file /__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css was not modified +2018-09-24 11:39:02.431 +03:00 [INF] Request finished in 1.0773ms 304 text/css +2018-09-24 11:39:02.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733751340518577 +2018-09-24 11:39:02.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.432 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.432 +03:00 [INF] The file /__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js was not modified +2018-09-24 11:39:02.433 +03:00 [INF] Request finished in 1.017ms 304 application/javascript +2018-09-24 11:39:02.435 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 11:39:02.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.441 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 11:39:02.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.441 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733751340789454 +2018-09-24 11:39:02.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:02.446 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:02.447 +03:00 [INF] The file /__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js was not modified +2018-09-24 11:39:02.447 +03:00 [INF] Request finished in 1.9154ms 304 application/javascript +2018-09-24 11:39:02.476 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:02.476 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 11:39:02.477 +03:00 [INF] Authorization failed. +2018-09-24 11:39:02.477 +03:00 [INF] Authorization failed. +2018-09-24 11:39:02.479 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:02.480 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 11:39:02.480 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1129ms. +2018-09-24 11:39:02.480 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:02.481 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6683000000000001ms +2018-09-24 11:39:02.481 +03:00 [INF] Request finished in 39.9351ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:02.542 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.548 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.552 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.556 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.559 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.561 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.565 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.568 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.570 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.572 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.574 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.576 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.578 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.582 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.584 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.586 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.588 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.589 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.591 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.593 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.596 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.598 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.600 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.602 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.604 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.607 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.609 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:02.613 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 136.5415ms. +2018-09-24 11:39:02.622 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:02.622 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 145.9154ms +2018-09-24 11:39:02.622 +03:00 [INF] Request finished in 187.3492ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:08.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/posts/new +2018-09-24 11:39:08.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:08.523 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:08.847 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 11:39:09.038 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:09.049 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.307 +03:00 [INF] Bundling __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (5 files) +2018-09-24 11:39:09.313 +03:00 [INF] Minifying __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (42069 bytes) +2018-09-24 11:39:09.321 +03:00 [INF] Bundled __bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css (39002 bytes) +2018-09-24 11:39:09.330 +03:00 [INF] Bundling __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (8 files) +2018-09-24 11:39:09.373 +03:00 [INF] Minifying __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (921274 bytes) +2018-09-24 11:39:09.700 +03:00 [INF] Bundled __bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js (699391 bytes) +2018-09-24 11:39:09.701 +03:00 [INF] Executed action /Blog/Posts/New in 854.51330000000007ms +2018-09-24 11:39:09.701 +03:00 [INF] Request finished in 1178.3208ms 200 text/html; charset=utf-8 +2018-09-24 11:39:09.729 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733751326607402 +2018-09-24 11:39:09.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.730 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.730 +03:00 [INF] The file /__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css was not modified +2018-09-24 11:39:09.730 +03:00 [INF] Request finished in 1.5182ms 304 text/css +2018-09-24 11:39:09.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css?_v=636733751493213265 +2018-09-24 11:39:09.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.732 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.733 +03:00 [INF] Sending file. Request path: '/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css'. Physical path: '/wwwroot/__bundles/2336860085A44CFF03A2C4EAA18FA70A.D6919CAB8FC44C578D7CA1593DE728E9.css' +2018-09-24 11:39:09.733 +03:00 [INF] Request finished in 1.9173ms 200 text/css +2018-09-24 11:39:09.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733751340518577 +2018-09-24 11:39:09.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.737 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.738 +03:00 [INF] The file /__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js was not modified +2018-09-24 11:39:09.738 +03:00 [INF] Request finished in 0.8534ms 304 application/javascript +2018-09-24 11:39:09.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 11:39:09.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.739 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 11:39:09.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.745 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733751340789454 +2018-09-24 11:39:09.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.747 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js?_v=636733751497013178 +2018-09-24 11:39:09.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.747 +03:00 [INF] The file /__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js was not modified +2018-09-24 11:39:09.747 +03:00 [INF] Request finished in 0.9006ms 304 application/javascript +2018-09-24 11:39:09.747 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:09.748 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:09.759 +03:00 [INF] Sending file. Request path: '/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js'. Physical path: '/wwwroot/__bundles/70F6329F10A92DA65A00016E950A0751.4F12DFE97F64CD4B3FFAF41C78D03101.js' +2018-09-24 11:39:09.759 +03:00 [INF] Request finished in 12.5809ms 200 application/javascript +2018-09-24 11:39:09.793 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:09.793 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:09.793 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 11:39:09.793 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 11:39:09.794 +03:00 [INF] Authorization failed. +2018-09-24 11:39:09.794 +03:00 [INF] Authorization failed. +2018-09-24 11:39:09.794 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1071ms. +2018-09-24 11:39:09.794 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:09.794 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1899ms +2018-09-24 11:39:09.794 +03:00 [INF] Request finished in 49.8797ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:09.794 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.795 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.796 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.797 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.798 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.799 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.799 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.800 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.801 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.802 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.803 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.805 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.806 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.806 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.807 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.808 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.809 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.809 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.810 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.811 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.812 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.813 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.813 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.814 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.815 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.816 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.816 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:09.818 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 24.6259ms. +2018-09-24 11:39:09.818 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:09.819 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 25.9758ms +2018-09-24 11:39:09.819 +03:00 [INF] Request finished in 80.92ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:10.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/tui-editor/tui-editor.png +2018-09-24 11:39:10.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:10.045 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:10.046 +03:00 [INF] Sending file. Request path: '/libs/tui-editor/tui-editor.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\tui-editor\tui-editor.png' +2018-09-24 11:39:10.046 +03:00 [INF] Request finished in 1.1978ms 200 image/png +2018-09-24 11:39:47.175 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/Blog/Files/UploadImage multipart/form-data; boundary=---------------------------82481502117808 409926 +2018-09-24 11:39:47.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:47.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:47.231 +03:00 [INF] Route matched with {area = "Blog", action = "UploadImage", controller = "Files", page = ""}. Executing action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) +2018-09-24 11:39:47.272 +03:00 [INF] Executing action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) with arguments (["Microsoft.AspNetCore.Http.Internal.FormFile"]) - Validation state: "Valid" +2018-09-24 11:39:47.374 +03:00 [INF] Executed action method Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web), returned result Microsoft.AspNetCore.Mvc.JsonResult in 101.68520000000001ms. +2018-09-24 11:39:47.376 +03:00 [INF] Executing JsonResult, writing value of type 'Volo.Blogging.Areas.Blog.Models.FileUploadResult'. +2018-09-24 11:39:47.379 +03:00 [INF] Executed action Volo.Blogging.Areas.Blog.Controllers.FilesController.UploadImage (Volo.Blogging.Web) in 147.584ms +2018-09-24 11:39:47.380 +03:00 [INF] Request finished in 204.5579ms 200 application/json; charset=utf-8 +2018-09-24 11:39:47.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/ea6da622548addd544c339e91ce8e1ab.jpg +2018-09-24 11:39:47.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:47.388 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:47.397 +03:00 [INF] Sending file. Request path: '/files/ea6da622548addd544c339e91ce8e1ab.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\ea6da622548addd544c339e91ce8e1ab.jpg' +2018-09-24 11:39:47.397 +03:00 [INF] Request finished in 8.8445ms 200 image/jpeg +2018-09-24 11:39:52.305 +03:00 [INF] Request starting HTTP/1.1 POST http://localhost:53074/blog/abp/posts/new application/x-www-form-urlencoded 13829 +2018-09-24 11:39:52.305 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:52.306 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:52.335 +03:00 [INF] Route matched with {page = "/Blog/Posts/New", controller = "", area = "", action = ""}. Executing action /Blog/Posts/New +2018-09-24 11:39:52.372 +03:00 [INF] Executing handler method OnPost with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:52.417 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:52.675 +03:00 [INF] Executing RedirectResult, redirecting to /blog/abp/Abp-vNext-Announcement. +2018-09-24 11:39:52.675 +03:00 [INF] Executed action /Blog/Posts/New in 340.56640000000004ms +2018-09-24 11:39:52.675 +03:00 [INF] Request finished in 370.5832ms 302 +2018-09-24 11:39:52.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/Abp-vNext-Announcement +2018-09-24 11:39:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:52.684 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.194 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-24 11:39:53.208 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:53.458 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.461 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.543 +03:00 [INF] Bundling __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css (1 files) +2018-09-24 11:39:53.544 +03:00 [INF] Minifying __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css (10578 bytes) +2018-09-24 11:39:53.546 +03:00 [INF] Bundled __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css (8009 bytes) +2018-09-24 11:39:53.552 +03:00 [INF] Bundling __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js (2 files) +2018-09-24 11:39:53.552 +03:00 [INF] Minifying __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js (5764 bytes) +2018-09-24 11:39:53.553 +03:00 [INF] Bundled __bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js (2446 bytes) +2018-09-24 11:39:53.554 +03:00 [INF] Executed action /Blog/Posts/Detail in 359.45070000000004ms +2018-09-24 11:39:53.554 +03:00 [INF] Request finished in 870.4958ms 200 text/html; charset=utf-8 +2018-09-24 11:39:53.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css?_v=636733751935466898 +2018-09-24 11:39:53.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733751326607402 +2018-09-24 11:39:53.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.587 +03:00 [INF] The file /__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css was not modified +2018-09-24 11:39:53.587 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.F897EA68AB55EFF763879FAB111DA74A.css' +2018-09-24 11:39:53.588 +03:00 [INF] Request finished in 0.8782ms 304 text/css +2018-09-24 11:39:53.588 +03:00 [INF] Request finished in 0.8907ms 200 text/css +2018-09-24 11:39:53.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 11:39:53.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.603 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 11:39:53.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733751340518577 +2018-09-24 11:39:53.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.605 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.605 +03:00 [INF] The file /__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js was not modified +2018-09-24 11:39:53.606 +03:00 [INF] Request finished in 0.6244ms 304 application/javascript +2018-09-24 11:39:53.609 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733751340789454 +2018-09-24 11:39:53.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.614 +03:00 [INF] The file /__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js was not modified +2018-09-24 11:39:53.615 +03:00 [INF] Request finished in 4.8207ms 304 application/javascript +2018-09-24 11:39:53.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/dynamic-forms.png +2018-09-24 11:39:53.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.616 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.618 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js?_v=636733751935535043 +2018-09-24 11:39:53.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.618 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.619 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.DetailModel.0A7C5A2D739ED76DF59DA4147310468E.js' +2018-09-24 11:39:53.619 +03:00 [INF] Request finished in 1.7166ms 200 application/javascript +2018-09-24 11:39:53.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/ea6da622548addd544c339e91ce8e1ab.jpg +2018-09-24 11:39:53.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 11:39:53.635 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 11:39:53.637 +03:00 [INF] The file /files/ea6da622548addd544c339e91ce8e1ab.jpg was not modified +2018-09-24 11:39:53.637 +03:00 [INF] Request finished in 2.3625ms 304 image/jpeg +2018-09-24 11:39:53.666 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:53.667 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 11:39:53.667 +03:00 [INF] Authorization failed. +2018-09-24 11:39:53.667 +03:00 [INF] Authorization failed. +2018-09-24 11:39:53.668 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.668 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.669 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.670 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.670 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.671 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.672 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.672 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.673 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.673 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.674 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.674 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.675 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.675 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.676 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 11:39:53.676 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.676 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 11:39:53.676 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.676 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0975ms. +2018-09-24 11:39:53.676 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:53.677 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 0.925ms +2018-09-24 11:39:53.677 +03:00 [INF] Request finished in 73.939ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:53.677 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.677 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.678 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.679 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.679 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.681 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.682 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.683 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.684 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.685 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.685 +03:00 [INF] Authorization was successful. +2018-09-24 11:39:53.687 +03:00 [INF] Route matched with {page = "/Blog/Posts/Detail", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Detail +2018-09-24 11:39:53.687 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.281100000000002ms. +2018-09-24 11:39:53.687 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 11:39:53.688 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 21.4171ms +2018-09-24 11:39:53.688 +03:00 [INF] Request finished in 82.7767ms 200 text/plain; charset=utf-8 +2018-09-24 11:39:53.696 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 11:39:53.710 +03:00 [INF] Executed action /Blog/Posts/Detail in 23.058ms +2018-09-24 11:39:53.777 +03:00 [ERR] An unhandled exception has occurred while executing the request. +Volo.Abp.Domain.Entities.EntityNotFoundException: There is no such an entity. Entity type: Volo.Blogging.Posts.Post, id: post + at Volo.Blogging.Posts.EfCorePostRepository.GetPostByUrl(Guid blogId, String url) in D:\Github\abp\modules\blogging\src\Volo.Blogging.EntityFrameworkCore\Volo\Blogging\Posts\EfCorePostRepository.cs:line 35 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Posts.PostAppService.GetForReadingAsync(GetPostInput input) in D:\Github\abp\modules\blogging\src\Volo.Blogging.Application\Volo\Blogging\Posts\PostAppService.cs:line 104 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Validation.ValidationInterceptor.Intercept(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Validation\Volo\Abp\Validation\ValidationInterceptor.cs:line 26 + at Volo.Abp.DynamicProxy.AbpInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\DynamicProxy\AbpInterceptor.cs:line 11 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.InterceptAsyncMethod(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 40 + at Volo.Abp.Castle.DynamicProxy.CastleAbpInterceptorAdapter`1.Intercept(IInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpInterceptorAdapter.cs:line 24 + at Castle.DynamicProxy.AbstractInvocation.Proceed() + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.ProceedAsync() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 53 + at Volo.Abp.Authorization.AuthorizationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Authorization\Volo\Abp\Authorization\AuthorizationInterceptor.cs:line 39 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Uow\Volo\Abp\Uow\UnitOfWorkInterceptor.cs:line 46 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) +--- End of stack trace from previous location where exception was thrown --- + at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot) +--- End of stack trace from previous location where exception was thrown --- + at Nito.AsyncEx.Synchronous.TaskExtensions.WaitAndUnwrapException(Task task) + at Nito.AsyncEx.AsyncContext.Run(Func`1 action) + at Volo.Abp.Threading.AsyncHelper.RunSync(Func`1 action) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\AsyncHelper.cs:line 69 + at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapter.Proceed() in D:\Github\abp\framework\src\Volo.Abp.Castle.Core\Volo\Abp\Castle\DynamicProxy\CastleAbpMethodInvocationAdapter.cs:line 47 + at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) in D:\Github\abp\framework\src\Volo.Abp.Auditing\Volo\Abp\Auditing\AuditingInterceptor.cs:line 52 + at Volo.Abp.Threading.InternalAsyncHelper.AwaitTaskWithPreActionAndPostActionAndFinallyAndGetResult[T](Func`1 actualReturnValue, Func`1 preAction, Func`1 postAction, Action`1 finalAction) in D:\Github\abp\framework\src\Volo.Abp.Core\Volo\Abp\Threading\InternalAsyncHelper.cs:line 149 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.GetData() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 67 + at Volo.Blogging.Pages.Blog.Posts.DetailModel.OnGetAsync() in D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\Detail.cshtml.cs:line 49 + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.ExecutorFactory.NonGenericTaskHandlerMethod.Execute(Object receiver, Object[] arguments) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeHandlerMethodAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeNextPageFilterAsync() + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Rethrow(PageHandlerExecutedContext context) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.RazorPages.Internal.PageActionInvoker.InvokeInnerFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ExceptionContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextResourceFilter() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow(ResourceExecutedContext context) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeFilterPipelineAsync() + at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeAsync() + at Microsoft.AspNetCore.Builder.RouterMiddleware.Invoke(HttpContext httpContext) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) +2018-09-24 11:39:53.842 +03:00 [INF] Request finished in 226.249ms 500 text/html; charset=utf-8 +2018-09-24 15:57:50.626 +03:00 [INF] Loaded modules: +2018-09-24 15:57:50.642 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-09-24 15:57:50.642 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-09-24 15:57:50.642 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-09-24 15:57:50.643 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-09-24 15:57:50.644 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-09-24 15:57:50.645 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-09-24 15:57:50.645 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-09-24 15:57:52.511 +03:00 [INF] Initialized all modules. +2018-09-24 15:57:52.675 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 15:57:52.703 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:52.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:55.750 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 15:57:55.777 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 15:57:56.851 +03:00 [INF] Bundling __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (8 files) +2018-09-24 15:57:56.881 +03:00 [INF] Minifying __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (265639 bytes) +2018-09-24 15:57:57.112 +03:00 [INF] Bundled __bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css (216573 bytes) +2018-09-24 15:57:57.677 +03:00 [INF] Bundling __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (22 files) +2018-09-24 15:57:57.744 +03:00 [INF] Minifying __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (1273272 bytes) +2018-09-24 15:57:58.560 +03:00 [INF] Bundled __bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js (500536 bytes) +2018-09-24 15:57:58.574 +03:00 [INF] Bundling __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (2 files) +2018-09-24 15:57:58.579 +03:00 [INF] Minifying __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (51842 bytes) +2018-09-24 15:57:58.600 +03:00 [INF] Bundled __bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js (50331 bytes) +2018-09-24 15:57:58.632 +03:00 [INF] Executed action /Index in 2876.3781000000004ms +2018-09-24 15:57:58.652 +03:00 [INF] Request finished in 5978.6094ms 200 text/html; charset=utf-8 +2018-09-24 15:57:58.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:57:58.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:58.683 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:58.721 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:57:58.721 +03:00 [INF] Request finished in 40.2173ms 200 text/css +2018-09-24 15:57:58.799 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:57:58.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:58.800 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:58.805 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:57:58.805 +03:00 [INF] Request finished in 6.2878ms 200 application/javascript +2018-09-24 15:57:58.808 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:57:58.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:57:58.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:58.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:58.810 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:58.809 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:58.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:57:58.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:57:58.818 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:57:58.819 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:57:58.819 +03:00 [INF] Request finished in 2.272ms 200 application/javascript +2018-09-24 15:57:58.903 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:57:58.903 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:57:58.969 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:57:58.976 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:57:59.029 +03:00 [INF] Authorization failed. +2018-09-24 15:57:59.029 +03:00 [INF] Authorization failed. +2018-09-24 15:57:59.112 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 133.7175ms. +2018-09-24 15:57:59.122 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:57:59.123 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 219.7595ms +2018-09-24 15:57:59.123 +03:00 [INF] Request finished in 314.6174ms 200 text/plain; charset=utf-8 +2018-09-24 15:57:59.201 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.208 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.213 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.218 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.221 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.228 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.236 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.239 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.242 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.246 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.249 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.253 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.256 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.259 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.262 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.265 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.268 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.271 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.273 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.276 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.279 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.281 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.284 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.286 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.289 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.291 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.295 +03:00 [INF] Authorization was successful. +2018-09-24 15:57:59.320 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 342.9237ms. +2018-09-24 15:57:59.335 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:57:59.336 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 432.8613ms +2018-09-24 15:57:59.336 +03:00 [INF] Request finished in 527.5367ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:02.822 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 15:58:02.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.846 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 15:58:02.848 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:02.855 +03:00 [INF] Executed action /Index in 8.3208ms +2018-09-24 15:58:02.855 +03:00 [INF] Request finished in 32.3636ms 200 text/html; charset=utf-8 +2018-09-24 15:58:02.892 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:58:02.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.892 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:58:02.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.898 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:58:02.898 +03:00 [INF] Request finished in 6.5422ms 200 text/css +2018-09-24 15:58:02.902 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:58:02.903 +03:00 [INF] Request finished in 9.7891ms 200 application/javascript +2018-09-24 15:58:02.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:58:02.908 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.911 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:58:02.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:58:02.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.932 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.932 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:58:02.933 +03:00 [INF] Request finished in 1.3233ms 200 application/javascript +2018-09-24 15:58:02.950 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 15:58:02.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.950 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-24 15:58:02.953 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 15:58:02.954 +03:00 [INF] Request finished in 5.5796ms 200 image/svg+xml +2018-09-24 15:58:02.954 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.955 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.958 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-24 15:58:02.958 +03:00 [INF] Request finished in 7.6129ms 200 image/png +2018-09-24 15:58:02.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-24 15:58:02.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.963 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.964 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-24 15:58:02.965 +03:00 [INF] Request finished in 2.6264ms 200 image/png +2018-09-24 15:58:02.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-24 15:58:02.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.971 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.972 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-24 15:58:02.972 +03:00 [INF] Request finished in 2.3207ms 200 image/png +2018-09-24 15:58:02.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-24 15:58:02.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.974 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.975 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-24 15:58:02.975 +03:00 [INF] Request finished in 1.0935ms 200 image/png +2018-09-24 15:58:02.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-24 15:58:02.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-24 15:58:02.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.983 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-24 15:58:02.983 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-24 15:58:02.983 +03:00 [INF] Request finished in 1.6884ms 200 image/png +2018-09-24 15:58:02.983 +03:00 [INF] Request finished in 1.2952ms 200 image/png +2018-09-24 15:58:02.984 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-24 15:58:02.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:02.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:02.985 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-24 15:58:02.985 +03:00 [INF] Request finished in 1.0897ms 200 image/png +2018-09-24 15:58:03.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-24 15:58:03.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-24 15:58:03.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.000 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-24 15:58:03.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.001 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.001 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-24 15:58:03.001 +03:00 [INF] Request finished in 0.9562ms 200 image/png +2018-09-24 15:58:03.002 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-24 15:58:03.002 +03:00 [INF] Request finished in 1.7017ms 200 image/png +2018-09-24 15:58:03.002 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-24 15:58:03.002 +03:00 [INF] Request finished in 2.6475ms 200 image/png +2018-09-24 15:58:03.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-24 15:58:03.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.018 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.019 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-24 15:58:03.019 +03:00 [INF] Request finished in 2.1828ms 200 image/png +2018-09-24 15:58:03.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-24 15:58:03.020 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-24 15:58:03.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.021 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.022 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-24 15:58:03.022 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-24 15:58:03.022 +03:00 [INF] Request finished in 1.9577ms 200 image/png +2018-09-24 15:58:03.022 +03:00 [INF] Request finished in 1.9636ms 200 image/png +2018-09-24 15:58:03.030 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-24 15:58:03.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.030 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.031 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-24 15:58:03.031 +03:00 [INF] Request finished in 1.1414ms 200 image/png +2018-09-24 15:58:03.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-24 15:58:03.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.043 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.055 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-24 15:58:03.055 +03:00 [INF] Request finished in 11.8717ms 200 image/png +2018-09-24 15:58:03.082 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-24 15:58:03.082 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.082 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.085 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-24 15:58:03.085 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.086 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.087 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-24 15:58:03.087 +03:00 [INF] Request finished in 1.7468ms 200 image/png +2018-09-24 15:58:03.088 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-24 15:58:03.088 +03:00 [INF] Request finished in 6.6801ms 200 image/png +2018-09-24 15:58:03.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-24 15:58:03.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.099 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.100 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-24 15:58:03.100 +03:00 [INF] Request finished in 0.9641ms 200 image/png +2018-09-24 15:58:03.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-24 15:58:03.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.114 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.114 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-24 15:58:03.114 +03:00 [INF] Request finished in 0.881ms 200 image/png +2018-09-24 15:58:03.176 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-24 15:58:03.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.176 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.177 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-24 15:58:03.177 +03:00 [INF] Request finished in 1.6643ms 200 image/png +2018-09-24 15:58:03.227 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-24 15:58:03.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.228 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.228 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-24 15:58:03.228 +03:00 [INF] Request finished in 1.0893ms 200 image/png +2018-09-24 15:58:03.250 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-24 15:58:03.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.251 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.252 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-24 15:58:03.253 +03:00 [INF] Request finished in 2.7776ms 200 image/png +2018-09-24 15:58:03.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-24 15:58:03.319 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.320 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.321 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-24 15:58:03.322 +03:00 [INF] Request finished in 3.6565ms 200 image/png +2018-09-24 15:58:03.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 15:58:03.335 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-24 15:58:03.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.337 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-24 15:58:03.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.338 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.339 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.339 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-24 15:58:03.339 +03:00 [INF] Request finished in 2.6361ms 200 image/png +2018-09-24 15:58:03.339 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-24 15:58:03.339 +03:00 [INF] Request finished in 2.7679ms 200 image/png +2018-09-24 15:58:03.341 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 15:58:03.341 +03:00 [INF] Request finished in 7.0134ms 200 font/woff2 +2018-09-24 15:58:03.354 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-24 15:58:03.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.354 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.356 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-24 15:58:03.357 +03:00 [INF] Request finished in 3.8681ms 200 image/png +2018-09-24 15:58:03.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-24 15:58:03.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-24 15:58:03.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.362 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.366 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-24 15:58:03.366 +03:00 [INF] Request finished in 5.0784ms 200 image/png +2018-09-24 15:58:03.369 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.370 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-24 15:58:03.370 +03:00 [INF] Request finished in 10.3409ms 200 image/png +2018-09-24 15:58:03.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-24 15:58:03.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-24 15:58:03.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.384 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.384 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-24 15:58:03.385 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-24 15:58:03.385 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-24 15:58:03.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.385 +03:00 [INF] Request finished in 1.7581ms 200 image/png +2018-09-24 15:58:03.385 +03:00 [INF] Request finished in 1.8145ms 200 image/png +2018-09-24 15:58:03.385 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.386 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-24 15:58:03.386 +03:00 [INF] Request finished in 2.2043ms 200 image/png +2018-09-24 15:58:03.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-24 15:58:03.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.392 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.393 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-24 15:58:03.394 +03:00 [INF] Request finished in 3.004ms 200 image/png +2018-09-24 15:58:03.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-24 15:58:03.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.399 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.402 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-24 15:58:03.402 +03:00 [INF] Request finished in 3.9828ms 200 image/png +2018-09-24 15:58:03.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-24 15:58:03.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.406 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.407 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-24 15:58:03.407 +03:00 [INF] Request finished in 1.5173ms 200 image/png +2018-09-24 15:58:03.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 15:58:03.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 15:58:03.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.409 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.410 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.410 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 15:58:03.410 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 15:58:03.411 +03:00 [INF] Request finished in 2.4924ms 200 image/svg+xml +2018-09-24 15:58:03.411 +03:00 [INF] Request finished in 1.6708ms 200 image/png +2018-09-24 15:58:03.423 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 15:58:03.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.423 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.436 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 15:58:03.436 +03:00 [INF] Request finished in 13.2559ms 200 image/jpeg +2018-09-24 15:58:03.438 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:03.438 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:03.439 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:58:03.439 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:58:03.439 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2076ms. +2018-09-24 15:58:03.439 +03:00 [INF] Authorization failed. +2018-09-24 15:58:03.439 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:03.439 +03:00 [INF] Authorization failed. +2018-09-24 15:58:03.439 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8438ms +2018-09-24 15:58:03.440 +03:00 [INF] Request finished in 508.702ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:03.457 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.457 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.458 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.459 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.459 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.460 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.461 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.462 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.463 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.463 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.464 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.465 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.467 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.469 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.470 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.472 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.473 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.475 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.475 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.476 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.477 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.477 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.478 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.478 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.479 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.481 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.484 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:03.488 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 48.708000000000006ms. +2018-09-24 15:58:03.488 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:03.488 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 50.1802ms +2018-09-24 15:58:03.488 +03:00 [INF] Request finished in 581.5012ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:03.708 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 15:58:03.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 15:58:03.709 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 15:58:03.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:03.709 +03:00 [INF] Request finished in 1.4694ms 200 image/png +2018-09-24 15:58:03.709 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:03.710 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 15:58:03.710 +03:00 [INF] Request finished in 1.475ms 200 image/png +2018-09-24 15:58:04.374 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Templates +2018-09-24 15:58:04.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:04.374 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:05.406 +03:00 [INF] Route matched with {page = "/Templates", controller = "", area = "", action = ""}. Executing action /Templates +2018-09-24 15:58:05.463 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:06.049 +03:00 [INF] Bundling __bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js (1 files) +2018-09-24 15:58:06.051 +03:00 [INF] Minifying __bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js (328 bytes) +2018-09-24 15:58:06.051 +03:00 [INF] Bundled __bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js (190 bytes) +2018-09-24 15:58:06.053 +03:00 [INF] Executed action /Templates in 646.9351ms +2018-09-24 15:58:06.053 +03:00 [INF] Request finished in 1679.4485ms 200 text/html; charset=utf-8 +2018-09-24 15:58:06.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:58:06.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.095 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.099 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:58:06.099 +03:00 [INF] Request finished in 4.3575ms 200 text/css +2018-09-24 15:58:06.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:58:06.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:58:06.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.106 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.111 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:58:06.111 +03:00 [INF] Request finished in 6.1114ms 200 application/javascript +2018-09-24 15:58:06.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js?_v=636733906860520125 +2018-09-24 15:58:06.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:58:06.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:58:06.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.126 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.127 +03:00 [INF] Sending file. Request path: '/__bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js'. Physical path: '/wwwroot/__bundles/Pages.templates.1E5EB0B092C2150F5020A2DD7619DED9.js' +2018-09-24 15:58:06.127 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:58:06.127 +03:00 [INF] Request finished in 0.9531ms 200 application/javascript +2018-09-24 15:58:06.127 +03:00 [INF] Request finished in 1.0937ms 200 application/javascript +2018-09-24 15:58:06.127 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.128 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 15:58:06.168 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.169 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.170 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 15:58:06.171 +03:00 [INF] Request finished in 2.4425ms 200 image/png +2018-09-24 15:58:06.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 15:58:06.172 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 15:58:06.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.175 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.176 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 15:58:06.176 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 15:58:06.176 +03:00 [INF] Request finished in 1.3668ms 200 image/svg+xml +2018-09-24 15:58:06.176 +03:00 [INF] Request finished in 4.1578ms 200 image/svg+xml +2018-09-24 15:58:06.224 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:06.225 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:58:06.225 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.254ms. +2018-09-24 15:58:06.226 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:06.226 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9142000000000001ms +2018-09-24 15:58:06.226 +03:00 [INF] Request finished in 99.7114ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:06.244 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:06.246 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:58:06.246 +03:00 [INF] Authorization failed. +2018-09-24 15:58:06.246 +03:00 [INF] Authorization failed. +2018-09-24 15:58:06.248 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.249 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.250 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.251 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.252 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.254 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.255 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 15:58:06.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.256 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.256 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.257 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 15:58:06.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.258 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.258 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.258 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.259 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.259 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.260 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.261 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 15:58:06.261 +03:00 [INF] Request finished in 3.7585ms 200 font/woff2 +2018-09-24 15:58:06.262 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.263 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.264 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.265 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.266 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.266 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.267 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.269 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.269 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.270 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 15:58:06.270 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.270 +03:00 [INF] Request finished in 14.6066ms 200 image/jpeg +2018-09-24 15:58:06.271 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.271 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.272 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:06.274 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 27.4448ms. +2018-09-24 15:58:06.274 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:06.274 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 29.065900000000003ms +2018-09-24 15:58:06.274 +03:00 [INF] Request finished in 168.3167ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:06.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 15:58:06.569 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.570 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.570 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 15:58:06.570 +03:00 [INF] Request finished in 1.6318ms 200 image/png +2018-09-24 15:58:06.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 15:58:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:06.573 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:06.574 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 15:58:06.574 +03:00 [INF] Request finished in 1.724ms 200 image/png +2018-09-24 15:58:07.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-24 15:58:07.119 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:07.120 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:07.607 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 15:58:07.817 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:08.349 +03:00 [INF] Bundling __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css (4 files) +2018-09-24 15:58:08.351 +03:00 [INF] Minifying __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css (16047 bytes) +2018-09-24 15:58:08.355 +03:00 [INF] Bundled __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css (12955 bytes) +2018-09-24 15:58:08.362 +03:00 [INF] Bundling __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js (3 files) +2018-09-24 15:58:08.365 +03:00 [INF] Minifying __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js (50108 bytes) +2018-09-24 15:58:08.383 +03:00 [INF] Bundled __bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js (46566 bytes) +2018-09-24 15:58:08.384 +03:00 [INF] Executed action /Blog/Posts/Index in 776.37240000000008ms +2018-09-24 15:58:08.384 +03:00 [INF] Request finished in 1265.1595ms 200 text/html; charset=utf-8 +2018-09-24 15:58:08.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css?_v=636733906883553887 +2018-09-24 15:58:08.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:58:08.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.437 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.438 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.438 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css' +2018-09-24 15:58:08.439 +03:00 [INF] Request finished in 2.9654ms 200 text/css +2018-09-24 15:58:08.443 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:58:08.443 +03:00 [INF] Request finished in 7.1258ms 200 text/css +2018-09-24 15:58:08.455 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:58:08.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.456 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.463 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:58:08.463 +03:00 [INF] Request finished in 8.1402ms 200 application/javascript +2018-09-24 15:58:08.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:58:08.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:58:08.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.476 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.476 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:58:08.476 +03:00 [INF] Request finished in 3.1201ms 200 application/javascript +2018-09-24 15:58:08.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:58:08.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.488 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js?_v=636733906883835395 +2018-09-24 15:58:08.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.497 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js' +2018-09-24 15:58:08.497 +03:00 [INF] Request finished in 0.9649ms 200 application/javascript +2018-09-24 15:58:08.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 15:58:08.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.535 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 15:58:08.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.537 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.538 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 15:58:08.538 +03:00 [INF] Request finished in 1.9728ms 200 image/png +2018-09-24 15:58:08.544 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 15:58:08.544 +03:00 [INF] Request finished in 10.1479ms 200 image/svg+xml +2018-09-24 15:58:08.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/ea6da622548addd544c339e91ce8e1ab.jpg +2018-09-24 15:58:08.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.545 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.570 +03:00 [INF] Sending file. Request path: '/files/ea6da622548addd544c339e91ce8e1ab.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\ea6da622548addd544c339e91ce8e1ab.jpg' +2018-09-24 15:58:08.572 +03:00 [INF] Request finished in 29.8605ms 200 image/jpeg +2018-09-24 15:58:08.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 15:58:08.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.578 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.579 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 15:58:08.579 +03:00 [INF] Request finished in 1.8854ms 200 image/svg+xml +2018-09-24 15:58:08.583 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 15:58:08.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.587 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 15:58:08.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:08.609 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:08.613 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 15:58:08.614 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 15:58:08.613 +03:00 [INF] Request finished in 29.8645ms 200 image/jpeg +2018-09-24 15:58:08.614 +03:00 [INF] Request finished in 5.5553ms 200 font/woff2 +2018-09-24 15:58:08.789 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:08.791 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:58:08.791 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1794ms. +2018-09-24 15:58:08.792 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:08.792 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3376ms +2018-09-24 15:58:08.792 +03:00 [INF] Request finished in 317.3407ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:08.810 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:08.811 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:58:08.812 +03:00 [INF] Authorization failed. +2018-09-24 15:58:08.812 +03:00 [INF] Authorization failed. +2018-09-24 15:58:08.813 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.813 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.814 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.815 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.815 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.815 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.816 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.816 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.817 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.817 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.818 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.820 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.820 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.822 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.823 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.824 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.826 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.826 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.827 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.827 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.828 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.829 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.829 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.830 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.830 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.831 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.831 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:08.833 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 20.9173ms. +2018-09-24 15:58:08.833 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:08.833 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 22.584600000000002ms +2018-09-24 15:58:08.833 +03:00 [INF] Request finished in 348.156ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:09.161 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 15:58:09.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:09.161 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:09.162 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 15:58:09.162 +03:00 [INF] Request finished in 1.4998ms 200 image/png +2018-09-24 15:58:09.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 15:58:09.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:09.164 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:09.165 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 15:58:09.166 +03:00 [INF] Request finished in 1.7082ms 200 image/png +2018-09-24 15:58:10.282 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-09-24 15:58:10.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.284 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.321 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-09-24 15:58:10.321 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:10.330 +03:00 [INF] Executed action /Index in 8.8919ms +2018-09-24 15:58:10.330 +03:00 [INF] Request finished in 48.0416ms 200 text/html; charset=utf-8 +2018-09-24 15:58:10.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:58:10.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:58:10.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.379 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:58:10.379 +03:00 [INF] Request finished in 2.9245ms 200 text/css +2018-09-24 15:58:10.384 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:58:10.384 +03:00 [INF] Request finished in 8.1383ms 200 application/javascript +2018-09-24 15:58:10.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:58:10.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.393 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.393 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:58:10.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.394 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:58:10.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.405 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.406 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:58:10.406 +03:00 [INF] Request finished in 1.2889ms 200 application/javascript +2018-09-24 15:58:10.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 15:58:10.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.435 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.439 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 15:58:10.440 +03:00 [INF] Request finished in 5.3287ms 200 image/svg+xml +2018-09-24 15:58:10.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-09-24 15:58:10.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.449 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.450 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-09-24 15:58:10.450 +03:00 [INF] Request finished in 1.7056ms 200 image/png +2018-09-24 15:58:10.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-09-24 15:58:10.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.463 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.463 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-09-24 15:58:10.464 +03:00 [INF] Request finished in 1.8087ms 200 image/png +2018-09-24 15:58:10.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-09-24 15:58:10.465 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.466 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.466 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-09-24 15:58:10.466 +03:00 [INF] Request finished in 1.0935ms 200 image/png +2018-09-24 15:58:10.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-09-24 15:58:10.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.475 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.476 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-09-24 15:58:10.476 +03:00 [INF] Request finished in 1.3814ms 200 image/png +2018-09-24 15:58:10.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-09-24 15:58:10.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.490 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-09-24 15:58:10.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.496 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-09-24 15:58:10.497 +03:00 [INF] Request finished in 7.7041ms 200 image/png +2018-09-24 15:58:10.497 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.498 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-09-24 15:58:10.499 +03:00 [INF] Request finished in 6.9128ms 200 image/png +2018-09-24 15:58:10.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-09-24 15:58:10.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.543 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.543 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-09-24 15:58:10.544 +03:00 [INF] Request finished in 1.3614ms 200 image/png +2018-09-24 15:58:10.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-09-24 15:58:10.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.597 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.600 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-09-24 15:58:10.600 +03:00 [INF] Request finished in 3.7669ms 200 image/png +2018-09-24 15:58:10.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-09-24 15:58:10.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.610 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.611 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-09-24 15:58:10.611 +03:00 [INF] Request finished in 1.015ms 200 image/png +2018-09-24 15:58:10.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-09-24 15:58:10.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.615 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.616 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-09-24 15:58:10.616 +03:00 [INF] Request finished in 0.9949ms 200 image/png +2018-09-24 15:58:10.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-09-24 15:58:10.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.643 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.647 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-09-24 15:58:10.647 +03:00 [INF] Request finished in 4.3636ms 200 image/png +2018-09-24 15:58:10.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-09-24 15:58:10.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-09-24 15:58:10.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.647 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.648 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-09-24 15:58:10.648 +03:00 [INF] Request finished in 1.1954ms 200 image/png +2018-09-24 15:58:10.649 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-09-24 15:58:10.649 +03:00 [INF] Request finished in 2.0434ms 200 image/png +2018-09-24 15:58:10.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-09-24 15:58:10.674 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.675 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.676 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-09-24 15:58:10.676 +03:00 [INF] Request finished in 2.3298ms 200 image/png +2018-09-24 15:58:10.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-09-24 15:58:10.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-09-24 15:58:10.707 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.708 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.708 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-09-24 15:58:10.708 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-09-24 15:58:10.708 +03:00 [INF] Request finished in 8.1177ms 200 image/png +2018-09-24 15:58:10.708 +03:00 [INF] Request finished in 8.3007ms 200 image/png +2018-09-24 15:58:10.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-09-24 15:58:10.725 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.726 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-09-24 15:58:10.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.729 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.730 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-09-24 15:58:10.730 +03:00 [INF] Request finished in 2.5057ms 200 image/png +2018-09-24 15:58:10.730 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-09-24 15:58:10.730 +03:00 [INF] Request finished in 5.3858ms 200 image/png +2018-09-24 15:58:10.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-09-24 15:58:10.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.731 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.731 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-09-24 15:58:10.732 +03:00 [INF] Request finished in 0.9498ms 200 image/png +2018-09-24 15:58:10.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-09-24 15:58:10.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.759 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.760 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-09-24 15:58:10.760 +03:00 [INF] Request finished in 2.6268ms 200 image/png +2018-09-24 15:58:10.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-09-24 15:58:10.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.772 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.774 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-09-24 15:58:10.775 +03:00 [INF] Request finished in 3.3566ms 200 image/png +2018-09-24 15:58:10.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-09-24 15:58:10.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.785 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.786 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-09-24 15:58:10.786 +03:00 [INF] Request finished in 2.1693ms 200 image/png +2018-09-24 15:58:10.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-09-24 15:58:10.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.790 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.791 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-09-24 15:58:10.791 +03:00 [INF] Request finished in 1.2931ms 200 image/png +2018-09-24 15:58:10.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-09-24 15:58:10.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.796 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.797 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-09-24 15:58:10.797 +03:00 [INF] Request finished in 1.1515ms 200 image/png +2018-09-24 15:58:10.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-09-24 15:58:10.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.813 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.814 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-09-24 15:58:10.814 +03:00 [INF] Request finished in 1.5251ms 200 image/png +2018-09-24 15:58:10.823 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-09-24 15:58:10.823 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.824 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.825 +03:00 [INF] Sending file. Request path: '/assets/tools/6.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\6.png' +2018-09-24 15:58:10.825 +03:00 [INF] Request finished in 2.7151ms 200 image/png +2018-09-24 15:58:10.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-09-24 15:58:10.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.839 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.843 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-09-24 15:58:10.843 +03:00 [INF] Request finished in 7.3201ms 200 image/png +2018-09-24 15:58:10.844 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-09-24 15:58:10.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.844 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.846 +03:00 [INF] Sending file. Request path: '/assets/tools/10.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\10.png' +2018-09-24 15:58:10.846 +03:00 [INF] Request finished in 2.3348ms 200 image/png +2018-09-24 15:58:10.846 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-09-24 15:58:10.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.846 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.847 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-09-24 15:58:10.847 +03:00 [INF] Request finished in 1.2798ms 200 image/png +2018-09-24 15:58:10.854 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-09-24 15:58:10.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.856 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.858 +03:00 [INF] Sending file. Request path: '/assets/tools/sass.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\sass.png' +2018-09-24 15:58:10.858 +03:00 [INF] Request finished in 4.9986ms 200 image/png +2018-09-24 15:58:10.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-09-24 15:58:10.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.888 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-09-24 15:58:10.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.890 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.891 +03:00 [INF] Sending file. Request path: '/assets/tools/13.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\13.png' +2018-09-24 15:58:10.891 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-09-24 15:58:10.891 +03:00 [INF] Request finished in 4.3246ms 200 image/png +2018-09-24 15:58:10.891 +03:00 [INF] Request finished in 2.4508ms 200 image/png +2018-09-24 15:58:10.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-09-24 15:58:10.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.893 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.894 +03:00 [INF] Sending file. Request path: '/assets/tools/15.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\15.png' +2018-09-24 15:58:10.894 +03:00 [INF] Request finished in 1.4108ms 200 image/png +2018-09-24 15:58:10.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-09-24 15:58:10.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.919 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 15:58:10.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.920 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-09-24 15:58:10.920 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.920 +03:00 [INF] Request finished in 1.6803ms 200 image/png +2018-09-24 15:58:10.921 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 15:58:10.921 +03:00 [INF] Request finished in 1.9164ms 200 image/svg+xml +2018-09-24 15:58:10.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 15:58:10.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 15:58:10.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.929 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.931 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.932 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 15:58:10.932 +03:00 [INF] Request finished in 3.1952ms 200 font/woff2 +2018-09-24 15:58:10.932 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 15:58:10.932 +03:00 [INF] Request finished in 3.3952ms 200 image/png +2018-09-24 15:58:10.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 15:58:10.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:10.982 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:10.996 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 15:58:10.996 +03:00 [INF] Request finished in 14.5472ms 200 image/jpeg +2018-09-24 15:58:11.058 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:11.058 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:58:11.059 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1187ms. +2018-09-24 15:58:11.059 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:11.059 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2252ms +2018-09-24 15:58:11.059 +03:00 [INF] Request finished in 666.0041ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:11.090 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:11.092 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:58:11.092 +03:00 [INF] Authorization failed. +2018-09-24 15:58:11.092 +03:00 [INF] Authorization failed. +2018-09-24 15:58:11.093 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.093 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.094 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.095 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.095 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.096 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.096 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.097 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.097 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.098 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.098 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.099 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.099 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.099 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.100 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.100 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.100 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.101 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.101 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.102 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.102 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.103 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.103 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.104 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.104 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.106 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.106 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:11.108 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 16.2342ms. +2018-09-24 15:58:11.108 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:11.108 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 18.002100000000002ms +2018-09-24 15:58:11.109 +03:00 [INF] Request finished in 716.5727ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:11.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 15:58:11.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:11.363 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:11.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 15:58:11.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:11.364 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:11.364 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 15:58:11.364 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 15:58:11.364 +03:00 [INF] Request finished in 1.9378ms 200 image/png +2018-09-24 15:58:11.365 +03:00 [INF] Request finished in 1.9894ms 200 image/png +2018-09-24 15:58:12.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-24 15:58:12.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.214 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.249 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 15:58:12.255 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:12.304 +03:00 [INF] Executed action /Blog/Posts/Index in 54.885600000000004ms +2018-09-24 15:58:12.304 +03:00 [INF] Request finished in 90.9533ms 200 text/html; charset=utf-8 +2018-09-24 15:58:12.350 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css?_v=636733906771137887 +2018-09-24 15:58:12.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.351 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css?_v=636733906883553887 +2018-09-24 15:58:12.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.358 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.354 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css'. Physical path: '/wwwroot/__bundles/AbpIo.Global.A39121830D518D9B65F06FA3C29AB91B.css' +2018-09-24 15:58:12.359 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.F7F4DB491BF23B8F8F5A5FC5858C263B.css' +2018-09-24 15:58:12.359 +03:00 [INF] Request finished in 2.1164ms 200 text/css +2018-09-24 15:58:12.360 +03:00 [INF] Request finished in 10.3529ms 200 text/css +2018-09-24 15:58:12.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-09-24 15:58:12.366 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js?_v=636733906785613556 +2018-09-24 15:58:12.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.368 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.370 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-09-24 15:58:12.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.370 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.377 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js?_v=636733906786003874 +2018-09-24 15:58:12.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.377 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.378 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js'. Physical path: '/wwwroot/__bundles/Volo.AbpWebSite.HomePageLayout.29AECB4A51F2CEA52ACC98975BBEF329.js' +2018-09-24 15:58:12.378 +03:00 [INF] Request finished in 0.9615ms 200 application/javascript +2018-09-24 15:58:12.378 +03:00 [INF] Sending file. Request path: '/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js'. Physical path: '/wwwroot/__bundles/AbpIo.Global.7D14E879B164E88A461F9558D64F09F5.js' +2018-09-24 15:58:12.378 +03:00 [INF] Request finished in 12.3579ms 200 application/javascript +2018-09-24 15:58:12.403 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js?_v=636733906883835395 +2018-09-24 15:58:12.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.407 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.408 +03:00 [INF] Sending file. Request path: '/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js'. Physical path: '/wwwroot/__bundles/Volo.Blogging.Pages.Blog.Posts.IndexModel.A2E83CAC624E40171D0DA26D2E7A873A.js' +2018-09-24 15:58:12.408 +03:00 [INF] Request finished in 5.2898ms 200 application/javascript +2018-09-24 15:58:12.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/ea6da622548addd544c339e91ce8e1ab.jpg +2018-09-24 15:58:12.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.415 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-09-24 15:58:12.421 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.422 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.423 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-09-24 15:58:12.423 +03:00 [INF] Request finished in 8.357ms 200 image/svg+xml +2018-09-24 15:58:12.426 +03:00 [INF] Sending file. Request path: '/files/ea6da622548addd544c339e91ce8e1ab.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\files\ea6da622548addd544c339e91ce8e1ab.jpg' +2018-09-24 15:58:12.426 +03:00 [INF] Request finished in 11.1708ms 200 image/jpeg +2018-09-24 15:58:12.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-09-24 15:58:12.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.433 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.433 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-09-24 15:58:12.433 +03:00 [INF] Request finished in 1.2201ms 200 image/png +2018-09-24 15:58:12.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-09-24 15:58:12.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.447 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.447 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-09-24 15:58:12.448 +03:00 [INF] Request finished in 2.4703ms 200 image/svg+xml +2018-09-24 15:58:12.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-09-24 15:58:12.492 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.495 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-09-24 15:58:12.499 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.500 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.504 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-09-24 15:58:12.504 +03:00 [INF] Request finished in 5.8674ms 200 font/woff2 +2018-09-24 15:58:12.509 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-09-24 15:58:12.509 +03:00 [INF] Request finished in 17.6366ms 200 image/jpeg +2018-09-24 15:58:12.572 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:12.573 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-09-24 15:58:12.573 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0879ms. +2018-09-24 15:58:12.573 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:12.573 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1758ms +2018-09-24 15:58:12.574 +03:00 [INF] Request finished in 203.8561ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:12.584 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-09-24 15:58:12.585 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-09-24 15:58:12.586 +03:00 [INF] Authorization failed. +2018-09-24 15:58:12.586 +03:00 [INF] Authorization failed. +2018-09-24 15:58:12.586 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.587 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.588 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.588 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.589 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.590 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.591 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.593 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.594 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.594 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.595 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.596 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.596 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.597 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.599 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.600 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.601 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.601 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.602 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.603 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.603 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.604 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.605 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.606 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.608 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.610 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.611 +03:00 [INF] Authorization was successful. +2018-09-24 15:58:12.613 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 27.3782ms. +2018-09-24 15:58:12.613 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-09-24 15:58:12.613 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 28.7012ms +2018-09-24 15:58:12.613 +03:00 [INF] Request finished in 247.2013ms 200 text/plain; charset=utf-8 +2018-09-24 15:58:12.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-09-24 15:58:12.980 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.981 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.981 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-09-24 15:58:12.981 +03:00 [INF] Request finished in 1.4214ms 200 image/png +2018-09-24 15:58:12.983 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-09-24 15:58:12.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:12.984 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:12.985 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-09-24 15:58:12.985 +03:00 [INF] Request finished in 1.9948ms 200 image/png +2018-09-24 15:58:14.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-24 15:58:14.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:14.734 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:14.767 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 15:58:14.770 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:14.814 +03:00 [INF] Executed action /Blog/Posts/Index in 47.1281ms +2018-09-24 15:58:14.814 +03:00 [INF] Request finished in 80.2812ms 200 text/html; charset=utf-8 +2018-09-24 15:58:17.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-09-24 15:58:17.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported cultures '["tr"]'. +2018-09-24 15:58:17.139 +03:00 [WRN] CookieRequestCultureProvider returned the following unsupported UI Cultures '["tr"]'. +2018-09-24 15:58:17.169 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-09-24 15:58:17.172 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-09-24 15:58:17.205 +03:00 [INF] Executed action /Blog/Posts/Index in 35.6662ms +2018-09-24 15:58:17.205 +03:00 [INF] Request finished in 66.6062ms 200 text/html; charset=utf-8 +2018-10-05 10:10:25.346 +03:00 [INF] Loaded modules: +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 10:10:25.361 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 10:10:25.362 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 10:10:25.363 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 10:10:25.363 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 10:10:25.363 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 10:10:25.363 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 10:10:27.171 +03:00 [INF] Initialized all modules. +2018-10-05 10:10:27.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 10:10:29.720 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 10:10:29.739 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:10:31.135 +03:00 [INF] Executed action /Index in 1409.548ms +2018-10-05 10:10:31.153 +03:00 [INF] Request finished in 3826.6809ms 200 text/html; charset=utf-8 +2018-10-05 10:10:31.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-10-05 10:10:31.220 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-10-05 10:10:31.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-10-05 10:10:31.223 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-10-05 10:10:31.224 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:10:31.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-10-05 10:10:31.242 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:10:31.242 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:10:31.242 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:10:31.242 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:10:31.242 +03:00 [INF] Request finished in 17.5577ms 200 text/css +2018-10-05 10:10:31.242 +03:00 [INF] Request finished in 20.5639ms 200 text/css +2018-10-05 10:10:31.242 +03:00 [INF] Request finished in 18.5268ms 200 text/css +2018-10-05 10:10:31.242 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:10:31.242 +03:00 [INF] Request finished in 22.0917ms 200 text/css +2018-10-05 10:10:31.242 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:10:31.242 +03:00 [INF] Request finished in 19.1366ms 200 text/css +2018-10-05 10:10:31.243 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:10:31.244 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:10:31.245 +03:00 [INF] Request finished in 1.4391ms 200 text/css +2018-10-05 10:10:31.247 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:10:31.248 +03:00 [INF] Request finished in 5.7364ms 200 text/css +2018-10-05 10:10:31.258 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:10:31.259 +03:00 [INF] Request finished in 47.1363ms 200 text/css +2018-10-05 10:10:31.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-light.svg +2018-10-05 10:10:31.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/1-modular.png +2018-10-05 10:10:31.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/modular.png +2018-10-05 10:10:31.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/2-micro.png +2018-10-05 10:10:31.273 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-light.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-light.svg' +2018-10-05 10:10:31.273 +03:00 [INF] Request finished in 2.81ms 200 image/svg+xml +2018-10-05 10:10:31.273 +03:00 [INF] Sending file. Request path: '/assets/icons/2-micro.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\2-micro.png' +2018-10-05 10:10:31.274 +03:00 [INF] Request finished in 1.1761ms 200 image/png +2018-10-05 10:10:31.274 +03:00 [INF] Sending file. Request path: '/assets/icons/1-modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\1-modular.png' +2018-10-05 10:10:31.274 +03:00 [INF] Sending file. Request path: '/img/modular.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\modular.png' +2018-10-05 10:10:31.274 +03:00 [INF] Request finished in 1.5821ms 200 image/png +2018-10-05 10:10:31.274 +03:00 [INF] Request finished in 1.3438ms 200 image/png +2018-10-05 10:10:31.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/3-ddd.png +2018-10-05 10:10:31.274 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/4-autho.png +2018-10-05 10:10:31.275 +03:00 [INF] Sending file. Request path: '/assets/icons/4-autho.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\4-autho.png' +2018-10-05 10:10:31.284 +03:00 [INF] Sending file. Request path: '/assets/icons/3-ddd.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\3-ddd.png' +2018-10-05 10:10:31.284 +03:00 [INF] Request finished in 10.1478ms 200 image/png +2018-10-05 10:10:31.284 +03:00 [INF] Request finished in 10.3593ms 200 image/png +2018-10-05 10:10:31.286 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/5-multi-tenancy.png +2018-10-05 10:10:31.289 +03:00 [INF] Sending file. Request path: '/assets/icons/5-multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\5-multi-tenancy.png' +2018-10-05 10:10:31.289 +03:00 [INF] Request finished in 2.9067ms 200 image/png +2018-10-05 10:10:31.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bg-job.png +2018-10-05 10:10:31.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/virtualfile.png +2018-10-05 10:10:31.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/bundle.png +2018-10-05 10:10:31.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/theming.png +2018-10-05 10:10:31.292 +03:00 [INF] Sending file. Request path: '/assets/icons/virtualfile.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\virtualfile.png' +2018-10-05 10:10:31.292 +03:00 [INF] Sending file. Request path: '/assets/icons/bundle.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bundle.png' +2018-10-05 10:10:31.294 +03:00 [INF] Sending file. Request path: '/assets/icons/bg-job.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\bg-job.png' +2018-10-05 10:10:31.295 +03:00 [INF] Request finished in 4.5736ms 200 image/png +2018-10-05 10:10:31.295 +03:00 [INF] Request finished in 5.1079ms 200 image/png +2018-10-05 10:10:31.295 +03:00 [INF] Request finished in 4.8951ms 200 image/png +2018-10-05 10:10:31.295 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/cross.png +2018-10-05 10:10:31.296 +03:00 [INF] Sending file. Request path: '/assets/icons/cross.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\cross.png' +2018-10-05 10:10:31.296 +03:00 [INF] Request finished in 1.1468ms 200 image/png +2018-10-05 10:10:31.297 +03:00 [INF] Sending file. Request path: '/assets/icons/theming.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\theming.png' +2018-10-05 10:10:31.297 +03:00 [INF] Request finished in 5.4978ms 200 image/png +2018-10-05 10:10:31.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/custom.png +2018-10-05 10:10:31.304 +03:00 [INF] Sending file. Request path: '/assets/icons/custom.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\custom.png' +2018-10-05 10:10:31.305 +03:00 [INF] Request finished in 4.845ms 200 image/png +2018-10-05 10:10:31.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/multi-tenancy.png +2018-10-05 10:10:31.306 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/icons/request.png +2018-10-05 10:10:31.307 +03:00 [INF] Sending file. Request path: '/img/multi-tenancy.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\multi-tenancy.png' +2018-10-05 10:10:31.307 +03:00 [INF] Request finished in 2.3615ms 200 image/png +2018-10-05 10:10:31.307 +03:00 [INF] Sending file. Request path: '/assets/icons/request.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\icons\request.png' +2018-10-05 10:10:31.308 +03:00 [INF] Request finished in 1.2929ms 200 image/png +2018-10-05 10:10:31.311 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/mt-left.png +2018-10-05 10:10:31.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/img/bootstrap.png +2018-10-05 10:10:31.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/my-image.png +2018-10-05 10:10:31.313 +03:00 [INF] Sending file. Request path: '/img/bootstrap.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\bootstrap.png' +2018-10-05 10:10:31.313 +03:00 [INF] Request finished in 1.7124ms 200 image/png +2018-10-05 10:10:31.314 +03:00 [INF] Sending file. Request path: '/img/mt-left.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\img\mt-left.png' +2018-10-05 10:10:31.314 +03:00 [INF] Request finished in 3.1122ms 200 image/png +2018-10-05 10:10:31.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/dynamic.png +2018-10-05 10:10:31.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/multiple-db.png +2018-10-05 10:10:31.320 +03:00 [INF] Sending file. Request path: '/assets/multiple-db.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\multiple-db.png' +2018-10-05 10:10:31.320 +03:00 [INF] Request finished in 2.8053ms 200 image/png +2018-10-05 10:10:31.321 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/17.png +2018-10-05 10:10:31.322 +03:00 [INF] Sending file. Request path: '/assets/tools/17.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\17.png' +2018-10-05 10:10:31.322 +03:00 [INF] Request finished in 1.6676ms 200 image/png +2018-10-05 10:10:31.323 +03:00 [INF] Sending file. Request path: '/assets/my-image.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\my-image.png' +2018-10-05 10:10:31.324 +03:00 [INF] Request finished in 12.1331ms 200 image/png +2018-10-05 10:10:31.324 +03:00 [INF] Sending file. Request path: '/assets/dynamic.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\dynamic.png' +2018-10-05 10:10:31.324 +03:00 [INF] Request finished in 6.729ms 200 image/png +2018-10-05 10:10:31.325 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-10-05 10:10:31.329 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-10-05 10:10:31.329 +03:00 [INF] Request finished in 3.8048ms 200 image/png +2018-10-05 10:10:31.329 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/18.png +2018-10-05 10:10:31.332 +03:00 [INF] Sending file. Request path: '/assets/tools/18.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\18.png' +2018-10-05 10:10:31.334 +03:00 [INF] Request finished in 4.019ms 200 image/png +2018-10-05 10:10:31.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-10-05 10:10:31.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-10-05 10:10:31.338 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-10-05 10:10:31.339 +03:00 [INF] Request finished in 2.6431ms 200 image/png +2018-10-05 10:10:31.339 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-10-05 10:10:31.340 +03:00 [INF] Request finished in 3.8784ms 200 image/png +2018-10-05 10:10:31.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/8.png +2018-10-05 10:10:31.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/10.png +2018-10-05 10:10:31.347 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/7.png +2018-10-05 10:10:31.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/6.png +2018-10-05 10:10:31.348 +03:00 [INF] Sending file. Request path: '/assets/tools/8.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\8.png' +2018-10-05 10:10:31.348 +03:00 [INF] Request finished in 2.5894ms 200 image/png +2018-10-05 10:10:31.349 +03:00 [INF] Sending file. Request path: '/assets/tools/7.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\7.png' +2018-10-05 10:10:31.349 +03:00 [INF] Request finished in 1.3696ms 200 image/png +2018-10-05 10:10:31.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/9.png +2018-10-05 10:10:31.349 +03:00 [INF] The file /assets/tools/6.png was not modified +2018-10-05 10:10:31.350 +03:00 [INF] The file /assets/tools/10.png was not modified +2018-10-05 10:10:31.351 +03:00 [INF] Sending file. Request path: '/assets/tools/9.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\9.png' +2018-10-05 10:10:31.352 +03:00 [INF] Request finished in 4.887ms 304 image/png +2018-10-05 10:10:31.352 +03:00 [INF] Request finished in 4.5538ms 304 image/png +2018-10-05 10:10:31.353 +03:00 [INF] Request finished in 4.2028ms 200 image/png +2018-10-05 10:10:31.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-10-05 10:10:31.361 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-10-05 10:10:31.362 +03:00 [INF] Sending file. Request path: '/assets/tools/16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\16.png' +2018-10-05 10:10:31.362 +03:00 [INF] Sending file. Request path: '/assets/tools/rabbitmq.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\rabbitmq.png' +2018-10-05 10:10:31.362 +03:00 [INF] Request finished in 1.0614ms 200 image/png +2018-10-05 10:10:31.362 +03:00 [INF] Request finished in 1.3414ms 200 image/png +2018-10-05 10:10:31.363 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-10-05 10:10:31.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-10-05 10:10:31.364 +03:00 [INF] Sending file. Request path: '/assets/abp-logo-dark.svg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\abp-logo-dark.svg' +2018-10-05 10:10:31.364 +03:00 [INF] Request finished in 1.6652ms 200 image/svg+xml +2018-10-05 10:10:31.366 +03:00 [INF] Sending file. Request path: '/assets/fork.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\fork.png' +2018-10-05 10:10:31.367 +03:00 [INF] Request finished in 3.0688ms 200 image/png +2018-10-05 10:10:31.368 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/sass.png +2018-10-05 10:10:31.372 +03:00 [INF] The file /assets/tools/sass.png was not modified +2018-10-05 10:10:31.372 +03:00 [INF] Request finished in 3.7762ms 304 image/png +2018-10-05 10:10:31.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:10:31.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:10:31.399 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:10:31.399 +03:00 [INF] Request finished in 3.9217ms 200 application/javascript +2018-10-05 10:10:31.401 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:10:31.401 +03:00 [INF] Request finished in 2.2024ms 200 application/javascript +2018-10-05 10:10:31.401 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:10:31.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:10:31.410 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:10:31.415 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:10:31.415 +03:00 [INF] Request finished in 4.846ms 200 font/woff2 +2018-10-05 10:10:31.423 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:10:31.423 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:10:31.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/13.png +2018-10-05 10:10:31.461 +03:00 [INF] The file /assets/tools/13.png was not modified +2018-10-05 10:10:31.461 +03:00 [INF] Request finished in 0.6637ms 304 image/png +2018-10-05 10:10:31.462 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/15.png +2018-10-05 10:10:31.462 +03:00 [INF] The file /assets/tools/15.png was not modified +2018-10-05 10:10:31.462 +03:00 [INF] Request finished in 0.5452ms 304 image/png +2018-10-05 10:10:31.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-10-05 10:10:31.471 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 10:10:31.471 +03:00 [INF] Request finished in 1.1812ms 304 application/javascript +2018-10-05 10:10:31.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-10-05 10:10:31.472 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 10:10:31.472 +03:00 [INF] Request finished in 2.0441ms 304 application/javascript +2018-10-05 10:10:31.473 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-10-05 10:10:31.474 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 10:10:31.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-10-05 10:10:31.475 +03:00 [INF] Request finished in 1.1688ms 304 application/javascript +2018-10-05 10:10:31.476 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 10:10:31.476 +03:00 [INF] Request finished in 1.2324ms 304 application/javascript +2018-10-05 10:10:31.487 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-10-05 10:10:31.488 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 10:10:31.489 +03:00 [INF] Request finished in 2.602ms 304 application/javascript +2018-10-05 10:10:31.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-10-05 10:10:31.490 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 10:10:31.490 +03:00 [INF] Request finished in 2.1133ms 304 application/javascript +2018-10-05 10:10:31.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-10-05 10:10:31.492 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:10:31.492 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 10:10:31.492 +03:00 [INF] Request finished in 0.7743ms 304 application/javascript +2018-10-05 10:10:31.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-10-05 10:10:31.493 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 10:10:31.493 +03:00 [INF] Request finished in 0.9532ms 304 application/javascript +2018-10-05 10:10:31.497 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:10:31.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-10-05 10:10:31.505 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 10:10:31.506 +03:00 [INF] Request finished in 0.9289ms 304 application/javascript +2018-10-05 10:10:31.505 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-10-05 10:10:31.507 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 10:10:31.507 +03:00 [INF] Request finished in 1.7854ms 304 application/javascript +2018-10-05 10:10:31.512 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-10-05 10:10:31.513 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 10:10:31.513 +03:00 [INF] Request finished in 1.3192ms 304 application/javascript +2018-10-05 10:10:31.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:10:31.523 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 10:10:31.523 +03:00 [INF] Request finished in 1.0829ms 304 application/javascript +2018-10-05 10:10:31.523 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:10:31.524 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 10:10:31.524 +03:00 [INF] Request finished in 0.7387ms 304 application/javascript +2018-10-05 10:10:31.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:10:31.526 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 10:10:31.526 +03:00 [INF] Request finished in 0.9791ms 304 application/javascript +2018-10-05 10:10:31.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:10:31.528 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 10:10:31.529 +03:00 [INF] Request finished in 1.9698ms 304 application/javascript +2018-10-05 10:10:31.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:10:31.544 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 10:10:31.545 +03:00 [INF] Request finished in 1.7691ms 304 application/javascript +2018-10-05 10:10:31.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:10:31.546 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:10:31.546 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-10-05 10:10:31.547 +03:00 [INF] Request finished in 0.8157ms 304 application/javascript +2018-10-05 10:10:31.549 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 10:10:31.549 +03:00 [INF] Request finished in 3.9246ms 304 application/javascript +2018-10-05 10:10:31.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:10:31.550 +03:00 [INF] The file /js/vs.js was not modified +2018-10-05 10:10:31.550 +03:00 [INF] Request finished in 0.5814ms 304 application/javascript +2018-10-05 10:10:31.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-10-05 10:10:31.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-10-05 10:10:31.562 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 10:10:31.562 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 10:10:31.562 +03:00 [INF] Request finished in 0.4276ms 304 application/javascript +2018-10-05 10:10:31.562 +03:00 [INF] Request finished in 0.57ms 304 application/javascript +2018-10-05 10:10:31.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-10-05 10:10:31.565 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 10:10:31.565 +03:00 [INF] Request finished in 0.5939ms 304 application/javascript +2018-10-05 10:10:31.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:10:31.566 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-10-05 10:10:31.566 +03:00 [INF] Request finished in 0.5192ms 304 image/jpeg +2018-10-05 10:10:31.569 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.570 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.598 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.599 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.600 +03:00 [INF] Authorization failed. +2018-10-05 10:10:31.632 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 127.2355ms. +2018-10-05 10:10:31.639 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:10:31.640 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 216.90640000000002ms +2018-10-05 10:10:31.641 +03:00 [INF] Request finished in 239.8445ms 200 text/plain; charset=utf-8 +2018-10-05 10:10:31.644 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 151.7391ms. +2018-10-05 10:10:31.644 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:10:31.645 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 221.21210000000002ms +2018-10-05 10:10:31.645 +03:00 [INF] Request finished in 243.1784ms 200 text/plain; charset=utf-8 +2018-10-05 10:10:31.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:10:31.947 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:10:31.947 +03:00 [INF] Request finished in 2.4683ms 200 image/png +2018-10-05 10:10:31.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:10:31.956 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:10:31.956 +03:00 [INF] Request finished in 8.4407ms 200 image/png +2018-10-05 10:22:55.488 +03:00 [INF] Loaded modules: +2018-10-05 10:22:55.509 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 10:22:55.510 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 10:22:55.511 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 10:22:55.512 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 10:22:57.287 +03:00 [INF] Initialized all modules. +2018-10-05 10:22:57.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 10:22:59.572 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 10:22:59.591 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:23:01.080 +03:00 [INF] Executed action /Index in 1503.8382000000001ms +2018-10-05 10:23:01.106 +03:00 [INF] Request finished in 3673.8033ms 200 text/html; charset=utf-8 +2018-10-05 10:23:01.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-10-05 10:23:01.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-10-05 10:23:01.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-10-05 10:23:01.113 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-10-05 10:23:01.114 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 10:23:01.114 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 10:23:01.114 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 10:23:01.114 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 10:23:01.117 +03:00 [INF] Request finished in 5.5157ms 304 text/css +2018-10-05 10:23:01.117 +03:00 [INF] Request finished in 8.0794ms 304 text/css +2018-10-05 10:23:01.117 +03:00 [INF] Request finished in 7.8161ms 304 text/css +2018-10-05 10:23:01.117 +03:00 [INF] Request finished in 4.7853ms 304 text/css +2018-10-05 10:23:01.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-10-05 10:23:01.123 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 10:23:01.124 +03:00 [INF] Request finished in 1.182ms 304 text/css +2018-10-05 10:23:01.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:23:01.127 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 10:23:01.128 +03:00 [INF] Request finished in 1.1591ms 304 text/css +2018-10-05 10:23:01.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:23:01.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:23:01.130 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-10-05 10:23:01.130 +03:00 [INF] The file /scss/vs.css was not modified +2018-10-05 10:23:01.130 +03:00 [INF] Request finished in 0.6765ms 304 text/css +2018-10-05 10:23:01.130 +03:00 [INF] Request finished in 0.4284ms 304 text/css +2018-10-05 10:23:01.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/16.png +2018-10-05 10:23:01.198 +03:00 [INF] The file /assets/tools/16.png was not modified +2018-10-05 10:23:01.199 +03:00 [INF] Request finished in 1.3582ms 304 image/png +2018-10-05 10:23:01.201 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/fork.png +2018-10-05 10:23:01.203 +03:00 [INF] The file /assets/fork.png was not modified +2018-10-05 10:23:01.203 +03:00 [INF] Request finished in 2.2584ms 304 image/png +2018-10-05 10:23:01.204 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/rabbitmq.png +2018-10-05 10:23:01.205 +03:00 [INF] The file /assets/tools/rabbitmq.png was not modified +2018-10-05 10:23:01.205 +03:00 [INF] Request finished in 1.1847ms 304 image/png +2018-10-05 10:23:01.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/abp-logo-dark.svg +2018-10-05 10:23:01.206 +03:00 [INF] The file /assets/abp-logo-dark.svg was not modified +2018-10-05 10:23:01.206 +03:00 [INF] Request finished in 0.6259ms 304 image/svg+xml +2018-10-05 10:23:01.249 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:23:01.250 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 10:23:01.250 +03:00 [INF] Request finished in 0.9051ms 304 application/javascript +2018-10-05 10:23:01.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:23:01.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:23:01.267 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:23:01.267 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-10-05 10:23:01.267 +03:00 [INF] Request finished in 0.9187ms 304 font/woff2 +2018-10-05 10:23:01.278 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:23:01.278 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:23:01.345 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:23:01.346 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:23:01.376 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.377 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.399 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.400 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.401 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.402 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.402 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.403 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.403 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.403 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.403 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.404 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.404 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.404 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.404 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.405 +03:00 [INF] Authorization failed. +2018-10-05 10:23:01.432 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 81.5746ms. +2018-10-05 10:23:01.436 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 90.8002ms. +2018-10-05 10:23:01.439 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:23:01.439 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:23:01.440 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 161.3869ms +2018-10-05 10:23:01.440 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 161.35930000000002ms +2018-10-05 10:23:01.440 +03:00 [INF] Request finished in 182.7739ms 200 text/plain; charset=utf-8 +2018-10-05 10:23:01.440 +03:00 [INF] Request finished in 184.7855ms 200 text/plain; charset=utf-8 +2018-10-05 10:23:01.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 10:23:01.814 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-10-05 10:23:01.814 +03:00 [INF] Request finished in 11.4229ms 200 image/png +2018-10-05 10:23:19.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/docs +2018-10-05 10:23:19.186 +03:00 [INF] Request finished in 1.6817ms 404 +2018-10-05 10:23:19.221 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-10-05 10:23:19.222 +03:00 [INF] Request finished in 1.8183ms 404 +2018-10-05 10:23:22.356 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-10-05 10:23:22.769 +03:00 [INF] Route matched with {page = "/Documents/Index", controller = "", area = "", action = ""}. Executing action /Documents/Index +2018-10-05 10:23:22.803 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:23:22.883 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Project/Index. +2018-10-05 10:23:22.884 +03:00 [INF] Executed action /Documents/Index in 114.5976ms +2018-10-05 10:23:22.884 +03:00 [INF] Request finished in 528.044ms 302 +2018-10-05 10:23:22.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 10:23:23.234 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:23:23.248 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:23:25.465 +03:00 [INF] Executed action /Documents/Project/Index in 2230.5534000000002ms +2018-10-05 10:23:25.465 +03:00 [INF] Request finished in 2564.294ms 200 text/html; charset=utf-8 +2018-10-05 10:23:25.509 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:23:25.513 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:23:25.513 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:23:25.513 +03:00 [INF] Request finished in 4.2478ms 200 text/css +2018-10-05 10:23:25.514 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:23:25.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:23:25.515 +03:00 [INF] Request finished in 1.5471ms 200 text/css +2018-10-05 10:23:25.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:23:25.518 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:23:25.518 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:23:25.518 +03:00 [INF] Request finished in 1.8625ms 200 text/css +2018-10-05 10:23:25.518 +03:00 [INF] Request finished in 3.2338ms 200 text/css +2018-10-05 10:23:25.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:23:25.525 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:23:25.525 +03:00 [INF] Request finished in 6.4733ms 200 text/css +2018-10-05 10:23:25.533 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:23:25.536 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:23:25.537 +03:00 [INF] Request finished in 3.6227ms 200 text/css +2018-10-05 10:23:25.568 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:23:25.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:23:25.573 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:23:25.574 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:23:25.577 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.6282ms. +2018-10-05 10:23:25.578 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:23:25.578 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:23:25.578 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.9996ms +2018-10-05 10:23:25.579 +03:00 [INF] Request finished in 9.1824ms 200 text/plain; charset=utf-8 +2018-10-05 10:23:25.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:23:25.580 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:23:25.580 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.580 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.580 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.580 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.580 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.581 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.581 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.581 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.581 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.581 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.582 +03:00 [INF] Request finished in 2.6716ms 200 application/javascript +2018-10-05 10:23:25.582 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.583 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.583 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.583 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.584 +03:00 [INF] Authorization failed. +2018-10-05 10:23:25.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:23:25.586 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:23:25.586 +03:00 [INF] Request finished in 1.6061ms 200 application/javascript +2018-10-05 10:23:25.587 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.3193ms. +2018-10-05 10:23:25.587 +03:00 [INF] Request finished in 1.9717ms 200 application/javascript +2018-10-05 10:23:25.587 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:23:25.588 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.2475ms +2018-10-05 10:23:25.588 +03:00 [INF] Request finished in 20.3237ms 200 text/plain; charset=utf-8 +2018-10-05 10:23:25.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:23:25.601 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:23:25.603 +03:00 [INF] Request finished in 9.3594ms 200 application/javascript +2018-10-05 10:23:25.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:23:25.608 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:23:25.608 +03:00 [INF] Request finished in 1.6017ms 200 application/javascript +2018-10-05 10:23:25.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:23:25.614 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:23:25.614 +03:00 [INF] Request finished in 2.4958ms 200 application/javascript +2018-10-05 10:23:25.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:23:25.617 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:23:25.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:23:25.618 +03:00 [INF] Request finished in 1.8894ms 200 application/javascript +2018-10-05 10:23:25.619 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:23:25.619 +03:00 [INF] Request finished in 1.3352ms 200 application/javascript +2018-10-05 10:23:25.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:23:25.623 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:23:25.624 +03:00 [INF] Request finished in 2.2108ms 200 application/javascript +2018-10-05 10:23:25.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:23:25.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:23:25.628 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:23:25.629 +03:00 [INF] Request finished in 2.4727ms 200 application/javascript +2018-10-05 10:23:25.629 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:23:25.629 +03:00 [INF] Request finished in 2.28ms 200 application/javascript +2018-10-05 10:23:25.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:23:25.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:23:25.635 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:23:25.635 +03:00 [INF] Request finished in 4.8394ms 200 application/javascript +2018-10-05 10:23:25.636 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:23:25.636 +03:00 [INF] Request finished in 1.6576ms 200 application/javascript +2018-10-05 10:26:32.341 +03:00 [INF] Loaded modules: +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 10:26:32.357 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 10:26:32.358 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 10:26:32.359 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 10:26:32.360 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 10:26:32.360 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 10:26:34.377 +03:00 [INF] Initialized all modules. +2018-10-05 10:26:34.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 10:26:37.792 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:26:37.929 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:26:40.940 +03:00 [INF] Executed action /Documents/Project/Index in 3139.8485ms +2018-10-05 10:26:40.951 +03:00 [INF] Request finished in 6347.2135ms 200 text/html; charset=utf-8 +2018-10-05 10:26:40.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636731257339618557 +2018-10-05 10:26:40.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636731257339618557 +2018-10-05 10:26:40.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636731257339648557 +2018-10-05 10:26:40.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636731257340708535 +2018-10-05 10:26:40.993 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 10:26:40.993 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 10:26:40.993 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 10:26:40.994 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 10:26:40.997 +03:00 [INF] Request finished in 4.8807ms 304 text/css +2018-10-05 10:26:40.997 +03:00 [INF] Request finished in 7.571ms 304 text/css +2018-10-05 10:26:40.997 +03:00 [INF] Request finished in 7.7319ms 304 text/css +2018-10-05 10:26:40.997 +03:00 [INF] Request finished in 11.8723ms 304 text/css +2018-10-05 10:26:40.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636731257339618557 +2018-10-05 10:26:40.999 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 10:26:41.000 +03:00 [INF] Request finished in 1.2866ms 304 text/css +2018-10-05 10:26:41.003 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:26:41.004 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 10:26:41.004 +03:00 [INF] Request finished in 1.2361ms 304 text/css +2018-10-05 10:26:41.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:26:41.032 +03:00 [INF] The file /scss/vs.css was not modified +2018-10-05 10:26:41.032 +03:00 [INF] Request finished in 0.7561ms 304 text/css +2018-10-05 10:26:41.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:26:41.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:26:41.032 +03:00 [INF] The file /js/prism/prism.css was not modified +2018-10-05 10:26:41.032 +03:00 [INF] Request finished in 0.6101ms 304 text/css +2018-10-05 10:26:41.034 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 10:26:41.034 +03:00 [INF] Request finished in 2.3217ms 304 text/css +2018-10-05 10:26:41.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:26:41.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:26:41.045 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 10:26:41.045 +03:00 [INF] Request finished in 9.049ms 304 text/css +2018-10-05 10:26:41.045 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 10:26:41.045 +03:00 [INF] Request finished in 0.878ms 304 text/css +2018-10-05 10:26:41.048 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:26:41.049 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 10:26:41.050 +03:00 [INF] Request finished in 1.3407ms 304 text/css +2018-10-05 10:26:41.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:26:41.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:26:41.052 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 10:26:41.052 +03:00 [INF] Request finished in 0.7488ms 304 text/css +2018-10-05 10:26:41.052 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 10:26:41.053 +03:00 [INF] Request finished in 0.8897ms 304 text/css +2018-10-05 10:26:41.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636731257339618557 +2018-10-05 10:26:41.058 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 10:26:41.059 +03:00 [INF] Request finished in 1.3449ms 304 application/javascript +2018-10-05 10:26:41.067 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636731257339958542 +2018-10-05 10:26:41.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636731257339348517 +2018-10-05 10:26:41.070 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 10:26:41.072 +03:00 [INF] Request finished in 5.0406ms 304 application/javascript +2018-10-05 10:26:41.074 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 10:26:41.074 +03:00 [INF] Request finished in 5.2765ms 304 application/javascript +2018-10-05 10:26:41.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636731257339938533 +2018-10-05 10:26:41.075 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 10:26:41.075 +03:00 [INF] Request finished in 0.55ms 304 application/javascript +2018-10-05 10:26:41.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636731257339288537 +2018-10-05 10:26:41.077 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 10:26:41.077 +03:00 [INF] Request finished in 0.6732ms 304 application/javascript +2018-10-05 10:26:41.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636731257339288537 +2018-10-05 10:26:41.077 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 10:26:41.086 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636731257339268576 +2018-10-05 10:26:41.086 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 10:26:41.087 +03:00 [INF] Request finished in 0.8688ms 304 application/javascript +2018-10-05 10:26:41.077 +03:00 [INF] Request finished in 0.9205ms 304 application/javascript +2018-10-05 10:26:41.093 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636731257339298546 +2018-10-05 10:26:41.093 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 10:26:41.094 +03:00 [INF] Request finished in 1.3268ms 304 application/javascript +2018-10-05 10:26:41.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636731257340058571 +2018-10-05 10:26:41.095 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 10:26:41.095 +03:00 [INF] Request finished in 0.8547ms 304 application/javascript +2018-10-05 10:26:41.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636731257339618557 +2018-10-05 10:26:41.101 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 10:26:41.101 +03:00 [INF] Request finished in 0.8519ms 304 application/javascript +2018-10-05 10:26:41.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636731257339388514 +2018-10-05 10:26:41.109 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 10:26:41.109 +03:00 [INF] Request finished in 2.0513ms 304 application/javascript +2018-10-05 10:26:41.114 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636731257341028544 +2018-10-05 10:26:41.115 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 10:26:41.115 +03:00 [INF] Request finished in 0.9198ms 304 application/javascript +2018-10-05 10:26:41.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636731257339698551 +2018-10-05 10:26:41.120 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 10:26:41.122 +03:00 [INF] Request finished in 3.2583ms 304 application/javascript +2018-10-05 10:26:41.124 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:26:41.125 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 10:26:41.125 +03:00 [INF] Request finished in 1.3913ms 304 application/javascript +2018-10-05 10:26:41.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636731257339388514 +2018-10-05 10:26:41.134 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 10:26:41.134 +03:00 [INF] Request finished in 1.4692ms 304 application/javascript +2018-10-05 10:26:41.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:26:41.135 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 10:26:41.135 +03:00 [INF] Request finished in 0.7754ms 304 application/javascript +2018-10-05 10:26:41.143 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:26:41.144 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 10:26:41.145 +03:00 [INF] Request finished in 1.9008ms 304 application/javascript +2018-10-05 10:26:41.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:26:41.175 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 10:26:41.175 +03:00 [INF] Request finished in 1.7639ms 304 application/javascript +2018-10-05 10:26:41.181 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:26:41.182 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 10:26:41.183 +03:00 [INF] Request finished in 1.2654ms 304 application/javascript +2018-10-05 10:26:41.185 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:26:41.185 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 10:26:41.185 +03:00 [INF] Request finished in 0.7564ms 304 application/javascript +2018-10-05 10:26:41.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:26:41.186 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:26:41.187 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:26:41.188 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 10:26:41.189 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 10:26:41.189 +03:00 [INF] Request finished in 2.8131ms 304 application/javascript +2018-10-05 10:26:41.189 +03:00 [INF] Request finished in 1.7405ms 304 application/javascript +2018-10-05 10:26:41.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:26:41.208 +03:00 [INF] The file /js/prism/prism.js was not modified +2018-10-05 10:26:41.209 +03:00 [INF] Request finished in 2.0975ms 304 application/javascript +2018-10-05 10:26:41.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:26:41.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:26:41.216 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 10:26:41.216 +03:00 [INF] Request finished in 2.8743ms 304 application/javascript +2018-10-05 10:26:41.225 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:26:41.229 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:26:41.229 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:26:41.230 +03:00 [INF] The file /js/vs.js was not modified +2018-10-05 10:26:41.230 +03:00 [INF] Request finished in 0.7619ms 304 application/javascript +2018-10-05 10:26:41.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:26:41.233 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 10:26:41.233 +03:00 [INF] Request finished in 0.7528ms 304 application/javascript +2018-10-05 10:26:41.272 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:26:41.273 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 10:26:41.273 +03:00 [INF] Request finished in 0.9993ms 304 application/javascript +2018-10-05 10:26:41.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:26:41.274 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 10:26:41.274 +03:00 [INF] Request finished in 1.0803ms 304 application/javascript +2018-10-05 10:26:41.280 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:26:41.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:26:41.308 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 10:26:41.308 +03:00 [INF] Request finished in 0.8927ms 304 application/javascript +2018-10-05 10:26:41.313 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:26:41.314 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:26:41.314 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 10:26:41.314 +03:00 [INF] Request finished in 0.6816ms 304 application/javascript +2018-10-05 10:26:41.314 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 10:26:41.314 +03:00 [INF] Request finished in 0.5344ms 304 application/javascript +2018-10-05 10:26:41.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:26:41.319 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:26:41.319 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 10:26:41.320 +03:00 [INF] Request finished in 2.4319ms 304 application/javascript +2018-10-05 10:26:41.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:26:41.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:26:41.498 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 10:26:41.498 +03:00 [INF] Request finished in 0.5842ms 304 application/javascript +2018-10-05 10:26:41.499 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 10:26:41.499 +03:00 [INF] Request finished in 1.831ms 304 application/javascript +2018-10-05 10:26:41.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:26:41.501 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 10:26:41.501 +03:00 [INF] Request finished in 0.8906ms 304 application/javascript +2018-10-05 10:26:41.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:26:41.503 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 10:26:41.503 +03:00 [INF] Request finished in 0.9778ms 304 application/javascript +2018-10-05 10:26:41.518 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.521 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:26:41.536 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 10:26:41.536 +03:00 [INF] Request finished in 0.9103ms 304 application/javascript +2018-10-05 10:26:41.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:26:41.543 +03:00 [INF] The file /assets/tools/bg.jpg was not modified +2018-10-05 10:26:41.544 +03:00 [INF] Request finished in 1.3464ms 304 image/jpeg +2018-10-05 10:26:41.561 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.562 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.563 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.570 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.572 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.577 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.577 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.579 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.579 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.579 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.579 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.580 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.580 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.580 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.580 +03:00 [INF] Authorization failed. +2018-10-05 10:26:41.636 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 312.1229ms. +2018-10-05 10:26:41.636 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 351.6845ms. +2018-10-05 10:26:41.645 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:26:41.645 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:26:41.646 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 420.3428ms +2018-10-05 10:26:41.646 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 415.9742ms +2018-10-05 10:26:41.646 +03:00 [INF] Request finished in 460.0957ms 200 text/plain; charset=utf-8 +2018-10-05 10:26:41.646 +03:00 [INF] Request finished in 435.7534ms 200 text/plain; charset=utf-8 +2018-10-05 10:26:41.880 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:26:41.881 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 10:26:41.881 +03:00 [INF] Request finished in 1.1032ms 304 image/png +2018-10-05 10:26:41.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 10:26:41.886 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-10-05 10:26:41.886 +03:00 [INF] Request finished in 1.136ms 304 image/png +2018-10-05 10:26:54.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:26:54.911 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:26:54.914 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:26:55.981 +03:00 [INF] Executed action /Documents/Project/Index in 1070.0394000000001ms +2018-10-05 10:26:55.982 +03:00 [INF] Request finished in 1071.5303ms 200 text/html; charset=utf-8 +2018-10-05 10:26:56.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:26:56.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:26:56.083 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:26:56.084 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:26:56.086 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:26:56.087 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.77050000000000007ms. +2018-10-05 10:26:56.088 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:26:56.088 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:26:56.089 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.089 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 4.4873ms +2018-10-05 10:26:56.089 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.089 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.089 +03:00 [INF] Request finished in 6.1972ms 200 text/plain; charset=utf-8 +2018-10-05 10:26:56.089 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.089 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.090 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.091 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.092 +03:00 [INF] Authorization failed. +2018-10-05 10:26:56.095 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.4996ms. +2018-10-05 10:26:56.095 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:26:56.095 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.732000000000001ms +2018-10-05 10:26:56.095 +03:00 [INF] Request finished in 14.1308ms 200 text/plain; charset=utf-8 +2018-10-05 10:31:16.105 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:31:16.107 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:31:16.109 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:31:16.745 +03:00 [INF] Executed action /Documents/Project/Index in 637.8073ms +2018-10-05 10:31:16.745 +03:00 [INF] Request finished in 639.4169ms 200 text/html; charset=utf-8 +2018-10-05 10:31:16.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:31:16.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:31:16.805 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:31:16.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:31:16.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:31:16.816 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:31:16.817 +03:00 [INF] Request finished in 4.8227ms 200 text/css +2018-10-05 10:31:16.824 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:31:16.824 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:31:16.824 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:31:16.824 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:31:16.829 +03:00 [INF] Request finished in 25.7174ms 200 text/css +2018-10-05 10:31:16.829 +03:00 [INF] Request finished in 23.8432ms 200 text/css +2018-10-05 10:31:16.829 +03:00 [INF] Request finished in 36.5153ms 200 text/css +2018-10-05 10:31:16.829 +03:00 [INF] Request finished in 21.5388ms 200 text/css +2018-10-05 10:31:16.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:31:16.835 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:31:16.835 +03:00 [INF] Request finished in 3.718ms 200 text/css +2018-10-05 10:31:16.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:31:16.844 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:31:16.845 +03:00 [INF] Request finished in 2.0395ms 200 text/css +2018-10-05 10:31:16.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:31:16.850 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:31:16.850 +03:00 [INF] Request finished in 1.8886ms 200 text/css +2018-10-05 10:31:16.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:31:16.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:31:16.856 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:31:16.856 +03:00 [INF] Request finished in 3.7177ms 200 text/css +2018-10-05 10:31:16.858 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:31:16.859 +03:00 [INF] Request finished in 8.4702ms 200 text/css +2018-10-05 10:31:16.861 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:31:16.862 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:31:16.862 +03:00 [INF] Request finished in 0.9403ms 200 text/css +2018-10-05 10:31:16.875 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:31:16.876 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:31:16.876 +03:00 [INF] Request finished in 1.3731ms 200 text/css +2018-10-05 10:31:16.879 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:31:16.881 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:31:16.882 +03:00 [INF] Request finished in 2.4739ms 200 text/css +2018-10-05 10:31:16.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:31:16.910 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:31:16.910 +03:00 [INF] Request finished in 1.4474ms 200 text/css +2018-10-05 10:31:16.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:31:16.911 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:31:16.911 +03:00 [INF] Request finished in 1.0854ms 200 application/javascript +2018-10-05 10:31:16.920 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:31:16.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:31:16.922 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:31:16.922 +03:00 [INF] Request finished in 0.9703ms 200 application/javascript +2018-10-05 10:31:16.927 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:31:16.927 +03:00 [INF] Request finished in 7.0092ms 200 application/javascript +2018-10-05 10:31:16.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:31:16.934 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:31:16.934 +03:00 [INF] Request finished in 6.4959ms 200 application/javascript +2018-10-05 10:31:16.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:31:16.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:31:16.940 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:31:16.940 +03:00 [INF] Request finished in 1.0522ms 200 application/javascript +2018-10-05 10:31:16.941 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:31:16.942 +03:00 [INF] Request finished in 3.6875ms 200 application/javascript +2018-10-05 10:31:16.944 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:31:16.945 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:31:16.945 +03:00 [INF] Request finished in 1.4312ms 200 application/javascript +2018-10-05 10:31:16.946 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:31:16.948 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:31:16.948 +03:00 [INF] Request finished in 2.062ms 200 application/javascript +2018-10-05 10:31:16.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:31:16.957 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:31:16.958 +03:00 [INF] Request finished in 2.0246ms 200 application/javascript +2018-10-05 10:31:16.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:31:16.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:31:16.966 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:31:16.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:31:16.966 +03:00 [INF] Request finished in 1.7418ms 200 application/javascript +2018-10-05 10:31:16.967 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:31:16.967 +03:00 [INF] Request finished in 0.9593ms 200 application/javascript +2018-10-05 10:31:16.971 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:31:16.972 +03:00 [INF] Request finished in 12.5587ms 200 application/javascript +2018-10-05 10:31:16.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:31:16.986 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:31:16.986 +03:00 [INF] Request finished in 0.7998ms 200 application/javascript +2018-10-05 10:31:16.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:31:16.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:31:16.990 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:31:16.990 +03:00 [INF] Request finished in 2.0557ms 200 application/javascript +2018-10-05 10:31:16.991 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:31:16.991 +03:00 [INF] Request finished in 3.4401ms 200 application/javascript +2018-10-05 10:31:17.000 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:31:17.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:31:17.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:31:17.002 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:31:17.002 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:31:17.002 +03:00 [INF] Request finished in 2.2193ms 200 application/javascript +2018-10-05 10:31:17.002 +03:00 [INF] Request finished in 0.8378ms 200 application/javascript +2018-10-05 10:31:17.002 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:31:17.002 +03:00 [INF] Request finished in 1.2916ms 200 application/javascript +2018-10-05 10:31:17.002 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:31:17.004 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:31:17.004 +03:00 [INF] Request finished in 2.0801ms 200 application/javascript +2018-10-05 10:31:17.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:31:17.013 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:31:17.013 +03:00 [INF] Request finished in 1.7976ms 200 application/javascript +2018-10-05 10:31:17.016 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:31:17.018 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:31:17.018 +03:00 [INF] Request finished in 1.863ms 200 application/javascript +2018-10-05 10:31:17.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:31:17.021 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:31:17.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:31:17.022 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.022 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Request finished in 1.2787ms 200 application/javascript +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.023 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.024 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.025 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.025 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:31:17.025 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.025 +03:00 [INF] Authorization failed. +2018-10-05 10:31:17.026 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:31:17.026 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12890000000000001ms. +2018-10-05 10:31:17.026 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:31:17.026 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1656ms +2018-10-05 10:31:17.026 +03:00 [INF] Request finished in 2.8851ms 200 text/plain; charset=utf-8 +2018-10-05 10:31:17.027 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:31:17.027 +03:00 [INF] Request finished in 4.1026ms 200 application/javascript +2018-10-05 10:31:17.027 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.1266ms. +2018-10-05 10:31:17.028 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:31:17.028 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.9644ms +2018-10-05 10:31:17.028 +03:00 [INF] Request finished in 8.5343ms 200 text/plain; charset=utf-8 +2018-10-05 10:31:17.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:31:17.035 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:31:17.035 +03:00 [INF] Request finished in 4.6219ms 200 application/javascript +2018-10-05 10:31:17.041 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:31:17.042 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:31:17.042 +03:00 [INF] Request finished in 1.535ms 200 application/javascript +2018-10-05 10:31:17.043 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:31:17.044 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:31:17.045 +03:00 [INF] Request finished in 2.0322ms 200 application/javascript +2018-10-05 10:31:17.052 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:31:17.054 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:31:17.055 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:31:17.055 +03:00 [INF] Request finished in 1.5119ms 200 application/javascript +2018-10-05 10:31:17.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:31:17.056 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:31:17.056 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:31:17.056 +03:00 [INF] Request finished in 0.7957ms 200 application/javascript +2018-10-05 10:31:17.057 +03:00 [INF] Request finished in 4.8806ms 200 application/javascript +2018-10-05 10:31:17.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:31:17.058 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:31:17.058 +03:00 [INF] Request finished in 1.2623ms 200 application/javascript +2018-10-05 10:31:17.083 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:31:17.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:31:17.084 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:31:17.084 +03:00 [INF] Request finished in 0.9921ms 200 application/javascript +2018-10-05 10:31:17.085 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:31:17.085 +03:00 [INF] Request finished in 1.3365ms 200 application/javascript +2018-10-05 10:31:17.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:31:17.093 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:31:17.093 +03:00 [INF] Request finished in 1.1085ms 200 application/javascript +2018-10-05 10:31:17.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:31:17.095 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:31:17.095 +03:00 [INF] Request finished in 0.9197ms 200 application/javascript +2018-10-05 10:31:17.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:31:17.102 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:31:17.102 +03:00 [INF] Request finished in 1.0229ms 200 application/javascript +2018-10-05 10:31:17.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:31:17.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:31:17.111 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:31:17.111 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:31:17.111 +03:00 [INF] Request finished in 1.6813ms 200 application/javascript +2018-10-05 10:31:17.112 +03:00 [INF] Request finished in 1.3174ms 200 application/javascript +2018-10-05 10:31:17.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:31:17.296 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:31:17.297 +03:00 [INF] Request finished in 2.8462ms 200 font/woff2 +2018-10-05 10:31:17.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:31:17.346 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:31:17.346 +03:00 [INF] Request finished in 9.9072ms 200 image/jpeg +2018-10-05 10:31:17.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:31:17.516 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:31:17.516 +03:00 [INF] Request finished in 1.6881ms 200 image/png +2018-10-05 10:31:17.518 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:31:17.520 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:31:17.520 +03:00 [INF] Request finished in 2.4203ms 200 image/png +2018-10-05 10:40:45.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:40:45.547 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:40:45.550 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:40:46.746 +03:00 [INF] Executed action /Documents/Project/Index in 1198.8691000000001ms +2018-10-05 10:40:46.746 +03:00 [INF] Request finished in 1206.1732ms 200 text/html; charset=utf-8 +2018-10-05 10:40:46.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:40:46.789 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:40:46.790 +03:00 [INF] Request finished in 2.6152ms 200 text/css +2018-10-05 10:40:46.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:40:46.794 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:40:46.795 +03:00 [INF] Request finished in 1.1242ms 200 text/css +2018-10-05 10:40:46.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:40:46.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:40:46.808 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:40:46.808 +03:00 [INF] Request finished in 1.3661ms 200 text/css +2018-10-05 10:40:46.807 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:40:46.809 +03:00 [INF] Request finished in 2.7825ms 200 text/css +2018-10-05 10:40:46.816 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:40:46.819 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:40:46.819 +03:00 [INF] Request finished in 3.0161ms 200 text/css +2018-10-05 10:40:46.827 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:40:46.828 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:40:46.828 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:40:46.828 +03:00 [INF] Request finished in 1.3939ms 200 text/css +2018-10-05 10:40:46.829 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:40:46.829 +03:00 [INF] Request finished in 1.3965ms 200 text/css +2018-10-05 10:40:46.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:40:46.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:40:46.838 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:40:46.838 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:40:46.838 +03:00 [INF] Request finished in 0.7597ms 200 text/css +2018-10-05 10:40:46.838 +03:00 [INF] Request finished in 0.8042ms 200 text/css +2018-10-05 10:40:46.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:40:46.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:40:46.871 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:40:46.871 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:40:46.871 +03:00 [INF] Request finished in 0.9716ms 200 text/css +2018-10-05 10:40:46.871 +03:00 [INF] Request finished in 1.2696ms 200 text/css +2018-10-05 10:40:46.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:40:46.886 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:40:46.886 +03:00 [INF] Request finished in 1.4972ms 200 text/css +2018-10-05 10:40:46.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:40:46.889 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:40:46.889 +03:00 [INF] Request finished in 1.356ms 200 text/css +2018-10-05 10:40:46.894 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:40:46.896 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:40:46.896 +03:00 [INF] Request finished in 2.1788ms 200 text/css +2018-10-05 10:40:46.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:40:46.907 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:40:46.908 +03:00 [INF] Request finished in 1.2732ms 200 application/javascript +2018-10-05 10:40:46.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:40:46.925 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:40:46.926 +03:00 [INF] Request finished in 5.1902ms 200 application/javascript +2018-10-05 10:40:46.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:40:46.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:40:46.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:40:46.930 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:40:46.930 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:40:46.930 +03:00 [INF] Request finished in 4.1334ms 200 application/javascript +2018-10-05 10:40:46.932 +03:00 [INF] Request finished in 1.2851ms 200 application/javascript +2018-10-05 10:40:46.932 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:40:46.932 +03:00 [INF] Request finished in 3.6761ms 200 application/javascript +2018-10-05 10:40:46.942 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:40:46.944 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:40:46.944 +03:00 [INF] Request finished in 1.4347ms 200 application/javascript +2018-10-05 10:40:46.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:40:46.953 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:40:46.953 +03:00 [INF] Request finished in 1.8625ms 200 application/javascript +2018-10-05 10:40:46.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:40:46.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:40:46.954 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:40:46.955 +03:00 [INF] Request finished in 1.1596ms 200 application/javascript +2018-10-05 10:40:46.956 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:40:46.956 +03:00 [INF] Request finished in 1.475ms 200 application/javascript +2018-10-05 10:40:46.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:40:46.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:40:46.972 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:40:46.972 +03:00 [INF] Request finished in 0.8114ms 200 application/javascript +2018-10-05 10:40:46.972 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:40:46.973 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:40:46.973 +03:00 [INF] Request finished in 1.2294ms 200 application/javascript +2018-10-05 10:40:46.973 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:40:46.974 +03:00 [INF] Request finished in 10.3983ms 200 application/javascript +2018-10-05 10:40:46.987 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:40:46.988 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:40:46.988 +03:00 [INF] Request finished in 2.8885ms 200 application/javascript +2018-10-05 10:40:46.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:40:46.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:40:46.990 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:40:46.990 +03:00 [INF] Request finished in 1.8363ms 200 application/javascript +2018-10-05 10:40:46.992 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:40:46.992 +03:00 [INF] Request finished in 2.7953ms 200 application/javascript +2018-10-05 10:40:47.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:40:47.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:40:47.006 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:40:47.006 +03:00 [INF] Request finished in 1.1252ms 200 application/javascript +2018-10-05 10:40:47.007 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:40:47.007 +03:00 [INF] Request finished in 1.6319ms 200 application/javascript +2018-10-05 10:40:47.007 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:40:47.008 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:40:47.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:40:47.008 +03:00 [INF] Request finished in 1.0872ms 200 application/javascript +2018-10-05 10:40:47.010 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:40:47.010 +03:00 [INF] Request finished in 1.9815ms 200 application/javascript +2018-10-05 10:40:47.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:40:47.022 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:40:47.022 +03:00 [INF] Request finished in 3.8127ms 200 application/javascript +2018-10-05 10:40:47.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:40:47.027 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:40:47.028 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:40:47.028 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:40:47.028 +03:00 [INF] Request finished in 1.2595ms 200 application/javascript +2018-10-05 10:40:47.028 +03:00 [INF] Request finished in 1.0236ms 200 application/javascript +2018-10-05 10:40:47.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:40:47.036 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:40:47.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:40:47.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:40:47.041 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:40:47.041 +03:00 [INF] Request finished in 1.8524ms 200 application/javascript +2018-10-05 10:40:47.041 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:40:47.041 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:40:47.041 +03:00 [INF] Request finished in 1.0302ms 200 application/javascript +2018-10-05 10:40:47.042 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:40:47.042 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:40:47.042 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1431ms. +2018-10-05 10:40:47.042 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:40:47.043 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.4561000000000002ms +2018-10-05 10:40:47.043 +03:00 [INF] Request finished in 6.6055ms 200 text/plain; charset=utf-8 +2018-10-05 10:40:47.043 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.044 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.045 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.046 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.046 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.046 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.046 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.046 +03:00 [INF] Authorization failed. +2018-10-05 10:40:47.056 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 12.128200000000001ms. +2018-10-05 10:40:47.056 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:40:47.056 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 13.9894ms +2018-10-05 10:40:47.056 +03:00 [INF] Request finished in 26.8796ms 200 text/plain; charset=utf-8 +2018-10-05 10:40:47.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:40:47.065 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:40:47.065 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:40:47.065 +03:00 [INF] Request finished in 0.9946ms 200 application/javascript +2018-10-05 10:40:47.068 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:40:47.068 +03:00 [INF] Request finished in 3.5902ms 200 application/javascript +2018-10-05 10:40:47.070 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:40:47.071 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:40:47.071 +03:00 [INF] Request finished in 1.079ms 200 application/javascript +2018-10-05 10:40:47.073 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:40:47.074 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:40:47.074 +03:00 [INF] Request finished in 0.8996ms 200 application/javascript +2018-10-05 10:40:47.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:40:47.079 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:40:47.079 +03:00 [INF] Request finished in 0.9332ms 200 application/javascript +2018-10-05 10:40:47.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:40:47.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:40:47.099 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:40:47.099 +03:00 [INF] Request finished in 1.0772ms 200 application/javascript +2018-10-05 10:40:47.100 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:40:47.100 +03:00 [INF] Request finished in 1.824ms 200 application/javascript +2018-10-05 10:40:47.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:40:47.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:40:47.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:40:47.104 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:40:47.105 +03:00 [INF] Request finished in 1.2027ms 200 application/javascript +2018-10-05 10:40:47.106 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:40:47.106 +03:00 [INF] Request finished in 1.4632ms 200 application/javascript +2018-10-05 10:40:47.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:40:47.108 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:40:47.108 +03:00 [INF] Request finished in 0.9935ms 200 application/javascript +2018-10-05 10:40:47.108 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:40:47.108 +03:00 [INF] Request finished in 5.6882ms 200 application/javascript +2018-10-05 10:40:47.112 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:40:47.112 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:40:47.113 +03:00 [INF] Request finished in 1.4687ms 200 application/javascript +2018-10-05 10:40:47.117 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:40:47.119 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:40:47.119 +03:00 [INF] Request finished in 2.8856ms 200 application/javascript +2018-10-05 10:40:47.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:40:47.284 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:40:47.284 +03:00 [INF] Request finished in 3.3537ms 200 font/woff2 +2018-10-05 10:40:47.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:40:47.342 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:40:47.342 +03:00 [INF] Request finished in 9.8086ms 200 image/jpeg +2018-10-05 10:40:47.545 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:40:47.546 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:40:47.546 +03:00 [INF] Request finished in 0.8362ms 200 image/png +2018-10-05 10:40:47.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:40:47.557 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:40:47.557 +03:00 [INF] Request finished in 1.0534ms 200 image/png +2018-10-05 10:40:59.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:40:59.917 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:40:59.919 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:41:00.628 +03:00 [INF] Executed action /Documents/Project/Index in 711.6443ms +2018-10-05 10:41:00.628 +03:00 [INF] Request finished in 725.3822ms 200 text/html; charset=utf-8 +2018-10-05 10:41:00.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:41:00.670 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:41:00.671 +03:00 [INF] Request finished in 4.3951ms 200 text/css +2018-10-05 10:41:00.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:41:00.685 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:41:00.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:41:00.685 +03:00 [INF] Request finished in 1.5508ms 200 text/css +2018-10-05 10:41:00.685 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:41:00.686 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:41:00.686 +03:00 [INF] Request finished in 0.7758ms 200 text/css +2018-10-05 10:41:00.686 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:41:00.686 +03:00 [INF] Request finished in 1.3852ms 200 text/css +2018-10-05 10:41:00.687 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:41:00.690 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:41:00.690 +03:00 [INF] Request finished in 2.8703ms 200 text/css +2018-10-05 10:41:00.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:41:00.693 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:41:00.693 +03:00 [INF] Request finished in 2.0006ms 200 text/css +2018-10-05 10:41:00.695 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:41:00.696 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:41:00.696 +03:00 [INF] Request finished in 1.2063ms 200 text/css +2018-10-05 10:41:00.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:41:00.703 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:41:00.703 +03:00 [INF] Request finished in 1.8327ms 200 text/css +2018-10-05 10:41:00.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:41:00.727 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:41:00.728 +03:00 [INF] Request finished in 1.5164ms 200 text/css +2018-10-05 10:41:00.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:41:00.735 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:41:00.735 +03:00 [INF] Request finished in 1.1445ms 200 text/css +2018-10-05 10:41:00.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:41:00.750 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:41:00.751 +03:00 [INF] Request finished in 1.486ms 200 text/css +2018-10-05 10:41:00.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:41:00.761 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:41:00.761 +03:00 [INF] Request finished in 1.412ms 200 text/css +2018-10-05 10:41:00.768 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:41:00.770 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:41:00.770 +03:00 [INF] Request finished in 2.3254ms 200 text/css +2018-10-05 10:41:00.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:41:00.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:41:00.777 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:41:00.777 +03:00 [INF] Request finished in 2.1756ms 200 application/javascript +2018-10-05 10:41:00.778 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:41:00.778 +03:00 [INF] Request finished in 3.0906ms 200 text/css +2018-10-05 10:41:00.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:41:00.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:41:00.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:41:00.785 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:41:00.785 +03:00 [INF] Request finished in 7.6676ms 200 application/javascript +2018-10-05 10:41:00.786 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:41:00.786 +03:00 [INF] Request finished in 0.8295ms 200 application/javascript +2018-10-05 10:41:00.787 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:41:00.787 +03:00 [INF] Request finished in 9.0635ms 200 application/javascript +2018-10-05 10:41:00.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:41:00.790 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:41:00.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:41:00.790 +03:00 [INF] Request finished in 2.5691ms 200 application/javascript +2018-10-05 10:41:00.791 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:41:00.792 +03:00 [INF] Request finished in 1.3235ms 200 application/javascript +2018-10-05 10:41:00.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:41:00.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:41:00.802 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:41:00.802 +03:00 [INF] Request finished in 1.4956ms 200 application/javascript +2018-10-05 10:41:00.803 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:41:00.804 +03:00 [INF] Request finished in 2.0736ms 200 application/javascript +2018-10-05 10:41:00.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:41:00.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:41:00.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:41:00.822 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:41:00.822 +03:00 [INF] Request finished in 3.5158ms 200 application/javascript +2018-10-05 10:41:00.822 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:41:00.822 +03:00 [INF] Request finished in 0.9242ms 200 application/javascript +2018-10-05 10:41:00.826 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:41:00.827 +03:00 [INF] Request finished in 8.1464ms 200 application/javascript +2018-10-05 10:41:00.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:41:00.830 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:41:00.830 +03:00 [INF] Request finished in 0.9636ms 200 application/javascript +2018-10-05 10:41:00.836 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:41:00.838 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:41:00.838 +03:00 [INF] Request finished in 2.6239ms 200 application/javascript +2018-10-05 10:41:00.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:41:00.841 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:41:00.841 +03:00 [INF] Request finished in 1.6406ms 200 application/javascript +2018-10-05 10:41:00.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:41:00.851 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:41:00.851 +03:00 [INF] Request finished in 1.1889ms 200 application/javascript +2018-10-05 10:41:00.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:41:00.857 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:41:00.857 +03:00 [INF] Request finished in 1.2844ms 200 application/javascript +2018-10-05 10:41:00.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:41:00.859 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:41:00.859 +03:00 [INF] Request finished in 1.3296ms 200 application/javascript +2018-10-05 10:41:00.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:41:00.860 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:41:00.860 +03:00 [INF] Request finished in 1.6103ms 200 application/javascript +2018-10-05 10:41:00.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:41:00.868 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:41:00.868 +03:00 [INF] Request finished in 1.2094ms 200 application/javascript +2018-10-05 10:41:00.872 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:41:00.881 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:41:00.881 +03:00 [INF] Request finished in 8.9012ms 200 application/javascript +2018-10-05 10:41:00.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:41:00.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:41:00.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:41:00.886 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:41:00.886 +03:00 [INF] Request finished in 1.6665ms 200 application/javascript +2018-10-05 10:41:00.887 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:41:00.887 +03:00 [INF] Request finished in 1.3383ms 200 application/javascript +2018-10-05 10:41:00.895 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:41:00.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:41:00.897 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:41:00.898 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.898 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.898 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.899 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.899 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.899 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.899 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.899 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.900 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.900 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.900 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.900 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.900 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.901 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.902 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.099700000000000011ms. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Authorization failed. +2018-10-05 10:41:00.903 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2479ms +2018-10-05 10:41:00.903 +03:00 [INF] Request finished in 7.7677ms 200 text/plain; charset=utf-8 +2018-10-05 10:41:00.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:41:00.904 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:41:00.904 +03:00 [INF] Request finished in 1.035ms 200 application/javascript +2018-10-05 10:41:00.905 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:41:00.906 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:41:00.906 +03:00 [INF] Request finished in 1.2962ms 200 application/javascript +2018-10-05 10:41:00.906 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.504ms. +2018-10-05 10:41:00.906 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:41:00.906 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.1437ms +2018-10-05 10:41:00.907 +03:00 [INF] Request finished in 21.8786ms 200 text/plain; charset=utf-8 +2018-10-05 10:41:00.907 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:41:00.908 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:41:00.908 +03:00 [INF] Request finished in 1.3038ms 200 application/javascript +2018-10-05 10:41:00.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:41:00.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:41:00.930 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:41:00.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:41:00.931 +03:00 [INF] Request finished in 0.964ms 200 application/javascript +2018-10-05 10:41:00.931 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:41:00.931 +03:00 [INF] Request finished in 1.4054ms 200 application/javascript +2018-10-05 10:41:00.932 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:41:00.933 +03:00 [INF] Request finished in 2.0919ms 200 application/javascript +2018-10-05 10:41:00.934 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:41:00.936 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:41:00.936 +03:00 [INF] Request finished in 1.8548ms 200 application/javascript +2018-10-05 10:41:00.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:41:00.956 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:41:00.956 +03:00 [INF] Request finished in 3.126ms 200 application/javascript +2018-10-05 10:41:00.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:41:00.964 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:41:00.964 +03:00 [INF] Request finished in 1.9897ms 200 application/javascript +2018-10-05 10:41:00.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:41:00.967 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:41:00.967 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:41:00.967 +03:00 [INF] Request finished in 2.2485ms 200 application/javascript +2018-10-05 10:41:00.968 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:41:00.968 +03:00 [INF] Request finished in 1.2433ms 200 application/javascript +2018-10-05 10:41:01.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:41:01.018 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:41:01.018 +03:00 [INF] Request finished in 1.1142ms 200 application/javascript +2018-10-05 10:41:01.021 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:41:01.022 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:41:01.022 +03:00 [INF] Request finished in 1.0517ms 200 application/javascript +2018-10-05 10:41:01.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:41:01.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:41:01.030 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:41:01.030 +03:00 [INF] Request finished in 1.3751ms 200 application/javascript +2018-10-05 10:41:01.033 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:41:01.033 +03:00 [INF] Request finished in 4.3486ms 200 application/javascript +2018-10-05 10:41:01.127 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:41:01.129 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:41:01.129 +03:00 [INF] Request finished in 2.0934ms 200 font/woff2 +2018-10-05 10:41:01.145 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:41:01.154 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:41:01.154 +03:00 [INF] Request finished in 8.3373ms 200 image/jpeg +2018-10-05 10:41:01.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:41:01.302 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:41:01.302 +03:00 [INF] Request finished in 1.1938ms 200 image/png +2018-10-05 10:41:01.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:41:01.304 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:41:01.304 +03:00 [INF] Request finished in 0.8674ms 200 image/png +2018-10-05 10:41:06.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:41:06.469 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:41:06.470 +03:00 [INF] Request finished in 4.6054ms 404 +2018-10-05 10:41:06.470 +03:00 [INF] Request finished in 1.018ms 404 +2018-10-05 10:41:06.471 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:41:06.473 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 10:41:06.474 +03:00 [INF] Request finished in 2.6198ms 200 text/plain +2018-10-05 10:41:06.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:41:06.480 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js.map'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js.map' +2018-10-05 10:41:06.480 +03:00 [INF] Request finished in 3.5463ms 200 text/plain +2018-10-05 10:44:39.574 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:44:39.892 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:44:39.894 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:44:40.358 +03:00 [INF] Executed action /Documents/Project/Index in 465.73760000000004ms +2018-10-05 10:44:40.358 +03:00 [INF] Request finished in 783.8758ms 200 text/html; charset=utf-8 +2018-10-05 10:44:40.418 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:44:40.420 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:44:40.421 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:44:40.421 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:44:40.421 +03:00 [INF] Request finished in 3.4179ms 200 text/css +2018-10-05 10:44:40.421 +03:00 [INF] Request finished in 1.5196ms 200 text/css +2018-10-05 10:44:40.422 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:44:40.423 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:44:40.423 +03:00 [INF] Request finished in 1.0489ms 200 text/css +2018-10-05 10:44:40.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:44:40.432 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:44:40.432 +03:00 [INF] Request finished in 1.0712ms 200 text/css +2018-10-05 10:44:40.438 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:44:40.439 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:44:40.439 +03:00 [INF] Request finished in 1.2989ms 200 text/css +2018-10-05 10:44:40.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:44:40.469 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:44:40.469 +03:00 [INF] Request finished in 2.9829ms 200 text/css +2018-10-05 10:44:40.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:44:40.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:44:40.471 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:44:40.471 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:44:40.471 +03:00 [INF] Request finished in 0.9715ms 200 text/css +2018-10-05 10:44:40.471 +03:00 [INF] Request finished in 1.1715ms 200 text/css +2018-10-05 10:44:40.482 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:44:40.484 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:44:40.484 +03:00 [INF] Request finished in 2.5679ms 200 text/css +2018-10-05 10:44:40.485 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:44:40.487 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:44:40.487 +03:00 [INF] Request finished in 1.9199ms 200 text/css +2018-10-05 10:44:40.488 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:44:40.490 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:44:40.491 +03:00 [INF] Request finished in 2.5586ms 200 text/css +2018-10-05 10:44:40.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:44:40.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:44:40.528 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:44:40.528 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:44:40.528 +03:00 [INF] Request finished in 1.0783ms 200 text/css +2018-10-05 10:44:40.528 +03:00 [INF] Request finished in 1.2228ms 200 text/css +2018-10-05 10:44:40.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:44:40.536 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:44:40.536 +03:00 [INF] Request finished in 1.07ms 200 text/css +2018-10-05 10:44:40.537 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:44:40.538 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:44:40.538 +03:00 [INF] Request finished in 1.5241ms 200 application/javascript +2018-10-05 10:44:40.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:44:40.550 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:44:40.550 +03:00 [INF] Request finished in 5.7842ms 200 application/javascript +2018-10-05 10:44:40.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:44:40.555 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:44:40.555 +03:00 [INF] Request finished in 0.9693ms 200 application/javascript +2018-10-05 10:44:40.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:44:40.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:44:40.576 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:44:40.576 +03:00 [INF] Request finished in 4.2989ms 200 application/javascript +2018-10-05 10:44:40.577 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:44:40.577 +03:00 [INF] Request finished in 2.8835ms 200 application/javascript +2018-10-05 10:44:40.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:44:40.583 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:44:40.583 +03:00 [INF] Request finished in 1.8024ms 200 application/javascript +2018-10-05 10:44:40.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:44:40.592 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:44:40.592 +03:00 [INF] Request finished in 2.7948ms 200 application/javascript +2018-10-05 10:44:40.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:44:40.592 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:44:40.593 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:44:40.593 +03:00 [INF] Request finished in 0.8415ms 200 application/javascript +2018-10-05 10:44:40.597 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:44:40.599 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:44:40.599 +03:00 [INF] Request finished in 2.4186ms 200 application/javascript +2018-10-05 10:44:40.601 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:44:40.601 +03:00 [INF] Request finished in 9.0443ms 200 application/javascript +2018-10-05 10:44:40.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:44:40.603 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:44:40.603 +03:00 [INF] Request finished in 1.5674ms 200 application/javascript +2018-10-05 10:44:40.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:44:40.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:44:40.621 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:44:40.621 +03:00 [INF] Request finished in 2.3478ms 200 application/javascript +2018-10-05 10:44:40.623 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:44:40.624 +03:00 [INF] Request finished in 8.2333ms 200 application/javascript +2018-10-05 10:44:40.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:44:40.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:44:40.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:44:40.626 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:44:40.626 +03:00 [INF] Request finished in 11.0742ms 200 application/javascript +2018-10-05 10:44:40.626 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:44:40.627 +03:00 [INF] Request finished in 2.2553ms 200 application/javascript +2018-10-05 10:44:40.628 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:44:40.628 +03:00 [INF] Request finished in 2.4614ms 200 application/javascript +2018-10-05 10:44:40.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:44:40.631 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:44:40.631 +03:00 [INF] Request finished in 1.9028ms 200 application/javascript +2018-10-05 10:44:40.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:44:40.633 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:44:40.633 +03:00 [INF] Request finished in 1.0459ms 200 application/javascript +2018-10-05 10:44:40.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:44:40.640 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:44:40.640 +03:00 [INF] Request finished in 2.4931ms 200 application/javascript +2018-10-05 10:44:40.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:44:40.645 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:44:40.645 +03:00 [INF] Request finished in 1.3399ms 200 application/javascript +2018-10-05 10:44:40.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:44:40.647 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:44:40.648 +03:00 [INF] Request finished in 1.105ms 200 application/javascript +2018-10-05 10:44:40.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:44:40.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:44:40.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:44:40.660 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:44:40.661 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:44:40.661 +03:00 [INF] Request finished in 6.4364ms 200 application/javascript +2018-10-05 10:44:40.661 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:44:40.661 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:44:40.662 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1715ms. +2018-10-05 10:44:40.662 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:44:40.662 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:44:40.662 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.662 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.4658ms +2018-10-05 10:44:40.662 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Request finished in 8.3214ms 200 text/plain; charset=utf-8 +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.663 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Request finished in 0.7833ms 200 application/javascript +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.664 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.665 +03:00 [INF] Authorization failed. +2018-10-05 10:44:40.667 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.9667ms. +2018-10-05 10:44:40.668 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:44:40.668 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.7446ms +2018-10-05 10:44:40.669 +03:00 [INF] Request finished in 13.3963ms 200 text/plain; charset=utf-8 +2018-10-05 10:44:40.670 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:44:40.672 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:44:40.673 +03:00 [INF] Request finished in 2.7555ms 200 application/javascript +2018-10-05 10:44:40.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:44:40.690 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:44:40.691 +03:00 [INF] Request finished in 1.4072ms 200 application/javascript +2018-10-05 10:44:40.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:44:40.716 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:44:40.716 +03:00 [INF] Request finished in 1.9968ms 200 application/javascript +2018-10-05 10:44:40.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:44:40.784 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:44:40.785 +03:00 [INF] Request finished in 2.6604ms 200 application/javascript +2018-10-05 10:44:40.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:44:40.795 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:44:40.795 +03:00 [INF] Request finished in 1.2723ms 200 application/javascript +2018-10-05 10:44:40.820 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:44:40.822 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:44:40.822 +03:00 [INF] Request finished in 2.3817ms 200 application/javascript +2018-10-05 10:44:40.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:44:40.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:44:40.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:44:40.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:44:40.837 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:44:40.838 +03:00 [INF] Request finished in 1.0921ms 200 application/javascript +2018-10-05 10:44:40.838 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:44:40.838 +03:00 [INF] Request finished in 1.2268ms 200 application/javascript +2018-10-05 10:44:40.838 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:44:40.838 +03:00 [INF] Request finished in 0.8093ms 200 application/javascript +2018-10-05 10:44:40.838 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:44:40.838 +03:00 [INF] Request finished in 1.3559ms 200 application/javascript +2018-10-05 10:44:40.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:44:40.840 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:44:40.840 +03:00 [INF] Request finished in 1.3652ms 200 application/javascript +2018-10-05 10:44:40.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:44:40.844 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:44:40.844 +03:00 [INF] Request finished in 3.1226ms 200 application/javascript +2018-10-05 10:44:40.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:44:40.848 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:44:40.849 +03:00 [INF] Request finished in 1.0112ms 200 application/javascript +2018-10-05 10:44:40.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:44:40.851 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:44:40.851 +03:00 [INF] Request finished in 2.0461ms 200 application/javascript +2018-10-05 10:44:41.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:44:41.585 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:44:41.586 +03:00 [INF] Request finished in 3.9262ms 200 font/woff2 +2018-10-05 10:44:41.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:44:41.766 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:44:41.766 +03:00 [INF] Request finished in 17.09ms 200 image/jpeg +2018-10-05 10:44:42.118 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:44:42.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:44:42.119 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:44:42.119 +03:00 [INF] Request finished in 1.1775ms 200 image/png +2018-10-05 10:44:42.119 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:44:42.120 +03:00 [INF] Request finished in 0.9772ms 200 image/png +2018-10-05 10:44:42.160 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:44:42.162 +03:00 [INF] Request finished in 1.6948ms 404 +2018-10-05 10:44:42.346 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:44:42.347 +03:00 [INF] Request finished in 0.9565ms 404 +2018-10-05 10:44:42.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:44:42.447 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 10:44:42.448 +03:00 [INF] Request finished in 1.3273ms 304 text/plain +2018-10-05 10:44:42.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:44:42.480 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:44:42.481 +03:00 [INF] Request finished in 0.8662ms 304 text/plain +2018-10-05 10:46:17.190 +03:00 [INF] Loaded modules: +2018-10-05 10:46:17.215 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 10:46:17.216 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 10:46:17.217 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 10:46:17.218 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 10:46:18.966 +03:00 [INF] Initialized all modules. +2018-10-05 10:46:19.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 10:46:21.675 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 10:46:21.695 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:46:23.247 +03:00 [INF] Executed action /Index in 1566.882ms +2018-10-05 10:46:23.268 +03:00 [INF] Request finished in 3976.2514ms 200 text/html; charset=utf-8 +2018-10-05 10:46:23.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:46:23.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:46:23.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:46:23.288 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:46:23.293 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:46:23.350 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:46:23.350 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:46:23.350 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:46:23.350 +03:00 [INF] Request finished in 57.3471ms 200 text/css +2018-10-05 10:46:23.350 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:46:23.350 +03:00 [INF] Request finished in 71.2049ms 200 text/css +2018-10-05 10:46:23.350 +03:00 [INF] Request finished in 61.9389ms 200 text/css +2018-10-05 10:46:23.351 +03:00 [INF] Request finished in 74.094ms 200 text/css +2018-10-05 10:46:23.362 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:46:23.363 +03:00 [INF] Request finished in 85.9736ms 200 text/css +2018-10-05 10:46:23.432 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:46:23.433 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:46:23.433 +03:00 [INF] Request finished in 1.5544ms 200 application/javascript +2018-10-05 10:46:23.434 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:46:23.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:46:23.442 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:46:23.442 +03:00 [INF] Request finished in 8.0354ms 200 application/javascript +2018-10-05 10:46:23.442 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:46:23.442 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:46:23.442 +03:00 [INF] Request finished in 4.4573ms 200 application/javascript +2018-10-05 10:46:23.446 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:46:23.447 +03:00 [INF] Request finished in 4.6289ms 200 application/javascript +2018-10-05 10:46:23.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:46:23.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:46:23.454 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:46:23.455 +03:00 [INF] Request finished in 1.7791ms 200 application/javascript +2018-10-05 10:46:23.454 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:46:23.455 +03:00 [INF] Request finished in 6.4966ms 200 application/javascript +2018-10-05 10:46:23.457 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:46:23.458 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:46:23.459 +03:00 [INF] Request finished in 1.522ms 200 application/javascript +2018-10-05 10:46:23.470 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:46:23.474 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:46:23.474 +03:00 [INF] Request finished in 4.5177ms 200 application/javascript +2018-10-05 10:46:23.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:46:23.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:46:23.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:46:23.494 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:46:23.494 +03:00 [INF] Request finished in 2.2137ms 200 application/javascript +2018-10-05 10:46:23.494 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:46:23.494 +03:00 [INF] Request finished in 2.3533ms 200 application/javascript +2018-10-05 10:46:23.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:46:23.506 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:46:23.506 +03:00 [INF] Request finished in 1.7595ms 200 application/javascript +2018-10-05 10:46:23.507 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:46:23.507 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:46:23.508 +03:00 [INF] Request finished in 15.5478ms 200 application/javascript +2018-10-05 10:46:23.510 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:46:23.510 +03:00 [INF] Request finished in 3.0841ms 200 application/javascript +2018-10-05 10:46:23.520 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:46:23.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:46:23.527 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:46:23.528 +03:00 [INF] Request finished in 4.9757ms 200 application/javascript +2018-10-05 10:46:23.529 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:46:23.544 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:46:23.544 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:46:23.606 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:46:23.607 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:46:23.648 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.649 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.679 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.679 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.680 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.681 +03:00 [INF] Authorization failed. +2018-10-05 10:46:23.724 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 111.9042ms. +2018-10-05 10:46:23.725 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 118.2038ms. +2018-10-05 10:46:23.737 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:46:23.737 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:46:23.738 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 194.1603ms +2018-10-05 10:46:23.738 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 194.145ms +2018-10-05 10:46:23.739 +03:00 [INF] Request finished in 209.8519ms 200 text/plain; charset=utf-8 +2018-10-05 10:46:23.739 +03:00 [INF] Request finished in 219.4199ms 200 text/plain; charset=utf-8 +2018-10-05 10:46:29.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:46:30.135 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:46:30.187 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:46:32.885 +03:00 [INF] Executed action /Documents/Project/Index in 2749.8683ms +2018-10-05 10:46:32.885 +03:00 [INF] Request finished in 3284.7177ms 200 text/html; charset=utf-8 +2018-10-05 10:46:32.924 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:46:32.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:46:32.925 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:46:32.925 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:46:32.926 +03:00 [INF] Request finished in 1.7151ms 200 text/css +2018-10-05 10:46:32.926 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:46:32.926 +03:00 [INF] Request finished in 0.8059ms 200 text/css +2018-10-05 10:46:32.929 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:46:32.929 +03:00 [INF] Request finished in 4.4456ms 200 text/css +2018-10-05 10:46:32.931 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:46:32.933 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:46:32.933 +03:00 [INF] Request finished in 1.7236ms 200 text/css +2018-10-05 10:46:32.936 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:46:32.936 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:46:32.936 +03:00 [INF] Request finished in 0.9793ms 200 text/css +2018-10-05 10:46:32.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:46:32.941 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:46:32.941 +03:00 [INF] Request finished in 1.1945ms 200 text/css +2018-10-05 10:46:32.956 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:46:32.957 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:46:32.957 +03:00 [INF] Request finished in 1.0498ms 200 text/css +2018-10-05 10:46:32.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:46:32.961 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:46:32.961 +03:00 [INF] Request finished in 1.8052ms 200 text/css +2018-10-05 10:46:32.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:46:32.983 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:46:32.983 +03:00 [INF] Request finished in 1.1364ms 200 text/css +2018-10-05 10:46:33.031 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:46:33.033 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:46:33.033 +03:00 [INF] Request finished in 2.5562ms 200 text/css +2018-10-05 10:46:33.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:46:33.040 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:46:33.041 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:46:33.041 +03:00 [INF] Request finished in 0.9785ms 200 text/css +2018-10-05 10:46:33.041 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:46:33.041 +03:00 [INF] Request finished in 1.2239ms 200 text/css +2018-10-05 10:46:33.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:46:33.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:46:33.050 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:46:33.050 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:46:33.050 +03:00 [INF] Request finished in 0.849ms 200 text/css +2018-10-05 10:46:33.050 +03:00 [INF] Request finished in 1.0771ms 200 text/css +2018-10-05 10:46:33.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:46:33.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:46:33.056 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:46:33.056 +03:00 [INF] Request finished in 0.8278ms 200 application/javascript +2018-10-05 10:46:33.057 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:46:33.058 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:46:33.058 +03:00 [INF] Request finished in 0.8987ms 200 application/javascript +2018-10-05 10:46:33.063 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:46:33.064 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:46:33.064 +03:00 [INF] Request finished in 8.9679ms 200 application/javascript +2018-10-05 10:46:33.064 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:46:33.067 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:46:33.068 +03:00 [INF] Request finished in 3.4618ms 200 application/javascript +2018-10-05 10:46:33.069 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:46:33.071 +03:00 [INF] Request finished in 6.7173ms 200 application/javascript +2018-10-05 10:46:33.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:46:33.073 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:46:33.073 +03:00 [INF] Request finished in 0.8729ms 200 application/javascript +2018-10-05 10:46:33.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:46:33.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:46:33.076 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:46:33.076 +03:00 [INF] Request finished in 2.0196ms 200 application/javascript +2018-10-05 10:46:33.078 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:46:33.078 +03:00 [INF] Request finished in 2.9984ms 200 application/javascript +2018-10-05 10:46:33.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:46:33.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:46:33.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:46:33.092 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:46:33.093 +03:00 [INF] Request finished in 1.356ms 200 application/javascript +2018-10-05 10:46:33.093 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:46:33.094 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:46:33.094 +03:00 [INF] Request finished in 2.8124ms 200 application/javascript +2018-10-05 10:46:33.095 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:46:33.095 +03:00 [INF] Request finished in 1.0013ms 200 application/javascript +2018-10-05 10:46:33.102 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:46:33.102 +03:00 [INF] Request finished in 11.2554ms 200 application/javascript +2018-10-05 10:46:33.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:46:33.110 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:46:33.110 +03:00 [INF] Request finished in 1.079ms 200 application/javascript +2018-10-05 10:46:33.119 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:46:33.119 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:46:33.119 +03:00 [INF] Request finished in 0.9983ms 200 application/javascript +2018-10-05 10:46:33.123 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:46:33.124 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:46:33.124 +03:00 [INF] Request finished in 1.084ms 200 application/javascript +2018-10-05 10:46:33.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:46:33.129 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:46:33.129 +03:00 [INF] Request finished in 1.5274ms 200 application/javascript +2018-10-05 10:46:33.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:46:33.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:46:33.137 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:46:33.137 +03:00 [INF] Request finished in 3.1902ms 200 application/javascript +2018-10-05 10:46:33.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:46:33.137 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:46:33.137 +03:00 [INF] Request finished in 3.2459ms 200 application/javascript +2018-10-05 10:46:33.138 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:46:33.139 +03:00 [INF] Request finished in 1.4263ms 200 application/javascript +2018-10-05 10:46:33.142 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:46:33.143 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:46:33.143 +03:00 [INF] Request finished in 1.0883ms 200 application/javascript +2018-10-05 10:46:33.147 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:46:33.148 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:46:33.148 +03:00 [INF] Request finished in 2.3783ms 200 application/javascript +2018-10-05 10:46:33.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:46:33.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:46:33.150 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:46:33.150 +03:00 [INF] Request finished in 1.4119ms 200 application/javascript +2018-10-05 10:46:33.151 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:46:33.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:46:33.153 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:46:33.153 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Request finished in 0.6771ms 200 application/javascript +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.153 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.154 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.156 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.156 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:46:33.156 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.156 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.156 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.157 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.157 +03:00 [INF] Authorization failed. +2018-10-05 10:46:33.157 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:46:33.157 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:46:33.158 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2735ms. +2018-10-05 10:46:33.158 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:46:33.158 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:46:33.159 +03:00 [INF] Request finished in 1.5678ms 200 application/javascript +2018-10-05 10:46:33.159 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.8889000000000005ms. +2018-10-05 10:46:33.159 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:46:33.159 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.1508ms +2018-10-05 10:46:33.159 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.3864ms +2018-10-05 10:46:33.159 +03:00 [INF] Request finished in 7.4733ms 200 text/plain; charset=utf-8 +2018-10-05 10:46:33.159 +03:00 [INF] Request finished in 10.5213ms 200 text/plain; charset=utf-8 +2018-10-05 10:46:33.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:46:33.169 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:46:33.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:46:33.169 +03:00 [INF] Request finished in 2.7653ms 200 application/javascript +2018-10-05 10:46:33.170 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:46:33.170 +03:00 [INF] Request finished in 1.2441ms 200 application/javascript +2018-10-05 10:46:33.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:46:33.183 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:46:33.184 +03:00 [INF] Request finished in 6.8201ms 200 application/javascript +2018-10-05 10:46:33.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:46:33.189 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:46:33.190 +03:00 [INF] Request finished in 1.1529ms 200 application/javascript +2018-10-05 10:46:33.193 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:46:33.194 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:46:33.194 +03:00 [INF] Request finished in 1.485ms 200 application/javascript +2018-10-05 10:46:33.195 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:46:33.200 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:46:33.200 +03:00 [INF] Request finished in 5.3653ms 200 application/javascript +2018-10-05 10:46:33.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:46:33.211 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:46:33.211 +03:00 [INF] Request finished in 5.21ms 200 application/javascript +2018-10-05 10:46:33.212 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:46:33.214 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:46:33.214 +03:00 [INF] Request finished in 1.7437ms 200 application/javascript +2018-10-05 10:46:33.214 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:46:33.215 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:46:33.216 +03:00 [INF] Request finished in 1.6825ms 200 application/javascript +2018-10-05 10:46:33.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:46:33.217 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:46:33.217 +03:00 [INF] Request finished in 1.2231ms 200 application/javascript +2018-10-05 10:46:33.217 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:46:33.218 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:46:33.218 +03:00 [INF] Request finished in 0.9887ms 200 application/javascript +2018-10-05 10:46:33.222 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:46:33.223 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:46:33.223 +03:00 [INF] Request finished in 1.6468ms 200 application/javascript +2018-10-05 10:46:33.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:46:33.228 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:46:33.228 +03:00 [INF] Request finished in 1.3746ms 200 application/javascript +2018-10-05 10:46:33.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:46:33.580 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:46:33.581 +03:00 [INF] Request finished in 2.9334ms 200 font/woff2 +2018-10-05 10:46:33.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:46:33.604 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:46:33.604 +03:00 [INF] Request finished in 8.4265ms 200 image/jpeg +2018-10-05 10:46:33.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:46:33.953 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:46:33.954 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:46:33.954 +03:00 [INF] Request finished in 1.0452ms 200 image/png +2018-10-05 10:46:33.955 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:46:33.955 +03:00 [INF] Request finished in 1.9183ms 200 image/png +2018-10-05 10:46:33.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:46:33.981 +03:00 [INF] Request finished in 4.3854ms 404 +2018-10-05 10:46:33.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:46:33.991 +03:00 [INF] Request finished in 1.3033ms 404 +2018-10-05 10:46:34.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:46:34.027 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:46:34.028 +03:00 [INF] Request finished in 2.8924ms 304 text/plain +2018-10-05 10:46:34.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:46:34.067 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 10:46:34.067 +03:00 [INF] Request finished in 0.9148ms 200 text/plain +2018-10-05 10:47:34.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:47:34.930 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:47:34.934 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:47:35.386 +03:00 [INF] Executed action /Documents/Project/Index in 456.03560000000004ms +2018-10-05 10:47:35.386 +03:00 [INF] Request finished in 457.5474ms 200 text/html; charset=utf-8 +2018-10-05 10:47:35.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:47:35.444 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:47:35.445 +03:00 [INF] Request finished in 4.6643ms 200 text/css +2018-10-05 10:47:35.446 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:47:35.447 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:47:35.448 +03:00 [INF] Request finished in 1.4059ms 200 text/css +2018-10-05 10:47:35.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:47:35.496 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:47:35.497 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:47:35.497 +03:00 [INF] Request finished in 1.5476ms 200 text/css +2018-10-05 10:47:35.497 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:47:35.497 +03:00 [INF] Request finished in 1.1376ms 200 text/css +2018-10-05 10:47:35.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:47:35.542 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:47:35.542 +03:00 [INF] Request finished in 1.7686ms 200 text/css +2018-10-05 10:47:35.544 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:47:35.545 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:47:35.545 +03:00 [INF] Request finished in 1.331ms 200 text/css +2018-10-05 10:47:35.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:47:35.554 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:47:35.554 +03:00 [INF] Request finished in 0.7184ms 200 text/css +2018-10-05 10:47:35.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:47:35.560 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:47:35.560 +03:00 [INF] Request finished in 2.4265ms 200 text/css +2018-10-05 10:47:35.562 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:47:35.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:47:35.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:47:35.563 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:47:35.563 +03:00 [INF] Request finished in 1.2107ms 200 text/css +2018-10-05 10:47:35.563 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:47:35.563 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:47:35.564 +03:00 [INF] Request finished in 0.6592ms 200 text/css +2018-10-05 10:47:35.564 +03:00 [INF] Request finished in 1.119ms 200 text/css +2018-10-05 10:47:35.564 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:47:35.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:47:35.565 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:47:35.566 +03:00 [INF] Request finished in 0.9456ms 200 text/css +2018-10-05 10:47:35.566 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:47:35.566 +03:00 [INF] Request finished in 2.4448ms 200 text/css +2018-10-05 10:47:35.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:47:35.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:47:35.571 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:47:35.571 +03:00 [INF] Request finished in 0.8787ms 200 text/css +2018-10-05 10:47:35.571 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:47:35.571 +03:00 [INF] Request finished in 1.3041ms 200 application/javascript +2018-10-05 10:47:35.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:47:35.573 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:47:35.576 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:47:35.576 +03:00 [INF] Request finished in 3.8296ms 200 application/javascript +2018-10-05 10:47:35.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:47:35.580 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:47:35.581 +03:00 [INF] Request finished in 8.3311ms 200 application/javascript +2018-10-05 10:47:35.581 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:47:35.581 +03:00 [INF] Request finished in 4.1674ms 200 application/javascript +2018-10-05 10:47:35.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:47:35.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:47:35.586 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:47:35.586 +03:00 [INF] Request finished in 1.9323ms 200 application/javascript +2018-10-05 10:47:35.586 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:47:35.587 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:47:35.587 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:47:35.588 +03:00 [INF] Request finished in 1.135ms 200 application/javascript +2018-10-05 10:47:35.588 +03:00 [INF] Request finished in 3.5688ms 200 application/javascript +2018-10-05 10:47:35.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:47:35.593 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:47:35.593 +03:00 [INF] Request finished in 2.7569ms 200 application/javascript +2018-10-05 10:47:35.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:47:35.601 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:47:35.602 +03:00 [INF] Request finished in 2.649ms 200 application/javascript +2018-10-05 10:47:35.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:47:35.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:47:35.608 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:47:35.608 +03:00 [INF] Request finished in 1.4728ms 200 application/javascript +2018-10-05 10:47:35.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:47:35.616 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:47:35.616 +03:00 [INF] Request finished in 11.9338ms 200 application/javascript +2018-10-05 10:47:35.617 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:47:35.618 +03:00 [INF] Request finished in 2.2472ms 200 application/javascript +2018-10-05 10:47:35.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:47:35.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:47:35.627 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:47:35.627 +03:00 [INF] Request finished in 3.1662ms 200 application/javascript +2018-10-05 10:47:35.628 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:47:35.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:47:35.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:47:35.629 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:47:35.629 +03:00 [INF] Request finished in 1.3361ms 200 application/javascript +2018-10-05 10:47:35.629 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:47:35.629 +03:00 [INF] Request finished in 1.5814ms 200 application/javascript +2018-10-05 10:47:35.630 +03:00 [INF] Request finished in 4.1536ms 200 application/javascript +2018-10-05 10:47:35.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:47:35.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:47:35.637 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:47:35.637 +03:00 [INF] Request finished in 1.1755ms 200 application/javascript +2018-10-05 10:47:35.638 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:47:35.638 +03:00 [INF] Request finished in 1.0089ms 200 application/javascript +2018-10-05 10:47:35.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:47:35.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:47:35.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:47:35.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:47:35.648 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:47:35.649 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:47:35.649 +03:00 [INF] Request finished in 1.1867ms 200 application/javascript +2018-10-05 10:47:35.649 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:47:35.649 +03:00 [INF] Request finished in 1.4338ms 200 application/javascript +2018-10-05 10:47:35.649 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:47:35.649 +03:00 [INF] Request finished in 1.4209ms 200 application/javascript +2018-10-05 10:47:35.649 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:47:35.649 +03:00 [INF] Request finished in 0.9352ms 200 application/javascript +2018-10-05 10:47:35.650 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:47:35.651 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:47:35.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:47:35.652 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.657 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.658 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.658 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.658 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.658 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.658 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.659 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.659 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:47:35.659 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.660 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.81890000000000007ms. +2018-10-05 10:47:35.660 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.661 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.661 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:47:35.661 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.661 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.661 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.7452ms +2018-10-05 10:47:35.661 +03:00 [INF] Request finished in 6.9001ms 200 text/plain; charset=utf-8 +2018-10-05 10:47:35.661 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.662 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.662 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.662 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.662 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.662 +03:00 [INF] Authorization failed. +2018-10-05 10:47:35.664 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 13.068100000000001ms. +2018-10-05 10:47:35.664 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:47:35.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:47:35.664 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 14.567200000000001ms +2018-10-05 10:47:35.664 +03:00 [INF] Request finished in 16.2456ms 200 text/plain; charset=utf-8 +2018-10-05 10:47:35.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:47:35.667 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:47:35.667 +03:00 [INF] Request finished in 2.3478ms 200 application/javascript +2018-10-05 10:47:35.667 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:47:35.667 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:47:35.667 +03:00 [INF] Request finished in 1.2717ms 200 application/javascript +2018-10-05 10:47:35.668 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:47:35.668 +03:00 [INF] Request finished in 1.7002ms 200 application/javascript +2018-10-05 10:47:35.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 10:47:35.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:47:35.685 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 10:47:35.685 +03:00 [INF] Request finished in 2.4413ms 200 application/javascript +2018-10-05 10:47:35.686 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:47:35.686 +03:00 [INF] Request finished in 1.7822ms 200 application/javascript +2018-10-05 10:47:35.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 10:47:35.689 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 10:47:35.689 +03:00 [INF] Request finished in 3.1685ms 200 application/javascript +2018-10-05 10:47:35.696 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:47:35.697 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:47:35.697 +03:00 [INF] Request finished in 1.0564ms 200 application/javascript +2018-10-05 10:47:35.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 10:47:35.701 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 10:47:35.701 +03:00 [INF] Request finished in 1.3382ms 200 application/javascript +2018-10-05 10:47:35.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:47:35.706 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:47:35.706 +03:00 [INF] Request finished in 1.3522ms 200 application/javascript +2018-10-05 10:47:35.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 10:47:35.712 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 10:47:35.712 +03:00 [INF] Request finished in 1.3863ms 200 application/javascript +2018-10-05 10:47:35.714 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:47:35.715 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:47:35.715 +03:00 [INF] Request finished in 0.9528ms 200 application/javascript +2018-10-05 10:47:35.719 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 10:47:35.721 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 10:47:35.721 +03:00 [INF] Request finished in 2.0799ms 200 application/javascript +2018-10-05 10:47:35.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 10:47:35.721 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 10:47:35.722 +03:00 [INF] Request finished in 0.8301ms 200 application/javascript +2018-10-05 10:47:35.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:47:35.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:47:35.739 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:47:35.739 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:47:35.740 +03:00 [INF] Request finished in 1.1411ms 200 application/javascript +2018-10-05 10:47:35.740 +03:00 [INF] Request finished in 1.1998ms 200 application/javascript +2018-10-05 10:47:36.175 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:47:36.179 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:47:36.179 +03:00 [INF] Request finished in 4.1734ms 200 font/woff2 +2018-10-05 10:47:36.235 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:47:36.242 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:47:36.242 +03:00 [INF] Request finished in 6.8997ms 200 image/jpeg +2018-10-05 10:47:36.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:47:36.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:47:36.605 +03:00 [INF] Request finished in 0.9581ms 404 +2018-10-05 10:47:36.605 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:47:36.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:47:36.605 +03:00 [INF] Request finished in 0.8548ms 200 image/png +2018-10-05 10:47:36.606 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:47:36.606 +03:00 [INF] Request finished in 1.1521ms 200 image/png +2018-10-05 10:47:36.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:47:36.754 +03:00 [INF] Request finished in 1.2113ms 404 +2018-10-05 10:47:36.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:47:36.802 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 10:47:36.802 +03:00 [INF] Request finished in 0.6547ms 304 text/plain +2018-10-05 10:47:36.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:47:36.803 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:47:36.803 +03:00 [INF] Request finished in 0.7431ms 304 text/plain +2018-10-05 10:47:55.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:47:55.677 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:47:55.677 +03:00 [INF] Request finished in 1.1087ms 200 text/css +2018-10-05 10:47:55.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:47:55.703 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:47:55.704 +03:00 [INF] Request finished in 0.9475ms 200 text/css +2018-10-05 10:47:55.909 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 10:47:55.910 +03:00 [INF] Request finished in 1.0107ms 404 +2018-10-05 10:48:02.963 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:48:02.964 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:48:02.967 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:48:03.480 +03:00 [INF] Executed action /Documents/Project/Index in 516.19040000000007ms +2018-10-05 10:48:03.481 +03:00 [INF] Request finished in 517.3978ms 200 text/html; charset=utf-8 +2018-10-05 10:53:28.169 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:53:28.546 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:53:28.550 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:53:29.344 +03:00 [INF] Executed action /Documents/Project/Index in 796.918ms +2018-10-05 10:53:29.344 +03:00 [INF] Request finished in 1174.6085ms 200 text/html; charset=utf-8 +2018-10-05 10:53:29.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:53:29.391 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:53:29.392 +03:00 [INF] Request finished in 4.3563ms 200 text/css +2018-10-05 10:53:29.397 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:53:29.398 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:53:29.398 +03:00 [INF] Request finished in 1.3374ms 200 text/css +2018-10-05 10:53:29.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:53:29.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:53:29.406 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:53:29.406 +03:00 [INF] Request finished in 1.6838ms 200 text/css +2018-10-05 10:53:29.407 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:53:29.408 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:53:29.408 +03:00 [INF] Request finished in 1.0825ms 200 text/css +2018-10-05 10:53:29.408 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:53:29.409 +03:00 [INF] Request finished in 3.368ms 200 text/css +2018-10-05 10:53:29.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:53:29.432 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:53:29.432 +03:00 [INF] Request finished in 1.2956ms 200 text/css +2018-10-05 10:53:29.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:53:29.445 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:53:29.445 +03:00 [INF] Request finished in 2.3171ms 200 text/css +2018-10-05 10:53:29.447 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.css?_v=636688175858551150 +2018-10-05 10:53:29.449 +03:00 [INF] Sending file. Request path: '/js/prism/prism.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.css' +2018-10-05 10:53:29.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:53:29.449 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:53:29.450 +03:00 [INF] Request finished in 0.9884ms 200 text/css +2018-10-05 10:53:29.450 +03:00 [INF] Request finished in 2.2727ms 200 text/css +2018-10-05 10:53:29.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 10:53:29.484 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 10:53:29.484 +03:00 [INF] Request finished in 0.9755ms 200 text/css +2018-10-05 10:53:29.489 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 10:53:29.490 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 10:53:29.490 +03:00 [INF] Request finished in 1.1533ms 200 text/css +2018-10-05 10:53:29.498 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 10:53:29.499 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 10:53:29.499 +03:00 [INF] Request finished in 1.1352ms 200 text/css +2018-10-05 10:53:29.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:53:29.518 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:53:29.518 +03:00 [INF] Request finished in 1.0062ms 200 text/css +2018-10-05 10:53:29.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:53:29.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:53:29.523 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:53:29.523 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:53:29.523 +03:00 [INF] Request finished in 1.0535ms 200 text/css +2018-10-05 10:53:29.523 +03:00 [INF] Request finished in 1.0527ms 200 application/javascript +2018-10-05 10:53:29.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:53:29.532 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:53:29.532 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:53:29.533 +03:00 [INF] Request finished in 2.5993ms 200 application/javascript +2018-10-05 10:53:29.537 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:53:29.537 +03:00 [INF] Request finished in 6.5689ms 200 application/javascript +2018-10-05 10:53:29.539 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:53:29.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:53:29.542 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:53:29.542 +03:00 [INF] Request finished in 2.3776ms 200 application/javascript +2018-10-05 10:53:29.544 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:53:29.544 +03:00 [INF] Request finished in 5.5774ms 200 application/javascript +2018-10-05 10:53:29.549 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:53:29.550 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:53:29.552 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:53:29.552 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:53:29.552 +03:00 [INF] Request finished in 1.4283ms 200 application/javascript +2018-10-05 10:53:29.552 +03:00 [INF] Request finished in 2.4866ms 200 application/javascript +2018-10-05 10:53:29.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:53:29.554 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:53:29.554 +03:00 [INF] Request finished in 1.3959ms 200 application/javascript +2018-10-05 10:53:29.560 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:53:29.564 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:53:29.564 +03:00 [INF] Request finished in 4.2567ms 200 application/javascript +2018-10-05 10:53:29.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:53:29.566 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:53:29.566 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:53:29.567 +03:00 [INF] Request finished in 1.168ms 200 application/javascript +2018-10-05 10:53:29.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:53:29.572 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:53:29.573 +03:00 [INF] Request finished in 3.8969ms 200 application/javascript +2018-10-05 10:53:29.577 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:53:29.577 +03:00 [INF] Request finished in 11.8956ms 200 application/javascript +2018-10-05 10:53:29.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:53:29.580 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:53:29.580 +03:00 [INF] Request finished in 1.6532ms 200 application/javascript +2018-10-05 10:53:29.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:53:29.591 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:53:29.591 +03:00 [INF] Request finished in 0.7662ms 200 application/javascript +2018-10-05 10:53:29.594 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:53:29.597 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:53:29.597 +03:00 [INF] Request finished in 3.7938ms 200 application/javascript +2018-10-05 10:53:29.598 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:53:29.599 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:53:29.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:53:29.599 +03:00 [INF] Request finished in 1.2366ms 200 application/javascript +2018-10-05 10:53:29.600 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:53:29.600 +03:00 [INF] Request finished in 1.2451ms 200 application/javascript +2018-10-05 10:53:29.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:53:29.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:53:29.608 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:53:29.608 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:53:29.609 +03:00 [INF] Request finished in 1.1415ms 200 application/javascript +2018-10-05 10:53:29.609 +03:00 [INF] Request finished in 1.1802ms 200 application/javascript +2018-10-05 10:53:29.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:53:29.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:53:29.611 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:53:29.611 +03:00 [INF] Request finished in 1.0078ms 200 application/javascript +2018-10-05 10:53:29.612 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:53:29.614 +03:00 [INF] Request finished in 2.7397ms 200 application/javascript +2018-10-05 10:53:29.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:53:29.618 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:53:29.618 +03:00 [INF] Request finished in 1.5097ms 200 application/javascript +2018-10-05 10:53:29.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:53:29.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/prism/prism.js?_v=636688175858560979 +2018-10-05 10:53:29.623 +03:00 [INF] Sending file. Request path: '/js/prism/prism.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\prism\prism.js' +2018-10-05 10:53:29.623 +03:00 [INF] Request finished in 0.7997ms 200 application/javascript +2018-10-05 10:53:29.624 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-05 10:53:29.625 +03:00 [INF] Sending file. Request path: '/js/vs.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\js\vs.js' +2018-10-05 10:53:29.626 +03:00 [INF] Request finished in 1.6978ms 200 application/javascript +2018-10-05 10:53:29.626 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:53:29.632 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:53:29.632 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:53:29.633 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:53:29.633 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:53:29.633 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17400000000000002ms. +2018-10-05 10:53:29.633 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:53:29.633 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.633 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:53:29.633 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8215000000000001ms +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Request finished in 7.2772ms 200 text/plain; charset=utf-8 +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.634 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:53:29.634 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Request finished in 1.3349ms 200 application/javascript +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.635 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.636 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.636 +03:00 [INF] Authorization failed. +2018-10-05 10:53:29.637 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:53:29.638 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3591000000000006ms. +2018-10-05 10:53:29.638 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:53:29.638 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.692ms +2018-10-05 10:53:29.638 +03:00 [INF] Request finished in 16.4287ms 200 text/plain; charset=utf-8 +2018-10-05 10:53:29.638 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:53:29.639 +03:00 [INF] Request finished in 1.0754ms 200 application/javascript +2018-10-05 10:53:29.642 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:53:29.644 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:53:29.644 +03:00 [INF] Request finished in 1.8124ms 200 application/javascript +2018-10-05 10:53:29.647 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:53:29.648 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:53:29.649 +03:00 [INF] Request finished in 3.1889ms 200 application/javascript +2018-10-05 10:53:29.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:53:29.651 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:53:29.651 +03:00 [INF] Request finished in 1.0632ms 200 application/javascript +2018-10-05 10:53:29.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:53:29.656 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:53:29.657 +03:00 [INF] Request finished in 1.2524ms 200 application/javascript +2018-10-05 10:53:29.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:53:29.659 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:53:29.659 +03:00 [INF] Request finished in 1.5435ms 200 application/javascript +2018-10-05 10:53:29.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:53:29.950 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:53:29.951 +03:00 [INF] Request finished in 2.0553ms 200 font/woff2 +2018-10-05 10:53:29.977 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:53:29.984 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:53:29.985 +03:00 [INF] Request finished in 7.1804ms 200 image/jpeg +2018-10-05 10:53:30.128 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:53:30.130 +03:00 [INF] Request finished in 1.3056ms 404 +2018-10-05 10:53:30.133 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:53:30.134 +03:00 [INF] Request finished in 1.4533ms 404 +2018-10-05 10:53:30.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:53:30.139 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:53:30.139 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 10:53:30.139 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:53:30.139 +03:00 [INF] Request finished in 0.5109ms 304 text/plain +2018-10-05 10:53:30.140 +03:00 [INF] Request finished in 0.6742ms 304 text/plain +2018-10-05 10:53:30.197 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:53:30.198 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:53:30.199 +03:00 [INF] Request finished in 1.3257ms 200 image/png +2018-10-05 10:53:30.199 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:53:30.200 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:53:30.200 +03:00 [INF] Request finished in 0.8864ms 200 image/png +2018-10-05 10:53:31.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 10:53:31.660 +03:00 [INF] Request finished in 1.5473ms 404 +2018-10-05 10:53:37.111 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:53:37.113 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:53:37.119 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:53:37.649 +03:00 [INF] Executed action /Documents/Project/Index in 535.9088ms +2018-10-05 10:53:37.649 +03:00 [INF] Request finished in 538.2234ms 200 text/html; charset=utf-8 +2018-10-05 10:54:18.299 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:54:18.677 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:54:18.680 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:54:19.172 +03:00 [INF] Executed action /Documents/Project/Index in 494.8758ms +2018-10-05 10:54:19.172 +03:00 [INF] Request finished in 872.9679ms 200 text/html; charset=utf-8 +2018-10-05 10:57:20.015 +03:00 [INF] Loaded modules: +2018-10-05 10:57:20.034 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 10:57:20.035 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 10:57:20.036 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 10:57:21.797 +03:00 [INF] Initialized all modules. +2018-10-05 10:57:22.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 10:57:24.401 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 10:57:24.423 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:57:26.100 +03:00 [INF] Executed action /Index in 1691.1903ms +2018-10-05 10:57:26.129 +03:00 [INF] Request finished in 4078.3123ms 200 text/html; charset=utf-8 +2018-10-05 10:57:26.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:57:26.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:57:26.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:57:26.140 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 10:57:26.143 +03:00 [INF] Request finished in 6.9277ms 304 text/css +2018-10-05 10:57:26.146 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:57:26.146 +03:00 [INF] Request finished in 9.389ms 200 text/css +2018-10-05 10:57:26.152 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:57:26.154 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 10:57:26.154 +03:00 [INF] Request finished in 2.4389ms 304 text/css +2018-10-05 10:57:26.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:57:26.164 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 10:57:26.164 +03:00 [INF] Request finished in 0.6395ms 304 text/css +2018-10-05 10:57:26.173 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:57:26.173 +03:00 [INF] Request finished in 37.725ms 200 text/css +2018-10-05 10:57:26.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:57:26.280 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:57:26.281 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 10:57:26.281 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 10:57:26.281 +03:00 [INF] Request finished in 0.6281ms 304 application/javascript +2018-10-05 10:57:26.281 +03:00 [INF] Request finished in 1.0283ms 304 application/javascript +2018-10-05 10:57:26.284 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:57:26.285 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 10:57:26.285 +03:00 [INF] Request finished in 0.7373ms 304 application/javascript +2018-10-05 10:57:26.287 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:57:26.288 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 10:57:26.288 +03:00 [INF] Request finished in 0.6408ms 304 application/javascript +2018-10-05 10:57:26.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:57:26.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:57:26.290 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 10:57:26.291 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 10:57:26.291 +03:00 [INF] Request finished in 0.9718ms 304 application/javascript +2018-10-05 10:57:26.291 +03:00 [INF] Request finished in 1.0285ms 304 application/javascript +2018-10-05 10:57:26.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:57:26.293 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 10:57:26.293 +03:00 [INF] Request finished in 0.9335ms 304 application/javascript +2018-10-05 10:57:26.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:57:26.295 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 10:57:26.295 +03:00 [INF] Request finished in 1.4944ms 304 application/javascript +2018-10-05 10:57:26.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:57:26.298 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 10:57:26.298 +03:00 [INF] Request finished in 0.6218ms 304 application/javascript +2018-10-05 10:57:26.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:57:26.300 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 10:57:26.300 +03:00 [INF] Request finished in 0.9325ms 304 application/javascript +2018-10-05 10:57:26.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:57:26.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:57:26.304 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 10:57:26.304 +03:00 [INF] Request finished in 0.7631ms 304 application/javascript +2018-10-05 10:57:26.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:57:26.304 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 10:57:26.304 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 10:57:26.304 +03:00 [INF] Request finished in 0.4575ms 304 application/javascript +2018-10-05 10:57:26.304 +03:00 [INF] Request finished in 0.3883ms 304 application/javascript +2018-10-05 10:57:26.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:57:26.308 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 10:57:26.308 +03:00 [INF] Request finished in 0.8808ms 304 application/javascript +2018-10-05 10:57:26.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:57:26.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:57:26.353 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:26.355 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:26.396 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:57:26.397 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:57:26.421 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.421 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.445 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.446 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.447 +03:00 [INF] Authorization failed. +2018-10-05 10:57:26.478 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 76.5873ms. +2018-10-05 10:57:26.484 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:26.484 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 88.179200000000009ms. +2018-10-05 10:57:26.485 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 131.4279ms +2018-10-05 10:57:26.485 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:26.485 +03:00 [INF] Request finished in 150.1137ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:26.485 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 130.5078ms +2018-10-05 10:57:26.485 +03:00 [INF] Request finished in 150.4942ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:27.575 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:57:27.990 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:57:28.046 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:57:30.335 +03:00 [INF] Executed action /Documents/Project/Index in 2344.4733ms +2018-10-05 10:57:30.335 +03:00 [INF] Request finished in 2760.5048ms 200 text/html; charset=utf-8 +2018-10-05 10:57:30.388 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:57:30.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:57:30.390 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:57:30.390 +03:00 [INF] Request finished in 1.3637ms 200 text/css +2018-10-05 10:57:30.391 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:57:30.392 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:57:30.392 +03:00 [INF] Request finished in 1.5832ms 200 text/css +2018-10-05 10:57:30.394 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:57:30.394 +03:00 [INF] Request finished in 5.475ms 200 text/css +2018-10-05 10:57:30.399 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:57:30.400 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:57:30.400 +03:00 [INF] Request finished in 1.5173ms 200 text/css +2018-10-05 10:57:30.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:57:30.413 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:57:30.413 +03:00 [INF] Request finished in 1.37ms 200 text/css +2018-10-05 10:57:30.421 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:57:30.422 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:57:30.422 +03:00 [INF] Request finished in 1.2426ms 200 text/css +2018-10-05 10:57:30.425 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:57:30.426 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:57:30.426 +03:00 [INF] Request finished in 1.0473ms 200 text/css +2018-10-05 10:57:30.428 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:57:30.430 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:57:30.430 +03:00 [INF] Request finished in 2.0642ms 200 text/css +2018-10-05 10:57:30.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:57:30.440 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:57:30.440 +03:00 [INF] Request finished in 1.1229ms 200 text/css +2018-10-05 10:57:30.459 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:57:30.463 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:57:30.463 +03:00 [INF] Request finished in 4.1123ms 200 text/css +2018-10-05 10:57:30.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:57:30.464 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:57:30.464 +03:00 [INF] Request finished in 1.3422ms 200 application/javascript +2018-10-05 10:57:30.511 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:57:30.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:57:30.515 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:57:30.515 +03:00 [INF] Request finished in 1.2535ms 200 application/javascript +2018-10-05 10:57:30.518 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:57:30.518 +03:00 [INF] Request finished in 6.665ms 200 application/javascript +2018-10-05 10:57:30.525 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:57:30.528 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:57:30.530 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:57:30.530 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:57:30.530 +03:00 [INF] Request finished in 2.7623ms 200 application/javascript +2018-10-05 10:57:30.531 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:57:30.531 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:57:30.531 +03:00 [INF] Request finished in 1.8372ms 200 application/javascript +2018-10-05 10:57:30.531 +03:00 [INF] Request finished in 6.5899ms 200 application/javascript +2018-10-05 10:57:30.536 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:57:30.537 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:57:30.537 +03:00 [INF] Request finished in 1.8687ms 200 application/javascript +2018-10-05 10:57:30.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:57:30.543 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:57:30.544 +03:00 [INF] Request finished in 1.1394ms 200 application/javascript +2018-10-05 10:57:30.555 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:57:30.557 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:57:30.557 +03:00 [INF] Request finished in 2.1079ms 200 application/javascript +2018-10-05 10:57:30.563 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:57:30.564 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:57:30.565 +03:00 [INF] Request finished in 1.5385ms 200 application/javascript +2018-10-05 10:57:30.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:57:30.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:57:30.583 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:57:30.583 +03:00 [INF] Request finished in 5.8735ms 200 application/javascript +2018-10-05 10:57:30.584 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:57:30.584 +03:00 [INF] Request finished in 2.8766ms 200 application/javascript +2018-10-05 10:57:30.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:57:30.587 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:57:30.587 +03:00 [INF] Request finished in 3.5953ms 200 application/javascript +2018-10-05 10:57:30.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:57:30.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:57:30.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:57:30.600 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:57:30.600 +03:00 [INF] Request finished in 1.6831ms 200 application/javascript +2018-10-05 10:57:30.600 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:57:30.600 +03:00 [INF] Request finished in 3.9581ms 200 application/javascript +2018-10-05 10:57:30.610 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:57:30.610 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:57:30.610 +03:00 [INF] Request finished in 15.6223ms 200 application/javascript +2018-10-05 10:57:30.611 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:57:30.611 +03:00 [INF] Request finished in 1.9366ms 200 application/javascript +2018-10-05 10:57:30.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:57:30.625 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:57:30.628 +03:00 [INF] Request finished in 8.5323ms 200 application/javascript +2018-10-05 10:57:30.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:57:30.632 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:57:30.633 +03:00 [INF] Request finished in 2.0622ms 200 application/javascript +2018-10-05 10:57:30.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:57:30.637 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:57:30.637 +03:00 [INF] Request finished in 3.282ms 200 application/javascript +2018-10-05 10:57:30.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:57:30.642 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:57:30.642 +03:00 [INF] Request finished in 1.6389ms 200 application/javascript +2018-10-05 10:57:30.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:57:30.644 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:57:30.645 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:57:30.645 +03:00 [INF] Request finished in 0.9497ms 200 application/javascript +2018-10-05 10:57:30.645 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:30.646 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:57:30.647 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.19840000000000002ms. +2018-10-05 10:57:30.647 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:30.647 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9706000000000001ms +2018-10-05 10:57:30.647 +03:00 [INF] Request finished in 3.6556ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:30.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:57:30.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:57:30.653 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:57:30.654 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:57:30.654 +03:00 [INF] Request finished in 1.978ms 200 application/javascript +2018-10-05 10:57:30.655 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:57:30.656 +03:00 [INF] Request finished in 2.0652ms 200 application/javascript +2018-10-05 10:57:30.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:57:30.661 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:30.661 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:57:30.661 +03:00 [INF] Request finished in 0.9565ms 200 application/javascript +2018-10-05 10:57:30.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:57:30.662 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:57:30.663 +03:00 [INF] Request finished in 0.875ms 200 application/javascript +2018-10-05 10:57:30.663 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:57:30.663 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.663 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.664 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.665 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.665 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.665 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.665 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.666 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.667 +03:00 [INF] Authorization failed. +2018-10-05 10:57:30.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:57:30.672 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.3583ms. +2018-10-05 10:57:30.673 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:30.673 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.6449ms +2018-10-05 10:57:30.673 +03:00 [INF] Request finished in 23.2641ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:30.673 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:57:30.673 +03:00 [INF] Request finished in 1.1288ms 200 application/javascript +2018-10-05 10:57:30.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:57:30.675 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:57:30.676 +03:00 [INF] Request finished in 2.2724ms 200 application/javascript +2018-10-05 10:57:30.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:57:30.682 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:57:30.682 +03:00 [INF] Request finished in 0.882ms 200 application/javascript +2018-10-05 10:57:30.955 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:57:30.958 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:57:30.958 +03:00 [INF] Request finished in 2.81ms 200 font/woff2 +2018-10-05 10:57:31.006 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:57:31.016 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:57:31.016 +03:00 [INF] Request finished in 9.7236ms 200 image/jpeg +2018-10-05 10:57:31.134 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:57:31.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:57:31.135 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:57:31.135 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:57:31.135 +03:00 [INF] Request finished in 0.7287ms 200 image/png +2018-10-05 10:57:31.135 +03:00 [INF] Request finished in 1.0099ms 200 image/png +2018-10-05 10:57:31.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:57:31.201 +03:00 [INF] Request finished in 1.8553ms 404 +2018-10-05 10:57:31.273 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:57:31.274 +03:00 [INF] Request finished in 1.1367ms 404 +2018-10-05 10:57:31.319 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:57:31.320 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 10:57:31.320 +03:00 [INF] Request finished in 1.338ms 200 text/plain +2018-10-05 10:57:31.348 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:57:31.348 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:57:31.348 +03:00 [INF] Request finished in 1.0104ms 304 text/plain +2018-10-05 10:57:31.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 10:57:31.589 +03:00 [INF] Request finished in 1.0766ms 404 +2018-10-05 10:57:58.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 10:57:58.861 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 10:57:58.865 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 10:57:59.629 +03:00 [INF] Executed action /Documents/Project/Index in 767.1933ms +2018-10-05 10:57:59.629 +03:00 [INF] Request finished in 777.4145ms 200 text/html; charset=utf-8 +2018-10-05 10:57:59.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 10:57:59.681 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 10:57:59.681 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 10:57:59.682 +03:00 [INF] Request finished in 1.5279ms 200 text/css +2018-10-05 10:57:59.686 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 10:57:59.686 +03:00 [INF] Request finished in 5.7879ms 200 text/css +2018-10-05 10:57:59.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 10:57:59.705 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 10:57:59.705 +03:00 [INF] Request finished in 0.9568ms 200 text/css +2018-10-05 10:57:59.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 10:57:59.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 10:57:59.709 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 10:57:59.709 +03:00 [INF] Request finished in 0.7599ms 200 text/css +2018-10-05 10:57:59.710 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 10:57:59.710 +03:00 [INF] Request finished in 0.958ms 200 text/css +2018-10-05 10:57:59.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-05 10:57:59.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 10:57:59.720 +03:00 [INF] Sending file. Request path: '/scss/vs.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\scss\vs.css' +2018-10-05 10:57:59.720 +03:00 [INF] Request finished in 2.0945ms 200 text/css +2018-10-05 10:57:59.721 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 10:57:59.721 +03:00 [INF] Request finished in 2.9378ms 200 text/css +2018-10-05 10:57:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 10:57:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 10:57:59.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 10:57:59.724 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 10:57:59.724 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 10:57:59.724 +03:00 [INF] Request finished in 0.956ms 200 text/css +2018-10-05 10:57:59.724 +03:00 [INF] Request finished in 0.9428ms 200 text/css +2018-10-05 10:57:59.724 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 10:57:59.724 +03:00 [INF] Request finished in 1.216ms 200 text/css +2018-10-05 10:57:59.731 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 10:57:59.732 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 10:57:59.733 +03:00 [INF] Request finished in 2.239ms 200 application/javascript +2018-10-05 10:57:59.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 10:57:59.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 10:57:59.740 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 10:57:59.740 +03:00 [INF] Request finished in 7.0196ms 200 application/javascript +2018-10-05 10:57:59.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 10:57:59.744 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 10:57:59.744 +03:00 [INF] Request finished in 2.0024ms 200 application/javascript +2018-10-05 10:57:59.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 10:57:59.745 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 10:57:59.745 +03:00 [INF] Request finished in 5.1833ms 200 application/javascript +2018-10-05 10:57:59.747 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 10:57:59.747 +03:00 [INF] Request finished in 2.2189ms 200 application/javascript +2018-10-05 10:57:59.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 10:57:59.753 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 10:57:59.753 +03:00 [INF] Request finished in 1.5693ms 200 application/javascript +2018-10-05 10:57:59.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 10:57:59.775 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 10:57:59.775 +03:00 [INF] Request finished in 0.9003ms 200 application/javascript +2018-10-05 10:57:59.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 10:57:59.794 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 10:57:59.794 +03:00 [INF] Request finished in 0.9356ms 200 application/javascript +2018-10-05 10:57:59.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 10:57:59.819 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 10:57:59.820 +03:00 [INF] Request finished in 2.709ms 200 application/javascript +2018-10-05 10:57:59.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 10:57:59.831 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 10:57:59.831 +03:00 [INF] Request finished in 7.3431ms 200 application/javascript +2018-10-05 10:57:59.839 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 10:57:59.840 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 10:57:59.840 +03:00 [INF] Request finished in 1.032ms 200 application/javascript +2018-10-05 10:57:59.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 10:57:59.859 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 10:57:59.859 +03:00 [INF] Request finished in 2.4235ms 200 application/javascript +2018-10-05 10:57:59.864 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 10:57:59.865 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 10:57:59.866 +03:00 [INF] Request finished in 2.2822ms 200 application/javascript +2018-10-05 10:57:59.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 10:57:59.888 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 10:57:59.888 +03:00 [INF] Request finished in 1.5128ms 200 application/javascript +2018-10-05 10:57:59.893 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 10:57:59.895 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 10:57:59.895 +03:00 [INF] Request finished in 1.5399ms 200 application/javascript +2018-10-05 10:57:59.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 10:57:59.897 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 10:57:59.897 +03:00 [INF] Request finished in 1.1209ms 200 application/javascript +2018-10-05 10:57:59.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 10:57:59.905 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 10:57:59.906 +03:00 [INF] Request finished in 1.2144ms 200 application/javascript +2018-10-05 10:57:59.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 10:57:59.906 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 10:57:59.907 +03:00 [INF] Request finished in 1.121ms 200 application/javascript +2018-10-05 10:57:59.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 10:57:59.915 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 10:57:59.915 +03:00 [INF] Request finished in 1.3877ms 200 application/javascript +2018-10-05 10:57:59.921 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 10:57:59.922 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 10:57:59.923 +03:00 [INF] Request finished in 1.1184ms 200 application/javascript +2018-10-05 10:57:59.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 10:57:59.929 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 10:57:59.929 +03:00 [INF] Request finished in 1.1662ms 200 application/javascript +2018-10-05 10:57:59.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 10:57:59.939 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 10:57:59.939 +03:00 [INF] Request finished in 0.9138ms 200 application/javascript +2018-10-05 10:57:59.968 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 10:57:59.969 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 10:57:59.972 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:59.973 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 10:57:59.974 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1406ms. +2018-10-05 10:57:59.974 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:59.974 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8343ms +2018-10-05 10:57:59.974 +03:00 [INF] Request finished in 5.444ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:59.974 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 10:57:59.976 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.976 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.977 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.978 +03:00 [INF] Authorization failed. +2018-10-05 10:57:59.980 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1596ms. +2018-10-05 10:57:59.980 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 10:57:59.980 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 10:57:59.980 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.0876ms +2018-10-05 10:57:59.981 +03:00 [INF] Request finished in 12.3881ms 200 text/plain; charset=utf-8 +2018-10-05 10:57:59.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 10:57:59.981 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 10:57:59.982 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 10:57:59.982 +03:00 [INF] Request finished in 1.0984ms 200 application/javascript +2018-10-05 10:57:59.982 +03:00 [INF] Request finished in 1.1723ms 200 application/javascript +2018-10-05 10:57:59.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 10:57:59.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 10:57:59.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 10:57:59.990 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 10:57:59.990 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 10:57:59.990 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 10:57:59.990 +03:00 [INF] Request finished in 0.7427ms 200 application/javascript +2018-10-05 10:57:59.990 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 10:57:59.990 +03:00 [INF] Request finished in 1.5754ms 200 application/javascript +2018-10-05 10:57:59.990 +03:00 [INF] Request finished in 2.1059ms 200 application/javascript +2018-10-05 10:57:59.991 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 10:57:59.991 +03:00 [INF] Request finished in 2.1386ms 200 application/javascript +2018-10-05 10:57:59.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 10:57:59.993 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 10:57:59.993 +03:00 [INF] Request finished in 1.1747ms 200 application/javascript +2018-10-05 10:58:00.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 10:58:00.152 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 10:58:00.153 +03:00 [INF] Request finished in 2.5906ms 200 font/woff2 +2018-10-05 10:58:00.218 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/bg.jpg +2018-10-05 10:58:00.224 +03:00 [INF] Sending file. Request path: '/assets/tools/bg.jpg'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\bg.jpg' +2018-10-05 10:58:00.224 +03:00 [INF] Request finished in 6.861ms 200 image/jpeg +2018-10-05 10:58:00.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 10:58:00.371 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 10:58:00.371 +03:00 [INF] Request finished in 0.8781ms 200 image/png +2018-10-05 10:58:00.376 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 10:58:00.377 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 10:58:00.377 +03:00 [INF] Request finished in 0.9129ms 200 image/png +2018-10-05 10:58:00.379 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 10:58:00.380 +03:00 [INF] Request finished in 1.0037ms 404 +2018-10-05 10:58:00.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 10:58:00.410 +03:00 [INF] Request finished in 1.0209ms 404 +2018-10-05 10:58:00.444 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 10:58:00.445 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 10:58:00.445 +03:00 [INF] Request finished in 0.753ms 304 text/plain +2018-10-05 10:58:00.449 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 10:58:00.450 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 10:58:00.450 +03:00 [INF] Request finished in 1.0671ms 304 text/plain +2018-10-05 10:58:00.705 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 10:58:00.706 +03:00 [INF] Request finished in 1.2471ms 404 +2018-10-05 11:05:12.080 +03:00 [INF] Loaded modules: +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 11:05:12.095 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 11:05:12.096 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 11:05:12.097 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 11:05:12.098 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 11:05:12.098 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 11:05:13.796 +03:00 [INF] Initialized all modules. +2018-10-05 11:05:14.103 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 11:05:16.432 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 11:05:16.457 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:05:18.069 +03:00 [INF] Executed action /Index in 1631.3443ms +2018-10-05 11:05:18.096 +03:00 [INF] Request finished in 3992.9945ms 200 text/html; charset=utf-8 +2018-10-05 11:05:18.098 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:05:18.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:05:18.101 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:05:18.104 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:05:18.104 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:05:18.104 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:05:18.108 +03:00 [INF] Request finished in 7.5737ms 304 text/css +2018-10-05 11:05:18.108 +03:00 [INF] Request finished in 7.4945ms 304 text/css +2018-10-05 11:05:18.108 +03:00 [INF] Request finished in 10.0623ms 304 text/css +2018-10-05 11:05:18.109 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:05:18.110 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:05:18.110 +03:00 [INF] Request finished in 1.8014ms 304 text/css +2018-10-05 11:05:18.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:05:18.125 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:05:18.126 +03:00 [INF] Request finished in 0.99ms 304 text/css +2018-10-05 11:05:18.126 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:05:18.127 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:05:18.127 +03:00 [INF] Request finished in 0.8368ms 304 application/javascript +2018-10-05 11:05:18.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:05:18.129 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:05:18.129 +03:00 [INF] Request finished in 0.5773ms 304 application/javascript +2018-10-05 11:05:18.130 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:05:18.130 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:05:18.130 +03:00 [INF] Request finished in 0.6925ms 304 application/javascript +2018-10-05 11:05:18.132 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:05:18.133 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:05:18.133 +03:00 [INF] Request finished in 0.9872ms 304 application/javascript +2018-10-05 11:05:18.136 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:05:18.137 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:05:18.137 +03:00 [INF] Request finished in 5.6147ms 304 application/javascript +2018-10-05 11:05:18.140 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:05:18.141 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:05:18.141 +03:00 [INF] Request finished in 0.8566ms 304 application/javascript +2018-10-05 11:05:18.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:05:18.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:05:18.150 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:05:18.150 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:05:18.150 +03:00 [INF] Request finished in 0.6481ms 304 application/javascript +2018-10-05 11:05:18.150 +03:00 [INF] Request finished in 0.6344ms 304 application/javascript +2018-10-05 11:05:18.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:05:18.151 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:05:18.151 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:05:18.151 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:05:18.151 +03:00 [INF] Request finished in 0.4858ms 304 application/javascript +2018-10-05 11:05:18.151 +03:00 [INF] Request finished in 0.558ms 304 application/javascript +2018-10-05 11:05:18.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:05:18.166 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:05:18.166 +03:00 [INF] Request finished in 0.8502ms 304 application/javascript +2018-10-05 11:05:18.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:05:18.170 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:05:18.170 +03:00 [INF] Request finished in 2.2702ms 304 application/javascript +2018-10-05 11:05:18.172 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:05:18.173 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:05:18.173 +03:00 [INF] Request finished in 0.9414ms 304 application/javascript +2018-10-05 11:05:18.180 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:05:18.180 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:05:18.181 +03:00 [INF] Request finished in 0.6045ms 304 application/javascript +2018-10-05 11:05:18.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:05:18.210 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:05:18.227 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:18.228 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:18.274 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:05:18.275 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:05:18.305 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.306 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.330 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.330 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.331 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.332 +03:00 [INF] Authorization failed. +2018-10-05 11:05:18.370 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 88.1701ms. +2018-10-05 11:05:18.379 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:18.380 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 152.2602ms +2018-10-05 11:05:18.380 +03:00 [INF] Request finished in 170.4111ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:18.381 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 107.113ms. +2018-10-05 11:05:18.382 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:18.382 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 154.1228ms +2018-10-05 11:05:18.382 +03:00 [INF] Request finished in 175.8807ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:23.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Exception-Handling +2018-10-05 11:05:23.631 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:05:23.707 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:05:26.339 +03:00 [INF] Executed action /Documents/Project/Index in 2707.4364ms +2018-10-05 11:05:26.339 +03:00 [INF] Request finished in 3165.6951ms 200 text/html; charset=utf-8 +2018-10-05 11:05:26.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:05:26.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:05:26.392 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:05:26.392 +03:00 [INF] Request finished in 1.636ms 200 text/css +2018-10-05 11:05:26.408 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:05:26.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:05:26.411 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:05:26.411 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:05:26.411 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:05:26.411 +03:00 [INF] Request finished in 2.6138ms 200 text/css +2018-10-05 11:05:26.411 +03:00 [INF] Request finished in 24.0898ms 200 text/css +2018-10-05 11:05:26.411 +03:00 [INF] Request finished in 2.846ms 200 text/css +2018-10-05 11:05:26.426 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:05:26.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:05:26.428 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:05:26.428 +03:00 [INF] Request finished in 1.7511ms 200 text/css +2018-10-05 11:05:26.430 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:05:26.430 +03:00 [INF] Request finished in 2.7083ms 200 text/css +2018-10-05 11:05:26.439 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:05:26.440 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:05:26.440 +03:00 [INF] Request finished in 1.2109ms 200 text/css +2018-10-05 11:05:26.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:05:26.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:05:26.453 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:05:26.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:05:26.454 +03:00 [INF] Request finished in 1.1066ms 200 text/css +2018-10-05 11:05:26.454 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:05:26.454 +03:00 [INF] Request finished in 0.9152ms 200 text/css +2018-10-05 11:05:26.454 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:05:26.454 +03:00 [INF] Request finished in 1.3667ms 200 text/css +2018-10-05 11:05:26.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:05:26.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:05:26.465 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:05:26.465 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:05:26.465 +03:00 [INF] Request finished in 2.1626ms 200 text/css +2018-10-05 11:05:26.465 +03:00 [INF] Request finished in 2.312ms 200 text/css +2018-10-05 11:05:26.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:05:26.467 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:05:26.467 +03:00 [INF] Request finished in 0.9616ms 200 application/javascript +2018-10-05 11:05:26.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:05:26.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:05:26.504 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:05:26.504 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:05:26.504 +03:00 [INF] Request finished in 0.8356ms 200 application/javascript +2018-10-05 11:05:26.508 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:05:26.508 +03:00 [INF] Request finished in 4.559ms 200 application/javascript +2018-10-05 11:05:26.509 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:05:26.510 +03:00 [INF] Request finished in 6.0091ms 200 application/javascript +2018-10-05 11:05:26.515 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:05:26.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:05:26.517 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:05:26.517 +03:00 [INF] Request finished in 2.0893ms 200 application/javascript +2018-10-05 11:05:26.518 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:05:26.518 +03:00 [INF] Request finished in 1.0304ms 200 application/javascript +2018-10-05 11:05:26.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:05:26.534 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:05:26.534 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:05:26.534 +03:00 [INF] Request finished in 3.1573ms 200 application/javascript +2018-10-05 11:05:26.538 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:05:26.539 +03:00 [INF] Request finished in 4.8874ms 200 application/javascript +2018-10-05 11:05:26.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:05:26.555 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:05:26.555 +03:00 [INF] Request finished in 1.7869ms 200 application/javascript +2018-10-05 11:05:26.558 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:05:26.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:05:26.571 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:05:26.571 +03:00 [INF] Request finished in 13.0241ms 200 application/javascript +2018-10-05 11:05:26.572 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:05:26.572 +03:00 [INF] Request finished in 0.9102ms 200 application/javascript +2018-10-05 11:05:26.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:05:26.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:05:26.576 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:05:26.576 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:05:26.577 +03:00 [INF] Request finished in 0.6853ms 200 application/javascript +2018-10-05 11:05:26.577 +03:00 [INF] Request finished in 1.0582ms 200 application/javascript +2018-10-05 11:05:26.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:05:26.585 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:05:26.585 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:05:26.586 +03:00 [INF] Request finished in 1.1679ms 200 application/javascript +2018-10-05 11:05:26.586 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:05:26.586 +03:00 [INF] Request finished in 1.0171ms 200 application/javascript +2018-10-05 11:05:26.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:05:26.588 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:05:26.588 +03:00 [INF] Request finished in 1.7123ms 200 application/javascript +2018-10-05 11:05:26.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:05:26.602 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:05:26.602 +03:00 [INF] Request finished in 1.1544ms 200 application/javascript +2018-10-05 11:05:26.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:05:26.607 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:05:26.607 +03:00 [INF] Request finished in 1.0238ms 200 application/javascript +2018-10-05 11:05:26.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:05:26.612 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:05:26.612 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:05:26.613 +03:00 [INF] Request finished in 2.2091ms 200 application/javascript +2018-10-05 11:05:26.613 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:05:26.613 +03:00 [INF] Request finished in 1.6319ms 200 application/javascript +2018-10-05 11:05:26.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:05:26.617 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:05:26.617 +03:00 [INF] Request finished in 1.0905ms 200 application/javascript +2018-10-05 11:05:26.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:05:26.621 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:05:26.622 +03:00 [INF] Request finished in 1.3579ms 200 application/javascript +2018-10-05 11:05:26.634 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:05:26.635 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:26.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:05:26.636 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:05:26.637 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.637 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.637 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.637 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.637 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.638 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.638 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.638 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.638 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.638 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.639 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.640 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.42650000000000005ms. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.641 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.6907ms +2018-10-05 11:05:26.642 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.642 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.642 +03:00 [INF] Request finished in 6.7067ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:26.642 +03:00 [INF] Authorization failed. +2018-10-05 11:05:26.644 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.2513000000000005ms. +2018-10-05 11:05:26.644 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:26.644 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.0249ms +2018-10-05 11:05:26.644 +03:00 [INF] Request finished in 10.7524ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:26.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:05:26.703 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:05:26.703 +03:00 [INF] Request finished in 1.0542ms 200 application/javascript +2018-10-05 11:05:26.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:05:26.707 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:05:26.707 +03:00 [INF] Request finished in 1.0382ms 200 application/javascript +2018-10-05 11:05:26.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:05:26.715 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:05:26.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:05:26.715 +03:00 [INF] Request finished in 2.2719ms 200 application/javascript +2018-10-05 11:05:26.716 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:05:26.716 +03:00 [INF] Request finished in 1.196ms 200 application/javascript +2018-10-05 11:05:26.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:05:26.721 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:05:26.722 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:05:26.722 +03:00 [INF] Request finished in 1.0057ms 200 application/javascript +2018-10-05 11:05:26.723 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:05:26.723 +03:00 [INF] Request finished in 1.7548ms 200 application/javascript +2018-10-05 11:05:26.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:05:26.724 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:05:26.724 +03:00 [INF] Request finished in 0.9574ms 200 application/javascript +2018-10-05 11:05:26.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:05:26.730 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:05:26.730 +03:00 [INF] Request finished in 1.8332ms 200 application/javascript +2018-10-05 11:05:26.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:05:26.733 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:05:26.734 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:05:26.734 +03:00 [INF] Request finished in 0.8509ms 200 application/javascript +2018-10-05 11:05:26.734 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:05:26.734 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:05:26.734 +03:00 [INF] Request finished in 0.8746ms 200 application/javascript +2018-10-05 11:05:26.734 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:05:26.735 +03:00 [INF] Request finished in 0.8056ms 200 application/javascript +2018-10-05 11:05:26.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:05:26.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:05:26.737 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:05:26.737 +03:00 [INF] Request finished in 1.2374ms 200 application/javascript +2018-10-05 11:05:26.737 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:05:26.738 +03:00 [INF] Request finished in 1.0497ms 200 application/javascript +2018-10-05 11:05:27.012 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:05:27.014 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:05:27.014 +03:00 [INF] Request finished in 2.235ms 200 font/woff2 +2018-10-05 11:05:27.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:05:27.166 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:05:27.166 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 11:05:27.166 +03:00 [INF] Request finished in 0.8563ms 200 image/png +2018-10-05 11:05:27.167 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 11:05:27.167 +03:00 [INF] Request finished in 1.8016ms 200 image/png +2018-10-05 11:05:27.266 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 11:05:27.270 +03:00 [INF] Request finished in 3.3677ms 404 +2018-10-05 11:05:27.304 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 11:05:27.305 +03:00 [INF] Request finished in 1.1626ms 404 +2018-10-05 11:05:27.357 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 11:05:27.357 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 11:05:27.357 +03:00 [INF] Request finished in 0.5837ms 304 text/plain +2018-10-05 11:05:27.412 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 11:05:27.414 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 11:05:27.414 +03:00 [INF] Request finished in 2.1617ms 304 text/plain +2018-10-05 11:05:27.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:05:27.738 +03:00 [INF] Request finished in 0.8419ms 404 +2018-10-05 11:05:38.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:05:38.451 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:05:38.455 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:05:39.048 +03:00 [INF] Executed action /Documents/Project/Index in 596.6296ms +2018-10-05 11:05:39.048 +03:00 [INF] Request finished in 597.9457ms 200 text/html; charset=utf-8 +2018-10-05 11:05:39.091 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:05:39.095 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:05:39.095 +03:00 [INF] Request finished in 4.6679ms 200 text/css +2018-10-05 11:05:39.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:05:39.100 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:05:39.100 +03:00 [INF] Request finished in 0.9095ms 200 text/css +2018-10-05 11:05:39.102 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:05:39.103 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:05:39.103 +03:00 [INF] Request finished in 1.2402ms 200 text/css +2018-10-05 11:05:39.107 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:05:39.110 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:05:39.110 +03:00 [INF] Request finished in 2.9895ms 200 text/css +2018-10-05 11:05:39.120 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:05:39.120 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:05:39.121 +03:00 [INF] Request finished in 1.3941ms 200 text/css +2018-10-05 11:05:39.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:05:39.138 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:05:39.138 +03:00 [INF] Request finished in 1.137ms 200 text/css +2018-10-05 11:05:39.150 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:05:39.151 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:05:39.151 +03:00 [INF] Request finished in 1.2678ms 200 text/css +2018-10-05 11:05:39.182 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:05:39.183 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:05:39.183 +03:00 [INF] Request finished in 1.1489ms 200 text/css +2018-10-05 11:05:39.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:05:39.189 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:05:39.189 +03:00 [INF] Request finished in 1.096ms 200 text/css +2018-10-05 11:05:39.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:05:39.202 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:05:39.202 +03:00 [INF] Request finished in 2.1347ms 200 text/css +2018-10-05 11:05:39.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:05:39.212 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:05:39.212 +03:00 [INF] Request finished in 1.2493ms 200 text/css +2018-10-05 11:05:39.216 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:05:39.217 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:05:39.217 +03:00 [INF] Request finished in 1.0889ms 200 text/css +2018-10-05 11:05:39.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:05:39.228 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:05:39.229 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:05:39.229 +03:00 [INF] Request finished in 1.5126ms 200 application/javascript +2018-10-05 11:05:39.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:05:39.230 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:05:39.231 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:05:39.231 +03:00 [INF] Request finished in 0.9678ms 200 application/javascript +2018-10-05 11:05:39.232 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:05:39.234 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:05:39.234 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:05:39.234 +03:00 [INF] Request finished in 1.9344ms 200 application/javascript +2018-10-05 11:05:39.234 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:05:39.235 +03:00 [INF] Request finished in 4.404ms 200 application/javascript +2018-10-05 11:05:39.235 +03:00 [INF] Request finished in 6.4762ms 200 application/javascript +2018-10-05 11:05:39.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:05:39.239 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:05:39.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:05:39.240 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:05:39.240 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:05:39.240 +03:00 [INF] Request finished in 1.0215ms 200 application/javascript +2018-10-05 11:05:39.240 +03:00 [INF] Request finished in 1.0814ms 200 application/javascript +2018-10-05 11:05:39.240 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:05:39.241 +03:00 [INF] Request finished in 1.011ms 200 application/javascript +2018-10-05 11:05:39.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:05:39.254 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:05:39.259 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:05:39.260 +03:00 [INF] Request finished in 7.4743ms 200 application/javascript +2018-10-05 11:05:39.263 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:05:39.265 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:05:39.265 +03:00 [INF] Request finished in 12.2288ms 200 application/javascript +2018-10-05 11:05:39.266 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:05:39.266 +03:00 [INF] Request finished in 3.0715ms 200 application/javascript +2018-10-05 11:05:39.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:05:39.272 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:05:39.272 +03:00 [INF] Request finished in 2.0719ms 200 application/javascript +2018-10-05 11:05:39.279 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:05:39.281 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:05:39.281 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:05:39.281 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:05:39.281 +03:00 [INF] Request finished in 2.6023ms 200 application/javascript +2018-10-05 11:05:39.282 +03:00 [INF] Request finished in 0.8623ms 200 application/javascript +2018-10-05 11:05:39.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:05:39.294 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:05:39.294 +03:00 [INF] Request finished in 3.2783ms 200 application/javascript +2018-10-05 11:05:39.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:05:39.297 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:05:39.297 +03:00 [INF] Request finished in 2.4737ms 200 application/javascript +2018-10-05 11:05:39.300 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:05:39.301 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:05:39.301 +03:00 [INF] Request finished in 1.3421ms 200 application/javascript +2018-10-05 11:05:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:05:39.301 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:05:39.302 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:05:39.302 +03:00 [INF] Request finished in 1.1503ms 200 application/javascript +2018-10-05 11:05:39.302 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:05:39.302 +03:00 [INF] Request finished in 1.4657ms 200 application/javascript +2018-10-05 11:05:39.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:05:39.309 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:05:39.311 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:05:39.311 +03:00 [INF] Request finished in 1.8009ms 200 application/javascript +2018-10-05 11:05:39.312 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:05:39.314 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:05:39.314 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:39.314 +03:00 [INF] Request finished in 7.0663ms 200 application/javascript +2018-10-05 11:05:39.314 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.315 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.316 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.317 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.317 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.317 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.317 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:05:39.317 +03:00 [INF] Authorization failed. +2018-10-05 11:05:39.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:05:39.320 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:05:39.320 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:05:39.320 +03:00 [INF] Request finished in 2.0904ms 200 application/javascript +2018-10-05 11:05:39.320 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:05:39.320 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.6707ms. +2018-10-05 11:05:39.320 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.092800000000000007ms. +2018-10-05 11:05:39.320 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:39.321 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:05:39.321 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.8956ms +2018-10-05 11:05:39.321 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0016ms +2018-10-05 11:05:39.321 +03:00 [INF] Request finished in 8.6827ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:39.321 +03:00 [INF] Request finished in 3.7914ms 200 text/plain; charset=utf-8 +2018-10-05 11:05:39.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:05:39.324 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:05:39.324 +03:00 [INF] Request finished in 1.8975ms 200 application/javascript +2018-10-05 11:05:39.328 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:05:39.329 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:05:39.329 +03:00 [INF] Request finished in 1.4479ms 200 application/javascript +2018-10-05 11:05:39.330 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:05:39.333 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:05:39.333 +03:00 [INF] Request finished in 2.3939ms 200 application/javascript +2018-10-05 11:05:39.334 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:05:39.336 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:05:39.337 +03:00 [INF] Request finished in 2.2156ms 200 application/javascript +2018-10-05 11:05:39.338 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:05:39.339 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:05:39.339 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:05:39.339 +03:00 [INF] Request finished in 1.0564ms 200 application/javascript +2018-10-05 11:05:39.340 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:05:39.340 +03:00 [INF] Request finished in 1.0349ms 200 application/javascript +2018-10-05 11:05:39.349 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:05:39.350 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:05:39.350 +03:00 [INF] Request finished in 1.0082ms 200 application/javascript +2018-10-05 11:05:39.352 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:05:39.353 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:05:39.353 +03:00 [INF] Request finished in 1.05ms 200 application/javascript +2018-10-05 11:05:39.364 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:05:39.365 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:05:39.365 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:05:39.366 +03:00 [INF] Request finished in 1.2872ms 200 application/javascript +2018-10-05 11:05:39.366 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:05:39.367 +03:00 [INF] Request finished in 1.0813ms 200 application/javascript +2018-10-05 11:05:39.367 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:05:39.369 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:05:39.369 +03:00 [INF] Request finished in 2.0227ms 200 application/javascript +2018-10-05 11:05:39.369 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:05:39.370 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:05:39.370 +03:00 [INF] Request finished in 1.1176ms 200 application/javascript +2018-10-05 11:05:39.371 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:05:39.372 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:05:39.372 +03:00 [INF] Request finished in 0.9328ms 200 application/javascript +2018-10-05 11:05:39.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:05:39.652 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:05:39.652 +03:00 [INF] Request finished in 1.893ms 200 font/woff2 +2018-10-05 11:05:39.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:05:39.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:05:39.841 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 11:05:39.841 +03:00 [INF] Request finished in 1.0689ms 200 image/png +2018-10-05 11:05:39.843 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 11:05:39.843 +03:00 [INF] Request finished in 3.0546ms 200 image/png +2018-10-05 11:05:39.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 11:05:39.949 +03:00 [INF] Request finished in 0.857ms 404 +2018-10-05 11:05:40.025 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 11:05:40.027 +03:00 [INF] Request finished in 1.8108ms 404 +2018-10-05 11:05:40.078 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 11:05:40.078 +03:00 [INF] The file /libs/toastr/toastr.js.map was not modified +2018-10-05 11:05:40.078 +03:00 [INF] Request finished in 0.8729ms 304 text/plain +2018-10-05 11:05:40.092 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 11:05:40.095 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js.map was not modified +2018-10-05 11:05:40.095 +03:00 [INF] Request finished in 3.1506ms 304 text/plain +2018-10-05 11:05:40.390 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:05:40.391 +03:00 [INF] Request finished in 0.8395ms 404 +2018-10-05 11:06:11.072 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:06:11.075 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:06:11.077 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:06:11.501 +03:00 [INF] Executed action /Documents/Project/Index in 426.23510000000005ms +2018-10-05 11:06:11.501 +03:00 [INF] Request finished in 429.4151ms 200 text/html; charset=utf-8 +2018-10-05 11:06:11.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:06:11.541 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:06:11.542 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:06:11.542 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:06:11.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:06:11.542 +03:00 [INF] Request finished in 0.732ms 304 text/css +2018-10-05 11:06:11.542 +03:00 [INF] Request finished in 0.3925ms 304 text/css +2018-10-05 11:06:11.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:06:11.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:06:11.542 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:06:11.542 +03:00 [INF] Request finished in 0.4353ms 304 text/css +2018-10-05 11:06:11.542 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:06:11.543 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:06:11.543 +03:00 [INF] Request finished in 1.0841ms 304 text/css +2018-10-05 11:06:11.543 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:06:11.543 +03:00 [INF] Request finished in 0.9839ms 304 text/css +2018-10-05 11:06:11.544 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:06:11.544 +03:00 [INF] Request finished in 0.7241ms 304 text/css +2018-10-05 11:06:11.565 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:06:11.565 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:06:11.565 +03:00 [INF] Request finished in 0.6799ms 304 text/css +2018-10-05 11:06:11.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:06:11.570 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:06:11.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:06:11.570 +03:00 [INF] Request finished in 0.7596ms 304 text/css +2018-10-05 11:06:11.570 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:06:11.571 +03:00 [INF] Request finished in 0.901ms 304 text/css +2018-10-05 11:06:11.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:06:11.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:06:11.576 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:06:11.576 +03:00 [INF] Request finished in 4.3182ms 304 text/css +2018-10-05 11:06:11.576 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:06:11.576 +03:00 [INF] Request finished in 0.9782ms 304 text/css +2018-10-05 11:06:11.577 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:06:11.577 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:06:11.577 +03:00 [INF] Request finished in 0.6271ms 304 text/css +2018-10-05 11:06:11.580 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:06:11.581 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:06:11.582 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:06:11.582 +03:00 [INF] Request finished in 2.6846ms 304 application/javascript +2018-10-05 11:06:11.583 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:06:11.583 +03:00 [INF] Request finished in 0.6503ms 304 application/javascript +2018-10-05 11:06:11.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:06:11.596 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:06:11.597 +03:00 [INF] Request finished in 1.5733ms 304 application/javascript +2018-10-05 11:06:11.599 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:06:11.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:06:11.600 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:06:11.600 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:06:11.600 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:06:11.600 +03:00 [INF] Request finished in 0.8272ms 304 application/javascript +2018-10-05 11:06:11.600 +03:00 [INF] Request finished in 0.397ms 304 application/javascript +2018-10-05 11:06:11.601 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:06:11.601 +03:00 [INF] Request finished in 1.0483ms 304 application/javascript +2018-10-05 11:06:11.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:06:11.603 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:06:11.603 +03:00 [INF] Request finished in 0.9669ms 304 application/javascript +2018-10-05 11:06:11.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:06:11.604 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:06:11.604 +03:00 [INF] Request finished in 0.6363ms 304 application/javascript +2018-10-05 11:06:11.613 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:06:11.614 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:06:11.616 +03:00 [INF] Request finished in 2.8079ms 304 application/javascript +2018-10-05 11:06:11.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:06:11.618 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:06:11.618 +03:00 [INF] Request finished in 0.5835ms 304 application/javascript +2018-10-05 11:06:11.621 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:06:11.622 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:06:11.622 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:06:11.623 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:06:11.623 +03:00 [INF] Request finished in 0.8271ms 304 application/javascript +2018-10-05 11:06:11.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:06:11.623 +03:00 [INF] Request finished in 1.7368ms 304 application/javascript +2018-10-05 11:06:11.624 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:06:11.624 +03:00 [INF] Request finished in 1.2116ms 304 application/javascript +2018-10-05 11:06:11.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:06:11.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:06:11.628 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:06:11.628 +03:00 [INF] Request finished in 1.3539ms 304 application/javascript +2018-10-05 11:06:11.629 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:06:11.629 +03:00 [INF] Request finished in 2.1684ms 304 application/javascript +2018-10-05 11:06:11.633 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:06:11.636 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:06:11.636 +03:00 [INF] Request finished in 3.3681ms 304 application/javascript +2018-10-05 11:06:11.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:06:11.637 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:06:11.637 +03:00 [INF] Request finished in 1.065ms 304 application/javascript +2018-10-05 11:06:11.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:06:11.639 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:06:11.639 +03:00 [INF] Request finished in 1.759ms 304 application/javascript +2018-10-05 11:06:11.650 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:06:11.651 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:06:11.651 +03:00 [INF] Request finished in 0.9101ms 304 application/javascript +2018-10-05 11:06:11.652 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:06:11.653 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:06:11.653 +03:00 [INF] Request finished in 1.1931ms 304 application/javascript +2018-10-05 11:06:11.655 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:06:11.657 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:06:11.657 +03:00 [INF] Request finished in 2.0638ms 304 application/javascript +2018-10-05 11:06:11.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:06:11.659 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:06:11.659 +03:00 [INF] Request finished in 1.1808ms 304 application/javascript +2018-10-05 11:06:11.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:06:11.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:06:11.664 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:06:11.665 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:06:11.665 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:06:11.665 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:06:11.666 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.11230000000000001ms. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2008ms +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.666 +03:00 [INF] Request finished in 4.8868ms 200 text/plain; charset=utf-8 +2018-10-05 11:06:11.667 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.667 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.668 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.668 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.668 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.668 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.669 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.670 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.670 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.670 +03:00 [INF] Authorization failed. +2018-10-05 11:06:11.674 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.8093ms. +2018-10-05 11:06:11.675 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:06:11.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:06:11.676 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.9717ms +2018-10-05 11:06:11.676 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:06:11.676 +03:00 [INF] Request finished in 0.7605ms 304 application/javascript +2018-10-05 11:06:11.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:06:11.676 +03:00 [INF] Request finished in 16.4044ms 200 text/plain; charset=utf-8 +2018-10-05 11:06:11.677 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:06:11.678 +03:00 [INF] Request finished in 1.338ms 304 application/javascript +2018-10-05 11:06:11.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:06:11.683 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:06:11.683 +03:00 [INF] Request finished in 1.2364ms 304 application/javascript +2018-10-05 11:06:11.686 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:06:11.687 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:06:11.687 +03:00 [INF] Request finished in 1.1036ms 304 application/javascript +2018-10-05 11:06:11.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:06:11.693 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:06:11.693 +03:00 [INF] Request finished in 0.8744ms 304 application/javascript +2018-10-05 11:06:11.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:06:11.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:06:11.700 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:06:11.700 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:06:11.700 +03:00 [INF] Request finished in 0.7358ms 304 application/javascript +2018-10-05 11:06:11.700 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:06:11.700 +03:00 [INF] Request finished in 0.8157ms 304 application/javascript +2018-10-05 11:06:11.701 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:06:11.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:06:11.701 +03:00 [INF] Request finished in 0.8074ms 304 application/javascript +2018-10-05 11:06:11.701 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:06:11.702 +03:00 [INF] Request finished in 0.5917ms 304 application/javascript +2018-10-05 11:06:11.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:06:11.704 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:06:11.704 +03:00 [INF] Request finished in 1.3286ms 304 application/javascript +2018-10-05 11:06:11.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:06:11.709 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:06:11.709 +03:00 [INF] Request finished in 0.6751ms 304 application/javascript +2018-10-05 11:06:11.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:06:11.711 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:06:11.711 +03:00 [INF] Request finished in 0.717ms 304 application/javascript +2018-10-05 11:06:11.713 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:06:11.714 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:06:11.714 +03:00 [INF] Request finished in 0.7514ms 304 application/javascript +2018-10-05 11:06:11.895 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:06:11.895 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:06:11.895 +03:00 [INF] Request finished in 0.633ms 304 image/png +2018-10-05 11:06:11.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:06:11.908 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-10-05 11:06:11.909 +03:00 [INF] Request finished in 0.7892ms 304 image/png +2018-10-05 11:06:49.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:06:49.744 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:06:49.744 +03:00 [INF] Request finished in 1.1544ms 200 text/css +2018-10-05 11:06:49.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:06:49.771 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:06:49.771 +03:00 [INF] Request finished in 1.4792ms 200 text/css +2018-10-05 11:06:49.796 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:06:49.800 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:06:49.800 +03:00 [INF] Request finished in 3.9949ms 200 text/css +2018-10-05 11:06:49.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:06:49.812 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:06:49.812 +03:00 [INF] Request finished in 3.5546ms 200 text/css +2018-10-05 11:06:49.986 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:06:49.987 +03:00 [INF] Request finished in 0.9218ms 404 +2018-10-05 11:06:58.106 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:06:58.107 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:06:58.109 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:06:58.534 +03:00 [INF] Executed action /Documents/Project/Index in 426.5136ms +2018-10-05 11:06:58.534 +03:00 [INF] Request finished in 427.6469ms 200 text/html; charset=utf-8 +2018-10-05 11:06:58.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:06:58.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:06:58.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:06:58.571 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:06:58.572 +03:00 [INF] Request finished in 1.2674ms 304 text/css +2018-10-05 11:06:58.572 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:06:58.572 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:06:58.572 +03:00 [INF] Request finished in 0.6464ms 304 text/css +2018-10-05 11:06:58.572 +03:00 [INF] Request finished in 0.5405ms 304 text/css +2018-10-05 11:06:58.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:06:58.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:06:58.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:06:58.588 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:06:58.589 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:06:58.589 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:06:58.589 +03:00 [INF] Request finished in 0.7079ms 304 text/css +2018-10-05 11:06:58.589 +03:00 [INF] Request finished in 0.809ms 304 text/css +2018-10-05 11:06:58.589 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:06:58.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:06:58.589 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:06:58.589 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:06:58.590 +03:00 [INF] Request finished in 1.465ms 304 text/css +2018-10-05 11:06:58.590 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:06:58.590 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:06:58.590 +03:00 [INF] Request finished in 0.6297ms 304 text/css +2018-10-05 11:06:58.590 +03:00 [INF] Request finished in 0.5294ms 304 text/css +2018-10-05 11:06:58.592 +03:00 [INF] Request finished in 2.1107ms 304 text/css +2018-10-05 11:06:58.602 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:06:58.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:06:58.603 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:06:58.603 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:06:58.604 +03:00 [INF] Request finished in 1.1988ms 304 text/css +2018-10-05 11:06:58.604 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:06:58.605 +03:00 [INF] Request finished in 1.4752ms 304 text/css +2018-10-05 11:06:58.605 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:06:58.605 +03:00 [INF] Request finished in 2.0009ms 304 application/javascript +2018-10-05 11:06:58.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:06:58.607 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:06:58.608 +03:00 [INF] Request finished in 2.5542ms 304 text/css +2018-10-05 11:06:58.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:06:58.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:06:58.615 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:06:58.615 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:06:58.615 +03:00 [INF] Request finished in 0.5891ms 304 application/javascript +2018-10-05 11:06:58.615 +03:00 [INF] Request finished in 0.5599ms 304 application/javascript +2018-10-05 11:06:58.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:06:58.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:06:58.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:06:58.616 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:06:58.616 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:06:58.616 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:06:58.616 +03:00 [INF] Request finished in 0.5195ms 304 application/javascript +2018-10-05 11:06:58.616 +03:00 [INF] Request finished in 0.3694ms 304 application/javascript +2018-10-05 11:06:58.616 +03:00 [INF] Request finished in 0.4424ms 304 application/javascript +2018-10-05 11:06:58.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:06:58.628 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:06:58.628 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:06:58.628 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:06:58.628 +03:00 [INF] Request finished in 0.7671ms 304 application/javascript +2018-10-05 11:06:58.628 +03:00 [INF] Request finished in 0.4046ms 304 application/javascript +2018-10-05 11:06:58.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:06:58.629 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:06:58.630 +03:00 [INF] Request finished in 0.9261ms 304 application/javascript +2018-10-05 11:06:58.631 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:06:58.631 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:06:58.631 +03:00 [INF] Request finished in 0.7028ms 304 application/javascript +2018-10-05 11:06:58.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:06:58.639 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:06:58.639 +03:00 [INF] Request finished in 0.6023ms 304 application/javascript +2018-10-05 11:06:58.643 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:06:58.644 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:06:58.644 +03:00 [INF] Request finished in 1.764ms 304 application/javascript +2018-10-05 11:06:58.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:06:58.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:06:58.645 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:06:58.646 +03:00 [INF] Request finished in 0.8657ms 304 application/javascript +2018-10-05 11:06:58.646 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:06:58.646 +03:00 [INF] Request finished in 1.7363ms 304 application/javascript +2018-10-05 11:06:58.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:06:58.654 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:06:58.655 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:06:58.655 +03:00 [INF] Request finished in 1.0355ms 304 application/javascript +2018-10-05 11:06:58.655 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:06:58.657 +03:00 [INF] Request finished in 2.7386ms 304 application/javascript +2018-10-05 11:06:58.658 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:06:58.658 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:06:58.659 +03:00 [INF] Request finished in 1.0854ms 304 application/javascript +2018-10-05 11:06:58.662 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:06:58.662 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:06:58.663 +03:00 [INF] Request finished in 0.8167ms 304 application/javascript +2018-10-05 11:06:58.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:06:58.670 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:06:58.670 +03:00 [INF] Request finished in 1.7982ms 304 application/javascript +2018-10-05 11:06:58.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:06:58.673 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:06:58.673 +03:00 [INF] Request finished in 1.5892ms 304 application/javascript +2018-10-05 11:06:58.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:06:58.675 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:06:58.675 +03:00 [INF] Request finished in 0.8704ms 304 application/javascript +2018-10-05 11:06:58.676 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:06:58.677 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:06:58.677 +03:00 [INF] Request finished in 0.8543ms 304 application/javascript +2018-10-05 11:06:58.680 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:06:58.681 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:06:58.682 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:06:58.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.683 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.684 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.684 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.684 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.684 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.685 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.686 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.686 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:06:58.686 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.686 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.13190000000000002ms. +2018-10-05 11:06:58.686 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.686 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.687 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5815000000000001ms +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.687 +03:00 [INF] Request finished in 4.3317ms 200 text/plain; charset=utf-8 +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.687 +03:00 [INF] Authorization failed. +2018-10-05 11:06:58.690 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.3442000000000007ms. +2018-10-05 11:06:58.690 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:06:58.690 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:06:58.690 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.8705ms +2018-10-05 11:06:58.690 +03:00 [INF] Request finished in 10.8145ms 200 text/plain; charset=utf-8 +2018-10-05 11:06:58.691 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:06:58.691 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:06:58.691 +03:00 [INF] Request finished in 0.6615ms 304 application/javascript +2018-10-05 11:06:58.691 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:06:58.691 +03:00 [INF] Request finished in 0.8903ms 304 application/javascript +2018-10-05 11:06:58.692 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:06:58.693 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:06:58.693 +03:00 [INF] Request finished in 1.1862ms 304 application/javascript +2018-10-05 11:06:58.706 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:06:58.706 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:06:58.707 +03:00 [INF] Request finished in 1.0276ms 304 application/javascript +2018-10-05 11:06:58.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:06:58.707 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:06:58.708 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:06:58.708 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:06:58.708 +03:00 [INF] Request finished in 1.0244ms 304 application/javascript +2018-10-05 11:06:58.708 +03:00 [INF] Request finished in 1.1468ms 304 application/javascript +2018-10-05 11:06:58.709 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:06:58.710 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:06:58.710 +03:00 [INF] Request finished in 0.6414ms 304 application/javascript +2018-10-05 11:06:58.711 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:06:58.711 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:06:58.712 +03:00 [INF] Request finished in 0.7415ms 304 application/javascript +2018-10-05 11:06:58.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:06:58.714 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:06:58.714 +03:00 [INF] Request finished in 2.1903ms 304 application/javascript +2018-10-05 11:06:58.720 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:06:58.721 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:06:58.722 +03:00 [INF] Request finished in 1.2363ms 304 application/javascript +2018-10-05 11:06:58.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:06:58.725 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:06:58.726 +03:00 [INF] Request finished in 2.0974ms 304 application/javascript +2018-10-05 11:06:58.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:06:58.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:06:58.728 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:06:58.729 +03:00 [INF] Request finished in 0.832ms 304 application/javascript +2018-10-05 11:06:58.729 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:06:58.729 +03:00 [INF] Request finished in 0.5983ms 304 application/javascript +2018-10-05 11:06:58.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:06:58.839 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:06:58.839 +03:00 [INF] Request finished in 1.2739ms 304 image/png +2018-10-05 11:06:58.840 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:06:58.840 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-10-05 11:06:58.841 +03:00 [INF] Request finished in 0.5497ms 304 image/png +2018-10-05 11:07:03.305 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:07:03.306 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:07:03.306 +03:00 [INF] Request finished in 1.0872ms 200 text/css +2018-10-05 11:07:03.310 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:07:03.311 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:07:03.312 +03:00 [INF] Request finished in 1.9184ms 200 text/css +2018-10-05 11:07:03.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:07:03.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:07:03.343 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:07:03.344 +03:00 [INF] Request finished in 2.1217ms 200 text/css +2018-10-05 11:07:03.345 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:07:03.345 +03:00 [INF] Request finished in 3.2696ms 200 text/css +2018-10-05 11:07:03.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:07:03.507 +03:00 [INF] Request finished in 0.9544ms 404 +2018-10-05 11:09:05.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:09:05.731 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:05.732 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:05.732 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:09:05.735 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:09:06.225 +03:00 [INF] Executed action /Documents/Project/Index in 492.2115ms +2018-10-05 11:09:06.225 +03:00 [INF] Request finished in 498.8137ms 200 text/html; charset=utf-8 +2018-10-05 11:09:06.251 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:09:06.252 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.252 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.256 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:09:06.256 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.256 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:09:06.256 +03:00 [INF] Request finished in 5.274ms 200 text/css +2018-10-05 11:09:06.256 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.257 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:09:06.257 +03:00 [INF] Request finished in 1.4139ms 200 text/css +2018-10-05 11:09:06.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:09:06.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:09:06.262 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.262 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.263 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.263 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.263 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:09:06.263 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:09:06.263 +03:00 [INF] Request finished in 1.1615ms 200 text/css +2018-10-05 11:09:06.263 +03:00 [INF] Request finished in 1.1377ms 200 text/css +2018-10-05 11:09:06.264 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:09:06.265 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:09:06.265 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.265 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.265 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.265 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:09:06.265 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.266 +03:00 [INF] Request finished in 1.0973ms 200 text/css +2018-10-05 11:09:06.267 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:09:06.267 +03:00 [INF] Request finished in 2.5018ms 200 text/css +2018-10-05 11:09:06.285 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:09:06.286 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.286 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.287 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:09:06.287 +03:00 [INF] Request finished in 1.496ms 200 text/css +2018-10-05 11:09:06.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:09:06.291 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:09:06.291 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.291 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.291 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.292 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:09:06.292 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:09:06.292 +03:00 [INF] Request finished in 1.8173ms 200 text/css +2018-10-05 11:09:06.292 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.292 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.292 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:09:06.293 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:09:06.293 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.293 +03:00 [INF] Request finished in 0.8643ms 200 text/css +2018-10-05 11:09:06.293 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.293 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:09:06.293 +03:00 [INF] Request finished in 1.0028ms 200 text/css +2018-10-05 11:09:06.294 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:09:06.295 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:09:06.295 +03:00 [INF] Request finished in 4.3152ms 200 text/css +2018-10-05 11:09:06.295 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.295 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.296 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:09:06.296 +03:00 [INF] Request finished in 2.4518ms 200 text/css +2018-10-05 11:09:06.297 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:09:06.298 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.298 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.298 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:09:06.298 +03:00 [INF] Request finished in 1.0972ms 200 application/javascript +2018-10-05 11:09:06.303 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:09:06.303 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.303 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.308 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:09:06.308 +03:00 [INF] Request finished in 4.9016ms 200 application/javascript +2018-10-05 11:09:06.318 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:09:06.318 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.318 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.319 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:09:06.319 +03:00 [INF] Request finished in 1.1504ms 200 application/javascript +2018-10-05 11:09:06.322 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:09:06.323 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.323 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.327 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:09:06.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.328 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:09:06.328 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.328 +03:00 [INF] Request finished in 5.6506ms 200 application/javascript +2018-10-05 11:09:06.329 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:09:06.330 +03:00 [INF] Request finished in 2.7301ms 200 application/javascript +2018-10-05 11:09:06.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:09:06.331 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:09:06.332 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.332 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.332 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.332 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.332 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:09:06.332 +03:00 [INF] Request finished in 0.8544ms 200 application/javascript +2018-10-05 11:09:06.332 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:09:06.332 +03:00 [INF] Request finished in 1.2773ms 200 application/javascript +2018-10-05 11:09:06.335 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:09:06.335 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.335 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.336 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:09:06.336 +03:00 [INF] Request finished in 1.4662ms 200 application/javascript +2018-10-05 11:09:06.336 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:09:06.337 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.337 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.339 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:09:06.339 +03:00 [INF] Request finished in 2.7319ms 200 application/javascript +2018-10-05 11:09:06.342 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:09:06.342 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.342 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.354 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:09:06.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:09:06.355 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.355 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:09:06.355 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.355 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.355 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.355 +03:00 [INF] Request finished in 13.0648ms 200 application/javascript +2018-10-05 11:09:06.356 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:09:06.356 +03:00 [INF] Request finished in 1.3339ms 200 application/javascript +2018-10-05 11:09:06.356 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:09:06.356 +03:00 [INF] Request finished in 1.3251ms 200 application/javascript +2018-10-05 11:09:06.358 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:09:06.359 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.359 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.361 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:09:06.362 +03:00 [INF] Request finished in 3.6917ms 200 font/woff2 +2018-10-05 11:09:06.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:09:06.382 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.382 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.382 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:09:06.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.383 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:09:06.383 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:09:06.383 +03:00 [INF] Request finished in 1.0199ms 200 application/javascript +2018-10-05 11:09:06.384 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:09:06.384 +03:00 [INF] Request finished in 0.9921ms 200 application/javascript +2018-10-05 11:09:06.384 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:09:06.383 +03:00 [INF] Request finished in 2.5756ms 200 application/javascript +2018-10-05 11:09:06.384 +03:00 [INF] Request finished in 0.9531ms 200 application/javascript +2018-10-05 11:09:06.384 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:09:06.385 +03:00 [INF] Request finished in 1.4972ms 200 application/javascript +2018-10-05 11:09:06.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:09:06.393 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.393 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.394 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:09:06.394 +03:00 [INF] Request finished in 1.9121ms 200 application/javascript +2018-10-05 11:09:06.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:09:06.396 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:09:06.396 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.397 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.397 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.397 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.398 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:09:06.398 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:09:06.399 +03:00 [INF] Request finished in 2.4021ms 200 application/javascript +2018-10-05 11:09:06.399 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.399 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.400 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:09:06.400 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:09:06.400 +03:00 [INF] Request finished in 1.9852ms 200 application/javascript +2018-10-05 11:09:06.400 +03:00 [INF] Request finished in 3.9256ms 200 application/javascript +2018-10-05 11:09:06.402 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:09:06.402 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.402 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.404 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:09:06.404 +03:00 [INF] Request finished in 2.2902ms 200 application/javascript +2018-10-05 11:09:06.404 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:09:06.404 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.404 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.405 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:09:06.406 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.406 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.407 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.408 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.408 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.408 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.408 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.409 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.409 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.409 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:09:06.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:09:06.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:09:06.409 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:09:06.410 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.410 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.410 +03:00 [INF] Authorization failed. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.410 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:09:06.410 +03:00 [INF] Request finished in 0.8634ms 200 application/javascript +2018-10-05 11:09:06.411 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:09:06.411 +03:00 [INF] Request finished in 1.3726ms 200 application/javascript +2018-10-05 11:09:06.411 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:09:06.412 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:09:06.412 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.0845ms. +2018-10-05 11:09:06.412 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:09:06.412 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.2156ms +2018-10-05 11:09:06.412 +03:00 [INF] Request finished in 2.9505ms 200 text/plain; charset=utf-8 +2018-10-05 11:09:06.413 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.2109000000000005ms. +2018-10-05 11:09:06.413 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:09:06.413 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:09:06.414 +03:00 [INF] Request finished in 4.3053ms 200 application/javascript +2018-10-05 11:09:06.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 9.1434ms +2018-10-05 11:09:06.414 +03:00 [INF] Request finished in 10.301ms 200 text/plain; charset=utf-8 +2018-10-05 11:09:06.427 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:09:06.428 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.428 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.429 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:09:06.429 +03:00 [INF] Request finished in 1.9491ms 200 application/javascript +2018-10-05 11:09:06.429 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:09:06.430 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:09:06.430 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.430 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.432 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:09:06.432 +03:00 [INF] Request finished in 1.9324ms 200 application/javascript +2018-10-05 11:09:06.432 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.432 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.433 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:09:06.433 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.434 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.434 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:09:06.434 +03:00 [INF] Request finished in 4.9267ms 200 application/javascript +2018-10-05 11:09:06.435 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:09:06.435 +03:00 [INF] Request finished in 2.4332ms 200 application/javascript +2018-10-05 11:09:06.436 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:09:06.438 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.438 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.439 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:09:06.439 +03:00 [INF] Request finished in 2.9397ms 200 application/javascript +2018-10-05 11:09:06.443 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:09:06.443 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.444 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.444 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:09:06.444 +03:00 [INF] Request finished in 1.1317ms 200 application/javascript +2018-10-05 11:09:06.445 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:09:06.445 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.445 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.446 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:09:06.446 +03:00 [INF] Request finished in 1.3452ms 200 application/javascript +2018-10-05 11:09:06.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:09:06.452 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:09:06.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.452 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.453 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.453 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:09:06.453 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:09:06.453 +03:00 [INF] Request finished in 1.8746ms 200 application/javascript +2018-10-05 11:09:06.453 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.454 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:06.453 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:09:06.454 +03:00 [INF] Request finished in 1.6216ms 200 application/javascript +2018-10-05 11:09:06.454 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:09:06.454 +03:00 [INF] Request finished in 1.0432ms 200 application/javascript +2018-10-05 11:09:07.261 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 11:09:07.261 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:07.261 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:07.262 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-10-05 11:09:07.262 +03:00 [INF] Request finished in 1.7841ms 200 image/png +2018-10-05 11:09:07.271 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:09:07.271 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:07.271 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:07.271 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 11:09:07.272 +03:00 [INF] Request finished in 1.0313ms 200 image/png +2018-10-05 11:09:14.017 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 11:09:14.017 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.017 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.018 +03:00 [INF] Request finished in 1.277ms 404 +2018-10-05 11:09:14.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 11:09:14.019 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.019 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.020 +03:00 [INF] Request finished in 1.2461ms 404 +2018-10-05 11:09:14.024 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 11:09:14.025 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.025 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.025 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 11:09:14.025 +03:00 [INF] Request finished in 0.9654ms 200 text/plain +2018-10-05 11:09:14.035 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 11:09:14.035 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.035 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.037 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js.map'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js.map' +2018-10-05 11:09:14.037 +03:00 [INF] Request finished in 2.3969ms 200 text/plain +2018-10-05 11:09:14.055 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:09:14.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.056 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:14.056 +03:00 [INF] Request finished in 1.8437ms 404 +2018-10-05 11:09:36.326 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:09:36.327 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.327 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.329 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:09:36.334 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:09:36.828 +03:00 [INF] Executed action /Documents/Project/Index in 499.5641ms +2018-10-05 11:09:36.829 +03:00 [INF] Request finished in 502.5288ms 200 text/html; charset=utf-8 +2018-10-05 11:09:36.855 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:09:36.855 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.856 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:09:36.856 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.856 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.857 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:09:36.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:09:36.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:09:36.857 +03:00 [INF] Request finished in 2.3557ms 200 text/css +2018-10-05 11:09:36.858 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.858 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.858 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:09:36.858 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.858 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.859 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:09:36.859 +03:00 [INF] Request finished in 1.8753ms 200 text/css +2018-10-05 11:09:36.859 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:09:36.859 +03:00 [INF] Request finished in 1.554ms 200 text/css +2018-10-05 11:09:36.860 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.860 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.860 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:09:36.860 +03:00 [INF] Request finished in 4.6964ms 200 text/css +2018-10-05 11:09:36.860 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:09:36.860 +03:00 [INF] Request finished in 2.9812ms 200 text/css +2018-10-05 11:09:36.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:09:36.864 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.864 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.865 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:09:36.865 +03:00 [INF] Request finished in 2.2591ms 200 text/css +2018-10-05 11:09:36.882 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:09:36.882 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.883 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.883 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:09:36.884 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:09:36.884 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.884 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:09:36.884 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.884 +03:00 [INF] Request finished in 1.9061ms 200 text/css +2018-10-05 11:09:36.884 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.885 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:09:36.885 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.885 +03:00 [INF] Request finished in 1.6843ms 200 text/css +2018-10-05 11:09:36.885 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:09:36.885 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:09:36.885 +03:00 [INF] Request finished in 1.8182ms 200 text/css +2018-10-05 11:09:36.885 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.885 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.886 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:09:36.886 +03:00 [INF] Request finished in 1.4782ms 200 text/css +2018-10-05 11:09:36.887 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:09:36.887 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.887 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.888 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:09:36.888 +03:00 [INF] Request finished in 1.7801ms 200 text/css +2018-10-05 11:09:36.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:09:36.899 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.900 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:09:36.900 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.900 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.900 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.901 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:09:36.901 +03:00 [INF] Request finished in 0.9955ms 200 application/javascript +2018-10-05 11:09:36.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:09:36.901 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.901 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.902 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:09:36.902 +03:00 [INF] Request finished in 4.3511ms 200 text/css +2018-10-05 11:09:36.906 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:09:36.907 +03:00 [INF] Request finished in 5.4904ms 200 application/javascript +2018-10-05 11:09:36.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:09:36.913 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.913 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.914 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:09:36.914 +03:00 [INF] Request finished in 2.4325ms 200 application/javascript +2018-10-05 11:09:36.914 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:09:36.915 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:09:36.915 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.915 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.915 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.916 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:09:36.917 +03:00 [INF] Request finished in 1.8671ms 200 application/javascript +2018-10-05 11:09:36.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:09:36.919 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.919 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.919 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:09:36.920 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.920 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:09:36.920 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.920 +03:00 [INF] Request finished in 1.219ms 200 application/javascript +2018-10-05 11:09:36.920 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:09:36.920 +03:00 [INF] Request finished in 5.5967ms 200 application/javascript +2018-10-05 11:09:36.921 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:09:36.921 +03:00 [INF] Request finished in 2.0503ms 200 application/javascript +2018-10-05 11:09:36.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:09:36.939 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:09:36.939 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.939 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.939 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.939 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.940 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:09:36.941 +03:00 [INF] Request finished in 1.6367ms 200 application/javascript +2018-10-05 11:09:36.942 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:09:36.942 +03:00 [INF] Request finished in 3.3459ms 200 application/javascript +2018-10-05 11:09:36.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:09:36.943 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.943 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.952 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:09:36.953 +03:00 [INF] Request finished in 11.0611ms 200 application/javascript +2018-10-05 11:09:36.954 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:09:36.954 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.954 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.955 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:09:36.955 +03:00 [INF] Request finished in 1.4847ms 200 application/javascript +2018-10-05 11:09:36.957 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:09:36.959 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.960 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.962 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:09:36.963 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:09:36.963 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.963 +03:00 [INF] Request finished in 5.63ms 200 application/javascript +2018-10-05 11:09:36.963 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.966 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:09:36.966 +03:00 [INF] Request finished in 4.1677ms 200 font/woff2 +2018-10-05 11:09:36.981 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:09:36.981 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.981 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.982 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:09:36.982 +03:00 [INF] Request finished in 1.4328ms 200 application/javascript +2018-10-05 11:09:36.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:09:36.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:09:36.988 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.988 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.988 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.989 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.989 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:09:36.989 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:09:36.989 +03:00 [INF] Request finished in 0.9283ms 200 application/javascript +2018-10-05 11:09:36.989 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.989 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:09:36.989 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.989 +03:00 [INF] Request finished in 1.2013ms 200 application/javascript +2018-10-05 11:09:36.991 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:09:36.991 +03:00 [INF] Request finished in 2.1582ms 200 application/javascript +2018-10-05 11:09:36.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:09:36.994 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.995 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:09:36.996 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.996 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:36.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:09:36.997 +03:00 [INF] Request finished in 3.0666ms 200 application/javascript +2018-10-05 11:09:36.997 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:09:36.997 +03:00 [INF] Request finished in 3.4916ms 200 application/javascript +2018-10-05 11:09:37.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:09:37.008 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:09:37.009 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.009 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.009 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.009 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.009 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:09:37.009 +03:00 [INF] Request finished in 1.086ms 200 application/javascript +2018-10-05 11:09:37.010 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:09:37.010 +03:00 [INF] Request finished in 1.8524ms 200 application/javascript +2018-10-05 11:09:37.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:09:37.012 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.013 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.013 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:09:37.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:09:37.014 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:09:37.014 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:09:37.015 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.015 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.015 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Request finished in 2.4892ms 200 application/javascript +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Request finished in 1.3311ms 200 application/javascript +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.016 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.017 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.017 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.017 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.017 +03:00 [INF] Authorization failed. +2018-10-05 11:09:37.019 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.2766ms. +2018-10-05 11:09:37.019 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:09:37.019 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:09:37.019 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.6445ms +2018-10-05 11:09:37.019 +03:00 [INF] Request finished in 8.3616ms 200 text/plain; charset=utf-8 +2018-10-05 11:09:37.019 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.020 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.021 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:09:37.022 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:09:37.022 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12200000000000001ms. +2018-10-05 11:09:37.022 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:09:37.022 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.5439ms +2018-10-05 11:09:37.023 +03:00 [INF] Request finished in 3.4703ms 200 text/plain; charset=utf-8 +2018-10-05 11:09:37.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:09:37.023 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.023 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.025 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:09:37.025 +03:00 [INF] Request finished in 1.8751ms 200 application/javascript +2018-10-05 11:09:37.032 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:09:37.032 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.032 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.033 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:09:37.033 +03:00 [INF] Request finished in 1.9664ms 200 application/javascript +2018-10-05 11:09:37.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:09:37.040 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.040 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.042 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:09:37.042 +03:00 [INF] Request finished in 3.0062ms 200 application/javascript +2018-10-05 11:09:37.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:09:37.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:09:37.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:09:37.045 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:09:37.045 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.045 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.045 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.045 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.045 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:09:37.046 +03:00 [INF] Request finished in 1.2155ms 200 application/javascript +2018-10-05 11:09:37.046 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:09:37.046 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.046 +03:00 [INF] Request finished in 1.6089ms 200 application/javascript +2018-10-05 11:09:37.046 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.046 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.046 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.047 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:09:37.047 +03:00 [INF] Request finished in 2.4992ms 200 application/javascript +2018-10-05 11:09:37.047 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:09:37.047 +03:00 [INF] Request finished in 2.9821ms 200 application/javascript +2018-10-05 11:09:37.059 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:09:37.059 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.060 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.060 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:09:37.061 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:09:37.061 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.061 +03:00 [INF] Request finished in 1.5702ms 200 application/javascript +2018-10-05 11:09:37.061 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.062 +03:00 [INF] Request finished in 1.3417ms 404 +2018-10-05 11:09:37.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:09:37.075 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.075 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.076 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:09:37.080 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:09:37.080 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.080 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.080 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.080 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.080 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:09:37.080 +03:00 [INF] Request finished in 6.1878ms 200 application/javascript +2018-10-05 11:09:37.080 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:09:37.080 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:09:37.081 +03:00 [INF] Request finished in 5.1421ms 200 application/javascript +2018-10-05 11:09:37.081 +03:00 [INF] Request finished in 4.7929ms 200 application/javascript +2018-10-05 11:09:37.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:09:37.084 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:09:37.084 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.084 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.084 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.085 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:09:37.085 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:09:37.085 +03:00 [INF] Request finished in 1.8092ms 200 application/javascript +2018-10-05 11:09:37.085 +03:00 [INF] Request finished in 1.2651ms 200 application/javascript +2018-10-05 11:09:37.405 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 11:09:37.406 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.406 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.406 +03:00 [INF] Request finished in 1.1602ms 404 +2018-10-05 11:09:37.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 11:09:37.409 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.409 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.410 +03:00 [INF] Request finished in 1.2002ms 404 +2018-10-05 11:09:37.415 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 11:09:37.415 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.415 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.416 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 11:09:37.416 +03:00 [INF] Request finished in 1.2521ms 200 text/plain +2018-10-05 11:09:37.431 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 11:09:37.431 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.432 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:09:37.433 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js.map'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js.map' +2018-10-05 11:09:37.433 +03:00 [INF] Request finished in 2.2028ms 200 text/plain +2018-10-05 11:10:49.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:10:49.903 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:49.903 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:49.904 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:10:49.908 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:10:50.568 +03:00 [INF] Executed action /Documents/Project/Index in 663.78000000000009ms +2018-10-05 11:10:50.569 +03:00 [INF] Request finished in 665.6575ms 200 text/html; charset=utf-8 +2018-10-05 11:10:50.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:10:50.605 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.605 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.606 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:10:50.606 +03:00 [INF] Request finished in 1.4187ms 200 text/css +2018-10-05 11:10:50.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:10:50.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:10:50.606 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.606 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.607 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.607 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.607 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:10:50.607 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.607 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.607 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:10:50.607 +03:00 [INF] Request finished in 1.344ms 200 text/css +2018-10-05 11:10:50.608 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:10:50.608 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:10:50.608 +03:00 [INF] Request finished in 1.2705ms 200 text/css +2018-10-05 11:10:50.608 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.608 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.609 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:10:50.609 +03:00 [INF] Request finished in 1.157ms 200 text/css +2018-10-05 11:10:50.609 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:10:50.609 +03:00 [INF] Request finished in 3.1778ms 200 text/css +2018-10-05 11:10:50.611 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:10:50.612 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.612 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.612 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:10:50.613 +03:00 [INF] Request finished in 1.7691ms 200 text/css +2018-10-05 11:10:50.627 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:10:50.627 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.628 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.628 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:10:50.628 +03:00 [INF] Request finished in 1.4903ms 200 text/css +2018-10-05 11:10:50.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:10:50.639 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:10:50.640 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.640 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.640 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:10:50.640 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:10:50.640 +03:00 [INF] Request finished in 1.3944ms 200 text/css +2018-10-05 11:10:50.641 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.641 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.641 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.641 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.641 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:10:50.641 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:10:50.642 +03:00 [INF] Request finished in 1.3261ms 200 text/css +2018-10-05 11:10:50.642 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.642 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.642 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:10:50.642 +03:00 [INF] Request finished in 3.6539ms 200 text/css +2018-10-05 11:10:50.643 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:10:50.643 +03:00 [INF] Request finished in 1.6845ms 200 text/css +2018-10-05 11:10:50.645 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:10:50.645 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.646 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.646 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:10:50.646 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.646 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.653 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:10:50.653 +03:00 [INF] Request finished in 6.8948ms 200 application/javascript +2018-10-05 11:10:50.654 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:10:50.654 +03:00 [INF] Request finished in 8.9455ms 200 text/css +2018-10-05 11:10:50.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:10:50.658 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.659 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:10:50.663 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.663 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.664 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.665 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:10:50.665 +03:00 [INF] Request finished in 7.7313ms 200 application/javascript +2018-10-05 11:10:50.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:10:50.666 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.666 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.668 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:10:50.670 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:10:50.670 +03:00 [INF] Request finished in 11.2305ms 200 application/javascript +2018-10-05 11:10:50.670 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.670 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.671 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:10:50.671 +03:00 [INF] Request finished in 5.5276ms 200 application/javascript +2018-10-05 11:10:50.672 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:10:50.672 +03:00 [INF] Request finished in 3.9427ms 200 application/javascript +2018-10-05 11:10:50.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:10:50.673 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.673 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:10:50.674 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:10:50.674 +03:00 [INF] Request finished in 1.0842ms 200 application/javascript +2018-10-05 11:10:50.674 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.674 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.675 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:10:50.675 +03:00 [INF] Request finished in 1.7988ms 200 application/javascript +2018-10-05 11:10:50.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:10:50.677 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.677 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.678 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:10:50.678 +03:00 [INF] Request finished in 1.2154ms 200 application/javascript +2018-10-05 11:10:50.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:10:50.694 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.694 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.697 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:10:50.697 +03:00 [INF] Request finished in 3.9121ms 200 application/javascript +2018-10-05 11:10:50.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:10:50.702 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.702 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.703 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:10:50.703 +03:00 [INF] Request finished in 1.8515ms 200 application/javascript +2018-10-05 11:10:50.701 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:10:50.705 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.705 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.710 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:10:50.711 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.711 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.712 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:10:50.712 +03:00 [INF] Request finished in 11.611ms 200 application/javascript +2018-10-05 11:10:50.714 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:10:50.714 +03:00 [INF] Request finished in 3.7357ms 200 font/woff2 +2018-10-05 11:10:50.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:10:50.719 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.719 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.720 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:10:50.721 +03:00 [INF] Request finished in 3.514ms 200 application/javascript +2018-10-05 11:10:50.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:10:50.724 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.725 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.725 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:10:50.725 +03:00 [INF] Request finished in 1.5584ms 200 application/javascript +2018-10-05 11:10:50.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:10:50.737 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.737 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:10:50.737 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.738 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.738 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:10:50.738 +03:00 [INF] Request finished in 3.5181ms 200 application/javascript +2018-10-05 11:10:50.738 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:10:50.738 +03:00 [INF] Request finished in 1.4955ms 200 application/javascript +2018-10-05 11:10:50.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:10:50.739 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.739 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.744 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:10:50.744 +03:00 [INF] Request finished in 5.2775ms 200 application/javascript +2018-10-05 11:10:50.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:10:50.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:10:50.744 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.744 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.744 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.744 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.745 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:10:50.745 +03:00 [INF] Request finished in 1.2906ms 200 application/javascript +2018-10-05 11:10:50.745 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:10:50.745 +03:00 [INF] Request finished in 1.3119ms 200 application/javascript +2018-10-05 11:10:50.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:10:50.749 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.750 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.750 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:10:50.750 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:10:50.751 +03:00 [INF] Request finished in 1.663ms 200 application/javascript +2018-10-05 11:10:50.751 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.754 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.755 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:10:50.755 +03:00 [INF] Request finished in 4.7423ms 200 application/javascript +2018-10-05 11:10:50.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:10:50.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:10:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.758 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:10:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.759 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:10:50.759 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.759 +03:00 [INF] Request finished in 1.2201ms 200 application/javascript +2018-10-05 11:10:50.760 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:10:50.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:10:50.761 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:10:50.761 +03:00 [INF] Request finished in 3.1858ms 200 application/javascript +2018-10-05 11:10:50.761 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.761 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.761 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:10:50.761 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.761 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:10:50.761 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.762 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1143ms. +2018-10-05 11:10:50.762 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:10:50.763 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.0365ms +2018-10-05 11:10:50.762 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.763 +03:00 [INF] Request finished in 2.1269ms 200 text/plain; charset=utf-8 +2018-10-05 11:10:50.763 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.763 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.763 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.763 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.764 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.764 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.765 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.765 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.765 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.766 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.767 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.767 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.767 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.767 +03:00 [INF] Authorization failed. +2018-10-05 11:10:50.767 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:10:50.767 +03:00 [INF] Request finished in 1.3947ms 200 application/javascript +2018-10-05 11:10:50.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:10:50.770 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.770 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.771 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:10:50.771 +03:00 [INF] Request finished in 1.4018ms 200 application/javascript +2018-10-05 11:10:50.771 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.995000000000001ms. +2018-10-05 11:10:50.772 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:10:50.772 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.3251ms +2018-10-05 11:10:50.772 +03:00 [INF] Request finished in 14.2446ms 200 text/plain; charset=utf-8 +2018-10-05 11:10:50.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:10:50.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:10:50.774 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.775 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.775 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.775 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.775 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:10:50.775 +03:00 [INF] Request finished in 1.3193ms 200 application/javascript +2018-10-05 11:10:50.776 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:10:50.776 +03:00 [INF] Request finished in 1.426ms 200 application/javascript +2018-10-05 11:10:50.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:10:50.782 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.782 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:10:50.784 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.785 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.785 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:10:50.786 +03:00 [INF] Request finished in 6.1612ms 200 application/javascript +2018-10-05 11:10:50.786 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:10:50.787 +03:00 [INF] Request finished in 3.8068ms 200 application/javascript +2018-10-05 11:10:50.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:10:50.790 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.790 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.791 +03:00 [INF] Request finished in 1.4279ms 404 +2018-10-05 11:10:50.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:10:50.793 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.793 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.794 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:10:50.794 +03:00 [INF] Request finished in 1.5428ms 200 application/javascript +2018-10-05 11:10:50.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:10:50.797 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.798 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:10:50.798 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:10:50.799 +03:00 [INF] Request finished in 1.4416ms 200 application/javascript +2018-10-05 11:10:50.799 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.799 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.799 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:10:50.800 +03:00 [INF] Request finished in 1.7216ms 200 application/javascript +2018-10-05 11:10:50.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:10:50.804 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.805 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.806 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:10:50.806 +03:00 [INF] Request finished in 5.8923ms 200 application/javascript +2018-10-05 11:10:50.809 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:10:50.809 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:10:50.810 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.810 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.810 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.811 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:10:50.811 +03:00 [INF] Request finished in 1.1761ms 200 application/javascript +2018-10-05 11:10:50.811 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:10:50.811 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:10:50.811 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.811 +03:00 [INF] Request finished in 2.6654ms 200 application/javascript +2018-10-05 11:10:50.811 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:50.813 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:10:50.813 +03:00 [INF] Request finished in 2.3942ms 200 application/javascript +2018-10-05 11:10:51.253 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js.map +2018-10-05 11:10:51.254 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.254 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.254 +03:00 [INF] Request finished in 1.1298ms 404 +2018-10-05 11:10:51.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js.map +2018-10-05 11:10:51.257 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.257 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.258 +03:00 [INF] Request finished in 1.4024ms 404 +2018-10-05 11:10:51.262 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.js.map +2018-10-05 11:10:51.262 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.262 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.263 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.js.map' +2018-10-05 11:10:51.263 +03:00 [INF] Request finished in 1.1323ms 200 text/plain +2018-10-05 11:10:51.283 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js.map +2018-10-05 11:10:51.283 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.284 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:10:51.288 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js.map'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js.map' +2018-10-05 11:10:51.288 +03:00 [INF] Request finished in 4.7746ms 200 text/plain +2018-10-05 11:11:12.290 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:11:12.291 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:11:12.295 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:11:12.705 +03:00 [INF] Executed action /Documents/Project/Index in 413.7223ms +2018-10-05 11:11:12.705 +03:00 [INF] Request finished in 415.0578ms 200 text/html; charset=utf-8 +2018-10-05 11:11:12.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:11:12.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:11:12.746 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:11:12.746 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:11:12.746 +03:00 [INF] Request finished in 1.5241ms 304 text/css +2018-10-05 11:11:12.747 +03:00 [INF] Request finished in 2.7965ms 200 text/css +2018-10-05 11:11:12.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:11:12.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:11:12.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:11:12.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:11:12.755 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:11:12.755 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:11:12.755 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:11:12.755 +03:00 [INF] Request finished in 0.5121ms 304 text/css +2018-10-05 11:11:12.755 +03:00 [INF] Request finished in 0.5537ms 304 text/css +2018-10-05 11:11:12.755 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:11:12.755 +03:00 [INF] Request finished in 0.59ms 304 text/css +2018-10-05 11:11:12.755 +03:00 [INF] Request finished in 0.3859ms 304 text/css +2018-10-05 11:11:12.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:11:12.760 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:11:12.760 +03:00 [INF] Request finished in 0.7864ms 304 text/css +2018-10-05 11:11:12.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:11:12.767 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:11:12.768 +03:00 [INF] Request finished in 0.7444ms 304 text/css +2018-10-05 11:11:12.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:11:12.769 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:11:12.769 +03:00 [INF] Request finished in 0.6294ms 304 text/css +2018-10-05 11:11:12.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:11:12.774 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:11:12.774 +03:00 [INF] Request finished in 3.2872ms 304 text/css +2018-10-05 11:11:12.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:11:12.778 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:11:12.778 +03:00 [INF] Request finished in 1.8051ms 304 text/css +2018-10-05 11:11:12.778 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:11:12.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:11:12.779 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:11:12.779 +03:00 [INF] Request finished in 0.9503ms 304 text/css +2018-10-05 11:11:12.779 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:11:12.779 +03:00 [INF] Request finished in 1.0506ms 304 application/javascript +2018-10-05 11:11:12.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:11:12.785 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:11:12.786 +03:00 [INF] Request finished in 2.4033ms 304 application/javascript +2018-10-05 11:11:12.787 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:11:12.787 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:11:12.788 +03:00 [INF] Request finished in 0.6883ms 304 application/javascript +2018-10-05 11:11:12.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:11:12.790 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:11:12.791 +03:00 [INF] Request finished in 2.2821ms 304 application/javascript +2018-10-05 11:11:12.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:11:12.794 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:11:12.794 +03:00 [INF] Request finished in 1.33ms 304 application/javascript +2018-10-05 11:11:12.798 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:11:12.799 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:11:12.799 +03:00 [INF] Request finished in 0.9879ms 304 application/javascript +2018-10-05 11:11:12.804 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:11:12.805 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:11:12.805 +03:00 [INF] Request finished in 1.0326ms 304 application/javascript +2018-10-05 11:11:12.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:11:12.812 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:11:12.812 +03:00 [INF] Request finished in 2.6254ms 304 application/javascript +2018-10-05 11:11:12.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:11:12.816 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:11:12.816 +03:00 [INF] Request finished in 2.2354ms 304 application/javascript +2018-10-05 11:11:12.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:11:12.818 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:11:12.818 +03:00 [INF] Request finished in 0.6641ms 304 application/javascript +2018-10-05 11:11:12.818 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:11:12.819 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:11:12.819 +03:00 [INF] Request finished in 1.0464ms 304 application/javascript +2018-10-05 11:11:12.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:11:12.830 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:11:12.830 +03:00 [INF] Request finished in 0.5313ms 304 application/javascript +2018-10-05 11:11:12.834 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:11:12.835 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:11:12.835 +03:00 [INF] Request finished in 1.2127ms 304 application/javascript +2018-10-05 11:11:12.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:11:12.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:11:12.838 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:11:12.838 +03:00 [INF] Request finished in 0.4489ms 304 application/javascript +2018-10-05 11:11:12.838 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:11:12.838 +03:00 [INF] Request finished in 0.6728ms 304 application/javascript +2018-10-05 11:11:12.847 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:11:12.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:11:12.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:11:12.848 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:11:12.848 +03:00 [INF] Request finished in 1.0529ms 304 application/javascript +2018-10-05 11:11:12.848 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:11:12.848 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:11:12.848 +03:00 [INF] Request finished in 0.5533ms 304 application/javascript +2018-10-05 11:11:12.848 +03:00 [INF] Request finished in 0.8774ms 304 application/javascript +2018-10-05 11:11:12.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:11:12.852 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:11:12.852 +03:00 [INF] Request finished in 0.9244ms 304 application/javascript +2018-10-05 11:11:12.857 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:11:12.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:11:12.861 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:11:12.861 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:11:12.861 +03:00 [INF] Request finished in 3.7622ms 304 application/javascript +2018-10-05 11:11:12.861 +03:00 [INF] Request finished in 2.1918ms 304 application/javascript +2018-10-05 11:11:12.862 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:11:12.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:11:12.865 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:11:12.866 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:11:12.867 +03:00 [INF] Request finished in 5.2275ms 304 application/javascript +2018-10-05 11:11:12.867 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:11:12.868 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.868 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.868 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.869 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.870 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12340000000000001ms. +2018-10-05 11:11:12.870 +03:00 [INF] Authorization failed. +2018-10-05 11:11:12.871 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:11:12.871 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.7915ms +2018-10-05 11:11:12.871 +03:00 [INF] Request finished in 4.2635ms 200 text/plain; charset=utf-8 +2018-10-05 11:11:12.872 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.1778ms. +2018-10-05 11:11:12.872 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:11:12.875 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.0126ms +2018-10-05 11:11:12.875 +03:00 [INF] Request finished in 10.6544ms 200 text/plain; charset=utf-8 +2018-10-05 11:11:12.881 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:11:12.882 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:11:12.882 +03:00 [INF] Request finished in 0.8838ms 304 application/javascript +2018-10-05 11:11:12.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:11:12.888 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:11:12.889 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:11:12.889 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:11:12.889 +03:00 [INF] Request finished in 0.6475ms 304 application/javascript +2018-10-05 11:11:12.889 +03:00 [INF] Request finished in 0.6179ms 304 application/javascript +2018-10-05 11:11:12.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:11:12.897 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:11:12.897 +03:00 [INF] Request finished in 1.1276ms 304 application/javascript +2018-10-05 11:11:12.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:11:12.899 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:11:12.899 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:11:12.899 +03:00 [INF] Request finished in 1.1008ms 304 application/javascript +2018-10-05 11:11:12.899 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:11:12.900 +03:00 [INF] Request finished in 0.6048ms 304 application/javascript +2018-10-05 11:11:12.903 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:11:12.903 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:11:12.903 +03:00 [INF] Request finished in 1.3184ms 304 application/javascript +2018-10-05 11:11:12.906 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:11:12.910 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:11:12.911 +03:00 [INF] Request finished in 4.9595ms 304 application/javascript +2018-10-05 11:11:12.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:11:12.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:11:12.912 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:11:12.912 +03:00 [INF] Request finished in 0.7079ms 304 application/javascript +2018-10-05 11:11:12.913 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:11:12.913 +03:00 [INF] Request finished in 1.3174ms 304 application/javascript +2018-10-05 11:11:12.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:11:12.915 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:11:12.915 +03:00 [INF] Request finished in 0.7564ms 304 application/javascript +2018-10-05 11:11:12.917 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:11:12.917 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:11:12.917 +03:00 [INF] Request finished in 0.6477ms 304 application/javascript +2018-10-05 11:11:12.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:11:12.927 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:11:12.928 +03:00 [INF] Request finished in 0.6758ms 304 application/javascript +2018-10-05 11:11:13.135 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:11:13.136 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:11:13.136 +03:00 [INF] Request finished in 1.829ms 304 image/png +2018-10-05 11:11:13.137 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:11:13.137 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-10-05 11:11:13.138 +03:00 [INF] Request finished in 1.0224ms 304 image/png +2018-10-05 11:11:22.605 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:11:22.606 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:11:22.607 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:11:23.056 +03:00 [INF] Executed action /Documents/Project/Index in 450.6241ms +2018-10-05 11:11:23.057 +03:00 [INF] Request finished in 451.7881ms 200 text/html; charset=utf-8 +2018-10-05 11:13:24.682 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:13:24.693 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:13:24.696 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:13:25.405 +03:00 [INF] Executed action /Documents/Project/Index in 711.87020000000007ms +2018-10-05 11:13:25.406 +03:00 [INF] Request finished in 723.9411ms 200 text/html; charset=utf-8 +2018-10-05 11:13:25.437 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:13:25.438 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:13:25.438 +03:00 [INF] Request finished in 0.5724ms 304 text/css +2018-10-05 11:13:25.440 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:13:25.442 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:13:25.442 +03:00 [INF] Request finished in 1.9602ms 304 text/css +2018-10-05 11:13:25.450 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:13:25.452 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:13:25.454 +03:00 [INF] Request finished in 3.9ms 304 text/css +2018-10-05 11:13:25.458 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:13:25.458 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:13:25.459 +03:00 [INF] Request finished in 1.0218ms 304 text/css +2018-10-05 11:13:25.461 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:13:25.462 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:13:25.462 +03:00 [INF] Request finished in 1.6177ms 304 text/css +2018-10-05 11:13:25.463 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:13:25.463 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:13:25.464 +03:00 [INF] Request finished in 1.0739ms 304 text/css +2018-10-05 11:13:25.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:13:25.464 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:13:25.465 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:13:25.465 +03:00 [INF] Request finished in 0.7142ms 304 text/css +2018-10-05 11:13:25.465 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:13:25.465 +03:00 [INF] Request finished in 0.9727ms 304 text/css +2018-10-05 11:13:25.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:13:25.465 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:13:25.466 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:13:25.466 +03:00 [INF] Request finished in 0.6534ms 304 text/css +2018-10-05 11:13:25.466 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:13:25.466 +03:00 [INF] Request finished in 0.915ms 304 text/css +2018-10-05 11:13:25.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:13:25.475 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:13:25.476 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:13:25.476 +03:00 [INF] Request finished in 0.9098ms 304 text/css +2018-10-05 11:13:25.476 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:13:25.477 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:13:25.477 +03:00 [INF] Request finished in 1.5161ms 304 application/javascript +2018-10-05 11:13:25.477 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:13:25.477 +03:00 [INF] Request finished in 0.5062ms 304 application/javascript +2018-10-05 11:13:25.480 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:13:25.481 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:13:25.481 +03:00 [INF] Request finished in 1.2761ms 304 text/css +2018-10-05 11:13:25.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:13:25.490 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:13:25.491 +03:00 [INF] Request finished in 1.1586ms 304 application/javascript +2018-10-05 11:13:25.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:13:25.491 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:13:25.492 +03:00 [INF] Request finished in 1.2274ms 304 application/javascript +2018-10-05 11:13:25.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:13:25.492 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:13:25.493 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:13:25.493 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:13:25.493 +03:00 [INF] Request finished in 0.7294ms 304 application/javascript +2018-10-05 11:13:25.493 +03:00 [INF] Request finished in 0.8574ms 304 application/javascript +2018-10-05 11:13:25.495 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:13:25.497 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:13:25.497 +03:00 [INF] Request finished in 1.9776ms 304 application/javascript +2018-10-05 11:13:25.500 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:13:25.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:13:25.502 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:13:25.503 +03:00 [INF] Request finished in 2.5535ms 304 application/javascript +2018-10-05 11:13:25.503 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:13:25.504 +03:00 [INF] Request finished in 2.3456ms 304 application/javascript +2018-10-05 11:13:25.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:13:25.514 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:13:25.515 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:13:25.515 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:13:25.515 +03:00 [INF] Request finished in 0.9402ms 304 application/javascript +2018-10-05 11:13:25.515 +03:00 [INF] Request finished in 0.5313ms 304 application/javascript +2018-10-05 11:13:25.516 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:13:25.517 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:13:25.517 +03:00 [INF] Request finished in 1.0903ms 304 application/javascript +2018-10-05 11:13:25.517 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:13:25.518 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:13:25.518 +03:00 [INF] Request finished in 0.8626ms 304 application/javascript +2018-10-05 11:13:25.522 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:13:25.522 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:13:25.523 +03:00 [INF] Request finished in 0.6559ms 304 application/javascript +2018-10-05 11:13:25.531 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:13:25.532 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:13:25.532 +03:00 [INF] Request finished in 2.046ms 304 application/javascript +2018-10-05 11:13:25.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:13:25.539 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:13:25.539 +03:00 [INF] Request finished in 0.9304ms 304 application/javascript +2018-10-05 11:13:25.540 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:13:25.542 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:13:25.542 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:13:25.543 +03:00 [INF] Request finished in 2.3092ms 304 application/javascript +2018-10-05 11:13:25.544 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:13:25.544 +03:00 [INF] Request finished in 2.4548ms 304 application/javascript +2018-10-05 11:13:25.551 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:13:25.552 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:13:25.552 +03:00 [INF] Request finished in 1.1582ms 304 application/javascript +2018-10-05 11:13:25.554 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:13:25.556 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:13:25.556 +03:00 [INF] Request finished in 2.0758ms 304 application/javascript +2018-10-05 11:13:25.561 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:13:25.562 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:13:25.563 +03:00 [INF] Request finished in 1.4672ms 304 application/javascript +2018-10-05 11:13:25.567 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:13:25.568 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:13:25.568 +03:00 [INF] Request finished in 1.3878ms 304 application/javascript +2018-10-05 11:13:25.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:13:25.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:13:25.572 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:13:25.575 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:13:25.575 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.12350000000000001ms. +2018-10-05 11:13:25.575 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:13:25.576 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.3902ms +2018-10-05 11:13:25.576 +03:00 [INF] Request finished in 6.5972ms 200 text/plain; charset=utf-8 +2018-10-05 11:13:25.582 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:13:25.583 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.584 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:13:25.585 +03:00 [INF] Request finished in 1.5076ms 304 application/javascript +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.585 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:13:25.585 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Request finished in 1.2031ms 304 application/javascript +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.586 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.587 +03:00 [INF] Authorization failed. +2018-10-05 11:13:25.589 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.2036000000000007ms. +2018-10-05 11:13:25.589 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:13:25.589 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.3454000000000006ms +2018-10-05 11:13:25.589 +03:00 [INF] Request finished in 20.423ms 200 text/plain; charset=utf-8 +2018-10-05 11:13:25.596 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:13:25.597 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:13:25.598 +03:00 [INF] Request finished in 1.6069ms 304 application/javascript +2018-10-05 11:13:25.604 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:13:25.604 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:13:25.604 +03:00 [INF] Request finished in 0.7709ms 304 application/javascript +2018-10-05 11:13:25.606 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:13:25.612 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:13:25.612 +03:00 [INF] Request finished in 6.3258ms 304 application/javascript +2018-10-05 11:13:25.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:13:25.617 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:13:25.617 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:13:25.617 +03:00 [INF] Request finished in 0.9155ms 304 application/javascript +2018-10-05 11:13:25.617 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:13:25.617 +03:00 [INF] Request finished in 0.6534ms 304 application/javascript +2018-10-05 11:13:25.620 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:13:25.621 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:13:25.623 +03:00 [INF] Request finished in 3.0262ms 304 application/javascript +2018-10-05 11:13:25.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:13:25.625 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:13:25.626 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:13:25.626 +03:00 [INF] Request finished in 1.0549ms 304 application/javascript +2018-10-05 11:13:25.626 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:13:25.626 +03:00 [INF] Request finished in 0.9564ms 304 application/javascript +2018-10-05 11:13:25.629 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:13:25.630 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:13:25.630 +03:00 [INF] Request finished in 0.936ms 304 application/javascript +2018-10-05 11:13:25.635 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:13:25.636 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:13:25.636 +03:00 [INF] Request finished in 1.0555ms 304 application/javascript +2018-10-05 11:13:25.638 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:13:25.639 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:13:25.639 +03:00 [INF] Request finished in 0.82ms 304 application/javascript +2018-10-05 11:13:25.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:13:25.838 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:13:25.838 +03:00 [INF] Request finished in 0.9345ms 304 image/png +2018-10-05 11:13:25.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:13:25.843 +03:00 [INF] The file /assets/favicon.ico/favicon-16x16.png was not modified +2018-10-05 11:13:25.843 +03:00 [INF] Request finished in 1.7739ms 304 image/png +2018-10-05 11:13:33.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:13:33.742 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:13:33.742 +03:00 [INF] Request finished in 1.0583ms 200 text/css +2018-10-05 11:13:33.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:13:33.754 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:13:33.754 +03:00 [INF] Request finished in 0.9729ms 200 text/css +2018-10-05 11:13:33.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:13:33.773 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:13:33.773 +03:00 [INF] Request finished in 3.63ms 200 text/css +2018-10-05 11:13:33.792 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:13:33.794 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:13:33.794 +03:00 [INF] Request finished in 2.6353ms 200 text/css +2018-10-05 11:13:33.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:13:33.975 +03:00 [INF] Request finished in 0.6782ms 404 +2018-10-05 11:13:34.198 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:13:34.200 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:13:34.204 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:13:34.678 +03:00 [INF] Executed action /Documents/Project/Index in 477.78000000000003ms +2018-10-05 11:13:34.678 +03:00 [INF] Request finished in 479.5992ms 200 text/html; charset=utf-8 +2018-10-05 11:13:34.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:13:34.715 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:13:34.716 +03:00 [INF] Request finished in 3.9291ms 200 text/css +2018-10-05 11:13:34.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:13:34.719 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:13:34.719 +03:00 [INF] Request finished in 1.4549ms 200 text/css +2018-10-05 11:13:34.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:13:34.729 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:13:34.729 +03:00 [INF] Request finished in 1.2493ms 200 text/css +2018-10-05 11:13:34.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:13:34.731 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:13:34.732 +03:00 [INF] Request finished in 2.0593ms 200 text/css +2018-10-05 11:13:34.744 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:13:34.746 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:13:34.746 +03:00 [INF] Request finished in 1.8035ms 200 text/css +2018-10-05 11:13:34.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:13:34.754 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:13:34.754 +03:00 [INF] Request finished in 1.2193ms 200 text/css +2018-10-05 11:13:34.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:13:34.760 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:13:34.760 +03:00 [INF] Request finished in 0.9034ms 200 text/css +2018-10-05 11:13:34.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:13:34.769 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:13:34.769 +03:00 [INF] Request finished in 1.0012ms 200 text/css +2018-10-05 11:13:34.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:13:34.782 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:13:34.782 +03:00 [INF] Request finished in 0.9092ms 200 text/css +2018-10-05 11:13:34.785 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:13:34.786 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:13:34.786 +03:00 [INF] Request finished in 0.9409ms 200 text/css +2018-10-05 11:13:34.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:13:34.796 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:13:34.796 +03:00 [INF] Request finished in 2.6654ms 200 text/css +2018-10-05 11:13:34.806 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:13:34.806 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:13:34.807 +03:00 [INF] Request finished in 0.9837ms 200 text/css +2018-10-05 11:13:34.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:13:34.811 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:13:34.811 +03:00 [INF] Request finished in 0.9219ms 200 application/javascript +2018-10-05 11:13:34.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:13:34.819 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:13:34.820 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:13:34.820 +03:00 [INF] Request finished in 1.1434ms 200 application/javascript +2018-10-05 11:13:34.822 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:13:34.823 +03:00 [INF] Request finished in 7.3333ms 200 application/javascript +2018-10-05 11:13:34.829 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:13:34.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:13:34.832 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:13:34.832 +03:00 [INF] Request finished in 1.6205ms 200 application/javascript +2018-10-05 11:13:34.836 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:13:34.837 +03:00 [INF] Request finished in 7.2842ms 200 application/javascript +2018-10-05 11:13:34.838 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:13:34.839 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:13:34.839 +03:00 [INF] Request finished in 0.8235ms 200 application/javascript +2018-10-05 11:13:34.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:13:34.849 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:13:34.849 +03:00 [INF] Request finished in 1.0145ms 200 application/javascript +2018-10-05 11:13:34.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:13:34.853 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:13:34.853 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:13:34.853 +03:00 [INF] Request finished in 1.493ms 200 application/javascript +2018-10-05 11:13:34.854 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:13:34.854 +03:00 [INF] Request finished in 1.7609ms 200 application/javascript +2018-10-05 11:13:34.863 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:13:34.865 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:13:34.867 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:13:34.867 +03:00 [INF] Request finished in 2.6232ms 200 application/javascript +2018-10-05 11:13:34.870 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:13:34.871 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:13:34.871 +03:00 [INF] Request finished in 0.9843ms 200 application/javascript +2018-10-05 11:13:34.872 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:13:34.872 +03:00 [INF] Request finished in 8.8024ms 200 application/javascript +2018-10-05 11:13:34.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:13:34.878 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:13:34.879 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:13:34.879 +03:00 [INF] Request finished in 0.7339ms 200 application/javascript +2018-10-05 11:13:34.879 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:13:34.879 +03:00 [INF] Request finished in 0.966ms 200 application/javascript +2018-10-05 11:13:34.889 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:13:34.889 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:13:34.890 +03:00 [INF] Request finished in 1.1929ms 200 application/javascript +2018-10-05 11:13:34.896 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:13:34.897 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:13:34.898 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:13:34.898 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:13:34.899 +03:00 [INF] Request finished in 2.0527ms 200 application/javascript +2018-10-05 11:13:34.899 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:13:34.899 +03:00 [INF] Request finished in 1.8917ms 200 application/javascript +2018-10-05 11:13:34.900 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:13:34.901 +03:00 [INF] Request finished in 2.7483ms 200 application/javascript +2018-10-05 11:13:34.908 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:13:34.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:13:34.910 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:13:34.911 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:13:34.911 +03:00 [INF] Request finished in 1.4085ms 200 application/javascript +2018-10-05 11:13:34.911 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:13:34.911 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:13:34.912 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:13:34.912 +03:00 [INF] Request finished in 0.8104ms 200 application/javascript +2018-10-05 11:13:34.912 +03:00 [INF] Request finished in 1.6111ms 200 application/javascript +2018-10-05 11:13:34.915 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:13:34.916 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:13:34.917 +03:00 [INF] Request finished in 1.9547ms 200 application/javascript +2018-10-05 11:13:34.922 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:13:34.923 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:13:34.923 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:13:34.924 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:13:34.924 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:13:34.924 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1039ms. +2018-10-05 11:13:34.924 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.924 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:13:34.924 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.924 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.1144ms +2018-10-05 11:13:34.924 +03:00 [INF] Request finished in 2.3883ms 200 text/plain; charset=utf-8 +2018-10-05 11:13:34.924 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.924 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.924 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.925 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.926 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.927 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.927 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:13:34.927 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.927 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.927 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.927 +03:00 [INF] Authorization failed. +2018-10-05 11:13:34.928 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:13:34.928 +03:00 [INF] Request finished in 1.7507ms 200 application/javascript +2018-10-05 11:13:34.930 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 5.9731000000000005ms. +2018-10-05 11:13:34.930 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:13:34.930 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.2250000000000005ms +2018-10-05 11:13:34.930 +03:00 [INF] Request finished in 23.0863ms 200 text/plain; charset=utf-8 +2018-10-05 11:13:34.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:13:34.943 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:13:34.944 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:13:34.944 +03:00 [INF] Request finished in 0.8371ms 200 application/javascript +2018-10-05 11:13:34.944 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:13:34.944 +03:00 [INF] Request finished in 0.9856ms 200 application/javascript +2018-10-05 11:13:34.948 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:13:34.949 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:13:34.949 +03:00 [INF] Request finished in 1.0352ms 200 application/javascript +2018-10-05 11:13:34.949 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:13:34.951 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:13:34.951 +03:00 [INF] Request finished in 1.5925ms 200 application/javascript +2018-10-05 11:13:34.960 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:13:34.961 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:13:34.961 +03:00 [INF] Request finished in 0.9651ms 200 application/javascript +2018-10-05 11:13:34.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:13:34.966 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:13:34.966 +03:00 [INF] Request finished in 1.2323ms 200 application/javascript +2018-10-05 11:13:34.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:13:34.968 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:13:34.968 +03:00 [INF] Request finished in 1.8794ms 200 application/javascript +2018-10-05 11:13:34.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:13:34.980 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:13:34.980 +03:00 [INF] Request finished in 1.0238ms 200 application/javascript +2018-10-05 11:13:34.985 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:13:34.986 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:13:34.986 +03:00 [INF] Request finished in 0.8946ms 200 application/javascript +2018-10-05 11:13:34.991 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:13:34.992 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:13:34.992 +03:00 [INF] Request finished in 0.9911ms 200 application/javascript +2018-10-05 11:13:34.996 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:13:34.997 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:13:34.997 +03:00 [INF] Request finished in 1.155ms 200 application/javascript +2018-10-05 11:13:35.005 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:13:35.006 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:13:35.006 +03:00 [INF] Request finished in 1.1691ms 200 application/javascript +2018-10-05 11:13:35.194 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:13:35.196 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:13:35.196 +03:00 [INF] Request finished in 2.1714ms 200 font/woff2 +2018-10-05 11:13:35.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:13:35.307 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:13:35.307 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 11:13:35.307 +03:00 [INF] Request finished in 0.8154ms 200 image/png +2018-10-05 11:13:35.308 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 11:13:35.308 +03:00 [INF] Request finished in 0.7382ms 200 image/png +2018-10-05 11:13:35.581 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:13:35.583 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:13:35.583 +03:00 [INF] Request finished in 2.4321ms 200 text/css +2018-10-05 11:13:35.912 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:13:35.913 +03:00 [INF] Request finished in 0.8009ms 404 +2018-10-05 11:13:39.674 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:13:39.675 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:13:39.677 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:13:40.111 +03:00 [INF] Executed action /Documents/Project/Index in 436.7525ms +2018-10-05 11:13:40.112 +03:00 [INF] Request finished in 438.0456ms 200 text/html; charset=utf-8 +2018-10-05 11:14:19.149 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:14:19.156 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:14:19.158 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:14:19.946 +03:00 [INF] Executed action /Documents/Project/Index in 789.72390000000007ms +2018-10-05 11:14:19.946 +03:00 [INF] Request finished in 797.0779ms 200 text/html; charset=utf-8 +2018-10-05 11:14:19.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:14:19.994 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:14:19.995 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\css\bootstrap.css' +2018-10-05 11:14:19.995 +03:00 [INF] Request finished in 4.0114ms 200 text/css +2018-10-05 11:14:19.996 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/css/font-awesome.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\css\font-awesome.css' +2018-10-05 11:14:19.996 +03:00 [INF] Request finished in 1.3278ms 200 text/css +2018-10-05 11:14:20.001 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:14:20.002 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.css' +2018-10-05 11:14:20.002 +03:00 [INF] Request finished in 0.8663ms 200 text/css +2018-10-05 11:14:20.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:14:20.010 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-05 11:14:20.010 +03:00 [INF] Request finished in 1.0181ms 200 text/css +2018-10-05 11:14:20.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:14:20.025 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-05 11:14:20.025 +03:00 [INF] Request finished in 1.6593ms 200 text/css +2018-10-05 11:14:20.029 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:14:20.031 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-styles.css' +2018-10-05 11:14:20.031 +03:00 [INF] Request finished in 1.8477ms 200 text/css +2018-10-05 11:14:20.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:14:20.040 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:14:20.040 +03:00 [INF] Request finished in 1.1577ms 200 text/css +2018-10-05 11:14:20.049 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:14:20.050 +03:00 [INF] Sending file. Request path: '/lib/prismjs/themes/prism-okaidia.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\themes\prism-okaidia.css' +2018-10-05 11:14:20.050 +03:00 [INF] Request finished in 1.6236ms 200 text/css +2018-10-05 11:14:20.051 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:14:20.052 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.css' +2018-10-05 11:14:20.052 +03:00 [INF] Request finished in 1.1746ms 200 text/css +2018-10-05 11:14:20.075 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:14:20.076 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.css' +2018-10-05 11:14:20.076 +03:00 [INF] Request finished in 1.6871ms 200 text/css +2018-10-05 11:14:20.084 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:14:20.085 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.min.css' +2018-10-05 11:14:20.086 +03:00 [INF] Request finished in 1.8113ms 200 text/css +2018-10-05 11:14:20.087 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:14:20.088 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.css' +2018-10-05 11:14:20.088 +03:00 [INF] Request finished in 1.7701ms 200 text/css +2018-10-05 11:14:20.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:14:20.096 +03:00 [INF] Sending file. Request path: '/libs/abp/core/abp.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\core\abp.js' +2018-10-05 11:14:20.097 +03:00 [INF] Request finished in 2.589ms 200 application/javascript +2018-10-05 11:14:20.099 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:14:20.100 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:14:20.101 +03:00 [INF] Sending file. Request path: '/libs/abp/jquery/abp.jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\abp\jquery\abp.jquery.js' +2018-10-05 11:14:20.101 +03:00 [INF] Request finished in 1.5346ms 200 application/javascript +2018-10-05 11:14:20.104 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:14:20.105 +03:00 [INF] Sending file. Request path: '/libs/jquery/jquery.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery\jquery.js' +2018-10-05 11:14:20.105 +03:00 [INF] Request finished in 4.9807ms 200 application/javascript +2018-10-05 11:14:20.108 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\bootstrap\js\bootstrap.bundle.js' +2018-10-05 11:14:20.108 +03:00 [INF] Request finished in 4.5761ms 200 application/javascript +2018-10-05 11:14:20.116 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:14:20.118 +03:00 [INF] Sending file. Request path: '/libs/lodash/lodash.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\lodash\lodash.min.js' +2018-10-05 11:14:20.118 +03:00 [INF] Request finished in 2.0115ms 200 application/javascript +2018-10-05 11:14:20.121 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:14:20.122 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation/jquery.validate.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation\jquery.validate.js' +2018-10-05 11:14:20.122 +03:00 [INF] Request finished in 1.0343ms 200 application/javascript +2018-10-05 11:14:20.125 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:14:20.126 +03:00 [INF] Sending file. Request path: '/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js' +2018-10-05 11:14:20.126 +03:00 [INF] Request finished in 1.0475ms 200 application/javascript +2018-10-05 11:14:20.131 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:14:20.132 +03:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\jquery-form\jquery.form.min.js' +2018-10-05 11:14:20.133 +03:00 [INF] Request finished in 1.6935ms 200 application/javascript +2018-10-05 11:14:20.138 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:14:20.139 +03:00 [INF] Sending file. Request path: '/libs/select2/js/select2.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\js\select2.min.js' +2018-10-05 11:14:20.140 +03:00 [INF] Request finished in 2.2991ms 200 application/javascript +2018-10-05 11:14:20.144 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:14:20.156 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:14:20.157 +03:00 [INF] Sending file. Request path: '/libs/sweetalert/sweetalert.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\sweetalert\sweetalert.min.js' +2018-10-05 11:14:20.157 +03:00 [INF] Request finished in 1.5983ms 200 application/javascript +2018-10-05 11:14:20.158 +03:00 [INF] Sending file. Request path: '/libs/datatables.net/js/jquery.dataTables.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net\js\jquery.dataTables.js' +2018-10-05 11:14:20.158 +03:00 [INF] Request finished in 14.5857ms 200 application/javascript +2018-10-05 11:14:20.162 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:14:20.163 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/js/dataTables.bootstrap4.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\js\dataTables.bootstrap4.js' +2018-10-05 11:14:20.164 +03:00 [INF] Request finished in 1.888ms 200 application/javascript +2018-10-05 11:14:20.165 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:14:20.168 +03:00 [INF] Sending file. Request path: '/libs/timeago/jquery.timeago.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\timeago\jquery.timeago.js' +2018-10-05 11:14:20.168 +03:00 [INF] Request finished in 2.6798ms 200 application/javascript +2018-10-05 11:14:20.168 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:14:20.169 +03:00 [INF] Sending file. Request path: '/libs/toastr/toastr.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\toastr\toastr.min.js' +2018-10-05 11:14:20.169 +03:00 [INF] Request finished in 0.8794ms 200 application/javascript +2018-10-05 11:14:20.173 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:14:20.174 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery\jquery-extensions.js' +2018-10-05 11:14:20.174 +03:00 [INF] Request finished in 1.4423ms 200 application/javascript +2018-10-05 11:14:20.183 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:14:20.184 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\jquery-form\jquery-form-extensions.js' +2018-10-05 11:14:20.184 +03:00 [INF] Request finished in 1.3883ms 200 application/javascript +2018-10-05 11:14:20.188 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:14:20.189 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\dom-event-handlers.js' +2018-10-05 11:14:20.189 +03:00 [INF] Request finished in 1.1085ms 200 application/javascript +2018-10-05 11:14:20.200 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:14:20.202 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:14:20.202 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\datatables\datatables-extensions.js' +2018-10-05 11:14:20.202 +03:00 [INF] Request finished in 2.2323ms 200 application/javascript +2018-10-05 11:14:20.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:14:20.205 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:14:20.205 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\bootstrap\modal-manager.js' +2018-10-05 11:14:20.205 +03:00 [INF] Request finished in 3.6413ms 200 application/javascript +2018-10-05 11:14:20.206 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\sweetalert\abp-sweetalert.js' +2018-10-05 11:14:20.206 +03:00 [INF] Request finished in 0.989ms 200 application/javascript +2018-10-05 11:14:20.206 +03:00 [INF] Sending file. Request path: '/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js'. Physical path: 'D:\Github\abp\framework\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared\wwwroot\libs\abp\aspnetcore-mvc-ui-theme-shared\toastr\abp-toastr.js' +2018-10-05 11:14:20.206 +03:00 [INF] Request finished in 1.2302ms 200 application/javascript +2018-10-05 11:14:20.207 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:14:20.209 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-05 11:14:20.210 +03:00 [INF] Request finished in 2.4054ms 200 application/javascript +2018-10-05 11:14:20.211 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:14:20.213 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:14:20.219 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:14:20.220 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:14:20.220 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2843ms. +2018-10-05 11:14:20.220 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:14:20.221 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0738000000000003ms +2018-10-05 11:14:20.221 +03:00 [INF] Request finished in 9.5822ms 200 text/plain; charset=utf-8 +2018-10-05 11:14:20.225 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:14:20.225 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:14:20.226 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:14:20.226 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Sending file. Request path: '/lib/anchor-js/anchor.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\anchor-js\anchor.js' +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.226 +03:00 [INF] Request finished in 0.7921ms 200 application/javascript +2018-10-05 11:14:20.226 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.227 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.228 +03:00 [INF] Authorization failed. +2018-10-05 11:14:20.229 +03:00 [INF] Sending file. Request path: '/Pages/Documents/Project/index.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\Project\index.js' +2018-10-05 11:14:20.229 +03:00 [INF] Request finished in 5.1842ms 200 application/javascript +2018-10-05 11:14:20.233 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.1665ms. +2018-10-05 11:14:20.233 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:14:20.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:14:20.234 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:14:20.233 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.5267ms +2018-10-05 11:14:20.235 +03:00 [INF] Request finished in 22.1689ms 200 text/plain; charset=utf-8 +2018-10-05 11:14:20.235 +03:00 [INF] Sending file. Request path: '/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\mCustomScrollbar\jquery.mCustomScrollbar.concat.min.js' +2018-10-05 11:14:20.235 +03:00 [INF] Sending file. Request path: '/lib/prismjs/prism.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\prism.js' +2018-10-05 11:14:20.235 +03:00 [INF] Request finished in 1.0298ms 200 application/javascript +2018-10-05 11:14:20.235 +03:00 [INF] Request finished in 0.9054ms 200 application/javascript +2018-10-05 11:14:20.240 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:14:20.246 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:14:20.247 +03:00 [INF] Sending file. Request path: '/lib/clipboard/dist/clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\clipboard\dist\clipboard.js' +2018-10-05 11:14:20.247 +03:00 [INF] Request finished in 6.8672ms 200 application/javascript +2018-10-05 11:14:20.248 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/toolbar/prism-toolbar.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\toolbar\prism-toolbar.js' +2018-10-05 11:14:20.248 +03:00 [INF] Request finished in 1.4517ms 200 application/javascript +2018-10-05 11:14:20.255 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:14:20.256 +03:00 [INF] Sending file. Request path: '/lib/prismjs/components/prism-csharp.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\components\prism-csharp.js' +2018-10-05 11:14:20.257 +03:00 [INF] Request finished in 1.2712ms 200 application/javascript +2018-10-05 11:14:20.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:14:20.257 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:14:20.258 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/show-language/prism-show-language.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\show-language\prism-show-language.js' +2018-10-05 11:14:20.258 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\copy-to-clipboard\prism-copy-to-clipboard.js' +2018-10-05 11:14:20.258 +03:00 [INF] Request finished in 0.8862ms 200 application/javascript +2018-10-05 11:14:20.258 +03:00 [INF] Request finished in 0.9445ms 200 application/javascript +2018-10-05 11:14:20.258 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:14:20.259 +03:00 [INF] Sending file. Request path: '/lib/prismjs/plugins/line-highlight/prism-line-highlight.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\prismjs\plugins\line-highlight\prism-line-highlight.js' +2018-10-05 11:14:20.259 +03:00 [INF] Request finished in 0.9082ms 200 application/javascript +2018-10-05 11:14:20.275 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:14:20.276 +03:00 [INF] Sending file. Request path: '/lib/popper.js/dist/umd/popper.min.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\popper.js\dist\umd\popper.min.js' +2018-10-05 11:14:20.276 +03:00 [INF] Request finished in 1.5124ms 200 application/javascript +2018-10-05 11:14:20.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:14:20.277 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:14:20.277 +03:00 [INF] Sending file. Request path: '/lib/bootstrap-toc/bootstrap-toc.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\wwwroot\lib\bootstrap-toc\bootstrap-toc.js' +2018-10-05 11:14:20.278 +03:00 [INF] Request finished in 0.889ms 200 application/javascript +2018-10-05 11:14:20.278 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.js'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.js' +2018-10-05 11:14:20.278 +03:00 [INF] Request finished in 1.1945ms 200 application/javascript +2018-10-05 11:14:20.466 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:14:20.468 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-05 11:14:20.468 +03:00 [INF] Request finished in 1.9056ms 200 font/woff2 +2018-10-05 11:14:20.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:14:20.570 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/apple-touch-icon.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\apple-touch-icon.png' +2018-10-05 11:14:20.570 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-16x16.png +2018-10-05 11:14:20.570 +03:00 [INF] Request finished in 0.9378ms 200 image/png +2018-10-05 11:14:20.571 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-16x16.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-16x16.png' +2018-10-05 11:14:20.571 +03:00 [INF] Request finished in 0.931ms 200 image/png +2018-10-05 11:14:20.771 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:14:20.772 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-05 11:14:20.772 +03:00 [INF] Request finished in 0.9849ms 200 text/css +2018-10-05 11:14:21.244 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css.map +2018-10-05 11:14:21.245 +03:00 [INF] Request finished in 0.9053ms 404 +2018-10-05 11:14:55.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:14:55.850 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:14:55.853 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:14:56.679 +03:00 [INF] Executed action /Documents/Project/Index in 828.5363ms +2018-10-05 11:14:56.679 +03:00 [INF] Request finished in 837.5606ms 200 text/html; charset=utf-8 +2018-10-05 11:14:56.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:14:56.712 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:14:56.713 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:14:56.713 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:14:56.713 +03:00 [INF] Request finished in 0.6053ms 304 text/css +2018-10-05 11:14:56.713 +03:00 [INF] Request finished in 0.4988ms 304 text/css +2018-10-05 11:14:56.723 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:14:56.724 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:14:56.724 +03:00 [INF] Request finished in 0.8236ms 304 text/css +2018-10-05 11:14:56.730 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:14:56.731 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:14:56.731 +03:00 [INF] Request finished in 0.6873ms 304 text/css +2018-10-05 11:14:56.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:14:56.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:14:56.737 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:14:56.737 +03:00 [INF] Request finished in 2.4781ms 304 text/css +2018-10-05 11:14:56.737 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:14:56.737 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:14:56.737 +03:00 [INF] Request finished in 0.544ms 304 text/css +2018-10-05 11:14:56.738 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:14:56.738 +03:00 [INF] Request finished in 0.6807ms 304 text/css +2018-10-05 11:14:56.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:14:56.738 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:14:56.739 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:14:56.739 +03:00 [INF] Request finished in 1.522ms 304 text/css +2018-10-05 11:14:56.740 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:14:56.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:14:56.744 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:14:56.744 +03:00 [INF] Request finished in 0.8124ms 304 text/css +2018-10-05 11:14:56.745 +03:00 [INF] Request finished in 6.3425ms 304 text/css +2018-10-05 11:14:56.754 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:14:56.755 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:14:56.755 +03:00 [INF] Request finished in 1.4038ms 304 text/css +2018-10-05 11:14:56.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:14:56.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:14:56.755 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:14:56.755 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:14:56.755 +03:00 [INF] Request finished in 0.4374ms 304 application/javascript +2018-10-05 11:14:56.756 +03:00 [INF] Request finished in 0.4449ms 304 text/css +2018-10-05 11:14:56.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:14:56.759 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:14:56.759 +03:00 [INF] Request finished in 2.3363ms 304 application/javascript +2018-10-05 11:14:56.759 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:14:56.760 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:14:56.760 +03:00 [INF] Request finished in 0.5966ms 304 application/javascript +2018-10-05 11:14:56.761 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:14:56.761 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:14:56.761 +03:00 [INF] Request finished in 0.7345ms 304 application/javascript +2018-10-05 11:14:56.773 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:14:56.773 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:14:56.773 +03:00 [INF] Request finished in 1.1994ms 304 application/javascript +2018-10-05 11:14:56.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:14:56.774 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:14:56.775 +03:00 [INF] Request finished in 0.8062ms 304 application/javascript +2018-10-05 11:14:56.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:14:56.779 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:14:56.780 +03:00 [INF] Request finished in 2.4487ms 304 application/javascript +2018-10-05 11:14:56.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:14:56.788 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:14:56.788 +03:00 [INF] Request finished in 3.3819ms 304 application/javascript +2018-10-05 11:14:56.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:14:56.789 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:14:56.789 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:14:56.789 +03:00 [INF] Request finished in 0.609ms 304 application/javascript +2018-10-05 11:14:56.789 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:14:56.789 +03:00 [INF] Request finished in 0.4193ms 304 application/javascript +2018-10-05 11:14:56.791 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:14:56.791 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:14:56.791 +03:00 [INF] Request finished in 0.7902ms 304 application/javascript +2018-10-05 11:14:56.794 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:14:56.794 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:14:56.794 +03:00 [INF] Request finished in 0.7421ms 304 application/javascript +2018-10-05 11:14:56.795 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:14:56.796 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:14:56.797 +03:00 [INF] Request finished in 1.5542ms 304 application/javascript +2018-10-05 11:14:56.797 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:14:56.803 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:14:56.802 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:14:56.803 +03:00 [INF] Request finished in 6.2323ms 304 application/javascript +2018-10-05 11:14:56.804 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:14:56.804 +03:00 [INF] Request finished in 1.6649ms 304 application/javascript +2018-10-05 11:14:56.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:14:56.808 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:14:56.808 +03:00 [INF] Request finished in 1.5229ms 304 application/javascript +2018-10-05 11:14:56.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:14:56.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:14:56.813 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:14:56.813 +03:00 [INF] Request finished in 1.0111ms 304 application/javascript +2018-10-05 11:14:56.814 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:14:56.814 +03:00 [INF] Request finished in 1.8052ms 304 application/javascript +2018-10-05 11:14:56.814 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:14:56.816 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:14:56.816 +03:00 [INF] Request finished in 1.9766ms 304 application/javascript +2018-10-05 11:14:56.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:14:56.821 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:14:56.821 +03:00 [INF] Request finished in 0.8359ms 304 application/javascript +2018-10-05 11:14:56.825 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:14:56.826 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:14:56.826 +03:00 [INF] Request finished in 0.6226ms 304 application/javascript +2018-10-05 11:14:56.841 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:14:56.842 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:14:56.842 +03:00 [INF] Request finished in 1.0498ms 304 application/javascript +2018-10-05 11:14:56.859 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:14:56.864 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:14:56.865 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.865 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.866 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.867 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.867 +03:00 [INF] Authorization failed. +2018-10-05 11:14:56.869 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3226ms. +2018-10-05 11:14:56.869 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:14:56.870 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 5.7321ms +2018-10-05 11:14:56.870 +03:00 [INF] Request finished in 10.7962ms 200 text/plain; charset=utf-8 +2018-10-05 11:14:56.876 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:14:56.877 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:14:56.877 +03:00 [INF] Request finished in 0.5856ms 304 application/javascript +2018-10-05 11:14:56.877 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:14:56.880 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:14:56.881 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:14:56.881 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.17ms. +2018-10-05 11:14:56.881 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:14:56.882 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.6532ms +2018-10-05 11:14:56.882 +03:00 [INF] Request finished in 5.0938ms 200 text/plain; charset=utf-8 +2018-10-05 11:14:56.904 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:14:56.905 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:14:56.906 +03:00 [INF] Request finished in 1.2824ms 304 application/javascript +2018-10-05 11:14:56.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:14:56.926 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:14:56.926 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:14:56.927 +03:00 [INF] Request finished in 0.7599ms 304 application/javascript +2018-10-05 11:14:56.927 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:14:56.927 +03:00 [INF] Request finished in 0.9266ms 304 application/javascript +2018-10-05 11:14:56.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:14:56.930 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:14:56.930 +03:00 [INF] Request finished in 0.544ms 304 application/javascript +2018-10-05 11:14:56.940 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:14:56.940 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:14:56.940 +03:00 [INF] Request finished in 0.599ms 304 application/javascript +2018-10-05 11:14:56.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:14:56.967 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:14:56.969 +03:00 [INF] Request finished in 1.3407ms 304 application/javascript +2018-10-05 11:14:56.970 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:14:56.971 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:14:56.971 +03:00 [INF] Request finished in 1.2695ms 304 application/javascript +2018-10-05 11:14:56.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:14:56.972 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:14:56.972 +03:00 [INF] Request finished in 0.5485ms 304 application/javascript +2018-10-05 11:14:56.974 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:14:56.974 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:14:56.975 +03:00 [INF] Request finished in 1.1464ms 304 application/javascript +2018-10-05 11:14:56.976 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:14:56.977 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:14:56.977 +03:00 [INF] Request finished in 4.0579ms 304 application/javascript +2018-10-05 11:14:56.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:14:56.983 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:14:56.983 +03:00 [INF] Request finished in 1.2057ms 304 application/javascript +2018-10-05 11:14:56.988 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:14:56.989 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:14:56.989 +03:00 [INF] Request finished in 0.6775ms 304 application/javascript +2018-10-05 11:14:57.069 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:14:57.070 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:14:57.071 +03:00 [INF] Request finished in 1.1983ms 304 image/png +2018-10-05 11:14:57.074 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 11:14:57.075 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-10-05 11:14:57.075 +03:00 [INF] Request finished in 0.5407ms 304 image/png +2018-10-05 11:15:35.253 +03:00 [INF] Loaded modules: +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-05 11:15:35.274 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-05 11:15:35.275 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-05 11:15:35.276 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-05 11:15:35.277 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-05 11:15:35.277 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-05 11:15:35.277 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-05 11:15:35.277 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-05 11:15:35.277 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-05 11:15:37.396 +03:00 [INF] Initialized all modules. +2018-10-05 11:15:37.760 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:15:40.346 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:15:40.453 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:15:43.584 +03:00 [INF] Executed action /Documents/Project/Index in 3232.6004000000003ms +2018-10-05 11:15:43.593 +03:00 [INF] Request finished in 5836.2634ms 200 text/html; charset=utf-8 +2018-10-05 11:15:43.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:15:43.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:15:43.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:15:43.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:15:43.635 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:15:43.635 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:15:43.635 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:15:43.636 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:15:43.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=636662026164862248 +2018-10-05 11:15:43.636 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:15:43.637 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:15:43.638 +03:00 [INF] Request finished in 5.987ms 304 text/css +2018-10-05 11:15:43.638 +03:00 [INF] Request finished in 8.4199ms 304 text/css +2018-10-05 11:15:43.638 +03:00 [INF] Request finished in 8.3963ms 304 text/css +2018-10-05 11:15:43.638 +03:00 [INF] Request finished in 7.8137ms 304 text/css +2018-10-05 11:15:43.638 +03:00 [INF] Request finished in 1.7024ms 304 text/css +2018-10-05 11:15:43.639 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified +2018-10-05 11:15:43.641 +03:00 [INF] Request finished in 4.4678ms 304 text/css +2018-10-05 11:15:43.657 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-05 11:15:43.657 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-05 11:15:43.658 +03:00 [INF] Request finished in 0.6926ms 304 text/css +2018-10-05 11:15:43.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-05 11:15:43.660 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636741619187863713 +2018-10-05 11:15:43.661 +03:00 [INF] The file /Pages/Documents/vs.css was not modified +2018-10-05 11:15:43.661 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-05 11:15:43.661 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-05 11:15:43.661 +03:00 [INF] Request finished in 0.6808ms 304 text/css +2018-10-05 11:15:43.661 +03:00 [INF] Request finished in 0.6734ms 304 text/css +2018-10-05 11:15:43.663 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-05 11:15:43.664 +03:00 [INF] Request finished in 3.086ms 304 text/css +2018-10-05 11:15:43.664 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-05 11:15:43.665 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-05 11:15:43.666 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-05 11:15:43.666 +03:00 [INF] Request finished in 1.107ms 304 text/css +2018-10-05 11:15:43.666 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-05 11:15:43.666 +03:00 [INF] Request finished in 0.8636ms 304 text/css +2018-10-05 11:15:43.673 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:15:43.673 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:15:43.673 +03:00 [INF] Request finished in 0.7538ms 304 application/javascript +2018-10-05 11:15:43.677 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:15:43.678 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:15:43.679 +03:00 [INF] Request finished in 1.3457ms 304 application/javascript +2018-10-05 11:15:43.679 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:15:43.682 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:15:43.682 +03:00 [INF] Request finished in 2.488ms 304 application/javascript +2018-10-05 11:15:43.683 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:15:43.683 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:15:43.683 +03:00 [INF] Request finished in 0.8887ms 304 application/javascript +2018-10-05 11:15:43.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:15:43.684 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:15:43.684 +03:00 [INF] Request finished in 0.6321ms 304 application/javascript +2018-10-05 11:15:43.684 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:15:43.685 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:15:43.685 +03:00 [INF] Request finished in 1.5413ms 304 application/javascript +2018-10-05 11:15:43.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:15:43.696 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:15:43.697 +03:00 [INF] Request finished in 2.3627ms 304 application/javascript +2018-10-05 11:15:43.699 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:15:43.700 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:15:43.700 +03:00 [INF] Request finished in 1.0194ms 304 application/javascript +2018-10-05 11:15:43.702 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:15:43.702 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:15:43.703 +03:00 [INF] Request finished in 0.8919ms 304 application/javascript +2018-10-05 11:15:43.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:15:43.703 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:15:43.704 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:15:43.704 +03:00 [INF] Request finished in 0.983ms 304 application/javascript +2018-10-05 11:15:43.704 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:15:43.704 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:15:43.704 +03:00 [INF] Request finished in 0.4719ms 304 application/javascript +2018-10-05 11:15:43.705 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:15:43.706 +03:00 [INF] Request finished in 2.8988ms 304 application/javascript +2018-10-05 11:15:43.717 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:15:43.718 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:15:43.718 +03:00 [INF] Request finished in 1.3955ms 304 application/javascript +2018-10-05 11:15:43.718 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=636634793200502732 +2018-10-05 11:15:43.719 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified +2018-10-05 11:15:43.719 +03:00 [INF] Request finished in 0.6971ms 304 application/javascript +2018-10-05 11:15:43.722 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:15:43.723 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:15:43.723 +03:00 [INF] Request finished in 0.5438ms 304 application/javascript +2018-10-05 11:15:43.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=636634793200502732 +2018-10-05 11:15:43.726 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified +2018-10-05 11:15:43.726 +03:00 [INF] Request finished in 2.9571ms 304 application/javascript +2018-10-05 11:15:43.726 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=636675994690052836 +2018-10-05 11:15:43.727 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified +2018-10-05 11:15:43.727 +03:00 [INF] Request finished in 0.9177ms 304 application/javascript +2018-10-05 11:15:43.728 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=636634793200502732 +2018-10-05 11:15:43.729 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified +2018-10-05 11:15:43.730 +03:00 [INF] Request finished in 1.9323ms 304 application/javascript +2018-10-05 11:15:43.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-05 11:15:43.736 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=636662203982800995 +2018-10-05 11:15:43.737 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-05 11:15:43.737 +03:00 [INF] Request finished in 0.9547ms 304 application/javascript +2018-10-05 11:15:43.737 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified +2018-10-05 11:15:43.738 +03:00 [INF] Request finished in 1.7332ms 304 application/javascript +2018-10-05 11:15:43.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636737144947163067 +2018-10-05 11:15:43.743 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=636634793200502732 +2018-10-05 11:15:43.745 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified +2018-10-05 11:15:43.745 +03:00 [INF] The file /Pages/Identity/Shared/change-password-modal.js was not modified +2018-10-05 11:15:43.745 +03:00 [INF] Request finished in 4.6509ms 304 application/javascript +2018-10-05 11:15:43.745 +03:00 [INF] Request finished in 2.5162ms 304 application/javascript +2018-10-05 11:15:43.753 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:15:43.756 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:15:43.776 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-05 11:15:43.777 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-05 11:15:43.777 +03:00 [INF] Request finished in 0.9038ms 304 application/javascript +2018-10-05 11:15:43.781 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:15:43.781 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:15:43.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-05 11:15:43.783 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-05 11:15:43.783 +03:00 [INF] Request finished in 1.1205ms 304 application/javascript +2018-10-05 11:15:43.784 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/anchor-js/anchor.js?_v=636634802414204952 +2018-10-05 11:15:43.784 +03:00 [INF] The file /lib/anchor-js/anchor.js was not modified +2018-10-05 11:15:43.784 +03:00 [INF] Request finished in 0.8472ms 304 application/javascript +2018-10-05 11:15:43.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-05 11:15:43.810 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-05 11:15:43.811 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-05 11:15:43.811 +03:00 [INF] Request finished in 1.3186ms 304 application/javascript +2018-10-05 11:15:43.814 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-05 11:15:43.814 +03:00 [INF] Request finished in 4.683ms 304 application/javascript +2018-10-05 11:15:43.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-05 11:15:43.817 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-05 11:15:43.817 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-05 11:15:43.817 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-05 11:15:43.817 +03:00 [INF] Request finished in 0.7251ms 304 application/javascript +2018-10-05 11:15:43.817 +03:00 [INF] Request finished in 0.6434ms 304 application/javascript +2018-10-05 11:15:43.824 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-05 11:15:43.825 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-05 11:15:43.826 +03:00 [INF] Request finished in 1.2303ms 304 application/javascript +2018-10-05 11:15:43.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-05 11:15:43.832 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-05 11:15:43.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-05 11:15:43.832 +03:00 [INF] Request finished in 0.8149ms 304 application/javascript +2018-10-05 11:15:43.832 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-05 11:15:43.832 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-05 11:15:43.833 +03:00 [INF] Request finished in 0.5798ms 304 application/javascript +2018-10-05 11:15:43.833 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-05 11:15:43.833 +03:00 [INF] Request finished in 0.7505ms 304 application/javascript +2018-10-05 11:15:43.837 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.js?_v=636634802414415718 +2018-10-05 11:15:43.838 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.js was not modified +2018-10-05 11:15:43.839 +03:00 [INF] Request finished in 1.295ms 304 application/javascript +2018-10-05 11:15:43.843 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-05 11:15:43.845 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-05 11:15:43.845 +03:00 [INF] Request finished in 1.6307ms 304 application/javascript +2018-10-05 11:15:43.852 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:15:43.857 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:15:43.893 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.893 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.910 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.911 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.912 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.913 +03:00 [INF] Authorization failed. +2018-10-05 11:15:43.970 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 107.2265ms. +2018-10-05 11:15:43.970 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 116.5661ms. +2018-10-05 11:15:43.976 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:15:43.976 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:15:43.977 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 194.9111ms +2018-10-05 11:15:43.977 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 194.95610000000002ms +2018-10-05 11:15:43.977 +03:00 [INF] Request finished in 223.9782ms 200 text/plain; charset=utf-8 +2018-10-05 11:15:43.977 +03:00 [INF] Request finished in 220.3626ms 200 text/plain; charset=utf-8 +2018-10-05 11:15:44.022 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/apple-touch-icon.png +2018-10-05 11:15:44.023 +03:00 [INF] The file /assets/favicon.ico/apple-touch-icon.png was not modified +2018-10-05 11:15:44.023 +03:00 [INF] Request finished in 0.7281ms 304 image/png +2018-10-05 11:15:44.023 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 11:15:44.024 +03:00 [INF] The file /assets/favicon.ico/favicon-32x32.png was not modified +2018-10-05 11:15:44.024 +03:00 [INF] Request finished in 0.549ms 304 image/png +2018-10-05 11:15:49.966 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Localization +2018-10-05 11:15:49.972 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:49.972 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:49.973 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:15:49.975 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:15:50.687 +03:00 [INF] Executed action /Documents/Project/Index in 714.55410000000006ms +2018-10-05 11:15:50.688 +03:00 [INF] Request finished in 721.9302ms 200 text/html; charset=utf-8 +2018-10-05 11:15:50.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:15:50.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:15:50.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.715 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.715 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:15:50.715 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:15:50.715 +03:00 [INF] Request finished in 0.8622ms 304 text/css +2018-10-05 11:15:50.716 +03:00 [INF] Request finished in 0.8253ms 304 text/css +2018-10-05 11:15:50.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:15:50.724 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.724 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.724 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:15:50.724 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:15:50.724 +03:00 [INF] Request finished in 0.907ms 304 text/css +2018-10-05 11:15:50.724 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.724 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.725 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:15:50.725 +03:00 [INF] Request finished in 0.9187ms 304 text/css +2018-10-05 11:15:50.725 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:15:50.726 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.726 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.726 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:15:50.726 +03:00 [INF] Request finished in 0.6594ms 304 text/css +2018-10-05 11:15:50.745 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:15:50.745 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.745 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.745 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:15:50.745 +03:00 [INF] Request finished in 0.8752ms 304 application/javascript +2018-10-05 11:15:50.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:15:50.746 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:15:50.747 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.747 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.747 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.747 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.747 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:15:50.747 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:15:50.747 +03:00 [INF] Request finished in 1.2196ms 304 application/javascript +2018-10-05 11:15:50.747 +03:00 [INF] Request finished in 1.2531ms 304 application/javascript +2018-10-05 11:15:50.748 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:15:50.748 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.750 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.751 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:15:50.752 +03:00 [INF] Request finished in 3.5217ms 304 application/javascript +2018-10-05 11:15:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:15:50.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:15:50.752 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.752 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.753 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.753 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.753 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:15:50.754 +03:00 [INF] Request finished in 1.3477ms 304 application/javascript +2018-10-05 11:15:50.755 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:15:50.755 +03:00 [INF] Request finished in 3.2548ms 304 application/javascript +2018-10-05 11:15:50.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:15:50.757 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:15:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.758 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.758 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:15:50.759 +03:00 [INF] Request finished in 1.7182ms 304 application/javascript +2018-10-05 11:15:50.759 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.759 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.760 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:15:50.760 +03:00 [INF] Request finished in 3.1855ms 304 application/javascript +2018-10-05 11:15:50.762 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:15:50.763 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.763 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.763 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:15:50.763 +03:00 [INF] Request finished in 1.2908ms 304 application/javascript +2018-10-05 11:15:50.766 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:15:50.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.766 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.766 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:15:50.767 +03:00 [INF] Request finished in 0.76ms 304 application/javascript +2018-10-05 11:15:50.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:15:50.767 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:15:50.767 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.767 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.767 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.768 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.768 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:15:50.768 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:15:50.768 +03:00 [INF] Request finished in 0.7448ms 304 application/javascript +2018-10-05 11:15:50.768 +03:00 [INF] Request finished in 0.7886ms 304 application/javascript +2018-10-05 11:15:50.769 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:15:50.770 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:15:50.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.773 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:15:50.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.773 +03:00 [INF] Request finished in 2.9869ms 304 application/javascript +2018-10-05 11:15:50.773 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.774 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:15:50.774 +03:00 [INF] Request finished in 4.6345ms 304 application/javascript +2018-10-05 11:15:50.775 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:15:50.776 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.776 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.777 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:15:50.778 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.779 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.780 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.782 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.783 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.783 +03:00 [INF] Authorization failed. +2018-10-05 11:15:50.783 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:15:50.784 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:15:50.784 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2238ms. +2018-10-05 11:15:50.785 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:15:50.785 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.0786000000000007ms. +2018-10-05 11:15:50.785 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.5083ms +2018-10-05 11:15:50.786 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:15:50.786 +03:00 [INF] Request finished in 6.8018ms 200 text/plain; charset=utf-8 +2018-10-05 11:15:50.786 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.541500000000001ms +2018-10-05 11:15:50.787 +03:00 [INF] Request finished in 12.0386ms 200 text/plain; charset=utf-8 +2018-10-05 11:15:50.901 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-05 11:15:50.901 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.901 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:50.901 +03:00 [INF] The file /libs/font-awesome/fonts/fontawesome-webfont.woff2 was not modified +2018-10-05 11:15:50.901 +03:00 [INF] Request finished in 0.9318ms 304 font/woff2 +2018-10-05 11:15:51.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/favicon.ico/favicon-32x32.png +2018-10-05 11:15:51.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:51.410 +03:00 [WRN] AcceptLanguageHeaderRequestCultureProvider returned the following unsupported UI Cultures '["tr-TR","tr","en-GB"]'. +2018-10-05 11:15:51.422 +03:00 [INF] Sending file. Request path: '/assets/favicon.ico/favicon-32x32.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\favicon.ico\favicon-32x32.png' +2018-10-05 11:15:51.428 +03:00 [INF] Request finished in 19.1274ms 200 image/png +2018-10-05 11:17:12.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp +2018-10-05 11:17:12.506 +03:00 [INF] Request finished in 3.2041ms 404 +2018-10-05 11:17:12.535 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-10-05 11:17:12.536 +03:00 [INF] Request finished in 1.1775ms 404 +2018-10-05 11:17:14.815 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp +2018-10-05 11:17:14.815 +03:00 [INF] Request finished in 0.4996ms 404 +2018-10-05 11:17:14.835 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/favicon.ico +2018-10-05 11:17:14.836 +03:00 [INF] Request finished in 1.1927ms 404 +2018-10-05 11:17:18.081 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-10-05 11:17:18.363 +03:00 [INF] Route matched with {page = "/Documents/Index", controller = "", area = "", action = ""}. Executing action /Documents/Index +2018-10-05 11:17:18.365 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:17:18.402 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Project/Index. +2018-10-05 11:17:18.402 +03:00 [INF] Executed action /Documents/Index in 39.3187ms +2018-10-05 11:17:18.402 +03:00 [INF] Request finished in 321.2975ms 302 +2018-10-05 11:17:18.411 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 11:17:18.412 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:17:18.414 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:17:19.302 +03:00 [INF] Executed action /Documents/Project/Index in 889.9718ms +2018-10-05 11:17:19.302 +03:00 [INF] Request finished in 891.0506ms 200 text/html; charset=utf-8 +2018-10-05 11:17:19.389 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:17:19.391 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:17:19.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:17:19.392 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:17:19.392 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.393 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.395 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:17:19.395 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1042ms. +2018-10-05 11:17:19.395 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:17:19.395 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.0424ms +2018-10-05 11:17:19.395 +03:00 [INF] Request finished in 3.3741ms 200 text/plain; charset=utf-8 +2018-10-05 11:17:19.395 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.396 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.397 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.397 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.397 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.397 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.398 +03:00 [INF] Authorization failed. +2018-10-05 11:17:19.401 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.8139ms. +2018-10-05 11:17:19.402 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:17:19.402 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.2361ms +2018-10-05 11:17:19.404 +03:00 [INF] Request finished in 14.403ms 200 text/plain; charset=utf-8 +2018-10-05 11:17:46.332 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-05 11:17:46.664 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-05 11:17:46.665 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:17:47.583 +03:00 [INF] Executed action /Index in 918.1055ms +2018-10-05 11:17:47.587 +03:00 [INF] Request finished in 1254.2286ms 200 text/html; charset=utf-8 +2018-10-05 11:17:47.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:17:47.738 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:17:47.740 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:17:47.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.740 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.741 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.741 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.741 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.741 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.742 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:17:47.743 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:17:47.743 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1772ms. +2018-10-05 11:17:47.744 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:17:47.743 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.744 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3438ms +2018-10-05 11:17:47.744 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.744 +03:00 [INF] Request finished in 4.7805ms 200 text/plain; charset=utf-8 +2018-10-05 11:17:47.745 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.745 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.745 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.745 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.746 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.746 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.746 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.746 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.747 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.747 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.748 +03:00 [INF] Authorization failed. +2018-10-05 11:17:47.750 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.9274ms. +2018-10-05 11:17:47.750 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:17:47.750 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.9009ms +2018-10-05 11:17:47.750 +03:00 [INF] Request finished in 15.5341ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:05.077 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/0.5.0/Tutorials/AspNetCore-Mvc/Part-I +2018-10-05 11:19:05.092 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:05.094 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:05.729 +03:00 [INF] Executed action /Documents/Project/Index in 636.7399ms +2018-10-05 11:19:05.729 +03:00 [INF] Request finished in 652.4924ms 200 text/html; charset=utf-8 +2018-10-05 11:19:05.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:19:05.856 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:19:05.860 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:05.860 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:05.861 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:19:05.861 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.863 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.862 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:19:05.863 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.863 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.863 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.863 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.88930000000000009ms. +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 5.4005ms +2018-10-05 11:19:05.865 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.865 +03:00 [INF] Request finished in 9.7602ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.866 +03:00 [INF] Authorization failed. +2018-10-05 11:19:05.871 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.5524ms. +2018-10-05 11:19:05.872 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:05.873 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 12.545100000000001ms +2018-10-05 11:19:05.873 +03:00 [INF] Request finished in 22.422ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:27.110 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 11:19:27.111 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:27.114 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:27.553 +03:00 [INF] Executed action /Documents/Project/Index in 441.92240000000004ms +2018-10-05 11:19:27.554 +03:00 [INF] Request finished in 443.3928ms 200 text/html; charset=utf-8 +2018-10-05 11:19:31.164 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Getting-Started-Console-Application.md +2018-10-05 11:19:31.165 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:31.167 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:31.523 +03:00 [ERR] The remote server returned an error: (404) Not Found. +System.Net.WebException: The remote server returned an error: (404) Not Found. + at System.Net.HttpWebRequest.GetResponse() + at System.Net.WebClient.GetWebResponse(WebRequest request) + at System.Net.WebClient.DownloadBits(WebRequest request, Stream writeStream) + at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) + at System.Net.WebClient.DownloadString(Uri address) + at System.Net.WebClient.DownloadString(String address) + at Volo.Docs.Documents.GithubDocumentStore.TryDownloadWebContent(String rawUrl, String& content) in D:\Github\abp\modules\docs\src\Volo.Docs.Application\Volo\Docs\Documents\GithubDocumentStore.cs:line 65 +2018-10-05 11:19:31.729 +03:00 [INF] Executed action /Documents/Project/Index in 563.9737ms +2018-10-05 11:19:31.729 +03:00 [INF] Request finished in 565.5496ms 200 text/html; charset=utf-8 +2018-10-05 11:19:31.831 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:19:31.832 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:31.833 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:19:31.834 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:19:31.834 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.835 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1306ms. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3568ms +2018-10-05 11:19:31.836 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.836 +03:00 [INF] Request finished in 3.2995ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:31.837 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.837 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.837 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.837 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.837 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.838 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.838 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.840 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.840 +03:00 [INF] Authorization failed. +2018-10-05 11:19:31.843 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.536900000000001ms. +2018-10-05 11:19:31.843 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:31.843 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.986600000000001ms +2018-10-05 11:19:31.843 +03:00 [INF] Request finished in 12.374ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:35.959 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Getting-Started-AspNetCore-Application.md +2018-10-05 11:19:35.962 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:35.966 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:36.371 +03:00 [ERR] The remote server returned an error: (404) Not Found. +System.Net.WebException: The remote server returned an error: (404) Not Found. + at System.Net.HttpWebRequest.GetResponse() + at System.Net.WebClient.GetWebResponse(WebRequest request) + at System.Net.WebClient.DownloadBits(WebRequest request, Stream writeStream) + at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) + at System.Net.WebClient.DownloadString(Uri address) + at System.Net.WebClient.DownloadString(String address) + at Volo.Docs.Documents.GithubDocumentStore.TryDownloadWebContent(String rawUrl, String& content) in D:\Github\abp\modules\docs\src\Volo.Docs.Application\Volo\Docs\Documents\GithubDocumentStore.cs:line 65 +2018-10-05 11:19:36.594 +03:00 [INF] Executed action /Documents/Project/Index in 631.20940000000007ms +2018-10-05 11:19:36.594 +03:00 [INF] Request finished in 634.4549ms 200 text/html; charset=utf-8 +2018-10-05 11:19:36.693 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:19:36.694 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:19:36.695 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:36.695 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:36.696 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:19:36.696 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:19:36.697 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.23320000000000002ms. +2018-10-05 11:19:36.697 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.697 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:36.697 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.697 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.697 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.1521ms +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Request finished in 3.975ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.698 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.699 +03:00 [INF] Authorization failed. +2018-10-05 11:19:36.701 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 4.3923000000000005ms. +2018-10-05 11:19:36.701 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:36.701 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 6.0817000000000005ms +2018-10-05 11:19:36.702 +03:00 [INF] Request finished in 8.9187ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:51.938 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Getting-Started-Console-Application +2018-10-05 11:19:51.939 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:51.941 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:52.483 +03:00 [INF] Executed action /Documents/Project/Index in 544.4706ms +2018-10-05 11:19:52.484 +03:00 [INF] Request finished in 545.817ms 200 text/html; charset=utf-8 +2018-10-05 11:19:52.590 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:19:52.591 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:52.593 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:19:52.593 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.593 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.593 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.593 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.594 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.595 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.595 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.595 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:19:52.595 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.596 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.597 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.597 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:19:52.597 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.597 +03:00 [INF] Authorization failed. +2018-10-05 11:19:52.599 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.4957ms. +2018-10-05 11:19:52.599 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:19:52.600 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:52.600 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 8.331ms +2018-10-05 11:19:52.600 +03:00 [INF] Request finished in 9.7483ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:52.600 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2033ms. +2018-10-05 11:19:52.600 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:19:52.601 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5238ms +2018-10-05 11:19:52.601 +03:00 [INF] Request finished in 8.8859ms 200 text/plain; charset=utf-8 +2018-10-05 11:19:58.807 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 11:19:58.807 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:19:58.809 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:19:59.406 +03:00 [INF] Executed action /Documents/Project/Index in 598.0789ms +2018-10-05 11:19:59.406 +03:00 [INF] Request finished in 598.9763ms 200 text/html; charset=utf-8 +2018-10-05 11:20:07.777 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/0.5.0/Getting-Started-AspNetCore-MVC-Template +2018-10-05 11:20:07.778 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:20:07.780 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:20:08.403 +03:00 [INF] Executed action /Documents/Project/Index in 625.4183ms +2018-10-05 11:20:08.403 +03:00 [INF] Request finished in 626.7071ms 200 text/html; charset=utf-8 +2018-10-05 11:20:08.521 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:20:08.523 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:20:08.524 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:20:08.527 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.528 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.529 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:20:08.529 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.529 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.529 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.529 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.530 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.530 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.530 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.530 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:20:08.530 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.530 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.2333ms. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9824000000000002ms +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Request finished in 4.7613ms 200 text/plain; charset=utf-8 +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.531 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.532 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.532 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.532 +03:00 [INF] Authorization failed. +2018-10-05 11:20:08.534 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.6768ms. +2018-10-05 11:20:08.535 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:20:08.535 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.417300000000001ms +2018-10-05 11:20:08.535 +03:00 [INF] Request finished in 13.7806ms 200 text/plain; charset=utf-8 +2018-10-05 11:20:09.387 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 11:20:09.387 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:20:09.389 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:20:09.808 +03:00 [INF] Executed action /Documents/Project/Index in 420.8283ms +2018-10-05 11:20:09.808 +03:00 [INF] Request finished in 421.7312ms 200 text/html; charset=utf-8 +2018-10-05 11:20:18.129 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/0.5.0/Virtual-File-System +2018-10-05 11:20:18.130 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:20:18.132 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:20:18.710 +03:00 [INF] Executed action /Documents/Project/Index in 580.22070000000008ms +2018-10-05 11:20:18.710 +03:00 [INF] Request finished in 581.1974ms 200 text/html; charset=utf-8 +2018-10-05 11:20:18.735 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-05 11:20:18.737 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-05 11:20:18.739 +03:00 [INF] Request finished in 3.3567ms 304 text/css +2018-10-05 11:20:18.740 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-05 11:20:18.740 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-05 11:20:18.741 +03:00 [INF] Request finished in 0.6751ms 304 text/css +2018-10-05 11:20:18.741 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-05 11:20:18.742 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-05 11:20:18.742 +03:00 [INF] Request finished in 1.904ms 304 text/css +2018-10-05 11:20:18.749 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-05 11:20:18.751 +03:00 [INF] The file /libs/select2/css/select2.min.css was not modified +2018-10-05 11:20:18.751 +03:00 [INF] Request finished in 1.9ms 304 text/css +2018-10-05 11:20:18.752 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-05 11:20:18.753 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-05 11:20:18.754 +03:00 [INF] Request finished in 2.1049ms 304 text/css +2018-10-05 11:20:18.780 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-05 11:20:18.781 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-05 11:20:18.781 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-05 11:20:18.781 +03:00 [INF] Request finished in 1.2169ms 304 application/javascript +2018-10-05 11:20:18.781 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-05 11:20:18.782 +03:00 [INF] Request finished in 0.9573ms 304 application/javascript +2018-10-05 11:20:18.782 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-05 11:20:18.783 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-05 11:20:18.783 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-05 11:20:18.783 +03:00 [INF] Request finished in 0.6429ms 304 application/javascript +2018-10-05 11:20:18.783 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-05 11:20:18.783 +03:00 [INF] Request finished in 0.4536ms 304 application/javascript +2018-10-05 11:20:18.788 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-05 11:20:18.789 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-05 11:20:18.790 +03:00 [INF] Request finished in 1.8624ms 304 application/javascript +2018-10-05 11:20:18.790 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-05 11:20:18.790 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-05 11:20:18.791 +03:00 [INF] Request finished in 0.8289ms 304 application/javascript +2018-10-05 11:20:18.793 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-05 11:20:18.795 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-05 11:20:18.796 +03:00 [INF] Request finished in 1.5753ms 304 application/javascript +2018-10-05 11:20:18.800 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-05 11:20:18.801 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-05 11:20:18.801 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-05 11:20:18.801 +03:00 [INF] Request finished in 1.2665ms 304 application/javascript +2018-10-05 11:20:18.802 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-05 11:20:18.802 +03:00 [INF] Request finished in 0.7691ms 304 application/javascript +2018-10-05 11:20:18.802 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-05 11:20:18.803 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-05 11:20:18.803 +03:00 [INF] Request finished in 1.0275ms 304 application/javascript +2018-10-05 11:20:18.812 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-05 11:20:18.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-05 11:20:18.813 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-05 11:20:18.813 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-05 11:20:18.813 +03:00 [INF] Request finished in 0.8075ms 304 application/javascript +2018-10-05 11:20:18.813 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-05 11:20:18.813 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-05 11:20:18.813 +03:00 [INF] Request finished in 0.4356ms 304 application/javascript +2018-10-05 11:20:18.813 +03:00 [INF] Request finished in 0.4645ms 304 application/javascript +2018-10-05 11:20:18.821 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-05 11:20:18.822 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-05 11:20:18.822 +03:00 [INF] Request finished in 0.9492ms 304 application/javascript +2018-10-05 11:20:18.849 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-05 11:20:18.851 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:20:18.850 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-05 11:20:18.851 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-05 11:20:18.852 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-05 11:20:18.852 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-05 11:20:18.853 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1398ms. +2018-10-05 11:20:18.853 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.853 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:20:18.853 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.853 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.3546ms +2018-10-05 11:20:18.853 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.853 +03:00 [INF] Request finished in 2.4932ms 200 text/plain; charset=utf-8 +2018-10-05 11:20:18.853 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.853 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.854 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.854 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.855 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.856 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.857 +03:00 [INF] Authorization failed. +2018-10-05 11:20:18.861 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.0704000000000011ms. +2018-10-05 11:20:18.861 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-05 11:20:18.861 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.3947ms +2018-10-05 11:20:18.861 +03:00 [INF] Request finished in 12.9646ms 200 text/plain; charset=utf-8 +2018-10-05 11:20:19.378 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-05 11:20:19.379 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-05 11:20:19.381 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-05 11:20:19.784 +03:00 [INF] Executed action /Documents/Project/Index in 405.52860000000004ms +2018-10-05 11:20:19.785 +03:00 [INF] Request finished in 406.7779ms 200 text/html; charset=utf-8 +2018-10-11 16:00:53.638 +03:00 [INF] Loaded modules: +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Data.AbpDataModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Utils.SolutionTemplating.SolutionTemplatingModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteDomainModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteApplicationModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2018-10-11 16:00:53.662 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Docs.DocsDomainSharedModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Docs.DocsDomainModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Docs.EntityFrameworkCore.DocsEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Blogging.BloggingDomainSharedModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Blogging.BloggingDomainModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Blogging.EntityFrameworkCore.BloggingEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteEntityFrameworkCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.UI.AbpUiModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule +2018-10-11 16:00:53.663 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Docs.DocsApplicationContractsModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Docs.DocsApplicationModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Docs.DocsHttpApiModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Docs.DocsWebModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.PermissionManagement.Web.AbpPermissionManagementWebModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Abp.Identity.Web.AbpIdentityWebModule +2018-10-11 16:00:53.664 +03:00 [INF] - Volo.Blogging.BloggingApplicationContractsModule +2018-10-11 16:00:53.665 +03:00 [INF] - Volo.Blogging.BloggingApplicationModule +2018-10-11 16:00:53.665 +03:00 [INF] - Volo.Blogging.BloggingHttpApiModule +2018-10-11 16:00:53.665 +03:00 [INF] - Volo.Blogging.BloggingWebModule +2018-10-11 16:00:53.665 +03:00 [INF] - Volo.AbpWebSite.AbpWebSiteWebModule +2018-10-11 16:00:56.075 +03:00 [INF] Initialized all modules. +2018-10-11 16:00:56.392 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-11 16:00:56.461 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:00:58.988 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-11 16:00:59.010 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:00.715 +03:00 [INF] Executed action /Index in 1720.2801000000002ms +2018-10-11 16:01:00.738 +03:00 [INF] Request finished in 4348.2609ms 200 text/html; charset=utf-8 +2018-10-11 16:01:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/css/bootstrap.css?_v=636743214635567907 +2018-10-11 16:01:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/css/font-awesome.css?_v=636743214635567907 +2018-10-11 16:01:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/css/select2.min.css?_v=636743214635577921 +2018-10-11 16:01:00.755 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.css?_v=636743214636377901 +2018-10-11 16:01:00.758 +03:00 [INF] The file /libs/toastr/toastr.min.css was not modified +2018-10-11 16:01:00.758 +03:00 [INF] The file /libs/font-awesome/css/font-awesome.css was not modified +2018-10-11 16:01:00.761 +03:00 [INF] Request finished in 6.2219ms 304 text/css +2018-10-11 16:01:00.761 +03:00 [INF] Request finished in 5.7851ms 304 text/css +2018-10-11 16:01:00.761 +03:00 [INF] The file /libs/bootstrap/css/bootstrap.css was not modified +2018-10-11 16:01:00.763 +03:00 [INF] Request finished in 7.5545ms 304 text/css +2018-10-11 16:01:00.765 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-11 16:01:00.774 +03:00 [INF] Sending file. Request path: '/libs/select2/css/select2.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\select2\css\select2.min.css' +2018-10-11 16:01:00.774 +03:00 [INF] Sending file. Request path: '/libs/datatables.net-bs4/css/dataTables.bootstrap4.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\datatables.net-bs4\css\dataTables.bootstrap4.css' +2018-10-11 16:01:00.774 +03:00 [INF] Request finished in 19.698ms 200 text/css +2018-10-11 16:01:00.774 +03:00 [INF] Request finished in 9.5713ms 200 text/css +2018-10-11 16:01:00.774 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/scss/vs.css?_v=636731144534377694 +2018-10-11 16:01:00.775 +03:00 [INF] The file /scss/vs.css was not modified +2018-10-11 16:01:00.775 +03:00 [INF] Request finished in 0.5794ms 304 text/css +2018-10-11 16:01:00.848 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/1.png +2018-10-11 16:01:00.851 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/tools/2.png +2018-10-11 16:01:00.852 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/assets/familiar.png +2018-10-11 16:01:00.858 +03:00 [INF] Sending file. Request path: '/assets/familiar.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\familiar.png' +2018-10-11 16:01:00.858 +03:00 [INF] Request finished in 5.9197ms 200 image/png +2018-10-11 16:01:00.858 +03:00 [INF] Sending file. Request path: '/assets/tools/1.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\1.png' +2018-10-11 16:01:00.859 +03:00 [INF] Request finished in 12.6859ms 200 image/png +2018-10-11 16:01:00.859 +03:00 [INF] Sending file. Request path: '/assets/tools/2.png'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\assets\tools\2.png' +2018-10-11 16:01:00.860 +03:00 [INF] Request finished in 8.8626ms 200 image/png +2018-10-11 16:01:00.928 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery/jquery.js?_v=636743214635357918 +2018-10-11 16:01:00.928 +03:00 [INF] The file /libs/jquery/jquery.js was not modified +2018-10-11 16:01:00.929 +03:00 [INF] Request finished in 1.3081ms 304 application/javascript +2018-10-11 16:01:00.929 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/jquery/abp.jquery.js?_v=636743214635617939 +2018-10-11 16:01:00.930 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/bootstrap/js/bootstrap.bundle.js?_v=636743214635597908 +2018-10-11 16:01:00.930 +03:00 [INF] The file /libs/abp/jquery/abp.jquery.js was not modified +2018-10-11 16:01:00.930 +03:00 [INF] Request finished in 1.2898ms 304 application/javascript +2018-10-11 16:01:00.938 +03:00 [INF] The file /libs/bootstrap/js/bootstrap.bundle.js was not modified +2018-10-11 16:01:00.939 +03:00 [INF] Request finished in 9.4904ms 304 application/javascript +2018-10-11 16:01:00.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js?_v=636743214635357918 +2018-10-11 16:01:00.952 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/lodash/lodash.min.js?_v=636743214635357918 +2018-10-11 16:01:00.951 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-validation/jquery.validate.js?_v=636743214635357918 +2018-10-11 16:01:00.953 +03:00 [INF] The file /libs/lodash/lodash.min.js was not modified +2018-10-11 16:01:00.953 +03:00 [INF] Request finished in 0.6446ms 304 application/javascript +2018-10-11 16:01:00.953 +03:00 [INF] The file /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js was not modified +2018-10-11 16:01:00.953 +03:00 [INF] The file /libs/jquery-validation/jquery.validate.js was not modified +2018-10-11 16:01:00.953 +03:00 [INF] Request finished in 1.0635ms 304 application/javascript +2018-10-11 16:01:00.953 +03:00 [INF] Request finished in 2.199ms 304 application/javascript +2018-10-11 16:01:00.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/jquery-form/jquery.form.min.js?_v=636743214635347925 +2018-10-11 16:01:00.965 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/select2/js/select2.min.js?_v=636743214635657924 +2018-10-11 16:01:00.966 +03:00 [INF] The file /libs/select2/js/select2.min.js was not modified +2018-10-11 16:01:00.966 +03:00 [INF] The file /libs/jquery-form/jquery.form.min.js was not modified +2018-10-11 16:01:00.966 +03:00 [INF] Request finished in 0.5988ms 304 application/javascript +2018-10-11 16:01:00.966 +03:00 [INF] Request finished in 0.5889ms 304 application/javascript +2018-10-11 16:01:00.971 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/core/abp.js?_v=636743214635567907 +2018-10-11 16:01:00.971 +03:00 [INF] The file /libs/abp/core/abp.js was not modified +2018-10-11 16:01:00.971 +03:00 [INF] Request finished in 0.6036ms 304 application/javascript +2018-10-11 16:01:00.973 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/js/dataTables.bootstrap4.js?_v=636743214635567907 +2018-10-11 16:01:00.974 +03:00 [INF] The file /libs/datatables.net-bs4/js/dataTables.bootstrap4.js was not modified +2018-10-11 16:01:00.974 +03:00 [INF] Request finished in 1.2482ms 304 application/javascript +2018-10-11 16:01:00.975 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net/js/jquery.dataTables.js?_v=636743214635567907 +2018-10-11 16:01:00.976 +03:00 [INF] The file /libs/datatables.net/js/jquery.dataTables.js was not modified +2018-10-11 16:01:00.976 +03:00 [INF] Request finished in 1.1301ms 304 application/javascript +2018-10-11 16:01:00.979 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/sweetalert/sweetalert.min.js?_v=636743214635357918 +2018-10-11 16:01:00.980 +03:00 [INF] The file /libs/sweetalert/sweetalert.min.js was not modified +2018-10-11 16:01:00.980 +03:00 [INF] Request finished in 0.674ms 304 application/javascript +2018-10-11 16:01:00.982 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/toastr/toastr.min.js?_v=636743214636587926 +2018-10-11 16:01:00.984 +03:00 [INF] The file /libs/toastr/toastr.min.js was not modified +2018-10-11 16:01:00.984 +03:00 [INF] Request finished in 2.425ms 304 application/javascript +2018-10-11 16:01:00.992 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/timeago/jquery.timeago.js?_v=636743214635537943 +2018-10-11 16:01:00.992 +03:00 [INF] The file /libs/timeago/jquery.timeago.js was not modified +2018-10-11 16:01:00.993 +03:00 [INF] Request finished in 1.2911ms 304 application/javascript +2018-10-11 16:01:00.998 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=636721657890418970 +2018-10-11 16:01:01.001 +03:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified +2018-10-11 16:01:01.003 +03:00 [INF] Request finished in 4.0839ms 304 application/javascript +2018-10-11 16:01:01.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-11 16:01:01.009 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Identity/Shared/change-password-modal.js?_v=636748566471200312 +2018-10-11 16:01:01.011 +03:00 [INF] Sending file. Request path: '/Pages/Identity/Shared/change-password-modal.js'. Physical path: '/Pages/Identity/Shared/change-password-modal.js' +2018-10-11 16:01:01.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:01.011 +03:00 [INF] Request finished in 1.7295ms 200 application/javascript +2018-10-11 16:01:01.011 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-11 16:01:01.013 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:01.033 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:01.033 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:01.039 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/js/vs.js?_v=636689993293154518 +2018-10-11 16:01:01.039 +03:00 [INF] The file /js/vs.js was not modified +2018-10-11 16:01:01.040 +03:00 [INF] Request finished in 0.7222ms 304 application/javascript +2018-10-11 16:01:01.044 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 +2018-10-11 16:01:01.057 +03:00 [INF] Sending file. Request path: '/libs/font-awesome/fonts/fontawesome-webfont.woff2'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\font-awesome\fonts\fontawesome-webfont.woff2' +2018-10-11 16:01:01.057 +03:00 [INF] Request finished in 13.6209ms 200 font/woff2 +2018-10-11 16:01:01.097 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-11 16:01:01.099 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-11 16:01:01.149 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.150 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.175 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.176 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.177 +03:00 [INF] Authorization failed. +2018-10-11 16:01:01.202 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 96.3699ms. +2018-10-11 16:01:01.208 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:01.209 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 175.1678ms +2018-10-11 16:01:01.209 +03:00 [INF] Request finished in 197.6863ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:01.215 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 117.4423ms. +2018-10-11 16:01:01.216 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:01.216 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 182.3586ms +2018-10-11 16:01:01.216 +03:00 [INF] Request finished in 206.8779ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:04.945 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-10-11 16:01:04.946 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:05.253 +03:00 [INF] Route matched with {page = "/Documents/Index", controller = "", area = "", action = ""}. Executing action /Documents/Index +2018-10-11 16:01:05.305 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:05.398 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Project/Index. +2018-10-11 16:01:05.398 +03:00 [INF] Executed action /Documents/Index in 145.2165ms +2018-10-11 16:01:05.399 +03:00 [INF] Request finished in 453.2681ms 302 +2018-10-11 16:01:05.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-11 16:01:05.409 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:05.803 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-11 16:01:05.819 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:08.432 +03:00 [INF] Executed action /Documents/Project/Index in 2628.4027ms +2018-10-11 16:01:08.432 +03:00 [INF] Request finished in 3023.5639ms 200 text/html; charset=utf-8 +2018-10-11 16:01:08.481 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/datatables.net-bs4/css/dataTables.bootstrap4.css?_v=636743214635597908 +2018-10-11 16:01:08.482 +03:00 [INF] The file /libs/datatables.net-bs4/css/dataTables.bootstrap4.css was not modified +2018-10-11 16:01:08.482 +03:00 [INF] Request finished in 1.0412ms 304 text/css +2018-10-11 16:01:08.483 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.css?_v=636746028553590342 +2018-10-11 16:01:08.484 +03:00 [INF] Sending file. Request path: '/Pages/Documents/vs.css'. Physical path: 'D:\Github\abp\modules\docs\src\Volo.Docs.Web\Pages\Documents\vs.css' +2018-10-11 16:01:08.485 +03:00 [INF] Request finished in 2.0545ms 200 text/css +2018-10-11 16:01:08.490 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/themes/prism-okaidia.css?_v=636735643234670159 +2018-10-11 16:01:08.491 +03:00 [INF] The file /lib/prismjs/themes/prism-okaidia.css was not modified +2018-10-11 16:01:08.492 +03:00 [INF] Request finished in 1.9049ms 304 text/css +2018-10-11 16:01:08.497 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.css?_v=636735643234040149 +2018-10-11 16:01:08.498 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.css was not modified +2018-10-11 16:01:08.500 +03:00 [INF] Request finished in 7.374ms 304 text/css +2018-10-11 16:01:08.501 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css?_v=636733643205267782 +2018-10-11 16:01:08.502 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.css?_v=636735643234380150 +2018-10-11 16:01:08.503 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.min.css was not modified +2018-10-11 16:01:08.503 +03:00 [INF] Request finished in 2.4355ms 304 text/css +2018-10-11 16:01:08.504 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.css was not modified +2018-10-11 16:01:08.506 +03:00 [INF] Request finished in 3.0882ms 304 text/css +2018-10-11 16:01:08.506 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/bootstrap-toc/bootstrap-toc.css?_v=636734613356746448 +2018-10-11 16:01:08.508 +03:00 [INF] The file /lib/bootstrap-toc/bootstrap-toc.css was not modified +2018-10-11 16:01:08.509 +03:00 [INF] Request finished in 2.3844ms 304 text/css +2018-10-11 16:01:08.553 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-11 16:01:08.554 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:08.556 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-11 16:01:08.557 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:08.558 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:08.560 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-11 16:01:08.560 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.3155ms. +2018-10-11 16:01:08.561 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:08.561 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 3.5126000000000004ms +2018-10-11 16:01:08.562 +03:00 [INF] Request finished in 6.0608ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:08.563 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:08.565 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-11 16:01:08.565 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.566 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.566 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.566 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.566 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.567 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.568 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.569 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.570 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.570 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.570 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.570 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.570 +03:00 [INF] Authorization failed. +2018-10-11 16:01:08.573 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 7.7485ms. +2018-10-11 16:01:08.573 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:08.574 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 10.5669ms +2018-10-11 16:01:08.574 +03:00 [INF] Request finished in 20.5271ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:08.578 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/Project/index.js?_v=636741619187833598 +2018-10-11 16:01:08.579 +03:00 [INF] The file /Pages/Documents/Project/index.js was not modified +2018-10-11 16:01:08.579 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js?_v=636733643205257782 +2018-10-11 16:01:08.579 +03:00 [INF] Request finished in 0.9208ms 304 application/javascript +2018-10-11 16:01:08.580 +03:00 [INF] The file /lib/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js was not modified +2018-10-11 16:01:08.580 +03:00 [INF] Request finished in 1.3058ms 304 application/javascript +2018-10-11 16:01:08.587 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/clipboard/dist/clipboard.js?_v=636735643227720162 +2018-10-11 16:01:08.589 +03:00 [INF] The file /lib/clipboard/dist/clipboard.js was not modified +2018-10-11 16:01:08.589 +03:00 [INF] Request finished in 2.3668ms 304 application/javascript +2018-10-11 16:01:08.591 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/prism.js?_v=636735643234560173 +2018-10-11 16:01:08.592 +03:00 [INF] The file /lib/prismjs/prism.js was not modified +2018-10-11 16:01:08.593 +03:00 [INF] Request finished in 1.885ms 304 application/javascript +2018-10-11 16:01:08.595 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/toolbar/prism-toolbar.js?_v=636735643234390155 +2018-10-11 16:01:08.596 +03:00 [INF] The file /lib/prismjs/plugins/toolbar/prism-toolbar.js was not modified +2018-10-11 16:01:08.596 +03:00 [INF] Request finished in 1.413ms 304 application/javascript +2018-10-11 16:01:08.601 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/show-language/prism-show-language.js?_v=636735643234340166 +2018-10-11 16:01:08.602 +03:00 [INF] The file /lib/prismjs/plugins/show-language/prism-show-language.js was not modified +2018-10-11 16:01:08.602 +03:00 [INF] Request finished in 0.7275ms 304 application/javascript +2018-10-11 16:01:08.615 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js?_v=636735643233750146 +2018-10-11 16:01:08.615 +03:00 [INF] The file /lib/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js was not modified +2018-10-11 16:01:08.616 +03:00 [INF] Request finished in 0.8689ms 304 application/javascript +2018-10-11 16:01:08.619 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/plugins/line-highlight/prism-line-highlight.js?_v=636735643234050150 +2018-10-11 16:01:08.620 +03:00 [INF] The file /lib/prismjs/plugins/line-highlight/prism-line-highlight.js was not modified +2018-10-11 16:01:08.620 +03:00 [INF] Request finished in 1.1094ms 304 application/javascript +2018-10-11 16:01:08.623 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/prismjs/components/prism-csharp.js?_v=636735643229370155 +2018-10-11 16:01:08.625 +03:00 [INF] The file /lib/prismjs/components/prism-csharp.js was not modified +2018-10-11 16:01:08.625 +03:00 [INF] Request finished in 2.6054ms 304 application/javascript +2018-10-11 16:01:08.630 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/lib/popper.js/dist/umd/popper.min.js?_v=636733643205457829 +2018-10-11 16:01:08.630 +03:00 [INF] The file /lib/popper.js/dist/umd/popper.min.js was not modified +2018-10-11 16:01:08.630 +03:00 [INF] Request finished in 0.6558ms 304 application/javascript +2018-10-11 16:01:08.632 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Documents/vs.js?_v=636741619187863713 +2018-10-11 16:01:08.633 +03:00 [INF] The file /Pages/Documents/vs.js was not modified +2018-10-11 16:01:08.633 +03:00 [INF] Request finished in 0.7552ms 304 application/javascript +2018-10-11 16:01:10.066 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-11 16:01:10.067 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:10.068 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-11 16:01:10.068 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:10.076 +03:00 [INF] Executed action /Index in 7.8717000000000006ms +2018-10-11 16:01:10.076 +03:00 [INF] Request finished in 9.7547ms 200 text/html; charset=utf-8 +2018-10-11 16:01:11.095 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/blog/abp/ +2018-10-11 16:01:11.097 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:11.536 +03:00 [INF] Route matched with {page = "/Blog/Posts/Index", controller = "", area = "", action = ""}. Executing action /Blog/Posts/Index +2018-10-11 16:01:11.740 +03:00 [INF] Executing handler method OnGetAsync with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:12.516 +03:00 [INF] Executed action /Blog/Posts/Index in 979.4424ms +2018-10-11 16:01:12.516 +03:00 [INF] Request finished in 1421.1522ms 200 text/html; charset=utf-8 +2018-10-11 16:01:12.569 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.carousel.min.css?_v=636743214636787895 +2018-10-11 16:01:12.570 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.carousel.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.carousel.min.css' +2018-10-11 16:01:12.570 +03:00 [INF] Request finished in 1.3518ms 200 text/css +2018-10-11 16:01:12.571 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.default.min.css?_v=636743214636977942 +2018-10-11 16:01:12.572 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/assets/owl.theme.green.min.css?_v=636743214637127912 +2018-10-11 16:01:12.572 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.default.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.default.min.css' +2018-10-11 16:01:12.573 +03:00 [INF] Request finished in 1.3899ms 200 text/css +2018-10-11 16:01:12.575 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/assets/owl.theme.green.min.css'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\assets\owl.theme.green.min.css' +2018-10-11 16:01:12.576 +03:00 [INF] Request finished in 3.5213ms 200 text/css +2018-10-11 16:01:12.576 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Styles/blog.css?_v=636733899374786129 +2018-10-11 16:01:12.577 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Shared/Styles/blog.css'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Shared\Styles\blog.css' +2018-10-11 16:01:12.577 +03:00 [INF] Request finished in 1.0397ms 200 text/css +2018-10-11 16:01:12.616 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/files/ea6da622548addd544c339e91ce8e1ab.jpg +2018-10-11 16:01:12.617 +03:00 [INF] The file /files/ea6da622548addd544c339e91ce8e1ab.jpg was not modified +2018-10-11 16:01:12.617 +03:00 [INF] Request finished in 0.8978ms 304 image/jpeg +2018-10-11 16:01:12.669 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-11 16:01:12.669 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:12.672 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-11 16:01:12.673 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:12.673 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:12.675 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-11 16:01:12.675 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.675 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.1787ms. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.676 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:12.676 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.8215000000000001ms +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Request finished in 4.8694ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.677 +03:00 [INF] Authorization failed. +2018-10-11 16:01:12.681 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 6.4207ms. +2018-10-11 16:01:12.681 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:12.682 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 7.929ms +2018-10-11 16:01:12.682 +03:00 [INF] Request finished in 13.8138ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:12.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/libs/owl.carousel/owl.carousel.min.js?_v=636743214635797931 +2018-10-11 16:01:12.689 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Posts/detail.js?_v=636743179258030600 +2018-10-11 16:01:12.690 +03:00 [INF] Sending file. Request path: '/Pages/Blog/Posts/detail.js'. Physical path: 'D:\Github\abp\modules\blogging\src\Volo.Blogging.Web\Pages\Blog\Posts\detail.js' +2018-10-11 16:01:12.690 +03:00 [INF] Request finished in 0.9348ms 200 application/javascript +2018-10-11 16:01:12.691 +03:00 [INF] Sending file. Request path: '/libs/owl.carousel/owl.carousel.min.js'. Physical path: 'D:\Github\volo\abp\www\src\Volo.AbpWebSite.Web\wwwroot\libs\owl.carousel\owl.carousel.min.js' +2018-10-11 16:01:12.691 +03:00 [INF] Request finished in 1.6686ms 200 application/javascript +2018-10-11 16:01:12.697 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Pages/Blog/Shared/Scripts/blog.js?_v=636724313231357169 +2018-10-11 16:01:12.699 +03:00 [INF] The file /Pages/Blog/Shared/Scripts/blog.js was not modified +2018-10-11 16:01:12.699 +03:00 [INF] Request finished in 2.0884ms 304 application/javascript +2018-10-11 16:01:13.845 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/ +2018-10-11 16:01:13.846 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:13.847 +03:00 [INF] Route matched with {page = "/Index", controller = "", area = "", action = ""}. Executing action /Index +2018-10-11 16:01:13.847 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:13.858 +03:00 [INF] Executed action /Index in 10.4254ms +2018-10-11 16:01:13.858 +03:00 [INF] Request finished in 12.4896ms 200 text/html; charset=utf-8 +2018-10-11 16:01:14.524 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents +2018-10-11 16:01:14.524 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:14.525 +03:00 [INF] Route matched with {page = "/Documents/Index", controller = "", area = "", action = ""}. Executing action /Documents/Index +2018-10-11 16:01:14.526 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:14.529 +03:00 [INF] Executing RedirectToPageResult, redirecting to ./Project/Index. +2018-10-11 16:01:14.529 +03:00 [INF] Executed action /Documents/Index in 4.3046000000000006ms +2018-10-11 16:01:14.529 +03:00 [INF] Request finished in 5.7262ms 302 +2018-10-11 16:01:14.538 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-11 16:01:14.538 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:14.538 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-11 16:01:14.541 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:15.063 +03:00 [INF] Executed action /Documents/Project/Index in 524.1576ms +2018-10-11 16:01:15.063 +03:00 [INF] Request finished in 525.5019ms 200 text/html; charset=utf-8 +2018-10-11 16:01:15.174 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-11 16:01:15.176 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:15.177 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:15.177 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-11 16:01:15.178 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-11 16:01:15.178 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.179 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.180 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.181 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.10940000000000001ms. +2018-10-11 16:01:15.180 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.181 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:15.182 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 2.2883ms +2018-10-11 16:01:15.182 +03:00 [INF] Request finished in 4.7297ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:15.182 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.182 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.183 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.183 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.183 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.183 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.183 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.184 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.184 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.184 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.185 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.185 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.185 +03:00 [INF] Authorization failed. +2018-10-11 16:01:15.188 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 9.7904ms. +2018-10-11 16:01:15.189 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:15.189 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.7575ms +2018-10-11 16:01:15.189 +03:00 [INF] Request finished in 14.8144ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:16.715 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Getting-Started-AspNetCore-MVC-Template +2018-10-11 16:01:16.716 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:16.716 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-11 16:01:16.720 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:17.261 +03:00 [INF] Executed action /Documents/Project/Index in 544.71210000000008ms +2018-10-11 16:01:17.261 +03:00 [INF] Request finished in 546.7878ms 200 text/html; charset=utf-8 +2018-10-11 16:01:17.406 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ApplicationConfigurationScript +2018-10-11 16:01:17.409 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:17.409 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/Abp/ServiceProxyScript +2018-10-11 16:01:17.410 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:17.411 +03:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:17.412 +03:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) +2018-10-11 16:01:17.413 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) with arguments (["Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel"]) - Validation state: "Valid" +2018-10-11 16:01:17.413 +03:00 [INF] Executing action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) - Validation state: "Valid" +2018-10-11 16:01:17.413 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 0.22710000000000002ms. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 1.9051ms +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Request finished in 4.9012ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.414 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.415 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.416 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.417 +03:00 [INF] Authorization failed. +2018-10-11 16:01:17.422 +03:00 [INF] Executed action method Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc), returned result Microsoft.AspNetCore.Mvc.ObjectResult in 8.2522ms. +2018-10-11 16:01:17.422 +03:00 [INF] Executing ObjectResult, writing value of type 'System.String'. +2018-10-11 16:01:17.423 +03:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 11.843ms +2018-10-11 16:01:17.423 +03:00 [INF] Request finished in 16.8122ms 200 text/plain; charset=utf-8 +2018-10-11 16:01:18.050 +03:00 [INF] Request starting HTTP/1.1 GET http://localhost:53074/documents/abp/latest/Index +2018-10-11 16:01:18.051 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed +2018-10-11 16:01:18.052 +03:00 [INF] Route matched with {page = "/Documents/Project/Index", controller = "", area = "", action = ""}. Executing action /Documents/Project/Index +2018-10-11 16:01:18.056 +03:00 [INF] Executing handler method OnGet with arguments (null) - ModelState is "Valid" +2018-10-11 16:01:18.790 +03:00 [INF] Executed action /Documents/Project/Index in 737.50430000000006ms +2018-10-11 16:01:18.790 +03:00 [INF] Request finished in 740.5931ms 200 text/html; charset=utf-8 diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml new file mode 100644 index 0000000000..bf74126618 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml @@ -0,0 +1,369 @@ +@page +@using Volo.AbpWebSite +@model Volo.AbpWebSite.Pages.IndexModel +@{ + Layout = "~/Pages/Shared/HomePageLayout.cshtml"; + ViewBag.FluidLayout = false; +} + +
+
+
+ +
+

+ + PREVIEW + +

+

open source web application framework

+

for asp.net core

+
+

+ + Learn how to use + +   + + Create a new project + + +

+

+ See the + latest release logs + +

+
+
+
+
+ +
+
+
+ +

Complete Application Development Infrastructure

+

ABP provides a full stack development model and infrastructure for modern web applications.

+
+
+
+
+ +

Modular Architecture

+

Designed as modular and extensible from the bottom to the top.

+
+
+
+
+ +

Microservice Focused

+

Designed to support microservice architecture and helps to build autonomous microservices.

+
+
+
+
+ +

Domain Driven Design

+

Designed and developed based on DDD patterns and principles. Provides a layered model for your application.

+
+
+
+
+
+
+ +

Authorization

+

Advanced authorization with user, role and fine-grained permission system. Built on the Microsoft Identity library.

+
+
+
+
+ +

Multi-Tenancy

+

SaaS applications made easy! Integrated multi-tenancy from database to UI.

+
+
+
+
+ +

Cross Cutting Concerns

+

Complete infrastructure for authorization, validation, exception handling, caching, audit logging, transaction management and so on.

+
+
+
+
+
+
+
+ +

Built-In Bundling & Minification

+

Stop to use external tools for bundling & minification. ABP offers a simpler, dynamic, powerful, modular and built-in way!

+
+
+
+
+ +

Virtual File System

+

Embed views, scripts, styles, images... into packages/libraries and reuse in different applications.

+
+
+
+
+ +

Theming

+

Use and customize the bootstrap-based standard UI theme or create your own one.

+
+
+
+ +
+
+
+ +

Background Jobs

+

Built-in background job system that can be integrated to Hangfire, RabbitMQ or any tool you like.

+
+
+
+
+ +

Testable & Customizable

+

Helps to build testable applications. Easy to replace/override built-in services.

+
+
+
+
+ +

HTTP APIs & Dynamic Proxies

+

Automatically expose application services as REST style HTTP APIs and consume with dynamic JavaScript & C# proxies.

+
+
+
+
+ + +
+
+ +
+
+
+ +
+
+ +
+
+

Multi-Tenancy

+

+ ABP framework not only supports to develop multi-tenant applications, but also makes your code mostly unaware of the multi-tenancy. +

+

+ Can automatically determine the current tenant, isolate data of different tenants from each other. +

+

+ Supports single database, database per tenant and hybrid approaches. +

+

+ You focus on your business code and let the framework to handle multi-tenancy on behalf of you. +

+
+
+
+
+
+ +
+
+
+ +

Bootstrap Tag Helpers

+

+ Instead of manually writing the repeating details of bootstrap components, + use ABP's tag helpers to simplify it and take advantage of intellisense. +

+
+
+
+
+
 
+                    
+<abp-card>
+    <img abp-card-image="Top" src="~/images/my-dog.png" />
+    <abp-card-body>
+        <abp-card-title>Card title</abp-card-title>
+        <abp-card-text>
+            <p>
+                This is a sample card component built by ABP bootstrap
+                card tag helper. ABP has tag helper wrappers for most of 
+                the bootstrap components.
+            </p>
+        </abp-card-text>
+        <a abp-button="Primary" href="#">Go somewhere &rarr;</a>
+    </abp-card-body>
+</abp-card>
+                        
+                    
+
+
+
+ + + +
+
+
+
+
+
+ + + +
+
+ +
+ + + + Card title + +

+ This is a sample card component built by ABP bootstrap card tag helper. + ABP has tag helper wrappers for most of the bootstrap components. +

+
+ Go somewhere → +
+
+
+
+
+
+
+
+
+
+
+
+ +

Dynamic Forms

+

+ Dynamic form & input tag helpers can create the complete form from a C# class as the model. +

+
+ +
+
+
+
 
+                    
+<abp-dynamic-form abp-model="@@Model.PersonInput" submit-button="true" />
+                        
+                    
+
+
+
 
+                    
+public class PersonModel
+{
+    [HiddenInput]
+    public Guid Id { get; set; }
+
+    [Required]
+    [EmailAddress]
+    [StringLength(255)]
+    public string Email { get; set; }
+
+    [Required]
+    [StringLength(32)]
+    [DataType(DataType.Password)]
+    public string Password { get; set; }
+
+    [StringLength(255)]
+    public string Address { get; set; }
+
+    public Gender Gender { get; set; }
+}
+                        
+                    
+
+
+
+ + + +
+
+
+
+
+
+ + + +
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ +

Multiple Database Provider Support

+

+ The core framework is ORM/database indepdendent and can work with any data source. + Entity Framework Core and MongoDB providers are currently available. +

+
+
+ + +
+
+
+
+
+
+ +

Familiar Tools

+

Built on and integrated to popular tools you already know.

+
+
+ + + + + + + + + + + + + + +
+
+
+ diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml.cs b/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml.cs new file mode 100644 index 0000000000..20a14db33f --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Index.cshtml.cs @@ -0,0 +1,54 @@ +using System; +using System.ComponentModel.DataAnnotations; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace Volo.AbpWebSite.Pages +{ + public class IndexModel : PageModel + { + [BindProperty] + public PersonModel PersonInput { get; set; } + + public void OnGet() + { + PersonInput = new PersonModel + { + Id = Guid.NewGuid() + }; + } + + public void OnPostDynamicForm() + { + + } + + public class PersonModel + { + [HiddenInput] + public Guid Id { get; set; } + + [Required] + [EmailAddress] + [StringLength(255)] + public string Email { get; set; } + + [Required] + [StringLength(32)] + [DataType(DataType.Password)] + public string Password { get; set; } + + [StringLength(255)] + public string Address { get; set; } + + public Gender Gender { get; set; } + } + + public enum Gender + { + Unspecified, + Male, + Female + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/Default.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/Default.cshtml new file mode 100644 index 0000000000..6ef164ebf3 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/Default.cshtml @@ -0,0 +1,39 @@ + \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/FooterViewComponent.cs b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/FooterViewComponent.cs new file mode 100644 index 0000000000..8841a36f18 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Footer/FooterViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc; + +namespace Volo.AbpWebSite.Pages.Shared.Components.Footer +{ + public class FooterViewComponent : AbpViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Pages/Shared/Components/Footer/Default.cshtml"); + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/Default.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/Default.cshtml new file mode 100644 index 0000000000..c3d877b425 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/Default.cshtml @@ -0,0 +1,53 @@ +@using Volo.Abp.Users +@inject ICurrentUser CurrentUser +
+ +
\ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/FooterViewComponent.cs b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/FooterViewComponent.cs new file mode 100644 index 0000000000..b84d951708 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/Header/FooterViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc; + +namespace Volo.AbpWebSite.Pages.Shared.Components.Header +{ + public class HeaderViewComponent : AbpViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Pages/Shared/Components/Header/Default.cshtml"); + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/Default.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/Default.cshtml new file mode 100644 index 0000000000..abd8b71a63 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/Default.cshtml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/FooterViewComponent.cs b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/FooterViewComponent.cs new file mode 100644 index 0000000000..832ef0ef5e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Components/StandardMeta/FooterViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc; + +namespace Volo.AbpWebSite.Pages.Shared.Components.StandardMeta +{ + public class StandardMetaViewComponent : AbpViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Pages/Shared/Components/StandardMeta/Default.cshtml"); + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/HomePageLayout.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/HomePageLayout.cshtml new file mode 100644 index 0000000000..c0b7a79b7c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/HomePageLayout.cshtml @@ -0,0 +1,53 @@ +@using Volo.Abp.AspNetCore.Mvc.AntiForgery +@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components +@using Volo.AbpWebSite.Bundling +@using Volo.AbpWebSite.Pages.Shared.Components.Footer +@using Volo.AbpWebSite.Pages.Shared.Components.Header +@using Volo.AbpWebSite.Pages.Shared.Components.StandardMeta +@inject IAbpAntiForgeryManager AbpAntiForgeryManager +@inject IBrandingProvider BrandingProvider +@{ + Layout = null; + AbpAntiForgeryManager.SetCookie(); +} + + + + + @(ViewBag.Title == null ? "abp.io" : ViewBag.Title) + @await Component.InvokeAsync(typeof(StandardMetaViewComponent)) + + @RenderSection("styles", false) + + + + @await Component.InvokeAsync(typeof(HeaderViewComponent)) + + @RenderBody() + + @await Component.InvokeAsync(typeof(FooterViewComponent)) + + + + + + + + + + + + + + + + @RenderSection("scripts", false) + + + \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Layout.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Layout.cshtml new file mode 100644 index 0000000000..4fb93a6955 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/Layout.cshtml @@ -0,0 +1,64 @@ +@using Volo.Abp.AspNetCore.Mvc.AntiForgery +@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components +@using Volo.AbpWebSite.Bundling +@using Volo.AbpWebSite.Pages.Shared.Components.Footer +@using Volo.AbpWebSite.Pages.Shared.Components.Header +@using Volo.AbpWebSite.Pages.Shared.Components.StandardMeta +@inject IAbpAntiForgeryManager AbpAntiForgeryManager +@inject IBrandingProvider BrandingProvider +@{ + Layout = null; + AbpAntiForgeryManager.SetCookie(); +} + + + + + @(ViewBag.Title == null ? "abp.io" : ViewBag.Title) + @await Component.InvokeAsync(typeof(StandardMetaViewComponent)) + + @RenderSection("styles", false) + + + + @await Component.InvokeAsync(typeof(HeaderViewComponent)) + +
+
+

+ @ViewBag.PageTitle +

+
+
+
+
+ @RenderBody() +
+
+ + @await Component.InvokeAsync(typeof(FooterViewComponent)) + + + + + + + + + + + + + + + + @RenderSection("scripts", false) + + + \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/LayoutEmpty.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/LayoutEmpty.cshtml new file mode 100644 index 0000000000..99ee20dacf --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Shared/LayoutEmpty.cshtml @@ -0,0 +1,47 @@ +@using Volo.Abp.AspNetCore.Mvc.AntiForgery +@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Bundling +@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components +@using Volo.AbpWebSite.Bundling +@using Volo.AbpWebSite.Pages.Shared.Components.Footer +@using Volo.AbpWebSite.Pages.Shared.Components.Header +@using Volo.AbpWebSite.Pages.Shared.Components.StandardMeta +@inject IAbpAntiForgeryManager AbpAntiForgeryManager +@inject IBrandingProvider BrandingProvider +@{ + Layout = null; + AbpAntiForgeryManager.SetCookie(); +} + + + + + @(ViewBag.Title == null ? "abp.io" : ViewBag.Title) + @await Component.InvokeAsync(typeof(StandardMetaViewComponent)) + + @RenderSection("styles", false) + + + +
+ @RenderBody() +
+ + + + + + + + + + + @RenderSection("scripts", false) + + + \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml new file mode 100644 index 0000000000..c2617a2b31 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml @@ -0,0 +1,79 @@ +@page +@using Volo.AbpWebSite +@model Volo.AbpWebSite.Pages.TemplatesModel +@{ + ViewBag.PageTitle = "Get Started"; +} +@section scripts { + +} +
+
+ + @using (Html.BeginForm(FormMethod.Post)) + { +
+
+

+ Create + New Project + +

+ +

This wizard creates a new project from the startup template which is properly configured to jump start to your project.

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + @if (DebugHelper.IsDebug) + { +
+ + +
+ + + } + +
+ Create Now +
+ +
+
+

The Startup Project

+

See the documentation to understand how to run the downloaded project.

+ +

Tutorial

+ +

See the tutorial to learn how to develop applications based on the ABP framework.

+ +
+
+ + } + +
+
\ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml.cs b/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml.cs new file mode 100644 index 0000000000..8a5e321143 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/Templates.cshtml.cs @@ -0,0 +1,72 @@ +using System.ComponentModel.DataAnnotations; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; +using Volo.Abp.Configuration; +using Volo.AbpWebSite.Templates; +using Volo.Utils.SolutionTemplating; +using Volo.Utils.SolutionTemplating.Building; + +namespace Volo.AbpWebSite.Pages +{ + public class TemplatesModel : AbpPageModel + { + private readonly SolutionBuilder _solutionBuilder; + private readonly IConfigurationAccessor _configurationAccessor; + + public TemplatesModel(SolutionBuilder solutionBuilder, IConfigurationAccessor configurationAccessor) + { + _solutionBuilder = solutionBuilder; + _configurationAccessor = configurationAccessor; + } + + [BindProperty] + public string CompanyAndProjectName { get; set; } + + [BindProperty] + public string ProjectType { get; set; } + + [BindProperty] + public string Version { get; set; } = StandardVersions.LatestStable; + + [BindProperty] + public DatabaseProvider DatabaseProvider { get; set; } = DatabaseProvider.EntityFrameworkCore; + + [BindProperty] + [Display(Name = "Replace local references by nuget packages.")] + public bool ReplaceLocalReferencesToNuget { get; set; } = true; + + public void OnGet() + { + + } + + public async Task OnPostAsync() + { + var template = CreateTemplateInfo(); + + var result = await _solutionBuilder.BuildAsync( + template, + CompanyAndProjectName, + DatabaseProvider, + Version, + ReplaceLocalReferencesToNuget + ); + + return File(result.ZipContent, "application/zip", result.ProjectName + ".zip"); + } + + private TemplateInfo CreateTemplateInfo() + { + switch (ProjectType) + { + case "MvcModule": + DatabaseProvider = DatabaseProvider.Irrelevant; + return new MvcModuleTemplate(_configurationAccessor.Configuration); + case "MvcApp": + default: + return new MvcApplicationTemplate(_configurationAccessor.Configuration); + } + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/_ViewImports.cshtml b/abp_io/src/Volo.AbpWebSite.Web/Pages/_ViewImports.cshtml new file mode 100644 index 0000000000..caae8c9ac5 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/_ViewImports.cshtml @@ -0,0 +1,5 @@ +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling +@addTagHelper *, Volo.Blogging.Web \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Pages/templates.js b/abp_io/src/Volo.AbpWebSite.Web/Pages/templates.js new file mode 100644 index 0000000000..a071be578b --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Pages/templates.js @@ -0,0 +1,11 @@ +(function($) { + $(function() { + $('#ProjectType').change(function() { + if ($(this).val() === 'MvcApp') { + $('#DatabaseProviderFormGroup').show('fast'); + } else { + $('#DatabaseProviderFormGroup').hide('fast'); + } + }); + }); +})(jQuery); \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Program.cs b/abp_io/src/Volo.AbpWebSite.Web/Program.cs new file mode 100644 index 0000000000..0ae7a19900 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Program.cs @@ -0,0 +1,21 @@ +using System.IO; +using Microsoft.AspNetCore.Hosting; + +namespace Volo.AbpWebSite +{ + public class Program + { + public static void Main(string[] args) + { + BuildWebHostInternal(args).Run(); + } + + internal static IWebHost BuildWebHostInternal(string[] args) => + new WebHostBuilder() + .UseKestrel() + .UseContentRoot(Directory.GetCurrentDirectory()) + .UseIISIntegration() + .UseStartup() + .Build(); + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/Properties/launchSettings.json b/abp_io/src/Volo.AbpWebSite.Web/Properties/launchSettings.json new file mode 100644 index 0000000000..b22c39f563 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:53074/", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Volo.AbpWebSite.Web": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:53075/" + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Startup.cs b/abp_io/src/Volo.AbpWebSite.Web/Startup.cs new file mode 100644 index 0000000000..471337df1c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Startup.cs @@ -0,0 +1,39 @@ +using System; +using System.Text; +using Microsoft.AspNetCore.Builder; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Serilog; +using Volo.Abp; + +namespace Volo.AbpWebSite +{ + public class Startup + { + public IServiceProvider ConfigureServices(IServiceCollection services) + { + services.AddApplication(options => + { + options.UseAutofac(); + }); + + return services.BuildServiceProviderFromFactory(); + } + + public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) + { + loggerFactory + .AddConsole() + .AddDebug() + .AddSerilog(new LoggerConfiguration() + .Enrich.FromLogContext() + .WriteTo.File("Logs/logs.txt") + .CreateLogger() + ); + + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + + app.InitializeApplication(); + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/ReadMe.txt b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/ReadMe.txt new file mode 100644 index 0000000000..7b9ee407c5 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/ReadMe.txt @@ -0,0 +1,2 @@ +This folder contains template downloads. +Should grant write permission for IIS. \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0-filtered.zip b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0-filtered.zip new file mode 100644 index 0000000000..bc6c46caf3 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0-filtered.zip differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0.zip b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0.zip new file mode 100644 index 0000000000..56990eb62c Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-app-0.4.0.zip differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master-filtered.zip b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master-filtered.zip new file mode 100644 index 0000000000..52544e0732 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master-filtered.zip differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master.zip b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master.zip new file mode 100644 index 0000000000..8404200f09 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/TemplateFiles/abp-mvc-module-master.zip differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcApplicationTemplate.cs b/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcApplicationTemplate.cs new file mode 100644 index 0000000000..6868720b20 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcApplicationTemplate.cs @@ -0,0 +1,50 @@ +using System.Collections.Generic; +using Microsoft.Extensions.Configuration; +using Volo.Utils.SolutionTemplating.Building; +using Volo.Utils.SolutionTemplating.Building.Steps; + +namespace Volo.AbpWebSite.Templates +{ + public class MvcApplicationTemplate : TemplateInfo + { + public MvcApplicationTemplate(IConfigurationRoot configuration) + : base( + "abp-mvc-app", + new GithubRepositoryInfo("abpframework/abp", configuration["GithubAccessToken"]), + "/templates/mvc") + { + + } + + public override IEnumerable GetCustomSteps(ProjectBuildContext context) + { + var steps = new List(); + SwitchDatabaseProvider(context, steps); + RemoveOtherDatabaseProviders(context, steps); + return steps; + } + + private static void SwitchDatabaseProvider(ProjectBuildContext context, List steps) + { + if (context.Request.DatabaseProvider == DatabaseProvider.MongoDb) + { + steps.Add(new SwitchEntityFrameworkCoreToMongoDbStep()); + } + } + + private static void RemoveOtherDatabaseProviders(ProjectBuildContext context, List steps) + { + if (context.Request.DatabaseProvider != DatabaseProvider.EntityFrameworkCore) + { + steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.EntityFrameworkCore")); + steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.Application.Tests", projectFolderPath: "test/MyCompanyName.MyProjectName.Application.Tests")); + steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.Web.Tests", projectFolderPath: "test/MyCompanyName.MyProjectName.Web.Tests")); + } + + if (context.Request.DatabaseProvider != DatabaseProvider.MongoDb) + { + steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.MongoDB")); + } + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcModuleTemplate.cs b/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcModuleTemplate.cs new file mode 100644 index 0000000000..6438612c98 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Templates/MvcModuleTemplate.cs @@ -0,0 +1,18 @@ + +using Microsoft.Extensions.Configuration; +using Volo.Utils.SolutionTemplating.Building; + +namespace Volo.AbpWebSite.Templates +{ + public class MvcModuleTemplate : TemplateInfo + { + public MvcModuleTemplate(IConfigurationRoot configuration) + : base( + "abp-mvc-module", + new GithubRepositoryInfo("abpframework/abp", configuration["GithubAccessToken"]), + "/templates/module") + { + + } + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/Volo.AbpWebSite.Web.csproj b/abp_io/src/Volo.AbpWebSite.Web/Volo.AbpWebSite.Web.csproj new file mode 100644 index 0000000000..e6e4517214 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/Volo.AbpWebSite.Web.csproj @@ -0,0 +1,51 @@ + + + + netcoreapp2.1 + Volo.AbpWebSite + $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; + true + true + true + true + false + true + c140514f-e488-4c99-8b9a-fabee0f53ce0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.Web/abp.resourcemapping.js b/abp_io/src/Volo.AbpWebSite.Web/abp.resourcemapping.js new file mode 100644 index 0000000000..77e84daf41 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/abp.resourcemapping.js @@ -0,0 +1,12 @@ +module.exports = { + aliases: { + "@node_modules": "./node_modules", + "@libs": "./wwwroot/libs" + }, + clean: [ + "@libs" + ], + mappings: { + + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/appsettings.json b/abp_io/src/Volo.AbpWebSite.Web/appsettings.json new file mode 100644 index 0000000000..cdac3f045f --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/appsettings.json @@ -0,0 +1,6 @@ +{ + "ConnectionStrings": { + "Default": "Server=localhost;Database=AbpIo;Trusted_Connection=True;MultipleActiveResultSets=true" + }, + "GithubAccessToken": "[# set Github SSH key #]" +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json b/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json new file mode 100644 index 0000000000..1e74c37e28 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json @@ -0,0 +1,6 @@ +[ + { + "outputFile": "wwwroot/scss/vs.css", + "inputFile": "wwwroot/scss/vs.scss" + } +] \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json.defaults b/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json.defaults new file mode 100644 index 0000000000..c75eb7d519 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/compilerconfig.json.defaults @@ -0,0 +1,49 @@ +{ + "compilers": { + "less": { + "autoPrefix": "", + "cssComb": "none", + "ieCompat": true, + "strictMath": false, + "strictUnits": false, + "relativeUrls": true, + "rootPath": "", + "sourceMapRoot": "", + "sourceMapBasePath": "", + "sourceMap": false + }, + "sass": { + "includePath": "", + "indentType": "space", + "indentWidth": 2, + "outputStyle": "nested", + "Precision": 5, + "relativeUrls": true, + "sourceMapRoot": "", + "sourceMap": false + }, + "stylus": { + "sourceMap": false + }, + "babel": { + "sourceMap": false + }, + "coffeescript": { + "bare": false, + "runtimeMode": "node", + "sourceMap": false + } + }, + "minifiers": { + "css": { + "enabled": true, + "termSemicolons": true, + "gzip": false + }, + "javascript": { + "enabled": true, + "termSemicolons": true, + "gzip": false + } + } +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/gulpfile.js b/abp_io/src/Volo.AbpWebSite.Web/gulpfile.js new file mode 100644 index 0000000000..db4c6fd03c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/gulpfile.js @@ -0,0 +1,11 @@ +"use strict"; + +var gulp = require("gulp"), + path = require('path'), + copyResources = require('./node_modules/@abp/aspnetcore.mvc.ui/gulp/copy-resources.js'); + +copyResources.init(path.resolve('./')); + +gulp.task('default', [copyResources.taskName], function () { + +}); \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/package.json b/abp_io/src/Volo.AbpWebSite.Web/package.json new file mode 100644 index 0000000000..082a9cd899 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/package.json @@ -0,0 +1,9 @@ +{ + "version": "0.1.0", + "name": "volo.aspnetzero.support", + "private": true, + "dependencies": { + "@abp/aspnetcore.mvc.ui.theme.basic": "^0.4.9", + "@abp/blogging": "^0.4.9" + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/publish-ignore.json b/abp_io/src/Volo.AbpWebSite.Web/publish-ignore.json new file mode 100644 index 0000000000..0fe0b4d0b9 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/publish-ignore.json @@ -0,0 +1,7 @@ +{ + ".well-known/": {}, + "TemplateFiles/": {}, + "wwwroot/files/": {}, + "appsettings.json": {}, + "web.config": {} +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/10938654.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/10938654.mp4 new file mode 100644 index 0000000000..50870fff02 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/10938654.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/13807595-preview.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/13807595-preview.mp4 new file mode 100644 index 0000000000..5d88d6cf99 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/13807595-preview.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/17607364-preview.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/17607364-preview.mp4 new file mode 100644 index 0000000000..1596b9d2b7 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/17607364-preview.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/22521100-preview.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/22521100-preview.mp4 new file mode 100644 index 0000000000..644e49234e Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/22521100-preview.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/24752027-preview.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/24752027-preview.mp4 new file mode 100644 index 0000000000..efca27bc10 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/24752027-preview.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/6690611-preview.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/6690611-preview.mp4 new file mode 100644 index 0000000000..1d3173c4f6 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/6690611-preview.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/Forma 1.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/Forma 1.png new file mode 100644 index 0000000000..52f9eea1b1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/Forma 1.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-dark.svg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-dark.svg new file mode 100644 index 0000000000..445fb48bb5 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-dark.svg @@ -0,0 +1 @@ +Asset 6 \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-light.svg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-light.svg new file mode 100644 index 0000000000..1161bbb163 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/abp-logo-light.svg @@ -0,0 +1 @@ +Asset 5 \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/dynamic.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/dynamic.png new file mode 100644 index 0000000000..fac91bdba5 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/dynamic.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/HELP-US-OUT.txt b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/HELP-US-OUT.txt new file mode 100644 index 0000000000..83d083dd77 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/HELP-US-OUT.txt @@ -0,0 +1,7 @@ +I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, +Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, +comprehensive icon sets or copy and paste your own. + +Please. Check it out. + +-Dave Gandy diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.css b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.css new file mode 100644 index 0000000000..ee906a8196 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.css @@ -0,0 +1,2337 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.fa-pull-left { + float: left; +} +.fa-pull-right { + float: right; +} +.fa.fa-pull-left { + margin-right: .3em; +} +.fa.fa-pull-right { + margin-left: .3em; +} +/* Deprecated as of 4.4.0 */ +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-feed:before, +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper-pp:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-intersex:before, +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-genderless:before { + content: "\f22d"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-optin-monster:before { + content: "\f23c"; +} +.fa-opencart:before { + content: "\f23d"; +} +.fa-expeditedssl:before { + content: "\f23e"; +} +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: "\f240"; +} +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241"; +} +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242"; +} +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243"; +} +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244"; +} +.fa-mouse-pointer:before { + content: "\f245"; +} +.fa-i-cursor:before { + content: "\f246"; +} +.fa-object-group:before { + content: "\f247"; +} +.fa-object-ungroup:before { + content: "\f248"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-sticky-note-o:before { + content: "\f24a"; +} +.fa-cc-jcb:before { + content: "\f24b"; +} +.fa-cc-diners-club:before { + content: "\f24c"; +} +.fa-clone:before { + content: "\f24d"; +} +.fa-balance-scale:before { + content: "\f24e"; +} +.fa-hourglass-o:before { + content: "\f250"; +} +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251"; +} +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252"; +} +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253"; +} +.fa-hourglass:before { + content: "\f254"; +} +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255"; +} +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256"; +} +.fa-hand-scissors-o:before { + content: "\f257"; +} +.fa-hand-lizard-o:before { + content: "\f258"; +} +.fa-hand-spock-o:before { + content: "\f259"; +} +.fa-hand-pointer-o:before { + content: "\f25a"; +} +.fa-hand-peace-o:before { + content: "\f25b"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-creative-commons:before { + content: "\f25e"; +} +.fa-gg:before { + content: "\f260"; +} +.fa-gg-circle:before { + content: "\f261"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-odnoklassniki:before { + content: "\f263"; +} +.fa-odnoklassniki-square:before { + content: "\f264"; +} +.fa-get-pocket:before { + content: "\f265"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-safari:before { + content: "\f267"; +} +.fa-chrome:before { + content: "\f268"; +} +.fa-firefox:before { + content: "\f269"; +} +.fa-opera:before { + content: "\f26a"; +} +.fa-internet-explorer:before { + content: "\f26b"; +} +.fa-tv:before, +.fa-television:before { + content: "\f26c"; +} +.fa-contao:before { + content: "\f26d"; +} +.fa-500px:before { + content: "\f26e"; +} +.fa-amazon:before { + content: "\f270"; +} +.fa-calendar-plus-o:before { + content: "\f271"; +} +.fa-calendar-minus-o:before { + content: "\f272"; +} +.fa-calendar-times-o:before { + content: "\f273"; +} +.fa-calendar-check-o:before { + content: "\f274"; +} +.fa-industry:before { + content: "\f275"; +} +.fa-map-pin:before { + content: "\f276"; +} +.fa-map-signs:before { + content: "\f277"; +} +.fa-map-o:before { + content: "\f278"; +} +.fa-map:before { + content: "\f279"; +} +.fa-commenting:before { + content: "\f27a"; +} +.fa-commenting-o:before { + content: "\f27b"; +} +.fa-houzz:before { + content: "\f27c"; +} +.fa-vimeo:before { + content: "\f27d"; +} +.fa-black-tie:before { + content: "\f27e"; +} +.fa-fonticons:before { + content: "\f280"; +} +.fa-reddit-alien:before { + content: "\f281"; +} +.fa-edge:before { + content: "\f282"; +} +.fa-credit-card-alt:before { + content: "\f283"; +} +.fa-codiepie:before { + content: "\f284"; +} +.fa-modx:before { + content: "\f285"; +} +.fa-fort-awesome:before { + content: "\f286"; +} +.fa-usb:before { + content: "\f287"; +} +.fa-product-hunt:before { + content: "\f288"; +} +.fa-mixcloud:before { + content: "\f289"; +} +.fa-scribd:before { + content: "\f28a"; +} +.fa-pause-circle:before { + content: "\f28b"; +} +.fa-pause-circle-o:before { + content: "\f28c"; +} +.fa-stop-circle:before { + content: "\f28d"; +} +.fa-stop-circle-o:before { + content: "\f28e"; +} +.fa-shopping-bag:before { + content: "\f290"; +} +.fa-shopping-basket:before { + content: "\f291"; +} +.fa-hashtag:before { + content: "\f292"; +} +.fa-bluetooth:before { + content: "\f293"; +} +.fa-bluetooth-b:before { + content: "\f294"; +} +.fa-percent:before { + content: "\f295"; +} +.fa-gitlab:before { + content: "\f296"; +} +.fa-wpbeginner:before { + content: "\f297"; +} +.fa-wpforms:before { + content: "\f298"; +} +.fa-envira:before { + content: "\f299"; +} +.fa-universal-access:before { + content: "\f29a"; +} +.fa-wheelchair-alt:before { + content: "\f29b"; +} +.fa-question-circle-o:before { + content: "\f29c"; +} +.fa-blind:before { + content: "\f29d"; +} +.fa-audio-description:before { + content: "\f29e"; +} +.fa-volume-control-phone:before { + content: "\f2a0"; +} +.fa-braille:before { + content: "\f2a1"; +} +.fa-assistive-listening-systems:before { + content: "\f2a2"; +} +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; +} +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: "\f2a4"; +} +.fa-glide:before { + content: "\f2a5"; +} +.fa-glide-g:before { + content: "\f2a6"; +} +.fa-signing:before, +.fa-sign-language:before { + content: "\f2a7"; +} +.fa-low-vision:before { + content: "\f2a8"; +} +.fa-viadeo:before { + content: "\f2a9"; +} +.fa-viadeo-square:before { + content: "\f2aa"; +} +.fa-snapchat:before { + content: "\f2ab"; +} +.fa-snapchat-ghost:before { + content: "\f2ac"; +} +.fa-snapchat-square:before { + content: "\f2ad"; +} +.fa-pied-piper:before { + content: "\f2ae"; +} +.fa-first-order:before { + content: "\f2b0"; +} +.fa-yoast:before { + content: "\f2b1"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} +.fa-handshake-o:before { + content: "\f2b5"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-open-o:before { + content: "\f2b7"; +} +.fa-linode:before { + content: "\f2b8"; +} +.fa-address-book:before { + content: "\f2b9"; +} +.fa-address-book-o:before { + content: "\f2ba"; +} +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb"; +} +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-circle-o:before { + content: "\f2be"; +} +.fa-user-o:before { + content: "\f2c0"; +} +.fa-id-badge:before { + content: "\f2c1"; +} +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2"; +} +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-free-code-camp:before { + content: "\f2c5"; +} +.fa-telegram:before { + content: "\f2c6"; +} +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7"; +} +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9"; +} +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca"; +} +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb"; +} +.fa-shower:before { + content: "\f2cc"; +} +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd"; +} +.fa-podcast:before { + content: "\f2ce"; +} +.fa-window-maximize:before { + content: "\f2d0"; +} +.fa-window-minimize:before { + content: "\f2d1"; +} +.fa-window-restore:before { + content: "\f2d2"; +} +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3"; +} +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4"; +} +.fa-bandcamp:before { + content: "\f2d5"; +} +.fa-grav:before { + content: "\f2d6"; +} +.fa-etsy:before { + content: "\f2d7"; +} +.fa-imdb:before { + content: "\f2d8"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-eercast:before { + content: "\f2da"; +} +.fa-microchip:before { + content: "\f2db"; +} +.fa-snowflake-o:before { + content: "\f2dc"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-meetup:before { + content: "\f2e0"; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.min.css b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.min.css new file mode 100644 index 0000000000..540440ce89 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/FontAwesome.otf b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/FontAwesome.otf new file mode 100644 index 0000000000..401ec0f36e Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/FontAwesome.otf differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.eot b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000000..e9f60ca953 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.eot differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.svg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000000..855c845e53 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.ttf b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000000..35acda2fa1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.ttf differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000000..400014a4b0 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff2 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000000..4d13fc6040 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/fonts/fontawesome-webfont.woff2 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/animated.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/animated.less new file mode 100644 index 0000000000..66ad52a5ba --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/animated.less @@ -0,0 +1,34 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/bordered-pulled.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/bordered-pulled.less new file mode 100644 index 0000000000..f1c8ad75f5 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/bordered-pulled.less @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em @fa-border-color; + border-radius: .1em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix} { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.@{fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/core.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/core.less new file mode 100644 index 0000000000..c577ac84a6 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix} { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/fixed-width.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/fixed-width.less new file mode 100644 index 0000000000..110289f2f4 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/font-awesome.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/font-awesome.less new file mode 100644 index 0000000000..c3677def31 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/font-awesome.less @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables.less"; +@import "mixins.less"; +@import "path.less"; +@import "core.less"; +@import "larger.less"; +@import "fixed-width.less"; +@import "list.less"; +@import "bordered-pulled.less"; +@import "animated.less"; +@import "rotated-flipped.less"; +@import "stacked.less"; +@import "icons.less"; +@import "screen-reader.less"; diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/icons.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/icons.less new file mode 100644 index 0000000000..159d600425 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/icons.less @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-remove:before, +.@{fa-css-prefix}-close:before, +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-gear:before, +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } +.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } +.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } +.@{fa-css-prefix}-rotate-right:before, +.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } +.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-dedent:before, +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } +.@{fa-css-prefix}-photo:before, +.@{fa-css-prefix}-image:before, +.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } +.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-edit:before, +.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } +.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } +.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } +.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } +.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-mail-forward:before, +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-warning:before, +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } +.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } +.@{fa-css-prefix}-bar-chart-o:before, +.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-gears:before, +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } +.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } +.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } +.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } +.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } +.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } +.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } +.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-facebook-f:before, +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-feed:before, +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } +.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } +.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } +.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-group:before, +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-chain:before, +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-cut:before, +.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } +.@{fa-css-prefix}-copy:before, +.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-save:before, +.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-navicon:before, +.@{fa-css-prefix}-reorder:before, +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-money:before { content: @fa-var-money; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-unsorted:before, +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-down:before, +.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } +.@{fa-css-prefix}-sort-up:before, +.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-rotate-left:before, +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-legal:before, +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-dashboard:before, +.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } +.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } +.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } +.@{fa-css-prefix}-flash:before, +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-paste:before, +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } +.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } +.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } +.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } +.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } +.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } +.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-mobile-phone:before, +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-mail-reply:before, +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } +.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } +.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } +.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } +.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } +.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-mail-reply-all:before, +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-star-half-empty:before, +.@{fa-css-prefix}-star-half-full:before, +.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } +.@{fa-css-prefix}-unlink:before, +.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } +.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } +.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } +.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } +.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-toggle-down:before, +.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } +.@{fa-css-prefix}-toggle-up:before, +.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } +.@{fa-css-prefix}-toggle-right:before, +.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } +.@{fa-css-prefix}-euro:before, +.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } +.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } +.@{fa-css-prefix}-dollar:before, +.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } +.@{fa-css-prefix}-rupee:before, +.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } +.@{fa-css-prefix}-cny:before, +.@{fa-css-prefix}-rmb:before, +.@{fa-css-prefix}-yen:before, +.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } +.@{fa-css-prefix}-ruble:before, +.@{fa-css-prefix}-rouble:before, +.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } +.@{fa-css-prefix}-won:before, +.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } +.@{fa-css-prefix}-bitcoin:before, +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } +.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } +.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } +.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } +.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } +.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } +.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } +.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } +.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } +.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-gittip:before, +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } +.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } +.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } +.@{fa-css-prefix}-toggle-left:before, +.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } +.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-turkish-lira:before, +.@{fa-css-prefix}-try:before { content: @fa-var-try; } +.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-institution:before, +.@{fa-css-prefix}-bank:before, +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-mortar-board:before, +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-automobile:before, +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-cab:before, +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } +.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } +.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } +.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } +.@{fa-css-prefix}-file-photo-o:before, +.@{fa-css-prefix}-file-picture-o:before, +.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } +.@{fa-css-prefix}-file-zip-o:before, +.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } +.@{fa-css-prefix}-file-sound-o:before, +.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } +.@{fa-css-prefix}-file-movie-o:before, +.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } +.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-life-bouy:before, +.@{fa-css-prefix}-life-buoy:before, +.@{fa-css-prefix}-life-saver:before, +.@{fa-css-prefix}-support:before, +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } +.@{fa-css-prefix}-ra:before, +.@{fa-css-prefix}-resistance:before, +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-ge:before, +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-y-combinator-square:before, +.@{fa-css-prefix}-yc-square:before, +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-wechat:before, +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-send:before, +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-send-o:before, +.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } +.@{fa-css-prefix}-header:before { content: @fa-var-header; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-soccer-ball-o:before, +.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } +.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } +.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } +.@{fa-css-prefix}-shekel:before, +.@{fa-css-prefix}-sheqel:before, +.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } +.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-intersex:before, +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-hotel:before, +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-yc:before, +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-battery-4:before, +.@{fa-css-prefix}-battery:before, +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-3:before, +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-battery-2:before, +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-1:before, +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-0:before, +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } +.@{fa-css-prefix}-hourglass-1:before, +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-hourglass-2:before, +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-3:before, +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hand-grab-o:before, +.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } +.@{fa-css-prefix}-hand-stop-o:before, +.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } +.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } +.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } +.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } +.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } +.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-tv:before, +.@{fa-css-prefix}-television:before { content: @fa-var-television; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } +.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } +.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } +.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } +.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } +.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asl-interpreting:before, +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-deafness:before, +.@{fa-css-prefix}-hard-of-hearing:before, +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-signing:before, +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-google-plus-circle:before, +.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } +.@{fa-css-prefix}-fa:before, +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } +.@{fa-css-prefix}-vcard:before, +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-vcard-o:before, +.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } +.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-drivers-license:before, +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-drivers-license-o:before, +.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-thermometer-4:before, +.@{fa-css-prefix}-thermometer:before, +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-3:before, +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thermometer-2:before, +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-1:before, +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-0:before, +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-bathtub:before, +.@{fa-css-prefix}-s15:before, +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-times-rectangle:before, +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-times-rectangle-o:before, +.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/larger.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/larger.less new file mode 100644 index 0000000000..c9d646770e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/larger.less @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.@{fa-css-prefix}-2x { font-size: 2em; } +.@{fa-css-prefix}-3x { font-size: 3em; } +.@{fa-css-prefix}-4x { font-size: 4em; } +.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/list.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/list.less new file mode 100644 index 0000000000..0b440382f6 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/list.less @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + padding-left: 0; + margin-left: @fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.@{fa-css-prefix}-li { + position: absolute; + left: -@fa-li-width; + width: @fa-li-width; + top: (2em / 14); + text-align: center; + &.@{fa-css-prefix}-lg { + left: (-@fa-li-width + (4em / 14)); + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/mixins.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/mixins.less new file mode 100644 index 0000000000..beef231d0e --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/mixins.less @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +.fa-icon() { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + -webkit-transform: rotate(@degrees); + -ms-transform: rotate(@degrees); + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + -webkit-transform: scale(@horiz, @vert); + -ms-transform: scale(@horiz, @vert); + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/path.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/path.less new file mode 100644 index 0000000000..835be41f81 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/path.less @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); + src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), + url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), + url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), + url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), + url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); + // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/rotated-flipped.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/rotated-flipped.less new file mode 100644 index 0000000000..f6ba81475b --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/rotated-flipped.less @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .@{fa-css-prefix}-rotate-90, +:root .@{fa-css-prefix}-rotate-180, +:root .@{fa-css-prefix}-rotate-270, +:root .@{fa-css-prefix}-flip-horizontal, +:root .@{fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/screen-reader.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/screen-reader.less new file mode 100644 index 0000000000..11c188196d --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/stacked.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/stacked.less new file mode 100644 index 0000000000..fc53fb0e7a --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/stacked.less @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/variables.less b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/variables.less new file mode 100644 index 0000000000..7ddbbc0115 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/less/variables.less @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +@fa-font-path: "../fonts"; +@fa-font-size-base: 14px; +@fa-line-height-base: 1; +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly +@fa-css-prefix: fa; +@fa-version: "4.7.0"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: (30em / 14); + +@fa-var-500px: "\f26e"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-book-o: "\f2ba"; +@fa-var-address-card: "\f2bb"; +@fa-var-address-card-o: "\f2bc"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-amazon: "\f270"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-apple: "\f179"; +@fa-var-archive: "\f187"; +@fa-var-area-chart: "\f1fe"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-o-down: "\f01a"; +@fa-var-arrow-circle-o-left: "\f190"; +@fa-var-arrow-circle-o-right: "\f18e"; +@fa-var-arrow-circle-o-up: "\f01b"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows: "\f047"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-h: "\f07e"; +@fa-var-arrows-v: "\f07d"; +@fa-var-asl-interpreting: "\f2a3"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-at: "\f1fa"; +@fa-var-audio-description: "\f29e"; +@fa-var-automobile: "\f1b9"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-bank: "\f19c"; +@fa-var-bar-chart: "\f080"; +@fa-var-bar-chart-o: "\f080"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-bath: "\f2cd"; +@fa-var-bathtub: "\f2cd"; +@fa-var-battery: "\f240"; +@fa-var-battery-0: "\f244"; +@fa-var-battery-1: "\f243"; +@fa-var-battery-2: "\f242"; +@fa-var-battery-3: "\f241"; +@fa-var-battery-4: "\f240"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-o: "\f0a2"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bell-slash-o: "\f1f7"; +@fa-var-bicycle: "\f206"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitbucket-square: "\f172"; +@fa-var-bitcoin: "\f15a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blind: "\f29d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-book: "\f02d"; +@fa-var-bookmark: "\f02e"; +@fa-var-bookmark-o: "\f097"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-building-o: "\f0f7"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-bus: "\f207"; +@fa-var-buysellads: "\f20d"; +@fa-var-cab: "\f1ba"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f073"; +@fa-var-calendar-check-o: "\f274"; +@fa-var-calendar-minus-o: "\f272"; +@fa-var-calendar-o: "\f133"; +@fa-var-calendar-plus-o: "\f271"; +@fa-var-calendar-times-o: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-o-down: "\f150"; +@fa-var-caret-square-o-left: "\f191"; +@fa-var-caret-square-o-right: "\f152"; +@fa-var-caret-square-o-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc: "\f20a"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-certificate: "\f0a3"; +@fa-var-chain: "\f0c1"; +@fa-var-chain-broken: "\f127"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-circle-o: "\f05d"; +@fa-var-check-square: "\f14a"; +@fa-var-check-square-o: "\f046"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-circle: "\f111"; +@fa-var-circle-o: "\f10c"; +@fa-var-circle-o-notch: "\f1ce"; +@fa-var-circle-thin: "\f1db"; +@fa-var-clipboard: "\f0ea"; +@fa-var-clock-o: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-close: "\f00d"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download: "\f0ed"; +@fa-var-cloud-upload: "\f0ee"; +@fa-var-cny: "\f157"; +@fa-var-code: "\f121"; +@fa-var-code-fork: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-o: "\f0e5"; +@fa-var-commenting: "\f27a"; +@fa-var-commenting-o: "\f27b"; +@fa-var-comments: "\f086"; +@fa-var-comments-o: "\f0e6"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-creative-commons: "\f25e"; +@fa-var-credit-card: "\f09d"; +@fa-var-credit-card-alt: "\f283"; +@fa-var-crop: "\f125"; +@fa-var-crosshairs: "\f05b"; +@fa-var-css3: "\f13c"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cutlery: "\f0f5"; +@fa-var-dashboard: "\f0e4"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-deafness: "\f2a4"; +@fa-var-dedent: "\f03b"; +@fa-var-delicious: "\f1a5"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diamond: "\f219"; +@fa-var-digg: "\f1a6"; +@fa-var-dollar: "\f155"; +@fa-var-dot-circle-o: "\f192"; +@fa-var-download: "\f019"; +@fa-var-dribbble: "\f17d"; +@fa-var-drivers-license: "\f2c2"; +@fa-var-drivers-license-o: "\f2c3"; +@fa-var-dropbox: "\f16b"; +@fa-var-drupal: "\f1a9"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eercast: "\f2da"; +@fa-var-eject: "\f052"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-o: "\f003"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-open-o: "\f2b7"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-eraser: "\f12d"; +@fa-var-etsy: "\f2d7"; +@fa-var-eur: "\f153"; +@fa-var-euro: "\f153"; +@fa-var-exchange: "\f0ec"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link: "\f08e"; +@fa-var-external-link-square: "\f14c"; +@fa-var-eye: "\f06e"; +@fa-var-eye-slash: "\f070"; +@fa-var-eyedropper: "\f1fb"; +@fa-var-fa: "\f2b4"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f09a"; +@fa-var-facebook-official: "\f230"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feed: "\f09e"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-archive-o: "\f1c6"; +@fa-var-file-audio-o: "\f1c7"; +@fa-var-file-code-o: "\f1c9"; +@fa-var-file-excel-o: "\f1c3"; +@fa-var-file-image-o: "\f1c5"; +@fa-var-file-movie-o: "\f1c8"; +@fa-var-file-o: "\f016"; +@fa-var-file-pdf-o: "\f1c1"; +@fa-var-file-photo-o: "\f1c5"; +@fa-var-file-picture-o: "\f1c5"; +@fa-var-file-powerpoint-o: "\f1c4"; +@fa-var-file-sound-o: "\f1c7"; +@fa-var-file-text: "\f15c"; +@fa-var-file-text-o: "\f0f6"; +@fa-var-file-video-o: "\f1c8"; +@fa-var-file-word-o: "\f1c2"; +@fa-var-file-zip-o: "\f1c6"; +@fa-var-files-o: "\f0c5"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-order: "\f2b0"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flag-o: "\f11d"; +@fa-var-flash: "\f0e7"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-floppy-o: "\f0c7"; +@fa-var-folder: "\f07b"; +@fa-var-folder-o: "\f114"; +@fa-var-folder-open: "\f07c"; +@fa-var-folder-open-o: "\f115"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-fonticons: "\f280"; +@fa-var-fort-awesome: "\f286"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-frown-o: "\f119"; +@fa-var-futbol-o: "\f1e3"; +@fa-var-gamepad: "\f11b"; +@fa-var-gavel: "\f0e3"; +@fa-var-gbp: "\f154"; +@fa-var-ge: "\f1d1"; +@fa-var-gear: "\f013"; +@fa-var-gears: "\f085"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitlab: "\f296"; +@fa-var-gittip: "\f184"; +@fa-var-glass: "\f000"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-google: "\f1a0"; +@fa-var-google-plus: "\f0d5"; +@fa-var-google-plus-circle: "\f2b3"; +@fa-var-google-plus-official: "\f2b3"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-group: "\f0c0"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hand-grab-o: "\f255"; +@fa-var-hand-lizard-o: "\f258"; +@fa-var-hand-o-down: "\f0a7"; +@fa-var-hand-o-left: "\f0a5"; +@fa-var-hand-o-right: "\f0a4"; +@fa-var-hand-o-up: "\f0a6"; +@fa-var-hand-paper-o: "\f256"; +@fa-var-hand-peace-o: "\f25b"; +@fa-var-hand-pointer-o: "\f25a"; +@fa-var-hand-rock-o: "\f255"; +@fa-var-hand-scissors-o: "\f257"; +@fa-var-hand-spock-o: "\f259"; +@fa-var-hand-stop-o: "\f256"; +@fa-var-handshake-o: "\f2b5"; +@fa-var-hard-of-hearing: "\f2a4"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd-o: "\f0a0"; +@fa-var-header: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-heart: "\f004"; +@fa-var-heart-o: "\f08a"; +@fa-var-heartbeat: "\f21e"; +@fa-var-history: "\f1da"; +@fa-var-home: "\f015"; +@fa-var-hospital-o: "\f0f8"; +@fa-var-hotel: "\f236"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-1: "\f251"; +@fa-var-hourglass-2: "\f252"; +@fa-var-hourglass-3: "\f253"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-o: "\f250"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-o: "\f2c3"; +@fa-var-ils: "\f20b"; +@fa-var-image: "\f03e"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-inr: "\f156"; +@fa-var-instagram: "\f16d"; +@fa-var-institution: "\f19c"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-intersex: "\f224"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-joomla: "\f1aa"; +@fa-var-jpy: "\f157"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keyboard-o: "\f11c"; +@fa-var-krw: "\f159"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-legal: "\f0e3"; +@fa-var-lemon-o: "\f094"; +@fa-var-level-down: "\f149"; +@fa-var-level-up: "\f148"; +@fa-var-life-bouy: "\f1cd"; +@fa-var-life-buoy: "\f1cd"; +@fa-var-life-ring: "\f1cd"; +@fa-var-life-saver: "\f1cd"; +@fa-var-lightbulb-o: "\f0eb"; +@fa-var-line-chart: "\f201"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f0e1"; +@fa-var-linkedin-square: "\f08c"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-long-arrow-down: "\f175"; +@fa-var-long-arrow-left: "\f177"; +@fa-var-long-arrow-right: "\f178"; +@fa-var-long-arrow-up: "\f176"; +@fa-var-low-vision: "\f2a8"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-mail-forward: "\f064"; +@fa-var-mail-reply: "\f112"; +@fa-var-mail-reply-all: "\f122"; +@fa-var-male: "\f183"; +@fa-var-map: "\f279"; +@fa-var-map-marker: "\f041"; +@fa-var-map-o: "\f278"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-maxcdn: "\f136"; +@fa-var-meanpath: "\f20c"; +@fa-var-medium: "\f23a"; +@fa-var-medkit: "\f0fa"; +@fa-var-meetup: "\f2e0"; +@fa-var-meh-o: "\f11a"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-slash: "\f131"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-minus-square-o: "\f147"; +@fa-var-mixcloud: "\f289"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-phone: "\f10b"; +@fa-var-modx: "\f285"; +@fa-var-money: "\f0d6"; +@fa-var-moon-o: "\f186"; +@fa-var-mortar-board: "\f19d"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-navicon: "\f0c9"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper-o: "\f1ea"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-outdent: "\f03b"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paper-plane-o: "\f1d9"; +@fa-var-paperclip: "\f0c6"; +@fa-var-paragraph: "\f1dd"; +@fa-var-paste: "\f0ea"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-pause-circle-o: "\f28c"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pencil: "\f040"; +@fa-var-pencil-square: "\f14b"; +@fa-var-pencil-square-o: "\f044"; +@fa-var-percent: "\f295"; +@fa-var-phone: "\f095"; +@fa-var-phone-square: "\f098"; +@fa-var-photo: "\f03e"; +@fa-var-picture-o: "\f03e"; +@fa-var-pie-chart: "\f200"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-play-circle-o: "\f01d"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-plus-square-o: "\f196"; +@fa-var-podcast: "\f2ce"; +@fa-var-power-off: "\f011"; +@fa-var-print: "\f02f"; +@fa-var-product-hunt: "\f288"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-question-circle-o: "\f29c"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-ra: "\f1d0"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-rebel: "\f1d0"; +@fa-var-recycle: "\f1b8"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-refresh: "\f021"; +@fa-var-registered: "\f25d"; +@fa-var-remove: "\f00d"; +@fa-var-renren: "\f18b"; +@fa-var-reorder: "\f0c9"; +@fa-var-repeat: "\f01e"; +@fa-var-reply: "\f112"; +@fa-var-reply-all: "\f122"; +@fa-var-resistance: "\f1d0"; +@fa-var-retweet: "\f079"; +@fa-var-rmb: "\f157"; +@fa-var-road: "\f018"; +@fa-var-rocket: "\f135"; +@fa-var-rotate-left: "\f0e2"; +@fa-var-rotate-right: "\f01e"; +@fa-var-rouble: "\f158"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-rub: "\f158"; +@fa-var-ruble: "\f158"; +@fa-var-rupee: "\f156"; +@fa-var-s15: "\f2cd"; +@fa-var-safari: "\f267"; +@fa-var-save: "\f0c7"; +@fa-var-scissors: "\f0c4"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-sellsy: "\f213"; +@fa-var-send: "\f1d8"; +@fa-var-send-o: "\f1d9"; +@fa-var-server: "\f233"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-share-square-o: "\f045"; +@fa-var-shekel: "\f20b"; +@fa-var-sheqel: "\f20b"; +@fa-var-shield: "\f132"; +@fa-var-ship: "\f21a"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shower: "\f2cc"; +@fa-var-sign-in: "\f090"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out: "\f08b"; +@fa-var-signal: "\f012"; +@fa-var-signing: "\f2a7"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sitemap: "\f0e8"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-sliders: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile-o: "\f118"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake-o: "\f2dc"; +@fa-var-soccer-ball-o: "\f1e3"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-asc: "\f15d"; +@fa-var-sort-alpha-desc: "\f15e"; +@fa-var-sort-amount-asc: "\f160"; +@fa-var-sort-amount-desc: "\f161"; +@fa-var-sort-asc: "\f0de"; +@fa-var-sort-desc: "\f0dd"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-asc: "\f162"; +@fa-var-sort-numeric-desc: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-space-shuttle: "\f197"; +@fa-var-spinner: "\f110"; +@fa-var-spoon: "\f1b1"; +@fa-var-spotify: "\f1bc"; +@fa-var-square: "\f0c8"; +@fa-var-square-o: "\f096"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-star-half-empty: "\f123"; +@fa-var-star-half-full: "\f123"; +@fa-var-star-half-o: "\f123"; +@fa-var-star-o: "\f006"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticky-note: "\f249"; +@fa-var-sticky-note-o: "\f24a"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stop-circle-o: "\f28e"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-sun-o: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-support: "\f1cd"; +@fa-var-table: "\f0ce"; +@fa-var-tablet: "\f10a"; +@fa-var-tachometer: "\f0e4"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-telegram: "\f2c6"; +@fa-var-television: "\f26c"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f2c7"; +@fa-var-thermometer-0: "\f2cb"; +@fa-var-thermometer-1: "\f2ca"; +@fa-var-thermometer-2: "\f2c9"; +@fa-var-thermometer-3: "\f2c8"; +@fa-var-thermometer-4: "\f2c7"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumb-tack: "\f08d"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-o-down: "\f088"; +@fa-var-thumbs-o-up: "\f087"; +@fa-var-thumbs-up: "\f164"; +@fa-var-ticket: "\f145"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-times-circle-o: "\f05c"; +@fa-var-times-rectangle: "\f2d3"; +@fa-var-times-rectangle-o: "\f2d4"; +@fa-var-tint: "\f043"; +@fa-var-toggle-down: "\f150"; +@fa-var-toggle-left: "\f191"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toggle-right: "\f152"; +@fa-var-toggle-up: "\f151"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-o: "\f014"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-try: "\f195"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-turkish-lira: "\f195"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-umbrella: "\f0e9"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-unsorted: "\f0dc"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-usd: "\f155"; +@fa-var-user: "\f007"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-circle-o: "\f2be"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-o: "\f2c0"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-vcard: "\f2bb"; +@fa-var-vcard-o: "\f2bc"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-video-camera: "\f03d"; +@fa-var-vimeo: "\f27d"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-volume-control-phone: "\f2a0"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-warning: "\f071"; +@fa-var-wechat: "\f1d7"; +@fa-var-weibo: "\f18a"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-wheelchair: "\f193"; +@fa-var-wheelchair-alt: "\f29b"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f2d3"; +@fa-var-window-close-o: "\f2d4"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-won: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-y-combinator-square: "\f1d4"; +@fa-var-yahoo: "\f19e"; +@fa-var-yc: "\f23b"; +@fa-var-yc-square: "\f1d4"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-play: "\f16a"; +@fa-var-youtube-square: "\f166"; + diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_animated.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_animated.scss new file mode 100644 index 0000000000..8a020dbfff --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_animated.scss @@ -0,0 +1,34 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_bordered-pulled.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_bordered-pulled.scss new file mode 100644 index 0000000000..d4b85a02f2 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_bordered-pulled.scss @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em $fa-border-color; + border-radius: .1em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix} { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.#{$fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_core.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_core.scss new file mode 100644 index 0000000000..7425ef85fc --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_core.scss @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix} { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_fixed-width.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_fixed-width.scss new file mode 100644 index 0000000000..b221c98133 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_icons.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_icons.scss new file mode 100644 index 0000000000..e63e702c4d --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_icons.scss @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } +.#{$fa-css-prefix}-music:before { content: $fa-var-music; } +.#{$fa-css-prefix}-search:before { content: $fa-var-search; } +.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } +.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } +.#{$fa-css-prefix}-star:before { content: $fa-var-star; } +.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } +.#{$fa-css-prefix}-user:before { content: $fa-var-user; } +.#{$fa-css-prefix}-film:before { content: $fa-var-film; } +.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } +.#{$fa-css-prefix}-th:before { content: $fa-var-th; } +.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } +.#{$fa-css-prefix}-check:before { content: $fa-var-check; } +.#{$fa-css-prefix}-remove:before, +.#{$fa-css-prefix}-close:before, +.#{$fa-css-prefix}-times:before { content: $fa-var-times; } +.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } +.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } +.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } +.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } +.#{$fa-css-prefix}-gear:before, +.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } +.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } +.#{$fa-css-prefix}-home:before { content: $fa-var-home; } +.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } +.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } +.#{$fa-css-prefix}-road:before { content: $fa-var-road; } +.#{$fa-css-prefix}-download:before { content: $fa-var-download; } +.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } +.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } +.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } +.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } +.#{$fa-css-prefix}-rotate-right:before, +.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } +.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } +.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } +.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } +.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } +.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } +.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } +.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } +.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } +.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } +.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } +.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } +.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } +.#{$fa-css-prefix}-book:before { content: $fa-var-book; } +.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } +.#{$fa-css-prefix}-print:before { content: $fa-var-print; } +.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } +.#{$fa-css-prefix}-font:before { content: $fa-var-font; } +.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } +.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } +.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } +.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } +.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } +.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } +.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } +.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } +.#{$fa-css-prefix}-list:before { content: $fa-var-list; } +.#{$fa-css-prefix}-dedent:before, +.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } +.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } +.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } +.#{$fa-css-prefix}-photo:before, +.#{$fa-css-prefix}-image:before, +.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } +.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } +.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } +.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } +.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } +.#{$fa-css-prefix}-edit:before, +.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } +.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } +.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } +.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } +.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } +.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } +.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } +.#{$fa-css-prefix}-play:before { content: $fa-var-play; } +.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } +.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } +.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } +.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } +.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } +.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } +.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } +.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } +.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } +.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } +.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } +.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } +.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } +.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } +.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } +.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } +.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } +.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } +.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } +.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } +.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } +.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } +.#{$fa-css-prefix}-mail-forward:before, +.#{$fa-css-prefix}-share:before { content: $fa-var-share; } +.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } +.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } +.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } +.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } +.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } +.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } +.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } +.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } +.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } +.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } +.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } +.#{$fa-css-prefix}-warning:before, +.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } +.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } +.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } +.#{$fa-css-prefix}-random:before { content: $fa-var-random; } +.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } +.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } +.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } +.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } +.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } +.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } +.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } +.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } +.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } +.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } +.#{$fa-css-prefix}-bar-chart-o:before, +.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } +.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } +.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } +.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } +.#{$fa-css-prefix}-key:before { content: $fa-var-key; } +.#{$fa-css-prefix}-gears:before, +.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } +.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } +.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } +.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } +.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } +.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } +.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } +.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } +.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } +.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } +.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } +.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } +.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } +.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } +.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } +.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } +.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } +.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } +.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } +.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } +.#{$fa-css-prefix}-facebook-f:before, +.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } +.#{$fa-css-prefix}-github:before { content: $fa-var-github; } +.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } +.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } +.#{$fa-css-prefix}-feed:before, +.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } +.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } +.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } +.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } +.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } +.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } +.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } +.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } +.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } +.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } +.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } +.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } +.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } +.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } +.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } +.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } +.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } +.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } +.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } +.#{$fa-css-prefix}-group:before, +.#{$fa-css-prefix}-users:before { content: $fa-var-users; } +.#{$fa-css-prefix}-chain:before, +.#{$fa-css-prefix}-link:before { content: $fa-var-link; } +.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } +.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } +.#{$fa-css-prefix}-cut:before, +.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } +.#{$fa-css-prefix}-copy:before, +.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } +.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } +.#{$fa-css-prefix}-save:before, +.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } +.#{$fa-css-prefix}-square:before { content: $fa-var-square; } +.#{$fa-css-prefix}-navicon:before, +.#{$fa-css-prefix}-reorder:before, +.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } +.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } +.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } +.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } +.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } +.#{$fa-css-prefix}-table:before { content: $fa-var-table; } +.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } +.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } +.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } +.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } +.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } +.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } +.#{$fa-css-prefix}-money:before { content: $fa-var-money; } +.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } +.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } +.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } +.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } +.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } +.#{$fa-css-prefix}-unsorted:before, +.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } +.#{$fa-css-prefix}-sort-down:before, +.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } +.#{$fa-css-prefix}-sort-up:before, +.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } +.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } +.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } +.#{$fa-css-prefix}-rotate-left:before, +.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } +.#{$fa-css-prefix}-legal:before, +.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } +.#{$fa-css-prefix}-dashboard:before, +.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } +.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } +.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } +.#{$fa-css-prefix}-flash:before, +.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } +.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } +.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } +.#{$fa-css-prefix}-paste:before, +.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } +.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } +.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } +.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } +.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } +.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } +.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } +.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } +.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } +.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } +.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } +.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } +.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } +.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } +.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } +.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } +.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } +.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } +.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } +.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } +.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } +.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } +.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } +.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } +.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } +.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } +.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } +.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } +.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } +.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } +.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } +.#{$fa-css-prefix}-mobile-phone:before, +.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } +.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } +.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } +.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } +.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } +.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } +.#{$fa-css-prefix}-mail-reply:before, +.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } +.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } +.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } +.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } +.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } +.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } +.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } +.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } +.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } +.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } +.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } +.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } +.#{$fa-css-prefix}-code:before { content: $fa-var-code; } +.#{$fa-css-prefix}-mail-reply-all:before, +.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } +.#{$fa-css-prefix}-star-half-empty:before, +.#{$fa-css-prefix}-star-half-full:before, +.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } +.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } +.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } +.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } +.#{$fa-css-prefix}-unlink:before, +.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } +.#{$fa-css-prefix}-question:before { content: $fa-var-question; } +.#{$fa-css-prefix}-info:before { content: $fa-var-info; } +.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } +.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } +.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } +.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } +.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } +.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } +.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } +.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } +.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } +.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } +.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } +.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } +.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } +.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } +.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } +.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } +.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } +.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } +.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } +.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } +.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } +.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } +.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } +.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } +.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } +.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } +.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } +.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } +.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } +.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } +.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } +.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } +.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } +.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } +.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } +.#{$fa-css-prefix}-toggle-down:before, +.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } +.#{$fa-css-prefix}-toggle-up:before, +.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } +.#{$fa-css-prefix}-toggle-right:before, +.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } +.#{$fa-css-prefix}-euro:before, +.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } +.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } +.#{$fa-css-prefix}-dollar:before, +.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } +.#{$fa-css-prefix}-rupee:before, +.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } +.#{$fa-css-prefix}-cny:before, +.#{$fa-css-prefix}-rmb:before, +.#{$fa-css-prefix}-yen:before, +.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } +.#{$fa-css-prefix}-ruble:before, +.#{$fa-css-prefix}-rouble:before, +.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } +.#{$fa-css-prefix}-won:before, +.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } +.#{$fa-css-prefix}-bitcoin:before, +.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } +.#{$fa-css-prefix}-file:before { content: $fa-var-file; } +.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } +.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } +.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } +.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } +.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } +.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } +.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } +.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } +.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } +.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } +.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } +.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } +.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } +.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } +.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } +.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } +.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } +.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } +.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } +.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } +.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } +.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } +.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } +.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } +.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } +.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } +.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } +.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } +.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } +.#{$fa-css-prefix}-android:before { content: $fa-var-android; } +.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } +.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } +.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } +.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } +.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } +.#{$fa-css-prefix}-female:before { content: $fa-var-female; } +.#{$fa-css-prefix}-male:before { content: $fa-var-male; } +.#{$fa-css-prefix}-gittip:before, +.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } +.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } +.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } +.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } +.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } +.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } +.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } +.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } +.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } +.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } +.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } +.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } +.#{$fa-css-prefix}-toggle-left:before, +.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } +.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } +.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } +.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } +.#{$fa-css-prefix}-turkish-lira:before, +.#{$fa-css-prefix}-try:before { content: $fa-var-try; } +.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } +.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } +.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } +.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } +.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } +.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } +.#{$fa-css-prefix}-institution:before, +.#{$fa-css-prefix}-bank:before, +.#{$fa-css-prefix}-university:before { content: $fa-var-university; } +.#{$fa-css-prefix}-mortar-board:before, +.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } +.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } +.#{$fa-css-prefix}-google:before { content: $fa-var-google; } +.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } +.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } +.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } +.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } +.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } +.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } +.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } +.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } +.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } +.#{$fa-css-prefix}-language:before { content: $fa-var-language; } +.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } +.#{$fa-css-prefix}-building:before { content: $fa-var-building; } +.#{$fa-css-prefix}-child:before { content: $fa-var-child; } +.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } +.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } +.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } +.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } +.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } +.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } +.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } +.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } +.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } +.#{$fa-css-prefix}-automobile:before, +.#{$fa-css-prefix}-car:before { content: $fa-var-car; } +.#{$fa-css-prefix}-cab:before, +.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } +.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } +.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } +.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } +.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } +.#{$fa-css-prefix}-database:before { content: $fa-var-database; } +.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } +.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } +.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } +.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } +.#{$fa-css-prefix}-file-photo-o:before, +.#{$fa-css-prefix}-file-picture-o:before, +.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } +.#{$fa-css-prefix}-file-zip-o:before, +.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } +.#{$fa-css-prefix}-file-sound-o:before, +.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } +.#{$fa-css-prefix}-file-movie-o:before, +.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } +.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } +.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } +.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } +.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } +.#{$fa-css-prefix}-life-bouy:before, +.#{$fa-css-prefix}-life-buoy:before, +.#{$fa-css-prefix}-life-saver:before, +.#{$fa-css-prefix}-support:before, +.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } +.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } +.#{$fa-css-prefix}-ra:before, +.#{$fa-css-prefix}-resistance:before, +.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } +.#{$fa-css-prefix}-ge:before, +.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } +.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } +.#{$fa-css-prefix}-git:before { content: $fa-var-git; } +.#{$fa-css-prefix}-y-combinator-square:before, +.#{$fa-css-prefix}-yc-square:before, +.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } +.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } +.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } +.#{$fa-css-prefix}-wechat:before, +.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } +.#{$fa-css-prefix}-send:before, +.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } +.#{$fa-css-prefix}-send-o:before, +.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } +.#{$fa-css-prefix}-history:before { content: $fa-var-history; } +.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } +.#{$fa-css-prefix}-header:before { content: $fa-var-header; } +.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } +.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } +.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } +.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } +.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } +.#{$fa-css-prefix}-soccer-ball-o:before, +.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } +.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } +.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } +.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } +.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } +.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } +.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } +.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } +.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } +.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } +.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } +.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } +.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } +.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } +.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } +.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } +.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } +.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } +.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } +.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } +.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } +.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } +.#{$fa-css-prefix}-at:before { content: $fa-var-at; } +.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } +.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } +.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } +.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } +.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } +.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } +.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } +.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } +.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } +.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } +.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } +.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } +.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } +.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } +.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } +.#{$fa-css-prefix}-shekel:before, +.#{$fa-css-prefix}-sheqel:before, +.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } +.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } +.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } +.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } +.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } +.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } +.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } +.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } +.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } +.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } +.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } +.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } +.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } +.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } +.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } +.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } +.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } +.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } +.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } +.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } +.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } +.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } +.#{$fa-css-prefix}-intersex:before, +.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } +.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } +.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } +.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } +.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } +.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } +.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } +.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } +.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } +.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } +.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } +.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } +.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } +.#{$fa-css-prefix}-server:before { content: $fa-var-server; } +.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } +.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } +.#{$fa-css-prefix}-hotel:before, +.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } +.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } +.#{$fa-css-prefix}-train:before { content: $fa-var-train; } +.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } +.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } +.#{$fa-css-prefix}-yc:before, +.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } +.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } +.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } +.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } +.#{$fa-css-prefix}-battery-4:before, +.#{$fa-css-prefix}-battery:before, +.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } +.#{$fa-css-prefix}-battery-3:before, +.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } +.#{$fa-css-prefix}-battery-2:before, +.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } +.#{$fa-css-prefix}-battery-1:before, +.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } +.#{$fa-css-prefix}-battery-0:before, +.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } +.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } +.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } +.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } +.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } +.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } +.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } +.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } +.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } +.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } +.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } +.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } +.#{$fa-css-prefix}-hourglass-1:before, +.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } +.#{$fa-css-prefix}-hourglass-2:before, +.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } +.#{$fa-css-prefix}-hourglass-3:before, +.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } +.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } +.#{$fa-css-prefix}-hand-grab-o:before, +.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } +.#{$fa-css-prefix}-hand-stop-o:before, +.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } +.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } +.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } +.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } +.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } +.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } +.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } +.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } +.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } +.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } +.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } +.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } +.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } +.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } +.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } +.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } +.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } +.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } +.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } +.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } +.#{$fa-css-prefix}-tv:before, +.#{$fa-css-prefix}-television:before { content: $fa-var-television; } +.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } +.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } +.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } +.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } +.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } +.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } +.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } +.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } +.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } +.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } +.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } +.#{$fa-css-prefix}-map:before { content: $fa-var-map; } +.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } +.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } +.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } +.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } +.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } +.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } +.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } +.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } +.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } +.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } +.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } +.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } +.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } +.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } +.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } +.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } +.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } +.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } +.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } +.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } +.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } +.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } +.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } +.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } +.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } +.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } +.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } +.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } +.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } +.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } +.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } +.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } +.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } +.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } +.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } +.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } +.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } +.#{$fa-css-prefix}-asl-interpreting:before, +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } +.#{$fa-css-prefix}-deafness:before, +.#{$fa-css-prefix}-hard-of-hearing:before, +.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } +.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } +.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } +.#{$fa-css-prefix}-signing:before, +.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } +.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } +.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } +.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } +.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } +.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } +.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } +.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } +.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } +.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } +.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +.#{$fa-css-prefix}-google-plus-circle:before, +.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +.#{$fa-css-prefix}-fa:before, +.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } +.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } +.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } +.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } +.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } +.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } +.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } +.#{$fa-css-prefix}-vcard:before, +.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } +.#{$fa-css-prefix}-vcard-o:before, +.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } +.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } +.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } +.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } +.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } +.#{$fa-css-prefix}-drivers-license:before, +.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } +.#{$fa-css-prefix}-drivers-license-o:before, +.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } +.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } +.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } +.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } +.#{$fa-css-prefix}-thermometer-4:before, +.#{$fa-css-prefix}-thermometer:before, +.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } +.#{$fa-css-prefix}-thermometer-3:before, +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } +.#{$fa-css-prefix}-thermometer-2:before, +.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } +.#{$fa-css-prefix}-thermometer-1:before, +.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } +.#{$fa-css-prefix}-thermometer-0:before, +.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } +.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } +.#{$fa-css-prefix}-bathtub:before, +.#{$fa-css-prefix}-s15:before, +.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } +.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } +.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } +.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } +.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } +.#{$fa-css-prefix}-times-rectangle:before, +.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } +.#{$fa-css-prefix}-times-rectangle-o:before, +.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } +.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } +.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } +.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } +.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } +.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } +.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } +.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } +.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } +.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } +.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } +.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_larger.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_larger.scss new file mode 100644 index 0000000000..41e9a8184a --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_larger.scss @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.#{$fa-css-prefix}-2x { font-size: 2em; } +.#{$fa-css-prefix}-3x { font-size: 3em; } +.#{$fa-css-prefix}-4x { font-size: 4em; } +.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_list.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_list.scss new file mode 100644 index 0000000000..7d1e4d54d6 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_list.scss @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + padding-left: 0; + margin-left: $fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.#{$fa-css-prefix}-li { + position: absolute; + left: -$fa-li-width; + width: $fa-li-width; + top: (2em / 14); + text-align: center; + &.#{$fa-css-prefix}-lg { + left: -$fa-li-width + (4em / 14); + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_mixins.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_mixins.scss new file mode 100644 index 0000000000..c3bbd5745d --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_mixins.scss @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +@mixin fa-icon() { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + -webkit-transform: scale($horiz, $vert); + -ms-transform: scale($horiz, $vert); + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_path.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_path.scss new file mode 100644 index 0000000000..bb457c23a8 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_path.scss @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); + src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), + url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), + url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), + url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), + url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); +// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_rotated-flipped.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_rotated-flipped.scss new file mode 100644 index 0000000000..a3558fd09c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_rotated-flipped.scss @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .#{$fa-css-prefix}-rotate-90, +:root .#{$fa-css-prefix}-rotate-180, +:root .#{$fa-css-prefix}-rotate-270, +:root .#{$fa-css-prefix}-flip-horizontal, +:root .#{$fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_screen-reader.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_screen-reader.scss new file mode 100644 index 0000000000..637426f0da --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only(); } +.sr-only-focusable { @include sr-only-focusable(); } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_stacked.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_stacked.scss new file mode 100644 index 0000000000..aef7403660 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_stacked.scss @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.#{$fa-css-prefix}-stack-1x { line-height: inherit; } +.#{$fa-css-prefix}-stack-2x { font-size: 2em; } +.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_variables.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_variables.scss new file mode 100644 index 0000000000..498fc4a087 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/_variables.scss @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +$fa-font-path: "../fonts" !default; +$fa-font-size-base: 14px !default; +$fa-line-height-base: 1 !default; +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly +$fa-css-prefix: fa !default; +$fa-version: "4.7.0" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: (30em / 14) !default; + +$fa-var-500px: "\f26e"; +$fa-var-address-book: "\f2b9"; +$fa-var-address-book-o: "\f2ba"; +$fa-var-address-card: "\f2bb"; +$fa-var-address-card-o: "\f2bc"; +$fa-var-adjust: "\f042"; +$fa-var-adn: "\f170"; +$fa-var-align-center: "\f037"; +$fa-var-align-justify: "\f039"; +$fa-var-align-left: "\f036"; +$fa-var-align-right: "\f038"; +$fa-var-amazon: "\f270"; +$fa-var-ambulance: "\f0f9"; +$fa-var-american-sign-language-interpreting: "\f2a3"; +$fa-var-anchor: "\f13d"; +$fa-var-android: "\f17b"; +$fa-var-angellist: "\f209"; +$fa-var-angle-double-down: "\f103"; +$fa-var-angle-double-left: "\f100"; +$fa-var-angle-double-right: "\f101"; +$fa-var-angle-double-up: "\f102"; +$fa-var-angle-down: "\f107"; +$fa-var-angle-left: "\f104"; +$fa-var-angle-right: "\f105"; +$fa-var-angle-up: "\f106"; +$fa-var-apple: "\f179"; +$fa-var-archive: "\f187"; +$fa-var-area-chart: "\f1fe"; +$fa-var-arrow-circle-down: "\f0ab"; +$fa-var-arrow-circle-left: "\f0a8"; +$fa-var-arrow-circle-o-down: "\f01a"; +$fa-var-arrow-circle-o-left: "\f190"; +$fa-var-arrow-circle-o-right: "\f18e"; +$fa-var-arrow-circle-o-up: "\f01b"; +$fa-var-arrow-circle-right: "\f0a9"; +$fa-var-arrow-circle-up: "\f0aa"; +$fa-var-arrow-down: "\f063"; +$fa-var-arrow-left: "\f060"; +$fa-var-arrow-right: "\f061"; +$fa-var-arrow-up: "\f062"; +$fa-var-arrows: "\f047"; +$fa-var-arrows-alt: "\f0b2"; +$fa-var-arrows-h: "\f07e"; +$fa-var-arrows-v: "\f07d"; +$fa-var-asl-interpreting: "\f2a3"; +$fa-var-assistive-listening-systems: "\f2a2"; +$fa-var-asterisk: "\f069"; +$fa-var-at: "\f1fa"; +$fa-var-audio-description: "\f29e"; +$fa-var-automobile: "\f1b9"; +$fa-var-backward: "\f04a"; +$fa-var-balance-scale: "\f24e"; +$fa-var-ban: "\f05e"; +$fa-var-bandcamp: "\f2d5"; +$fa-var-bank: "\f19c"; +$fa-var-bar-chart: "\f080"; +$fa-var-bar-chart-o: "\f080"; +$fa-var-barcode: "\f02a"; +$fa-var-bars: "\f0c9"; +$fa-var-bath: "\f2cd"; +$fa-var-bathtub: "\f2cd"; +$fa-var-battery: "\f240"; +$fa-var-battery-0: "\f244"; +$fa-var-battery-1: "\f243"; +$fa-var-battery-2: "\f242"; +$fa-var-battery-3: "\f241"; +$fa-var-battery-4: "\f240"; +$fa-var-battery-empty: "\f244"; +$fa-var-battery-full: "\f240"; +$fa-var-battery-half: "\f242"; +$fa-var-battery-quarter: "\f243"; +$fa-var-battery-three-quarters: "\f241"; +$fa-var-bed: "\f236"; +$fa-var-beer: "\f0fc"; +$fa-var-behance: "\f1b4"; +$fa-var-behance-square: "\f1b5"; +$fa-var-bell: "\f0f3"; +$fa-var-bell-o: "\f0a2"; +$fa-var-bell-slash: "\f1f6"; +$fa-var-bell-slash-o: "\f1f7"; +$fa-var-bicycle: "\f206"; +$fa-var-binoculars: "\f1e5"; +$fa-var-birthday-cake: "\f1fd"; +$fa-var-bitbucket: "\f171"; +$fa-var-bitbucket-square: "\f172"; +$fa-var-bitcoin: "\f15a"; +$fa-var-black-tie: "\f27e"; +$fa-var-blind: "\f29d"; +$fa-var-bluetooth: "\f293"; +$fa-var-bluetooth-b: "\f294"; +$fa-var-bold: "\f032"; +$fa-var-bolt: "\f0e7"; +$fa-var-bomb: "\f1e2"; +$fa-var-book: "\f02d"; +$fa-var-bookmark: "\f02e"; +$fa-var-bookmark-o: "\f097"; +$fa-var-braille: "\f2a1"; +$fa-var-briefcase: "\f0b1"; +$fa-var-btc: "\f15a"; +$fa-var-bug: "\f188"; +$fa-var-building: "\f1ad"; +$fa-var-building-o: "\f0f7"; +$fa-var-bullhorn: "\f0a1"; +$fa-var-bullseye: "\f140"; +$fa-var-bus: "\f207"; +$fa-var-buysellads: "\f20d"; +$fa-var-cab: "\f1ba"; +$fa-var-calculator: "\f1ec"; +$fa-var-calendar: "\f073"; +$fa-var-calendar-check-o: "\f274"; +$fa-var-calendar-minus-o: "\f272"; +$fa-var-calendar-o: "\f133"; +$fa-var-calendar-plus-o: "\f271"; +$fa-var-calendar-times-o: "\f273"; +$fa-var-camera: "\f030"; +$fa-var-camera-retro: "\f083"; +$fa-var-car: "\f1b9"; +$fa-var-caret-down: "\f0d7"; +$fa-var-caret-left: "\f0d9"; +$fa-var-caret-right: "\f0da"; +$fa-var-caret-square-o-down: "\f150"; +$fa-var-caret-square-o-left: "\f191"; +$fa-var-caret-square-o-right: "\f152"; +$fa-var-caret-square-o-up: "\f151"; +$fa-var-caret-up: "\f0d8"; +$fa-var-cart-arrow-down: "\f218"; +$fa-var-cart-plus: "\f217"; +$fa-var-cc: "\f20a"; +$fa-var-cc-amex: "\f1f3"; +$fa-var-cc-diners-club: "\f24c"; +$fa-var-cc-discover: "\f1f2"; +$fa-var-cc-jcb: "\f24b"; +$fa-var-cc-mastercard: "\f1f1"; +$fa-var-cc-paypal: "\f1f4"; +$fa-var-cc-stripe: "\f1f5"; +$fa-var-cc-visa: "\f1f0"; +$fa-var-certificate: "\f0a3"; +$fa-var-chain: "\f0c1"; +$fa-var-chain-broken: "\f127"; +$fa-var-check: "\f00c"; +$fa-var-check-circle: "\f058"; +$fa-var-check-circle-o: "\f05d"; +$fa-var-check-square: "\f14a"; +$fa-var-check-square-o: "\f046"; +$fa-var-chevron-circle-down: "\f13a"; +$fa-var-chevron-circle-left: "\f137"; +$fa-var-chevron-circle-right: "\f138"; +$fa-var-chevron-circle-up: "\f139"; +$fa-var-chevron-down: "\f078"; +$fa-var-chevron-left: "\f053"; +$fa-var-chevron-right: "\f054"; +$fa-var-chevron-up: "\f077"; +$fa-var-child: "\f1ae"; +$fa-var-chrome: "\f268"; +$fa-var-circle: "\f111"; +$fa-var-circle-o: "\f10c"; +$fa-var-circle-o-notch: "\f1ce"; +$fa-var-circle-thin: "\f1db"; +$fa-var-clipboard: "\f0ea"; +$fa-var-clock-o: "\f017"; +$fa-var-clone: "\f24d"; +$fa-var-close: "\f00d"; +$fa-var-cloud: "\f0c2"; +$fa-var-cloud-download: "\f0ed"; +$fa-var-cloud-upload: "\f0ee"; +$fa-var-cny: "\f157"; +$fa-var-code: "\f121"; +$fa-var-code-fork: "\f126"; +$fa-var-codepen: "\f1cb"; +$fa-var-codiepie: "\f284"; +$fa-var-coffee: "\f0f4"; +$fa-var-cog: "\f013"; +$fa-var-cogs: "\f085"; +$fa-var-columns: "\f0db"; +$fa-var-comment: "\f075"; +$fa-var-comment-o: "\f0e5"; +$fa-var-commenting: "\f27a"; +$fa-var-commenting-o: "\f27b"; +$fa-var-comments: "\f086"; +$fa-var-comments-o: "\f0e6"; +$fa-var-compass: "\f14e"; +$fa-var-compress: "\f066"; +$fa-var-connectdevelop: "\f20e"; +$fa-var-contao: "\f26d"; +$fa-var-copy: "\f0c5"; +$fa-var-copyright: "\f1f9"; +$fa-var-creative-commons: "\f25e"; +$fa-var-credit-card: "\f09d"; +$fa-var-credit-card-alt: "\f283"; +$fa-var-crop: "\f125"; +$fa-var-crosshairs: "\f05b"; +$fa-var-css3: "\f13c"; +$fa-var-cube: "\f1b2"; +$fa-var-cubes: "\f1b3"; +$fa-var-cut: "\f0c4"; +$fa-var-cutlery: "\f0f5"; +$fa-var-dashboard: "\f0e4"; +$fa-var-dashcube: "\f210"; +$fa-var-database: "\f1c0"; +$fa-var-deaf: "\f2a4"; +$fa-var-deafness: "\f2a4"; +$fa-var-dedent: "\f03b"; +$fa-var-delicious: "\f1a5"; +$fa-var-desktop: "\f108"; +$fa-var-deviantart: "\f1bd"; +$fa-var-diamond: "\f219"; +$fa-var-digg: "\f1a6"; +$fa-var-dollar: "\f155"; +$fa-var-dot-circle-o: "\f192"; +$fa-var-download: "\f019"; +$fa-var-dribbble: "\f17d"; +$fa-var-drivers-license: "\f2c2"; +$fa-var-drivers-license-o: "\f2c3"; +$fa-var-dropbox: "\f16b"; +$fa-var-drupal: "\f1a9"; +$fa-var-edge: "\f282"; +$fa-var-edit: "\f044"; +$fa-var-eercast: "\f2da"; +$fa-var-eject: "\f052"; +$fa-var-ellipsis-h: "\f141"; +$fa-var-ellipsis-v: "\f142"; +$fa-var-empire: "\f1d1"; +$fa-var-envelope: "\f0e0"; +$fa-var-envelope-o: "\f003"; +$fa-var-envelope-open: "\f2b6"; +$fa-var-envelope-open-o: "\f2b7"; +$fa-var-envelope-square: "\f199"; +$fa-var-envira: "\f299"; +$fa-var-eraser: "\f12d"; +$fa-var-etsy: "\f2d7"; +$fa-var-eur: "\f153"; +$fa-var-euro: "\f153"; +$fa-var-exchange: "\f0ec"; +$fa-var-exclamation: "\f12a"; +$fa-var-exclamation-circle: "\f06a"; +$fa-var-exclamation-triangle: "\f071"; +$fa-var-expand: "\f065"; +$fa-var-expeditedssl: "\f23e"; +$fa-var-external-link: "\f08e"; +$fa-var-external-link-square: "\f14c"; +$fa-var-eye: "\f06e"; +$fa-var-eye-slash: "\f070"; +$fa-var-eyedropper: "\f1fb"; +$fa-var-fa: "\f2b4"; +$fa-var-facebook: "\f09a"; +$fa-var-facebook-f: "\f09a"; +$fa-var-facebook-official: "\f230"; +$fa-var-facebook-square: "\f082"; +$fa-var-fast-backward: "\f049"; +$fa-var-fast-forward: "\f050"; +$fa-var-fax: "\f1ac"; +$fa-var-feed: "\f09e"; +$fa-var-female: "\f182"; +$fa-var-fighter-jet: "\f0fb"; +$fa-var-file: "\f15b"; +$fa-var-file-archive-o: "\f1c6"; +$fa-var-file-audio-o: "\f1c7"; +$fa-var-file-code-o: "\f1c9"; +$fa-var-file-excel-o: "\f1c3"; +$fa-var-file-image-o: "\f1c5"; +$fa-var-file-movie-o: "\f1c8"; +$fa-var-file-o: "\f016"; +$fa-var-file-pdf-o: "\f1c1"; +$fa-var-file-photo-o: "\f1c5"; +$fa-var-file-picture-o: "\f1c5"; +$fa-var-file-powerpoint-o: "\f1c4"; +$fa-var-file-sound-o: "\f1c7"; +$fa-var-file-text: "\f15c"; +$fa-var-file-text-o: "\f0f6"; +$fa-var-file-video-o: "\f1c8"; +$fa-var-file-word-o: "\f1c2"; +$fa-var-file-zip-o: "\f1c6"; +$fa-var-files-o: "\f0c5"; +$fa-var-film: "\f008"; +$fa-var-filter: "\f0b0"; +$fa-var-fire: "\f06d"; +$fa-var-fire-extinguisher: "\f134"; +$fa-var-firefox: "\f269"; +$fa-var-first-order: "\f2b0"; +$fa-var-flag: "\f024"; +$fa-var-flag-checkered: "\f11e"; +$fa-var-flag-o: "\f11d"; +$fa-var-flash: "\f0e7"; +$fa-var-flask: "\f0c3"; +$fa-var-flickr: "\f16e"; +$fa-var-floppy-o: "\f0c7"; +$fa-var-folder: "\f07b"; +$fa-var-folder-o: "\f114"; +$fa-var-folder-open: "\f07c"; +$fa-var-folder-open-o: "\f115"; +$fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; +$fa-var-fonticons: "\f280"; +$fa-var-fort-awesome: "\f286"; +$fa-var-forumbee: "\f211"; +$fa-var-forward: "\f04e"; +$fa-var-foursquare: "\f180"; +$fa-var-free-code-camp: "\f2c5"; +$fa-var-frown-o: "\f119"; +$fa-var-futbol-o: "\f1e3"; +$fa-var-gamepad: "\f11b"; +$fa-var-gavel: "\f0e3"; +$fa-var-gbp: "\f154"; +$fa-var-ge: "\f1d1"; +$fa-var-gear: "\f013"; +$fa-var-gears: "\f085"; +$fa-var-genderless: "\f22d"; +$fa-var-get-pocket: "\f265"; +$fa-var-gg: "\f260"; +$fa-var-gg-circle: "\f261"; +$fa-var-gift: "\f06b"; +$fa-var-git: "\f1d3"; +$fa-var-git-square: "\f1d2"; +$fa-var-github: "\f09b"; +$fa-var-github-alt: "\f113"; +$fa-var-github-square: "\f092"; +$fa-var-gitlab: "\f296"; +$fa-var-gittip: "\f184"; +$fa-var-glass: "\f000"; +$fa-var-glide: "\f2a5"; +$fa-var-glide-g: "\f2a6"; +$fa-var-globe: "\f0ac"; +$fa-var-google: "\f1a0"; +$fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-official: "\f2b3"; +$fa-var-google-plus-square: "\f0d4"; +$fa-var-google-wallet: "\f1ee"; +$fa-var-graduation-cap: "\f19d"; +$fa-var-gratipay: "\f184"; +$fa-var-grav: "\f2d6"; +$fa-var-group: "\f0c0"; +$fa-var-h-square: "\f0fd"; +$fa-var-hacker-news: "\f1d4"; +$fa-var-hand-grab-o: "\f255"; +$fa-var-hand-lizard-o: "\f258"; +$fa-var-hand-o-down: "\f0a7"; +$fa-var-hand-o-left: "\f0a5"; +$fa-var-hand-o-right: "\f0a4"; +$fa-var-hand-o-up: "\f0a6"; +$fa-var-hand-paper-o: "\f256"; +$fa-var-hand-peace-o: "\f25b"; +$fa-var-hand-pointer-o: "\f25a"; +$fa-var-hand-rock-o: "\f255"; +$fa-var-hand-scissors-o: "\f257"; +$fa-var-hand-spock-o: "\f259"; +$fa-var-hand-stop-o: "\f256"; +$fa-var-handshake-o: "\f2b5"; +$fa-var-hard-of-hearing: "\f2a4"; +$fa-var-hashtag: "\f292"; +$fa-var-hdd-o: "\f0a0"; +$fa-var-header: "\f1dc"; +$fa-var-headphones: "\f025"; +$fa-var-heart: "\f004"; +$fa-var-heart-o: "\f08a"; +$fa-var-heartbeat: "\f21e"; +$fa-var-history: "\f1da"; +$fa-var-home: "\f015"; +$fa-var-hospital-o: "\f0f8"; +$fa-var-hotel: "\f236"; +$fa-var-hourglass: "\f254"; +$fa-var-hourglass-1: "\f251"; +$fa-var-hourglass-2: "\f252"; +$fa-var-hourglass-3: "\f253"; +$fa-var-hourglass-end: "\f253"; +$fa-var-hourglass-half: "\f252"; +$fa-var-hourglass-o: "\f250"; +$fa-var-hourglass-start: "\f251"; +$fa-var-houzz: "\f27c"; +$fa-var-html5: "\f13b"; +$fa-var-i-cursor: "\f246"; +$fa-var-id-badge: "\f2c1"; +$fa-var-id-card: "\f2c2"; +$fa-var-id-card-o: "\f2c3"; +$fa-var-ils: "\f20b"; +$fa-var-image: "\f03e"; +$fa-var-imdb: "\f2d8"; +$fa-var-inbox: "\f01c"; +$fa-var-indent: "\f03c"; +$fa-var-industry: "\f275"; +$fa-var-info: "\f129"; +$fa-var-info-circle: "\f05a"; +$fa-var-inr: "\f156"; +$fa-var-instagram: "\f16d"; +$fa-var-institution: "\f19c"; +$fa-var-internet-explorer: "\f26b"; +$fa-var-intersex: "\f224"; +$fa-var-ioxhost: "\f208"; +$fa-var-italic: "\f033"; +$fa-var-joomla: "\f1aa"; +$fa-var-jpy: "\f157"; +$fa-var-jsfiddle: "\f1cc"; +$fa-var-key: "\f084"; +$fa-var-keyboard-o: "\f11c"; +$fa-var-krw: "\f159"; +$fa-var-language: "\f1ab"; +$fa-var-laptop: "\f109"; +$fa-var-lastfm: "\f202"; +$fa-var-lastfm-square: "\f203"; +$fa-var-leaf: "\f06c"; +$fa-var-leanpub: "\f212"; +$fa-var-legal: "\f0e3"; +$fa-var-lemon-o: "\f094"; +$fa-var-level-down: "\f149"; +$fa-var-level-up: "\f148"; +$fa-var-life-bouy: "\f1cd"; +$fa-var-life-buoy: "\f1cd"; +$fa-var-life-ring: "\f1cd"; +$fa-var-life-saver: "\f1cd"; +$fa-var-lightbulb-o: "\f0eb"; +$fa-var-line-chart: "\f201"; +$fa-var-link: "\f0c1"; +$fa-var-linkedin: "\f0e1"; +$fa-var-linkedin-square: "\f08c"; +$fa-var-linode: "\f2b8"; +$fa-var-linux: "\f17c"; +$fa-var-list: "\f03a"; +$fa-var-list-alt: "\f022"; +$fa-var-list-ol: "\f0cb"; +$fa-var-list-ul: "\f0ca"; +$fa-var-location-arrow: "\f124"; +$fa-var-lock: "\f023"; +$fa-var-long-arrow-down: "\f175"; +$fa-var-long-arrow-left: "\f177"; +$fa-var-long-arrow-right: "\f178"; +$fa-var-long-arrow-up: "\f176"; +$fa-var-low-vision: "\f2a8"; +$fa-var-magic: "\f0d0"; +$fa-var-magnet: "\f076"; +$fa-var-mail-forward: "\f064"; +$fa-var-mail-reply: "\f112"; +$fa-var-mail-reply-all: "\f122"; +$fa-var-male: "\f183"; +$fa-var-map: "\f279"; +$fa-var-map-marker: "\f041"; +$fa-var-map-o: "\f278"; +$fa-var-map-pin: "\f276"; +$fa-var-map-signs: "\f277"; +$fa-var-mars: "\f222"; +$fa-var-mars-double: "\f227"; +$fa-var-mars-stroke: "\f229"; +$fa-var-mars-stroke-h: "\f22b"; +$fa-var-mars-stroke-v: "\f22a"; +$fa-var-maxcdn: "\f136"; +$fa-var-meanpath: "\f20c"; +$fa-var-medium: "\f23a"; +$fa-var-medkit: "\f0fa"; +$fa-var-meetup: "\f2e0"; +$fa-var-meh-o: "\f11a"; +$fa-var-mercury: "\f223"; +$fa-var-microchip: "\f2db"; +$fa-var-microphone: "\f130"; +$fa-var-microphone-slash: "\f131"; +$fa-var-minus: "\f068"; +$fa-var-minus-circle: "\f056"; +$fa-var-minus-square: "\f146"; +$fa-var-minus-square-o: "\f147"; +$fa-var-mixcloud: "\f289"; +$fa-var-mobile: "\f10b"; +$fa-var-mobile-phone: "\f10b"; +$fa-var-modx: "\f285"; +$fa-var-money: "\f0d6"; +$fa-var-moon-o: "\f186"; +$fa-var-mortar-board: "\f19d"; +$fa-var-motorcycle: "\f21c"; +$fa-var-mouse-pointer: "\f245"; +$fa-var-music: "\f001"; +$fa-var-navicon: "\f0c9"; +$fa-var-neuter: "\f22c"; +$fa-var-newspaper-o: "\f1ea"; +$fa-var-object-group: "\f247"; +$fa-var-object-ungroup: "\f248"; +$fa-var-odnoklassniki: "\f263"; +$fa-var-odnoklassniki-square: "\f264"; +$fa-var-opencart: "\f23d"; +$fa-var-openid: "\f19b"; +$fa-var-opera: "\f26a"; +$fa-var-optin-monster: "\f23c"; +$fa-var-outdent: "\f03b"; +$fa-var-pagelines: "\f18c"; +$fa-var-paint-brush: "\f1fc"; +$fa-var-paper-plane: "\f1d8"; +$fa-var-paper-plane-o: "\f1d9"; +$fa-var-paperclip: "\f0c6"; +$fa-var-paragraph: "\f1dd"; +$fa-var-paste: "\f0ea"; +$fa-var-pause: "\f04c"; +$fa-var-pause-circle: "\f28b"; +$fa-var-pause-circle-o: "\f28c"; +$fa-var-paw: "\f1b0"; +$fa-var-paypal: "\f1ed"; +$fa-var-pencil: "\f040"; +$fa-var-pencil-square: "\f14b"; +$fa-var-pencil-square-o: "\f044"; +$fa-var-percent: "\f295"; +$fa-var-phone: "\f095"; +$fa-var-phone-square: "\f098"; +$fa-var-photo: "\f03e"; +$fa-var-picture-o: "\f03e"; +$fa-var-pie-chart: "\f200"; +$fa-var-pied-piper: "\f2ae"; +$fa-var-pied-piper-alt: "\f1a8"; +$fa-var-pied-piper-pp: "\f1a7"; +$fa-var-pinterest: "\f0d2"; +$fa-var-pinterest-p: "\f231"; +$fa-var-pinterest-square: "\f0d3"; +$fa-var-plane: "\f072"; +$fa-var-play: "\f04b"; +$fa-var-play-circle: "\f144"; +$fa-var-play-circle-o: "\f01d"; +$fa-var-plug: "\f1e6"; +$fa-var-plus: "\f067"; +$fa-var-plus-circle: "\f055"; +$fa-var-plus-square: "\f0fe"; +$fa-var-plus-square-o: "\f196"; +$fa-var-podcast: "\f2ce"; +$fa-var-power-off: "\f011"; +$fa-var-print: "\f02f"; +$fa-var-product-hunt: "\f288"; +$fa-var-puzzle-piece: "\f12e"; +$fa-var-qq: "\f1d6"; +$fa-var-qrcode: "\f029"; +$fa-var-question: "\f128"; +$fa-var-question-circle: "\f059"; +$fa-var-question-circle-o: "\f29c"; +$fa-var-quora: "\f2c4"; +$fa-var-quote-left: "\f10d"; +$fa-var-quote-right: "\f10e"; +$fa-var-ra: "\f1d0"; +$fa-var-random: "\f074"; +$fa-var-ravelry: "\f2d9"; +$fa-var-rebel: "\f1d0"; +$fa-var-recycle: "\f1b8"; +$fa-var-reddit: "\f1a1"; +$fa-var-reddit-alien: "\f281"; +$fa-var-reddit-square: "\f1a2"; +$fa-var-refresh: "\f021"; +$fa-var-registered: "\f25d"; +$fa-var-remove: "\f00d"; +$fa-var-renren: "\f18b"; +$fa-var-reorder: "\f0c9"; +$fa-var-repeat: "\f01e"; +$fa-var-reply: "\f112"; +$fa-var-reply-all: "\f122"; +$fa-var-resistance: "\f1d0"; +$fa-var-retweet: "\f079"; +$fa-var-rmb: "\f157"; +$fa-var-road: "\f018"; +$fa-var-rocket: "\f135"; +$fa-var-rotate-left: "\f0e2"; +$fa-var-rotate-right: "\f01e"; +$fa-var-rouble: "\f158"; +$fa-var-rss: "\f09e"; +$fa-var-rss-square: "\f143"; +$fa-var-rub: "\f158"; +$fa-var-ruble: "\f158"; +$fa-var-rupee: "\f156"; +$fa-var-s15: "\f2cd"; +$fa-var-safari: "\f267"; +$fa-var-save: "\f0c7"; +$fa-var-scissors: "\f0c4"; +$fa-var-scribd: "\f28a"; +$fa-var-search: "\f002"; +$fa-var-search-minus: "\f010"; +$fa-var-search-plus: "\f00e"; +$fa-var-sellsy: "\f213"; +$fa-var-send: "\f1d8"; +$fa-var-send-o: "\f1d9"; +$fa-var-server: "\f233"; +$fa-var-share: "\f064"; +$fa-var-share-alt: "\f1e0"; +$fa-var-share-alt-square: "\f1e1"; +$fa-var-share-square: "\f14d"; +$fa-var-share-square-o: "\f045"; +$fa-var-shekel: "\f20b"; +$fa-var-sheqel: "\f20b"; +$fa-var-shield: "\f132"; +$fa-var-ship: "\f21a"; +$fa-var-shirtsinbulk: "\f214"; +$fa-var-shopping-bag: "\f290"; +$fa-var-shopping-basket: "\f291"; +$fa-var-shopping-cart: "\f07a"; +$fa-var-shower: "\f2cc"; +$fa-var-sign-in: "\f090"; +$fa-var-sign-language: "\f2a7"; +$fa-var-sign-out: "\f08b"; +$fa-var-signal: "\f012"; +$fa-var-signing: "\f2a7"; +$fa-var-simplybuilt: "\f215"; +$fa-var-sitemap: "\f0e8"; +$fa-var-skyatlas: "\f216"; +$fa-var-skype: "\f17e"; +$fa-var-slack: "\f198"; +$fa-var-sliders: "\f1de"; +$fa-var-slideshare: "\f1e7"; +$fa-var-smile-o: "\f118"; +$fa-var-snapchat: "\f2ab"; +$fa-var-snapchat-ghost: "\f2ac"; +$fa-var-snapchat-square: "\f2ad"; +$fa-var-snowflake-o: "\f2dc"; +$fa-var-soccer-ball-o: "\f1e3"; +$fa-var-sort: "\f0dc"; +$fa-var-sort-alpha-asc: "\f15d"; +$fa-var-sort-alpha-desc: "\f15e"; +$fa-var-sort-amount-asc: "\f160"; +$fa-var-sort-amount-desc: "\f161"; +$fa-var-sort-asc: "\f0de"; +$fa-var-sort-desc: "\f0dd"; +$fa-var-sort-down: "\f0dd"; +$fa-var-sort-numeric-asc: "\f162"; +$fa-var-sort-numeric-desc: "\f163"; +$fa-var-sort-up: "\f0de"; +$fa-var-soundcloud: "\f1be"; +$fa-var-space-shuttle: "\f197"; +$fa-var-spinner: "\f110"; +$fa-var-spoon: "\f1b1"; +$fa-var-spotify: "\f1bc"; +$fa-var-square: "\f0c8"; +$fa-var-square-o: "\f096"; +$fa-var-stack-exchange: "\f18d"; +$fa-var-stack-overflow: "\f16c"; +$fa-var-star: "\f005"; +$fa-var-star-half: "\f089"; +$fa-var-star-half-empty: "\f123"; +$fa-var-star-half-full: "\f123"; +$fa-var-star-half-o: "\f123"; +$fa-var-star-o: "\f006"; +$fa-var-steam: "\f1b6"; +$fa-var-steam-square: "\f1b7"; +$fa-var-step-backward: "\f048"; +$fa-var-step-forward: "\f051"; +$fa-var-stethoscope: "\f0f1"; +$fa-var-sticky-note: "\f249"; +$fa-var-sticky-note-o: "\f24a"; +$fa-var-stop: "\f04d"; +$fa-var-stop-circle: "\f28d"; +$fa-var-stop-circle-o: "\f28e"; +$fa-var-street-view: "\f21d"; +$fa-var-strikethrough: "\f0cc"; +$fa-var-stumbleupon: "\f1a4"; +$fa-var-stumbleupon-circle: "\f1a3"; +$fa-var-subscript: "\f12c"; +$fa-var-subway: "\f239"; +$fa-var-suitcase: "\f0f2"; +$fa-var-sun-o: "\f185"; +$fa-var-superpowers: "\f2dd"; +$fa-var-superscript: "\f12b"; +$fa-var-support: "\f1cd"; +$fa-var-table: "\f0ce"; +$fa-var-tablet: "\f10a"; +$fa-var-tachometer: "\f0e4"; +$fa-var-tag: "\f02b"; +$fa-var-tags: "\f02c"; +$fa-var-tasks: "\f0ae"; +$fa-var-taxi: "\f1ba"; +$fa-var-telegram: "\f2c6"; +$fa-var-television: "\f26c"; +$fa-var-tencent-weibo: "\f1d5"; +$fa-var-terminal: "\f120"; +$fa-var-text-height: "\f034"; +$fa-var-text-width: "\f035"; +$fa-var-th: "\f00a"; +$fa-var-th-large: "\f009"; +$fa-var-th-list: "\f00b"; +$fa-var-themeisle: "\f2b2"; +$fa-var-thermometer: "\f2c7"; +$fa-var-thermometer-0: "\f2cb"; +$fa-var-thermometer-1: "\f2ca"; +$fa-var-thermometer-2: "\f2c9"; +$fa-var-thermometer-3: "\f2c8"; +$fa-var-thermometer-4: "\f2c7"; +$fa-var-thermometer-empty: "\f2cb"; +$fa-var-thermometer-full: "\f2c7"; +$fa-var-thermometer-half: "\f2c9"; +$fa-var-thermometer-quarter: "\f2ca"; +$fa-var-thermometer-three-quarters: "\f2c8"; +$fa-var-thumb-tack: "\f08d"; +$fa-var-thumbs-down: "\f165"; +$fa-var-thumbs-o-down: "\f088"; +$fa-var-thumbs-o-up: "\f087"; +$fa-var-thumbs-up: "\f164"; +$fa-var-ticket: "\f145"; +$fa-var-times: "\f00d"; +$fa-var-times-circle: "\f057"; +$fa-var-times-circle-o: "\f05c"; +$fa-var-times-rectangle: "\f2d3"; +$fa-var-times-rectangle-o: "\f2d4"; +$fa-var-tint: "\f043"; +$fa-var-toggle-down: "\f150"; +$fa-var-toggle-left: "\f191"; +$fa-var-toggle-off: "\f204"; +$fa-var-toggle-on: "\f205"; +$fa-var-toggle-right: "\f152"; +$fa-var-toggle-up: "\f151"; +$fa-var-trademark: "\f25c"; +$fa-var-train: "\f238"; +$fa-var-transgender: "\f224"; +$fa-var-transgender-alt: "\f225"; +$fa-var-trash: "\f1f8"; +$fa-var-trash-o: "\f014"; +$fa-var-tree: "\f1bb"; +$fa-var-trello: "\f181"; +$fa-var-tripadvisor: "\f262"; +$fa-var-trophy: "\f091"; +$fa-var-truck: "\f0d1"; +$fa-var-try: "\f195"; +$fa-var-tty: "\f1e4"; +$fa-var-tumblr: "\f173"; +$fa-var-tumblr-square: "\f174"; +$fa-var-turkish-lira: "\f195"; +$fa-var-tv: "\f26c"; +$fa-var-twitch: "\f1e8"; +$fa-var-twitter: "\f099"; +$fa-var-twitter-square: "\f081"; +$fa-var-umbrella: "\f0e9"; +$fa-var-underline: "\f0cd"; +$fa-var-undo: "\f0e2"; +$fa-var-universal-access: "\f29a"; +$fa-var-university: "\f19c"; +$fa-var-unlink: "\f127"; +$fa-var-unlock: "\f09c"; +$fa-var-unlock-alt: "\f13e"; +$fa-var-unsorted: "\f0dc"; +$fa-var-upload: "\f093"; +$fa-var-usb: "\f287"; +$fa-var-usd: "\f155"; +$fa-var-user: "\f007"; +$fa-var-user-circle: "\f2bd"; +$fa-var-user-circle-o: "\f2be"; +$fa-var-user-md: "\f0f0"; +$fa-var-user-o: "\f2c0"; +$fa-var-user-plus: "\f234"; +$fa-var-user-secret: "\f21b"; +$fa-var-user-times: "\f235"; +$fa-var-users: "\f0c0"; +$fa-var-vcard: "\f2bb"; +$fa-var-vcard-o: "\f2bc"; +$fa-var-venus: "\f221"; +$fa-var-venus-double: "\f226"; +$fa-var-venus-mars: "\f228"; +$fa-var-viacoin: "\f237"; +$fa-var-viadeo: "\f2a9"; +$fa-var-viadeo-square: "\f2aa"; +$fa-var-video-camera: "\f03d"; +$fa-var-vimeo: "\f27d"; +$fa-var-vimeo-square: "\f194"; +$fa-var-vine: "\f1ca"; +$fa-var-vk: "\f189"; +$fa-var-volume-control-phone: "\f2a0"; +$fa-var-volume-down: "\f027"; +$fa-var-volume-off: "\f026"; +$fa-var-volume-up: "\f028"; +$fa-var-warning: "\f071"; +$fa-var-wechat: "\f1d7"; +$fa-var-weibo: "\f18a"; +$fa-var-weixin: "\f1d7"; +$fa-var-whatsapp: "\f232"; +$fa-var-wheelchair: "\f193"; +$fa-var-wheelchair-alt: "\f29b"; +$fa-var-wifi: "\f1eb"; +$fa-var-wikipedia-w: "\f266"; +$fa-var-window-close: "\f2d3"; +$fa-var-window-close-o: "\f2d4"; +$fa-var-window-maximize: "\f2d0"; +$fa-var-window-minimize: "\f2d1"; +$fa-var-window-restore: "\f2d2"; +$fa-var-windows: "\f17a"; +$fa-var-won: "\f159"; +$fa-var-wordpress: "\f19a"; +$fa-var-wpbeginner: "\f297"; +$fa-var-wpexplorer: "\f2de"; +$fa-var-wpforms: "\f298"; +$fa-var-wrench: "\f0ad"; +$fa-var-xing: "\f168"; +$fa-var-xing-square: "\f169"; +$fa-var-y-combinator: "\f23b"; +$fa-var-y-combinator-square: "\f1d4"; +$fa-var-yahoo: "\f19e"; +$fa-var-yc: "\f23b"; +$fa-var-yc-square: "\f1d4"; +$fa-var-yelp: "\f1e9"; +$fa-var-yen: "\f157"; +$fa-var-yoast: "\f2b1"; +$fa-var-youtube: "\f167"; +$fa-var-youtube-play: "\f16a"; +$fa-var-youtube-square: "\f166"; + diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css new file mode 100644 index 0000000000..67872a82a1 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css @@ -0,0 +1,3045 @@ +@charset "UTF-8"; +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url("../fonts/fontawesome-webfont.eot?v=4.7.0"); + src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg"); + font-weight: normal; + font-style: normal; +} + +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -15%; +} + +.fa-2x { + font-size: 2em; +} + +.fa-3x { + font-size: 3em; +} + +.fa-4x { + font-size: 4em; +} + +.fa-5x { + font-size: 5em; +} + +.fa-fw { + width: 1.28571em; + text-align: center; +} + +.fa-ul { + padding-left: 0; + margin-left: 2.14286em; + list-style-type: none; +} + +.fa-ul > li { + position: relative; +} + +.fa-li { + position: absolute; + left: -2.14286em; + width: 2.14286em; + top: 0.14286em; + text-align: center; +} + +.fa-li.fa-lg { + left: -1.85714em; +} + +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eee; + border-radius: .1em; +} + +.fa-pull-left { + float: left; +} + +.fa-pull-right { + float: right; +} + +.fa.fa-pull-left { + margin-right: .3em; +} + +.fa.fa-pull-right { + margin-left: .3em; +} + +/* Deprecated as of 4.4.0 */ +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.fa.pull-left { + margin-right: .3em; +} + +.fa.pull-right { + margin-left: .3em; +} + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; +} + +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} + +.fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} + +.fa-stack-1x { + line-height: inherit; +} + +.fa-stack-2x { + font-size: 2em; +} + +.fa-inverse { + color: #fff; +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: ""; +} + +.fa-music:before { + content: ""; +} + +.fa-search:before { + content: ""; +} + +.fa-envelope-o:before { + content: ""; +} + +.fa-heart:before { + content: ""; +} + +.fa-star:before { + content: ""; +} + +.fa-star-o:before { + content: ""; +} + +.fa-user:before { + content: ""; +} + +.fa-film:before { + content: ""; +} + +.fa-th-large:before { + content: ""; +} + +.fa-th:before { + content: ""; +} + +.fa-th-list:before { + content: ""; +} + +.fa-check:before { + content: ""; +} + +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: ""; +} + +.fa-search-plus:before { + content: ""; +} + +.fa-search-minus:before { + content: ""; +} + +.fa-power-off:before { + content: ""; +} + +.fa-signal:before { + content: ""; +} + +.fa-gear:before, +.fa-cog:before { + content: ""; +} + +.fa-trash-o:before { + content: ""; +} + +.fa-home:before { + content: ""; +} + +.fa-file-o:before { + content: ""; +} + +.fa-clock-o:before { + content: ""; +} + +.fa-road:before { + content: ""; +} + +.fa-download:before { + content: ""; +} + +.fa-arrow-circle-o-down:before { + content: ""; +} + +.fa-arrow-circle-o-up:before { + content: ""; +} + +.fa-inbox:before { + content: ""; +} + +.fa-play-circle-o:before { + content: ""; +} + +.fa-rotate-right:before, +.fa-repeat:before { + content: ""; +} + +.fa-refresh:before { + content: ""; +} + +.fa-list-alt:before { + content: ""; +} + +.fa-lock:before { + content: ""; +} + +.fa-flag:before { + content: ""; +} + +.fa-headphones:before { + content: ""; +} + +.fa-volume-off:before { + content: ""; +} + +.fa-volume-down:before { + content: ""; +} + +.fa-volume-up:before { + content: ""; +} + +.fa-qrcode:before { + content: ""; +} + +.fa-barcode:before { + content: ""; +} + +.fa-tag:before { + content: ""; +} + +.fa-tags:before { + content: ""; +} + +.fa-book:before { + content: ""; +} + +.fa-bookmark:before { + content: ""; +} + +.fa-print:before { + content: ""; +} + +.fa-camera:before { + content: ""; +} + +.fa-font:before { + content: ""; +} + +.fa-bold:before { + content: ""; +} + +.fa-italic:before { + content: ""; +} + +.fa-text-height:before { + content: ""; +} + +.fa-text-width:before { + content: ""; +} + +.fa-align-left:before { + content: ""; +} + +.fa-align-center:before { + content: ""; +} + +.fa-align-right:before { + content: ""; +} + +.fa-align-justify:before { + content: ""; +} + +.fa-list:before { + content: ""; +} + +.fa-dedent:before, +.fa-outdent:before { + content: ""; +} + +.fa-indent:before { + content: ""; +} + +.fa-video-camera:before { + content: ""; +} + +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: ""; +} + +.fa-pencil:before { + content: ""; +} + +.fa-map-marker:before { + content: ""; +} + +.fa-adjust:before { + content: ""; +} + +.fa-tint:before { + content: ""; +} + +.fa-edit:before, +.fa-pencil-square-o:before { + content: ""; +} + +.fa-share-square-o:before { + content: ""; +} + +.fa-check-square-o:before { + content: ""; +} + +.fa-arrows:before { + content: ""; +} + +.fa-step-backward:before { + content: ""; +} + +.fa-fast-backward:before { + content: ""; +} + +.fa-backward:before { + content: ""; +} + +.fa-play:before { + content: ""; +} + +.fa-pause:before { + content: ""; +} + +.fa-stop:before { + content: ""; +} + +.fa-forward:before { + content: ""; +} + +.fa-fast-forward:before { + content: ""; +} + +.fa-step-forward:before { + content: ""; +} + +.fa-eject:before { + content: ""; +} + +.fa-chevron-left:before { + content: ""; +} + +.fa-chevron-right:before { + content: ""; +} + +.fa-plus-circle:before { + content: ""; +} + +.fa-minus-circle:before { + content: ""; +} + +.fa-times-circle:before { + content: ""; +} + +.fa-check-circle:before { + content: ""; +} + +.fa-question-circle:before { + content: ""; +} + +.fa-info-circle:before { + content: ""; +} + +.fa-crosshairs:before { + content: ""; +} + +.fa-times-circle-o:before { + content: ""; +} + +.fa-check-circle-o:before { + content: ""; +} + +.fa-ban:before { + content: ""; +} + +.fa-arrow-left:before { + content: ""; +} + +.fa-arrow-right:before { + content: ""; +} + +.fa-arrow-up:before { + content: ""; +} + +.fa-arrow-down:before { + content: ""; +} + +.fa-mail-forward:before, +.fa-share:before { + content: ""; +} + +.fa-expand:before { + content: ""; +} + +.fa-compress:before { + content: ""; +} + +.fa-plus:before { + content: ""; +} + +.fa-minus:before { + content: ""; +} + +.fa-asterisk:before { + content: ""; +} + +.fa-exclamation-circle:before { + content: ""; +} + +.fa-gift:before { + content: ""; +} + +.fa-leaf:before { + content: ""; +} + +.fa-fire:before { + content: ""; +} + +.fa-eye:before { + content: ""; +} + +.fa-eye-slash:before { + content: ""; +} + +.fa-warning:before, +.fa-exclamation-triangle:before { + content: ""; +} + +.fa-plane:before { + content: ""; +} + +.fa-calendar:before { + content: ""; +} + +.fa-random:before { + content: ""; +} + +.fa-comment:before { + content: ""; +} + +.fa-magnet:before { + content: ""; +} + +.fa-chevron-up:before { + content: ""; +} + +.fa-chevron-down:before { + content: ""; +} + +.fa-retweet:before { + content: ""; +} + +.fa-shopping-cart:before { + content: ""; +} + +.fa-folder:before { + content: ""; +} + +.fa-folder-open:before { + content: ""; +} + +.fa-arrows-v:before { + content: ""; +} + +.fa-arrows-h:before { + content: ""; +} + +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: ""; +} + +.fa-twitter-square:before { + content: ""; +} + +.fa-facebook-square:before { + content: ""; +} + +.fa-camera-retro:before { + content: ""; +} + +.fa-key:before { + content: ""; +} + +.fa-gears:before, +.fa-cogs:before { + content: ""; +} + +.fa-comments:before { + content: ""; +} + +.fa-thumbs-o-up:before { + content: ""; +} + +.fa-thumbs-o-down:before { + content: ""; +} + +.fa-star-half:before { + content: ""; +} + +.fa-heart-o:before { + content: ""; +} + +.fa-sign-out:before { + content: ""; +} + +.fa-linkedin-square:before { + content: ""; +} + +.fa-thumb-tack:before { + content: ""; +} + +.fa-external-link:before { + content: ""; +} + +.fa-sign-in:before { + content: ""; +} + +.fa-trophy:before { + content: ""; +} + +.fa-github-square:before { + content: ""; +} + +.fa-upload:before { + content: ""; +} + +.fa-lemon-o:before { + content: ""; +} + +.fa-phone:before { + content: ""; +} + +.fa-square-o:before { + content: ""; +} + +.fa-bookmark-o:before { + content: ""; +} + +.fa-phone-square:before { + content: ""; +} + +.fa-twitter:before { + content: ""; +} + +.fa-facebook-f:before, +.fa-facebook:before { + content: ""; +} + +.fa-github:before { + content: ""; +} + +.fa-unlock:before { + content: ""; +} + +.fa-credit-card:before { + content: ""; +} + +.fa-feed:before, +.fa-rss:before { + content: ""; +} + +.fa-hdd-o:before { + content: ""; +} + +.fa-bullhorn:before { + content: ""; +} + +.fa-bell:before { + content: ""; +} + +.fa-certificate:before { + content: ""; +} + +.fa-hand-o-right:before { + content: ""; +} + +.fa-hand-o-left:before { + content: ""; +} + +.fa-hand-o-up:before { + content: ""; +} + +.fa-hand-o-down:before { + content: ""; +} + +.fa-arrow-circle-left:before { + content: ""; +} + +.fa-arrow-circle-right:before { + content: ""; +} + +.fa-arrow-circle-up:before { + content: ""; +} + +.fa-arrow-circle-down:before { + content: ""; +} + +.fa-globe:before { + content: ""; +} + +.fa-wrench:before { + content: ""; +} + +.fa-tasks:before { + content: ""; +} + +.fa-filter:before { + content: ""; +} + +.fa-briefcase:before { + content: ""; +} + +.fa-arrows-alt:before { + content: ""; +} + +.fa-group:before, +.fa-users:before { + content: ""; +} + +.fa-chain:before, +.fa-link:before { + content: ""; +} + +.fa-cloud:before { + content: ""; +} + +.fa-flask:before { + content: ""; +} + +.fa-cut:before, +.fa-scissors:before { + content: ""; +} + +.fa-copy:before, +.fa-files-o:before { + content: ""; +} + +.fa-paperclip:before { + content: ""; +} + +.fa-save:before, +.fa-floppy-o:before { + content: ""; +} + +.fa-square:before { + content: ""; +} + +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: ""; +} + +.fa-list-ul:before { + content: ""; +} + +.fa-list-ol:before { + content: ""; +} + +.fa-strikethrough:before { + content: ""; +} + +.fa-underline:before { + content: ""; +} + +.fa-table:before { + content: ""; +} + +.fa-magic:before { + content: ""; +} + +.fa-truck:before { + content: ""; +} + +.fa-pinterest:before { + content: ""; +} + +.fa-pinterest-square:before { + content: ""; +} + +.fa-google-plus-square:before { + content: ""; +} + +.fa-google-plus:before { + content: ""; +} + +.fa-money:before { + content: ""; +} + +.fa-caret-down:before { + content: ""; +} + +.fa-caret-up:before { + content: ""; +} + +.fa-caret-left:before { + content: ""; +} + +.fa-caret-right:before { + content: ""; +} + +.fa-columns:before { + content: ""; +} + +.fa-unsorted:before, +.fa-sort:before { + content: ""; +} + +.fa-sort-down:before, +.fa-sort-desc:before { + content: ""; +} + +.fa-sort-up:before, +.fa-sort-asc:before { + content: ""; +} + +.fa-envelope:before { + content: ""; +} + +.fa-linkedin:before { + content: ""; +} + +.fa-rotate-left:before, +.fa-undo:before { + content: ""; +} + +.fa-legal:before, +.fa-gavel:before { + content: ""; +} + +.fa-dashboard:before, +.fa-tachometer:before { + content: ""; +} + +.fa-comment-o:before { + content: ""; +} + +.fa-comments-o:before { + content: ""; +} + +.fa-flash:before, +.fa-bolt:before { + content: ""; +} + +.fa-sitemap:before { + content: ""; +} + +.fa-umbrella:before { + content: ""; +} + +.fa-paste:before, +.fa-clipboard:before { + content: ""; +} + +.fa-lightbulb-o:before { + content: ""; +} + +.fa-exchange:before { + content: ""; +} + +.fa-cloud-download:before { + content: ""; +} + +.fa-cloud-upload:before { + content: ""; +} + +.fa-user-md:before { + content: ""; +} + +.fa-stethoscope:before { + content: ""; +} + +.fa-suitcase:before { + content: ""; +} + +.fa-bell-o:before { + content: ""; +} + +.fa-coffee:before { + content: ""; +} + +.fa-cutlery:before { + content: ""; +} + +.fa-file-text-o:before { + content: ""; +} + +.fa-building-o:before { + content: ""; +} + +.fa-hospital-o:before { + content: ""; +} + +.fa-ambulance:before { + content: ""; +} + +.fa-medkit:before { + content: ""; +} + +.fa-fighter-jet:before { + content: ""; +} + +.fa-beer:before { + content: ""; +} + +.fa-h-square:before { + content: ""; +} + +.fa-plus-square:before { + content: ""; +} + +.fa-angle-double-left:before { + content: ""; +} + +.fa-angle-double-right:before { + content: ""; +} + +.fa-angle-double-up:before { + content: ""; +} + +.fa-angle-double-down:before { + content: ""; +} + +.fa-angle-left:before { + content: ""; +} + +.fa-angle-right:before { + content: ""; +} + +.fa-angle-up:before { + content: ""; +} + +.fa-angle-down:before { + content: ""; +} + +.fa-desktop:before { + content: ""; +} + +.fa-laptop:before { + content: ""; +} + +.fa-tablet:before { + content: ""; +} + +.fa-mobile-phone:before, +.fa-mobile:before { + content: ""; +} + +.fa-circle-o:before { + content: ""; +} + +.fa-quote-left:before { + content: ""; +} + +.fa-quote-right:before { + content: ""; +} + +.fa-spinner:before { + content: ""; +} + +.fa-circle:before { + content: ""; +} + +.fa-mail-reply:before, +.fa-reply:before { + content: ""; +} + +.fa-github-alt:before { + content: ""; +} + +.fa-folder-o:before { + content: ""; +} + +.fa-folder-open-o:before { + content: ""; +} + +.fa-smile-o:before { + content: ""; +} + +.fa-frown-o:before { + content: ""; +} + +.fa-meh-o:before { + content: ""; +} + +.fa-gamepad:before { + content: ""; +} + +.fa-keyboard-o:before { + content: ""; +} + +.fa-flag-o:before { + content: ""; +} + +.fa-flag-checkered:before { + content: ""; +} + +.fa-terminal:before { + content: ""; +} + +.fa-code:before { + content: ""; +} + +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: ""; +} + +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: ""; +} + +.fa-location-arrow:before { + content: ""; +} + +.fa-crop:before { + content: ""; +} + +.fa-code-fork:before { + content: ""; +} + +.fa-unlink:before, +.fa-chain-broken:before { + content: ""; +} + +.fa-question:before { + content: ""; +} + +.fa-info:before { + content: ""; +} + +.fa-exclamation:before { + content: ""; +} + +.fa-superscript:before { + content: ""; +} + +.fa-subscript:before { + content: ""; +} + +.fa-eraser:before { + content: ""; +} + +.fa-puzzle-piece:before { + content: ""; +} + +.fa-microphone:before { + content: ""; +} + +.fa-microphone-slash:before { + content: ""; +} + +.fa-shield:before { + content: ""; +} + +.fa-calendar-o:before { + content: ""; +} + +.fa-fire-extinguisher:before { + content: ""; +} + +.fa-rocket:before { + content: ""; +} + +.fa-maxcdn:before { + content: ""; +} + +.fa-chevron-circle-left:before { + content: ""; +} + +.fa-chevron-circle-right:before { + content: ""; +} + +.fa-chevron-circle-up:before { + content: ""; +} + +.fa-chevron-circle-down:before { + content: ""; +} + +.fa-html5:before { + content: ""; +} + +.fa-css3:before { + content: ""; +} + +.fa-anchor:before { + content: ""; +} + +.fa-unlock-alt:before { + content: ""; +} + +.fa-bullseye:before { + content: ""; +} + +.fa-ellipsis-h:before { + content: ""; +} + +.fa-ellipsis-v:before { + content: ""; +} + +.fa-rss-square:before { + content: ""; +} + +.fa-play-circle:before { + content: ""; +} + +.fa-ticket:before { + content: ""; +} + +.fa-minus-square:before { + content: ""; +} + +.fa-minus-square-o:before { + content: ""; +} + +.fa-level-up:before { + content: ""; +} + +.fa-level-down:before { + content: ""; +} + +.fa-check-square:before { + content: ""; +} + +.fa-pencil-square:before { + content: ""; +} + +.fa-external-link-square:before { + content: ""; +} + +.fa-share-square:before { + content: ""; +} + +.fa-compass:before { + content: ""; +} + +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: ""; +} + +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: ""; +} + +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: ""; +} + +.fa-euro:before, +.fa-eur:before { + content: ""; +} + +.fa-gbp:before { + content: ""; +} + +.fa-dollar:before, +.fa-usd:before { + content: ""; +} + +.fa-rupee:before, +.fa-inr:before { + content: ""; +} + +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: ""; +} + +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: ""; +} + +.fa-won:before, +.fa-krw:before { + content: ""; +} + +.fa-bitcoin:before, +.fa-btc:before { + content: ""; +} + +.fa-file:before { + content: ""; +} + +.fa-file-text:before { + content: ""; +} + +.fa-sort-alpha-asc:before { + content: ""; +} + +.fa-sort-alpha-desc:before { + content: ""; +} + +.fa-sort-amount-asc:before { + content: ""; +} + +.fa-sort-amount-desc:before { + content: ""; +} + +.fa-sort-numeric-asc:before { + content: ""; +} + +.fa-sort-numeric-desc:before { + content: ""; +} + +.fa-thumbs-up:before { + content: ""; +} + +.fa-thumbs-down:before { + content: ""; +} + +.fa-youtube-square:before { + content: ""; +} + +.fa-youtube:before { + content: ""; +} + +.fa-xing:before { + content: ""; +} + +.fa-xing-square:before { + content: ""; +} + +.fa-youtube-play:before { + content: ""; +} + +.fa-dropbox:before { + content: ""; +} + +.fa-stack-overflow:before { + content: ""; +} + +.fa-instagram:before { + content: ""; +} + +.fa-flickr:before { + content: ""; +} + +.fa-adn:before { + content: ""; +} + +.fa-bitbucket:before { + content: ""; +} + +.fa-bitbucket-square:before { + content: ""; +} + +.fa-tumblr:before { + content: ""; +} + +.fa-tumblr-square:before { + content: ""; +} + +.fa-long-arrow-down:before { + content: ""; +} + +.fa-long-arrow-up:before { + content: ""; +} + +.fa-long-arrow-left:before { + content: ""; +} + +.fa-long-arrow-right:before { + content: ""; +} + +.fa-apple:before { + content: ""; +} + +.fa-windows:before { + content: ""; +} + +.fa-android:before { + content: ""; +} + +.fa-linux:before { + content: ""; +} + +.fa-dribbble:before { + content: ""; +} + +.fa-skype:before { + content: ""; +} + +.fa-foursquare:before { + content: ""; +} + +.fa-trello:before { + content: ""; +} + +.fa-female:before { + content: ""; +} + +.fa-male:before { + content: ""; +} + +.fa-gittip:before, +.fa-gratipay:before { + content: ""; +} + +.fa-sun-o:before { + content: ""; +} + +.fa-moon-o:before { + content: ""; +} + +.fa-archive:before { + content: ""; +} + +.fa-bug:before { + content: ""; +} + +.fa-vk:before { + content: ""; +} + +.fa-weibo:before { + content: ""; +} + +.fa-renren:before { + content: ""; +} + +.fa-pagelines:before { + content: ""; +} + +.fa-stack-exchange:before { + content: ""; +} + +.fa-arrow-circle-o-right:before { + content: ""; +} + +.fa-arrow-circle-o-left:before { + content: ""; +} + +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: ""; +} + +.fa-dot-circle-o:before { + content: ""; +} + +.fa-wheelchair:before { + content: ""; +} + +.fa-vimeo-square:before { + content: ""; +} + +.fa-turkish-lira:before, +.fa-try:before { + content: ""; +} + +.fa-plus-square-o:before { + content: ""; +} + +.fa-space-shuttle:before { + content: ""; +} + +.fa-slack:before { + content: ""; +} + +.fa-envelope-square:before { + content: ""; +} + +.fa-wordpress:before { + content: ""; +} + +.fa-openid:before { + content: ""; +} + +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: ""; +} + +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: ""; +} + +.fa-yahoo:before { + content: ""; +} + +.fa-google:before { + content: ""; +} + +.fa-reddit:before { + content: ""; +} + +.fa-reddit-square:before { + content: ""; +} + +.fa-stumbleupon-circle:before { + content: ""; +} + +.fa-stumbleupon:before { + content: ""; +} + +.fa-delicious:before { + content: ""; +} + +.fa-digg:before { + content: ""; +} + +.fa-pied-piper-pp:before { + content: ""; +} + +.fa-pied-piper-alt:before { + content: ""; +} + +.fa-drupal:before { + content: ""; +} + +.fa-joomla:before { + content: ""; +} + +.fa-language:before { + content: ""; +} + +.fa-fax:before { + content: ""; +} + +.fa-building:before { + content: ""; +} + +.fa-child:before { + content: ""; +} + +.fa-paw:before { + content: ""; +} + +.fa-spoon:before { + content: ""; +} + +.fa-cube:before { + content: ""; +} + +.fa-cubes:before { + content: ""; +} + +.fa-behance:before { + content: ""; +} + +.fa-behance-square:before { + content: ""; +} + +.fa-steam:before { + content: ""; +} + +.fa-steam-square:before { + content: ""; +} + +.fa-recycle:before { + content: ""; +} + +.fa-automobile:before, +.fa-car:before { + content: ""; +} + +.fa-cab:before, +.fa-taxi:before { + content: ""; +} + +.fa-tree:before { + content: ""; +} + +.fa-spotify:before { + content: ""; +} + +.fa-deviantart:before { + content: ""; +} + +.fa-soundcloud:before { + content: ""; +} + +.fa-database:before { + content: ""; +} + +.fa-file-pdf-o:before { + content: ""; +} + +.fa-file-word-o:before { + content: ""; +} + +.fa-file-excel-o:before { + content: ""; +} + +.fa-file-powerpoint-o:before { + content: ""; +} + +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: ""; +} + +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: ""; +} + +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: ""; +} + +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: ""; +} + +.fa-file-code-o:before { + content: ""; +} + +.fa-vine:before { + content: ""; +} + +.fa-codepen:before { + content: ""; +} + +.fa-jsfiddle:before { + content: ""; +} + +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: ""; +} + +.fa-circle-o-notch:before { + content: ""; +} + +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: ""; +} + +.fa-ge:before, +.fa-empire:before { + content: ""; +} + +.fa-git-square:before { + content: ""; +} + +.fa-git:before { + content: ""; +} + +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: ""; +} + +.fa-tencent-weibo:before { + content: ""; +} + +.fa-qq:before { + content: ""; +} + +.fa-wechat:before, +.fa-weixin:before { + content: ""; +} + +.fa-send:before, +.fa-paper-plane:before { + content: ""; +} + +.fa-send-o:before, +.fa-paper-plane-o:before { + content: ""; +} + +.fa-history:before { + content: ""; +} + +.fa-circle-thin:before { + content: ""; +} + +.fa-header:before { + content: ""; +} + +.fa-paragraph:before { + content: ""; +} + +.fa-sliders:before { + content: ""; +} + +.fa-share-alt:before { + content: ""; +} + +.fa-share-alt-square:before { + content: ""; +} + +.fa-bomb:before { + content: ""; +} + +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: ""; +} + +.fa-tty:before { + content: ""; +} + +.fa-binoculars:before { + content: ""; +} + +.fa-plug:before { + content: ""; +} + +.fa-slideshare:before { + content: ""; +} + +.fa-twitch:before { + content: ""; +} + +.fa-yelp:before { + content: ""; +} + +.fa-newspaper-o:before { + content: ""; +} + +.fa-wifi:before { + content: ""; +} + +.fa-calculator:before { + content: ""; +} + +.fa-paypal:before { + content: ""; +} + +.fa-google-wallet:before { + content: ""; +} + +.fa-cc-visa:before { + content: ""; +} + +.fa-cc-mastercard:before { + content: ""; +} + +.fa-cc-discover:before { + content: ""; +} + +.fa-cc-amex:before { + content: ""; +} + +.fa-cc-paypal:before { + content: ""; +} + +.fa-cc-stripe:before { + content: ""; +} + +.fa-bell-slash:before { + content: ""; +} + +.fa-bell-slash-o:before { + content: ""; +} + +.fa-trash:before { + content: ""; +} + +.fa-copyright:before { + content: ""; +} + +.fa-at:before { + content: ""; +} + +.fa-eyedropper:before { + content: ""; +} + +.fa-paint-brush:before { + content: ""; +} + +.fa-birthday-cake:before { + content: ""; +} + +.fa-area-chart:before { + content: ""; +} + +.fa-pie-chart:before { + content: ""; +} + +.fa-line-chart:before { + content: ""; +} + +.fa-lastfm:before { + content: ""; +} + +.fa-lastfm-square:before { + content: ""; +} + +.fa-toggle-off:before { + content: ""; +} + +.fa-toggle-on:before { + content: ""; +} + +.fa-bicycle:before { + content: ""; +} + +.fa-bus:before { + content: ""; +} + +.fa-ioxhost:before { + content: ""; +} + +.fa-angellist:before { + content: ""; +} + +.fa-cc:before { + content: ""; +} + +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: ""; +} + +.fa-meanpath:before { + content: ""; +} + +.fa-buysellads:before { + content: ""; +} + +.fa-connectdevelop:before { + content: ""; +} + +.fa-dashcube:before { + content: ""; +} + +.fa-forumbee:before { + content: ""; +} + +.fa-leanpub:before { + content: ""; +} + +.fa-sellsy:before { + content: ""; +} + +.fa-shirtsinbulk:before { + content: ""; +} + +.fa-simplybuilt:before { + content: ""; +} + +.fa-skyatlas:before { + content: ""; +} + +.fa-cart-plus:before { + content: ""; +} + +.fa-cart-arrow-down:before { + content: ""; +} + +.fa-diamond:before { + content: ""; +} + +.fa-ship:before { + content: ""; +} + +.fa-user-secret:before { + content: ""; +} + +.fa-motorcycle:before { + content: ""; +} + +.fa-street-view:before { + content: ""; +} + +.fa-heartbeat:before { + content: ""; +} + +.fa-venus:before { + content: ""; +} + +.fa-mars:before { + content: ""; +} + +.fa-mercury:before { + content: ""; +} + +.fa-intersex:before, +.fa-transgender:before { + content: ""; +} + +.fa-transgender-alt:before { + content: ""; +} + +.fa-venus-double:before { + content: ""; +} + +.fa-mars-double:before { + content: ""; +} + +.fa-venus-mars:before { + content: ""; +} + +.fa-mars-stroke:before { + content: ""; +} + +.fa-mars-stroke-v:before { + content: ""; +} + +.fa-mars-stroke-h:before { + content: ""; +} + +.fa-neuter:before { + content: ""; +} + +.fa-genderless:before { + content: ""; +} + +.fa-facebook-official:before { + content: ""; +} + +.fa-pinterest-p:before { + content: ""; +} + +.fa-whatsapp:before { + content: ""; +} + +.fa-server:before { + content: ""; +} + +.fa-user-plus:before { + content: ""; +} + +.fa-user-times:before { + content: ""; +} + +.fa-hotel:before, +.fa-bed:before { + content: ""; +} + +.fa-viacoin:before { + content: ""; +} + +.fa-train:before { + content: ""; +} + +.fa-subway:before { + content: ""; +} + +.fa-medium:before { + content: ""; +} + +.fa-yc:before, +.fa-y-combinator:before { + content: ""; +} + +.fa-optin-monster:before { + content: ""; +} + +.fa-opencart:before { + content: ""; +} + +.fa-expeditedssl:before { + content: ""; +} + +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: ""; +} + +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: ""; +} + +.fa-battery-2:before, +.fa-battery-half:before { + content: ""; +} + +.fa-battery-1:before, +.fa-battery-quarter:before { + content: ""; +} + +.fa-battery-0:before, +.fa-battery-empty:before { + content: ""; +} + +.fa-mouse-pointer:before { + content: ""; +} + +.fa-i-cursor:before { + content: ""; +} + +.fa-object-group:before { + content: ""; +} + +.fa-object-ungroup:before { + content: ""; +} + +.fa-sticky-note:before { + content: ""; +} + +.fa-sticky-note-o:before { + content: ""; +} + +.fa-cc-jcb:before { + content: ""; +} + +.fa-cc-diners-club:before { + content: ""; +} + +.fa-clone:before { + content: ""; +} + +.fa-balance-scale:before { + content: ""; +} + +.fa-hourglass-o:before { + content: ""; +} + +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: ""; +} + +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: ""; +} + +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: ""; +} + +.fa-hourglass:before { + content: ""; +} + +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: ""; +} + +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: ""; +} + +.fa-hand-scissors-o:before { + content: ""; +} + +.fa-hand-lizard-o:before { + content: ""; +} + +.fa-hand-spock-o:before { + content: ""; +} + +.fa-hand-pointer-o:before { + content: ""; +} + +.fa-hand-peace-o:before { + content: ""; +} + +.fa-trademark:before { + content: ""; +} + +.fa-registered:before { + content: ""; +} + +.fa-creative-commons:before { + content: ""; +} + +.fa-gg:before { + content: ""; +} + +.fa-gg-circle:before { + content: ""; +} + +.fa-tripadvisor:before { + content: ""; +} + +.fa-odnoklassniki:before { + content: ""; +} + +.fa-odnoklassniki-square:before { + content: ""; +} + +.fa-get-pocket:before { + content: ""; +} + +.fa-wikipedia-w:before { + content: ""; +} + +.fa-safari:before { + content: ""; +} + +.fa-chrome:before { + content: ""; +} + +.fa-firefox:before { + content: ""; +} + +.fa-opera:before { + content: ""; +} + +.fa-internet-explorer:before { + content: ""; +} + +.fa-tv:before, +.fa-television:before { + content: ""; +} + +.fa-contao:before { + content: ""; +} + +.fa-500px:before { + content: ""; +} + +.fa-amazon:before { + content: ""; +} + +.fa-calendar-plus-o:before { + content: ""; +} + +.fa-calendar-minus-o:before { + content: ""; +} + +.fa-calendar-times-o:before { + content: ""; +} + +.fa-calendar-check-o:before { + content: ""; +} + +.fa-industry:before { + content: ""; +} + +.fa-map-pin:before { + content: ""; +} + +.fa-map-signs:before { + content: ""; +} + +.fa-map-o:before { + content: ""; +} + +.fa-map:before { + content: ""; +} + +.fa-commenting:before { + content: ""; +} + +.fa-commenting-o:before { + content: ""; +} + +.fa-houzz:before { + content: ""; +} + +.fa-vimeo:before { + content: ""; +} + +.fa-black-tie:before { + content: ""; +} + +.fa-fonticons:before { + content: ""; +} + +.fa-reddit-alien:before { + content: ""; +} + +.fa-edge:before { + content: ""; +} + +.fa-credit-card-alt:before { + content: ""; +} + +.fa-codiepie:before { + content: ""; +} + +.fa-modx:before { + content: ""; +} + +.fa-fort-awesome:before { + content: ""; +} + +.fa-usb:before { + content: ""; +} + +.fa-product-hunt:before { + content: ""; +} + +.fa-mixcloud:before { + content: ""; +} + +.fa-scribd:before { + content: ""; +} + +.fa-pause-circle:before { + content: ""; +} + +.fa-pause-circle-o:before { + content: ""; +} + +.fa-stop-circle:before { + content: ""; +} + +.fa-stop-circle-o:before { + content: ""; +} + +.fa-shopping-bag:before { + content: ""; +} + +.fa-shopping-basket:before { + content: ""; +} + +.fa-hashtag:before { + content: ""; +} + +.fa-bluetooth:before { + content: ""; +} + +.fa-bluetooth-b:before { + content: ""; +} + +.fa-percent:before { + content: ""; +} + +.fa-gitlab:before { + content: ""; +} + +.fa-wpbeginner:before { + content: ""; +} + +.fa-wpforms:before { + content: ""; +} + +.fa-envira:before { + content: ""; +} + +.fa-universal-access:before { + content: ""; +} + +.fa-wheelchair-alt:before { + content: ""; +} + +.fa-question-circle-o:before { + content: ""; +} + +.fa-blind:before { + content: ""; +} + +.fa-audio-description:before { + content: ""; +} + +.fa-volume-control-phone:before { + content: ""; +} + +.fa-braille:before { + content: ""; +} + +.fa-assistive-listening-systems:before { + content: ""; +} + +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: ""; +} + +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: ""; +} + +.fa-glide:before { + content: ""; +} + +.fa-glide-g:before { + content: ""; +} + +.fa-signing:before, +.fa-sign-language:before { + content: ""; +} + +.fa-low-vision:before { + content: ""; +} + +.fa-viadeo:before { + content: ""; +} + +.fa-viadeo-square:before { + content: ""; +} + +.fa-snapchat:before { + content: ""; +} + +.fa-snapchat-ghost:before { + content: ""; +} + +.fa-snapchat-square:before { + content: ""; +} + +.fa-pied-piper:before { + content: ""; +} + +.fa-first-order:before { + content: ""; +} + +.fa-yoast:before { + content: ""; +} + +.fa-themeisle:before { + content: ""; +} + +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: ""; +} + +.fa-fa:before, +.fa-font-awesome:before { + content: ""; +} + +.fa-handshake-o:before { + content: ""; +} + +.fa-envelope-open:before { + content: ""; +} + +.fa-envelope-open-o:before { + content: ""; +} + +.fa-linode:before { + content: ""; +} + +.fa-address-book:before { + content: ""; +} + +.fa-address-book-o:before { + content: ""; +} + +.fa-vcard:before, +.fa-address-card:before { + content: ""; +} + +.fa-vcard-o:before, +.fa-address-card-o:before { + content: ""; +} + +.fa-user-circle:before { + content: ""; +} + +.fa-user-circle-o:before { + content: ""; +} + +.fa-user-o:before { + content: ""; +} + +.fa-id-badge:before { + content: ""; +} + +.fa-drivers-license:before, +.fa-id-card:before { + content: ""; +} + +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: ""; +} + +.fa-quora:before { + content: ""; +} + +.fa-free-code-camp:before { + content: ""; +} + +.fa-telegram:before { + content: ""; +} + +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: ""; +} + +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: ""; +} + +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: ""; +} + +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: ""; +} + +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: ""; +} + +.fa-shower:before { + content: ""; +} + +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: ""; +} + +.fa-podcast:before { + content: ""; +} + +.fa-window-maximize:before { + content: ""; +} + +.fa-window-minimize:before { + content: ""; +} + +.fa-window-restore:before { + content: ""; +} + +.fa-times-rectangle:before, +.fa-window-close:before { + content: ""; +} + +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: ""; +} + +.fa-bandcamp:before { + content: ""; +} + +.fa-grav:before { + content: ""; +} + +.fa-etsy:before { + content: ""; +} + +.fa-imdb:before { + content: ""; +} + +.fa-ravelry:before { + content: ""; +} + +.fa-eercast:before { + content: ""; +} + +.fa-microchip:before { + content: ""; +} + +.fa-snowflake-o:before { + content: ""; +} + +.fa-superpowers:before { + content: ""; +} + +.fa-wpexplorer:before { + content: ""; +} + +.fa-meetup:before { + content: ""; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +/*# sourceMappingURL=font-awesome.css.map */ \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css.map b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css.map new file mode 100644 index 0000000000..2d801fbde9 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.css.map @@ -0,0 +1,22 @@ +{ + "version": 3, + "mappings": ";AAAA;;;GAGG;AGHH;gCACgC;AAEhC,UAAU;EACR,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,+CAAgE;EACrE,GAAG,EAAE,sDAAuE,CAAC,2BAA2B,EACtG,iDAAkE,CAAC,eAAe,EAClF,gDAAiE,CAAC,cAAc,EAChF,+CAAgE,CAAC,kBAAkB,EACnF,kEAAmF,CAAC,aAAa;EAEnG,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;;;ACVpB,AAAA,GAAG,CAAgB;EACjB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAA6C,CAAC,WAAW;EACpF,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;CAEnC;;ACRD,8DAA8D;AAC9D,AAAA,MAAM,CAAgB;EACpB,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAS;EACtB,cAAc,EAAE,IAAI;CACrB;;AACD,AAAA,MAAM,CAAgB;EAAE,SAAS,EAAE,GAAG;CAAI;;AAC1C,AAAA,MAAM,CAAgB;EAAE,SAAS,EAAE,GAAG;CAAI;;AAC1C,AAAA,MAAM,CAAgB;EAAE,SAAS,EAAE,GAAG;CAAI;;AAC1C,AAAA,MAAM,CAAgB;EAAE,SAAS,EAAE,GAAG;CAAI;;ACV1C,AAAA,MAAM,CAAgB;EACpB,KAAK,EAAE,SAAW;EAClB,UAAU,EAAE,MAAM;CACnB;;ACFD,AAAA,MAAM,CAAgB;EACpB,YAAY,EAAE,CAAC;EACf,WAAW,ENMS,SAAW;EML/B,eAAe,EAAE,IAAI;CAEtB;;AALD,AAIE,MAJI,GAIF,EAAE,CAAC;EAAE,QAAQ,EAAE,QAAQ;CAAI;;AAE/B,AAAA,MAAM,CAAgB;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,ENAgB,UAAW;EMC/B,KAAK,ENDe,SAAW;EME/B,GAAG,EAAE,SAAU;EACf,UAAU,EAAE,MAAM;CAInB;;AATD,AAME,MANI,AAMH,MAAM,CAAgB;EACrB,IAAI,EAAE,UAA0B;CACjC;;ACdH,AAAA,UAAU,CAAgB;EACxB,OAAO,EAAE,gBAAgB;EACzB,MAAM,EAAE,KAAK,CAAC,MAAK,CPIC,IAAI;EOHxB,aAAa,EAAE,IAAI;CACpB;;AAED,AAAA,aAAa,CAAgB;EAAE,KAAK,EAAE,IAAI;CAAI;;AAC9C,AAAA,cAAc,CAAgB;EAAE,KAAK,EAAE,KAAK;CAAI;;AAEhD,AACE,GADC,AACA,aAAa,CAAgB;EAAE,YAAY,EAAE,IAAI;CAAI;;AADxD,AAEE,GAFC,AAEA,cAAc,CAAgB;EAAE,WAAW,EAAE,IAAI;CAAI;;AAGxD,4BAA4B;AAC5B,AAAA,WAAW,CAAC;EAAE,KAAK,EAAE,KAAK;CAAI;;AAC9B,AAAA,UAAU,CAAC;EAAE,KAAK,EAAE,IAAI;CAAI;;AAE5B,AACE,GADC,AACA,UAAU,CAAC;EAAE,YAAY,EAAE,IAAI;CAAI;;AADtC,AAEE,GAFC,AAEA,WAAW,CAAC;EAAE,WAAW,EAAE,IAAI;CAAI;;ACpBtC,AAAA,QAAQ,CAAgB;EACtB,iBAAiB,EAAE,0BAA0B;EACrC,SAAS,EAAE,0BAA0B;CAC9C;;AAED,AAAA,SAAS,CAAgB;EACvB,iBAAiB,EAAE,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,QAAQ;EACvC,SAAS,EAAE,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,QAAQ;CAChD;;AAED,kBAAkB,CAAlB,OAAkB;EAChB,EAAE;IACA,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAI;IACF,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;;;;AAIrC,UAAU,CAAV,OAAU;EACR,EAAE;IACA,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;;EAEjC,IAAI;IACF,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;;;;AC5BrC,AAAA,aAAa,CAAiB;ERW5B,UAAU,EAAE,0DAAqE;EACjF,iBAAiB,EAAE,aAAgB;EAC/B,aAAa,EAAE,aAAgB;EAC3B,SAAS,EAAE,aAAgB;CQdiC;;AACtE,AAAA,cAAc,CAAgB;ERU5B,UAAU,EAAE,0DAAqE;EACjF,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;CQbiC;;AACtE,AAAA,cAAc,CAAgB;ERS5B,UAAU,EAAE,0DAAqE;EACjF,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;CQZiC;;AAEtE,AAAA,mBAAmB,CAAgB;ERcjC,UAAU,EAAE,oEAA+E;EAC3F,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;CQjB+B;;AACxE,AAAA,iBAAiB,CAAkB;ERajC,UAAU,EAAE,oEAA+E;EAC3F,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;CQhB+B;;AAKxE,AAAA,KAAK,CAAC,aAAa;AACnB,KAAK,CAAC,cAAc;AACpB,KAAK,CAAC,cAAc;AACpB,KAAK,CAAC,mBAAmB;AACzB,KAAK,CAAC,iBAAiB,CAAgB;EACrC,MAAM,EAAE,IAAI;CACb;;AChBD,AAAA,SAAS,CAAgB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,MAAM;CACvB;;AACD,AAAA,YAAY,EAAE,YAAY,CAA+B;EACvD,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;CACnB;;AACD,AAAA,YAAY,CAAgB;EAAE,WAAW,EAAE,OAAO;CAAI;;AACtD,AAAA,YAAY,CAAgB;EAAE,SAAS,EAAE,GAAG;CAAI;;AAChD,AAAA,WAAW,CAAgB;EAAE,KAAK,EVTZ,IAAI;CUSyB;;ACnBnD;oEACoE;AAEpE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwU1B,IAAO;CWxUsC;;AAC5D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2d1B,IAAO;CW3dsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0jB1B,IAAO;CW1jBuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsO1B,IAAO;CWtO2C;;AACtE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuW1B,IAAO;CWvWsC;;AAC5D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXknB1B,IAAO;CWlnBqC;;AAC1D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsnB1B,IAAO;CWtnBuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXytB1B,IAAO;CWztBqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmR1B,IAAO;CWnRqC;;AAC1D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXupB1B,IAAO;CWvpByC;;AAClE,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqpB1B,IAAO;CWrpBmC;;AACtD,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXspB1B,IAAO;CWtpBwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyI1B,IAAO;CWzIsC;;AAC5D,AAAA,UAAU,AAAA,OAAO;AACjB,SAAS,AAAA,OAAO;AAChB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqqB1B,IAAO;CWrqBsC;;AAC5D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8iB1B,IAAO;CW9iB4C;;AACxE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4iB1B,IAAO;CW5iB6C;;AAC1E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4f1B,IAAO;CW5f0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXikB1B,IAAO;CWjkBuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO;AACf,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgK1B,IAAO;CWhKoC;;AACxD,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+qB1B,IAAO;CW/qBwC;;AAChE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwV1B,IAAO;CWxVqC;;AAC1D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuP1B,IAAO;CWvPuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgJ1B,IAAO;CWhJwC;;AAChE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmhB1B,IAAO;CWnhBqC;;AAC1D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgM1B,IAAO;CWhMyC;;AAClE,AAAA,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXY1B,IAAO;CWZoD;;AACxF,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXc1B,IAAO;CWdkD;;AACpF,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqW1B,IAAO;CWrWsC;;AAC5D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwe1B,IAAO;CWxe8C;;AAC5E,AAAA,gBAAgB,AAAA,OAAO;AACvB,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsgB1B,IAAO;CWtgBuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXggB1B,IAAO;CWhgBwC;;AAChE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwY1B,IAAO;CWxYyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Y1B,IAAO;CW3YqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4P1B,IAAO;CW5PqC;;AAC1D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoU1B,IAAO;CWpU2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXitB1B,IAAO;CWjtB2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+sB1B,IAAO;CW/sB4C;;AACxE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgtB1B,IAAO;CWhtB0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXye1B,IAAO;CWzeuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwB1B,IAAO;CWxBwC;;AAChE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXymB1B,IAAO;CWzmBoC;;AACxD,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXymB1B,IAAO;CWzmBqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyD1B,IAAO;CWzDqC;;AAC1D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyD1B,IAAO;CWzDyC;;AAClE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+d1B,IAAO;CW/dsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2E1B,IAAO;CW3EuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0P1B,IAAO;CW1PqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiD1B,IAAO;CWjDqC;;AAC1D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0V1B,IAAO;CW1VuC;;AAC9D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwmB1B,IAAO;CWxmB4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwmB1B,IAAO;CWxmB2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpC1B,IAAO;CWoC2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvC1B,IAAO;CWuC6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrC1B,IAAO;CWqC4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxC1B,IAAO;CWwC8C;;AAC5E,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+W1B,IAAO;CW/WqC;;AAC1D,AAAA,UAAU,AAAA,OAAO;AACjB,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2a1B,IAAO;CW3awC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsU1B,IAAO;CWtUuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkrB1B,IAAO;CWlrB6C;;AAC1E,AAAA,SAAS,AAAA,OAAO;AAChB,SAAS,AAAA,OAAO;AAChB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0b1B,IAAO;CW1b0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkb1B,IAAO;CWlbuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwX1B,IAAO;CWxX2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtD1B,IAAO;CWsDuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmnB1B,IAAO;CWnnBqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO;AACf,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+a1B,IAAO;CW/agD;;AAChF,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8f1B,IAAO;CW9f+C;;AAC9E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+E1B,IAAO;CW/E+C;;AAC9E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzB1B,IAAO;CWyBuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmjB1B,IAAO;CWnjB8C;;AAC5E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqL1B,IAAO;CWrL8C;;AAC5E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlB1B,IAAO;CWkByC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsb1B,IAAO;CWtbqC;;AAC1D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXga1B,IAAO;CWhasC;;AAC5D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmjB1B,IAAO;CWnjBqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+N1B,IAAO;CW/NwC;;AAChE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgL1B,IAAO;CWhL6C;;AAC1E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4iB1B,IAAO;CW5iB6C;;AAC1E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+I1B,IAAO;CW/IsC;;AAC5D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyE1B,IAAO;CWzE6C;;AAC1E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyE1B,IAAO;CWzE8C;;AAC5E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkb1B,IAAO;CWlb4C;;AACxE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuX1B,IAAO;CWvX6C;;AAC1E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2lB1B,IAAO;CW3lB6C;;AAC1E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2D1B,IAAO;CW3D6C;;AAC1E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyb1B,IAAO;CWzbgD;;AAChF,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0S1B,IAAO;CW1S4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0G1B,IAAO;CW1G2C;;AACtE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXulB1B,IAAO;CWvlB+C;;AAC9E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuD1B,IAAO;CWvD+C;;AAC9E,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnC1B,IAAO;CWmCoC;;AACxD,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnD1B,IAAO;CWmD2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnD1B,IAAO;CWmD4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnD1B,IAAO;CWmDyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvD1B,IAAO;CWuD2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO;AACvB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4d1B,IAAO;CW5dsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8I1B,IAAO;CW9IuC;;AAC9D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsF1B,IAAO;CWtFyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+Z1B,IAAO;CW/ZqC;;AAC1D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoW1B,IAAO;CWpWsC;;AAC5D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpD1B,IAAO;CWoDyC;;AAClE,AAAA,sBAAsB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuI1B,IAAO;CWvImD;;AACtF,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkN1B,IAAO;CWlNqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0S1B,IAAO;CW1SqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6K1B,IAAO;CW7KqC;;AAC1D,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyI1B,IAAO;CWzIoC;;AACxD,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyI1B,IAAO;CWzI0C;;AACpE,AAAA,WAAW,AAAA,OAAO;AAClB,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiI1B,IAAO;CWjIqD;;AAC1F,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+Y1B,IAAO;CW/YsC;;AAC5D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXA1B,IAAO;CWAyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoa1B,IAAO;CWpauC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgE1B,IAAO;CWhEwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6T1B,IAAO;CW7TuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuC1B,IAAO;CWvC2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmC1B,IAAO;CWnC6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+a1B,IAAO;CW/awC;;AAChE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkd1B,IAAO;CWld8C;;AAC5E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0K1B,IAAO;CW1KuC;;AAC9D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2K1B,IAAO;CW3K4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3E1B,IAAO;CW2EyC;;AAClE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7E1B,IAAO;CW6EyC;;AAClE,AAAA,eAAe,AAAA,OAAO;AACtB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlE1B,IAAO;CWkE0C;;AACpE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+kB1B,IAAO;CW/kB+C;;AAC9E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4H1B,IAAO;CW5HgD;;AAChF,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXT1B,IAAO;CWS6C;;AAC1E,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Q1B,IAAO;CW3QoC;;AACxD,AAAA,SAAS,AAAA,OAAO;AAChB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6C1B,IAAO;CW7CqC;;AAC1D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkD1B,IAAO;CWlDyC;;AAClE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsiB1B,IAAO;CWtiB4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoiB1B,IAAO;CWpiB8C;;AAC5E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2e1B,IAAO;CW3e0C;;AACpE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8N1B,IAAO;CW9NwC;;AAChE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoc1B,IAAO;CWpcyC;;AAClE,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuR1B,IAAO;CWvRgD;;AAChF,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6hB1B,IAAO;CW7hB2C;;AACtE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsG1B,IAAO;CWtG8C;;AAC5E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8b1B,IAAO;CW9bwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqjB1B,IAAO;CWrjBuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgL1B,IAAO;CWhL8C;;AAC5E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXukB1B,IAAO;CWvkBuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqQ1B,IAAO;CWrQwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiW1B,IAAO;CWjWsC;;AAC5D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2d1B,IAAO;CW3dyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjD1B,IAAO;CWiD2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+V1B,IAAO;CW/V6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsjB1B,IAAO;CWtjBwC;;AAChE,AAAA,cAAc,AAAA,OAAO;AACrB,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgG1B,IAAO;CWhGyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoK1B,IAAO;CWpKuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0jB1B,IAAO;CW1jBuC;;AAC9D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoC1B,IAAO;CWpC4C;;AACxE,AAAA,QAAQ,AAAA,OAAO;AACf,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+Y1B,IAAO;CW/YoC;;AACxD,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoM1B,IAAO;CWpMsC;;AAC5D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrD1B,IAAO;CWqDyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhF1B,IAAO;CWgFqC;;AAC1D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrB1B,IAAO;CWqB4C;;AACxE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoL1B,IAAO;CWpL6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkL1B,IAAO;CWlL4C;;AACxE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmL1B,IAAO;CWnL0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+K1B,IAAO;CW/K4C;;AACxE,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrI1B,IAAO;CWqIkD;;AACpF,AAAA,sBAAsB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjI1B,IAAO;CWiImD;;AACtF,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjI1B,IAAO;CWiIgD;;AAChF,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzI1B,IAAO;CWyIkD;;AACpF,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2J1B,IAAO;CW3JsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6lB1B,IAAO;CW7lBuC;;AAC9D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqe1B,IAAO;CWresC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyG1B,IAAO;CWzGuC;;AAC9D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzE1B,IAAO;CWyE0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlI1B,IAAO;CWkI2C;;AACtE,AAAA,SAAS,AAAA,OAAO;AAChB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXijB1B,IAAO;CWjjBsC;;AAC5D,AAAA,SAAS,AAAA,OAAO;AAChB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4O1B,IAAO;CW5OqC;;AAC1D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXd1B,IAAO;CWcsC;;AAC5D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0G1B,IAAO;CW1GsC;;AAC5D,AAAA,OAAO,AAAA,OAAO;AACd,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6X1B,IAAO;CW7XyC;;AAClE,AAAA,QAAQ,AAAA,OAAO;AACf,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2F1B,IAAO;CW3FwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6S1B,IAAO;CW7S0C;;AACpE,AAAA,QAAQ,AAAA,OAAO;AACf,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqG1B,IAAO;CWrGyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgb1B,IAAO;CWhbuC;;AAC9D,AAAA,WAAW,AAAA,OAAO;AAClB,WAAW,AAAA,OAAO;AAClB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlI1B,IAAO;CWkIqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsO1B,IAAO;CWtOwC;;AAChE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoO1B,IAAO;CWpOwC;;AAChE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+b1B,IAAO;CW/b8C;;AAC5E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2gB1B,IAAO;CW3gB0C;;AACpE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuc1B,IAAO;CWvcsC;;AAC5D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyO1B,IAAO;CWzOsC;;AAC5D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6f1B,IAAO;CW7fsC;;AAC5D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmT1B,IAAO;CWnT0C;;AACpE,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoT1B,IAAO;CWpTiD;;AAClF,AAAA,sBAAsB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgI1B,IAAO;CWhImD;;AACtF,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4H1B,IAAO;CW5H4C;;AACxE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqQ1B,IAAO;CWrQsC;;AAC5D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpF1B,IAAO;CWoF2C;;AACtE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9E1B,IAAO;CW8EyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrF1B,IAAO;CWqF2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrF1B,IAAO;CWqF4C;;AACxE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhC1B,IAAO;CWgCwC;;AAChE,AAAA,YAAY,AAAA,OAAO;AACnB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0Y1B,IAAO;CW1YqC;;AAC1D,AAAA,aAAa,AAAA,OAAO;AACpB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8Y1B,IAAO;CW9Y0C;;AACpE,AAAA,WAAW,AAAA,OAAO;AAClB,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Y1B,IAAO;CW3YyC;;AAClE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXU1B,IAAO;CWVyC;;AAClE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuM1B,IAAO;CWvMyC;;AAClE,AAAA,eAAe,AAAA,OAAO;AACtB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqf1B,IAAO;CWrfqC;;AAC1D,AAAA,SAAS,AAAA,OAAO;AAChB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoF1B,IAAO;CWpFsC;;AAC5D,AAAA,aAAa,AAAA,OAAO;AACpB,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+a1B,IAAO;CW/a2C;;AACtE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7C1B,IAAO;CW6C0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1C1B,IAAO;CW0C2C;;AACtE,AAAA,SAAS,AAAA,OAAO;AAChB,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpI1B,IAAO;CWoIqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6W1B,IAAO;CW7WwC;;AAChE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXye1B,IAAO;CWzeyC;;AAClE,AAAA,SAAS,AAAA,OAAO;AAChB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrE1B,IAAO;CWqE0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqL1B,IAAO;CWrL4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXG1B,IAAO;CWHyC;;AAClE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnE1B,IAAO;CWmE+C;;AAC9E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnE1B,IAAO;CWmE6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXif1B,IAAO;CWjfwC;;AAChE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8Y1B,IAAO;CW9Y4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyZ1B,IAAO;CWzZyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9J1B,IAAO;CW8JuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlE1B,IAAO;CWkEuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1C1B,IAAO;CW0CwC;;AAChE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8B1B,IAAO;CW9B4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1I1B,IAAO;CW0I2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsH1B,IAAO;CWtH2C;;AACtE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqO0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4M1B,IAAO;CW5MuC;;AAC9D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXU1B,IAAO;CWV4C;;AACxE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3K1B,IAAO;CW2KqC;;AAC1D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuF1B,IAAO;CWvFyC;;AAClE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Q1B,IAAO;CW3Q4C;;AACxE,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqOkD;;AACpF,AAAA,sBAAsB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqOmD;;AACtF,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqOgD;;AAChF,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzO1B,IAAO;CWyOkD;;AACpF,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqO2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqO4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrO1B,IAAO;CWqOyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzO1B,IAAO;CWyO2C;;AACtE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpD1B,IAAO;CWoDwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4I1B,IAAO;CW5IuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwY1B,IAAO;CWxYuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO;AACvB,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuM1B,IAAO;CWvMuC;;AAC9D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzG1B,IAAO;CWyGyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyQ1B,IAAO;CWzQ2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyQ1B,IAAO;CWzQ4C;;AACxE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+V1B,IAAO;CW/VwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9G1B,IAAO;CW8GuC;;AAC9D,AAAA,cAAc,AAAA,OAAO;AACrB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoR1B,IAAO;CWpRsC;;AAC5D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+C1B,IAAO;CW/C2C;;AACtE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmB1B,IAAO;CWnByC;;AAClE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoB1B,IAAO;CWpB8C;;AAC5E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqU1B,IAAO;CWrUwC;;AAChE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2B1B,IAAO;CW3BwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgL1B,IAAO;CWhLsC;;AAC5D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2B1B,IAAO;CW3BwC;;AAChE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuH1B,IAAO;CWvH2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXM1B,IAAO;CWNuC;;AAC9D,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXI1B,IAAO;CWJ+C;;AAC9E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6X1B,IAAO;CW7XyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhH1B,IAAO;CWgHqC;;AAC1D,AAAA,kBAAkB,AAAA,OAAO;AACzB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuQ1B,IAAO;CWvQ0C;;AACpE,AAAA,mBAAmB,AAAA,OAAO;AAC1B,kBAAkB,AAAA,OAAO;AACzB,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsV1B,IAAO;CWtV4C;;AACxE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwI1B,IAAO;CWxI+C;;AAC9E,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhG1B,IAAO;CWgGqC;;AAC1D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvH1B,IAAO;CWuH0C;;AACpE,AAAA,UAAU,AAAA,OAAO;AACjB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtJ1B,IAAO;CWsJ6C;;AAC1E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyO1B,IAAO;CWzOyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0F1B,IAAO;CW1FqC;;AAC1D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1D1B,IAAO;CW0D4C;;AACxE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkW1B,IAAO;CWlW4C;;AACxE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4V1B,IAAO;CW5V0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlE1B,IAAO;CWkEuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgO1B,IAAO;CWhO6C;;AAC1E,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2J1B,IAAO;CW3J2C;;AACtE,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2J1B,IAAO;CW3JiD;;AAClF,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsR1B,IAAO;CWtRuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5L1B,IAAO;CW4L2C;;AACtE,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxB1B,IAAO;CWwBkD;;AACpF,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuP1B,IAAO;CWvPuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6I1B,IAAO;CW7IuC;;AAC9D,AAAA,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9J1B,IAAO;CW8JoD;;AACxF,AAAA,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9J1B,IAAO;CW8JqD;;AAC1F,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9J1B,IAAO;CW8JkD;;AACpF,AAAA,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlK1B,IAAO;CWkKoD;;AACxF,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8D1B,IAAO;CW9DsC;;AAC5D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrH1B,IAAO;CWqHqC;;AAC1D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvS1B,IAAO;CWuSuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Z1B,IAAO;CW3Z2C;;AACtE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhN1B,IAAO;CWgNyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7F1B,IAAO;CW6F2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7F1B,IAAO;CW6F2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+O1B,IAAO;CW/O2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiM1B,IAAO;CWjM4C;;AACxE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6W1B,IAAO;CW7WuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0I1B,IAAO;CW1I6C;;AAC1E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0I1B,IAAO;CW1I+C;;AAC9E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqF1B,IAAO;CWrFyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmF1B,IAAO;CWnF2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnL1B,IAAO;CWmL6C;;AAC1E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0K1B,IAAO;CW1K8C;;AAC5E,AAAA,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpF1B,IAAO;CWoFqD;;AAC1F,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwP1B,IAAO;CWxP6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjJ1B,IAAO;CWiJwC;;AAChE,AAAA,eAAe,AAAA,OAAO;AACtB,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/M1B,IAAO;CW+MoD;;AACxF,AAAA,aAAa,AAAA,OAAO;AACpB,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9M1B,IAAO;CW8MkD;;AACpF,AAAA,gBAAgB,AAAA,OAAO;AACvB,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjN1B,IAAO;CWiNqD;;AAC1F,AAAA,QAAQ,AAAA,OAAO;AACf,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvG1B,IAAO;CWuGoC;;AACxD,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhC1B,IAAO;CWgCoC;;AACxD,AAAA,UAAU,AAAA,OAAO;AACjB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqY1B,IAAO;CWrYoC;;AACxD,AAAA,SAAS,AAAA,OAAO;AAChB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4C1B,IAAO;CW5CoC;;AACxD,AAAA,OAAO,AAAA,OAAO;AACd,OAAO,AAAA,OAAO;AACd,OAAO,AAAA,OAAO;AACd,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgD1B,IAAO;CWhDoC;;AACxD,AAAA,SAAS,AAAA,OAAO;AAChB,UAAU,AAAA,OAAO;AACjB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiN1B,IAAO;CWjNoC;;AACxD,AAAA,OAAO,AAAA,OAAO;AACd,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+C1B,IAAO;CW/CoC;;AACxD,AAAA,WAAW,AAAA,OAAO;AAClB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3P1B,IAAO;CW2PoC;;AACxD,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhG1B,IAAO;CWgGqC;;AAC1D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpF1B,IAAO;CWoF0C;;AACpE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0P1B,IAAO;CW1P+C;;AAC9E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0P1B,IAAO;CW1PgD;;AAChF,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0P1B,IAAO;CW1PgD;;AAChF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0P1B,IAAO;CW1PiD;;AAClF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6P1B,IAAO;CW7PiD;;AAClF,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6P1B,IAAO;CW7PkD;;AACpF,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkU1B,IAAO;CWlU0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8T1B,IAAO;CW9T4C;;AACxE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXya1B,IAAO;CWza+C;;AAC9E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsa1B,IAAO;CWtawC;;AAChE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Z1B,IAAO;CW3ZqC;;AAC1D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2Z1B,IAAO;CW3Z4C;;AACxE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoa1B,IAAO;CWpa6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxJ1B,IAAO;CWwJwC;;AAChE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8P1B,IAAO;CW9P+C;;AAC9E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgB1B,IAAO;CWhB0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpF1B,IAAO;CWoFuC;;AAC9D,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3W1B,IAAO;CW2WoC;;AACxD,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/R1B,IAAO;CW+R0C;;AACpE,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/R1B,IAAO;CW+RiD;;AAClF,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+U1B,IAAO;CW/UuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+U1B,IAAO;CW/U8C;;AAC5E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgD1B,IAAO;CWhDgD;;AAChF,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkD1B,IAAO;CWlD8C;;AAC5E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+C1B,IAAO;CW/CgD;;AAChF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+C1B,IAAO;CW/CiD;;AAClF,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjW1B,IAAO;CWiWsC;;AAC5D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmY1B,IAAO;CWnYwC;;AAChE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7W1B,IAAO;CW6WwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkC1B,IAAO;CWlCsC;;AAC5D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5K1B,IAAO;CW4KyC;;AAClE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgN1B,IAAO;CWhNsC;;AAC5D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxF1B,IAAO;CWwF2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4T1B,IAAO;CW5TuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtI1B,IAAO;CWsIuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6C1B,IAAO;CW7CqC;;AAC1D,AAAA,UAAU,AAAA,OAAO;AACjB,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5D1B,IAAO;CW4DyC;;AAClE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8P1B,IAAO;CW9PsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuE1B,IAAO;CWvEuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9W1B,IAAO;CW8WwC;;AAChE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtS1B,IAAO;CWsSoC;;AACxD,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiW1B,IAAO;CWjWmC;;AACtD,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuW1B,IAAO;CWvWsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+I1B,IAAO;CW/IuC;;AAC9D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkF1B,IAAO;CWlF0C;;AACpE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6N1B,IAAO;CW7N+C;;AAC9E,AAAA,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/W1B,IAAO;CW+WqD;;AAC1F,AAAA,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjX1B,IAAO;CWiXoD;;AACxF,AAAA,eAAe,AAAA,OAAO;AACtB,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzR1B,IAAO;CWyRoD;;AACxF,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnM1B,IAAO;CWmM6C;;AAC1E,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiW1B,IAAO;CWjW2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoV1B,IAAO;CWpV6C;;AAC1E,AAAA,gBAAgB,AAAA,OAAO;AACvB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0S1B,IAAO;CW1SoC;;AACxD,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0G1B,IAAO;CW1G8C;;AAC5E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4M1B,IAAO;CW5M8C;;AAC5E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsL1B,IAAO;CWtLsC;;AAC5D,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzL1B,IAAO;CWyLgD;;AAChF,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoW1B,IAAO;CWpW0C;;AACpE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8D1B,IAAO;CW9DuC;;AAC9D,AAAA,eAAe,AAAA,OAAO;AACtB,QAAQ,AAAA,OAAO;AACf,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8S1B,IAAO;CW9S2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO;AACvB,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1F1B,IAAO;CW0F+C;;AAC9E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsW1B,IAAO;CWtWsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlG1B,IAAO;CWkGuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXgH1B,IAAO;CWhHuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiH1B,IAAO;CWjH8C;;AAC5E,AAAA,sBAAsB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyN1B,IAAO;CWzNmD;;AACtF,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuN1B,IAAO;CWvN4C;;AACxE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/N1B,IAAO;CW+N0C;;AACpE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5N1B,IAAO;CW4NqC;;AAC1D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2E1B,IAAO;CW3E8C;;AAC5E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyE1B,IAAO;CWzE+C;;AAC9E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvN1B,IAAO;CWuNuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzC1B,IAAO;CWyCuC;;AAC9D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpC1B,IAAO;CWoCyC;;AAClE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtL1B,IAAO;CWsLoC;;AACxD,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7U1B,IAAO;CW6UyC;;AAClE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1R1B,IAAO;CW0RsC;;AAC5D,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXsD1B,IAAO;CWtDoC;;AACxD,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmL1B,IAAO;CWnLsC;;AAC5D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrP1B,IAAO;CWqPqC;;AAC1D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrP1B,IAAO;CWqPsC;;AAC5D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7W1B,IAAO;CW6WwC;;AAChE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7W1B,IAAO;CW6W+C;;AAC9E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0L1B,IAAO;CW1LsC;;AAC5D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0L1B,IAAO;CW1L6C;;AAC1E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyF1B,IAAO;CWzFwC;;AAChE,AAAA,cAAc,AAAA,OAAO;AACrB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzU1B,IAAO;CWyUoC;;AACxD,AAAA,OAAO,AAAA,OAAO;AACd,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+M1B,IAAO;CW/MqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4P1B,IAAO;CW5PqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuK1B,IAAO;CWvKwC;;AAChE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtP1B,IAAO;CWsP2C;;AACtE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiK1B,IAAO;CWjK2C;;AACtE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9P1B,IAAO;CW8PyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/L1B,IAAO;CW+L2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxL1B,IAAO;CWwL4C;;AACxE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrM1B,IAAO;CWqM6C;;AAC1E,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/L1B,IAAO;CW+LkD;;AACpF,AAAA,gBAAgB,AAAA,OAAO;AACvB,kBAAkB,AAAA,OAAO;AACzB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxM1B,IAAO;CWwM6C;;AAC1E,AAAA,cAAc,AAAA,OAAO;AACrB,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9M1B,IAAO;CW8M+C;;AAC9E,AAAA,gBAAgB,AAAA,OAAO;AACvB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/M1B,IAAO;CW+M6C;;AAC1E,AAAA,gBAAgB,AAAA,OAAO;AACvB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpM1B,IAAO;CWoM6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjN1B,IAAO;CWiN4C;;AACxE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuR1B,IAAO;CWvRqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5S1B,IAAO;CW4SwC;;AAChE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9E1B,IAAO;CW8EyC;;AAClE,AAAA,aAAa,AAAA,OAAO;AACpB,aAAa,AAAA,OAAO;AACpB,cAAc,AAAA,OAAO;AACrB,WAAW,AAAA,OAAO;AAClB,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnE1B,IAAO;CWmE0C;;AACpE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/T1B,IAAO;CW+T+C;;AAC9E,AAAA,MAAM,AAAA,OAAO;AACb,cAAc,AAAA,OAAO;AACrB,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqD1B,IAAO;CWrDsC;;AAC5D,AAAA,MAAM,AAAA,OAAO;AACb,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnQ1B,IAAO;CWmQuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzK1B,IAAO;CWyK2C;;AACtE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3K1B,IAAO;CW2KoC;;AACxD,AAAA,uBAAuB,AAAA,OAAO;AAC9B,aAAa,AAAA,OAAO;AACpB,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxJ1B,IAAO;CWwJ4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2K1B,IAAO;CW3K8C;;AAC5E,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiC1B,IAAO;CWjCmC;;AACtD,AAAA,UAAU,AAAA,OAAO;AACjB,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0Q1B,IAAO;CW1QuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO;AACf,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXV1B,IAAO;CWU4C;;AACxE,AAAA,UAAU,AAAA,OAAO;AACjB,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXX1B,IAAO;CWW8C;;AAC5E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1I1B,IAAO;CW0IwC;;AAChE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlV1B,IAAO;CWkV4C;;AACxE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjJ1B,IAAO;CWiJuC;;AAC9D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXb1B,IAAO;CWa0C;;AACpE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+F1B,IAAO;CW/FwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuE1B,IAAO;CWvE0C;;AACpE,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuE1B,IAAO;CWvEiD;;AAClF,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzZ1B,IAAO;CWyZqC;;AAC1D,AAAA,iBAAiB,AAAA,OAAO;AACxB,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5M1B,IAAO;CW4MyC;;AAClE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0M1B,IAAO;CW1MoC;;AACxD,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxa1B,IAAO;CWwa2C;;AACtE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXI1B,IAAO;CWJqC;;AAC1D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuF1B,IAAO;CWvF2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2M1B,IAAO;CW3MuC;;AAC9D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+Q1B,IAAO;CW/QqC;;AAC1D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzC1B,IAAO;CWyC4C;;AACxE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwP1B,IAAO;CWxPqC;;AAC1D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrZ1B,IAAO;CWqZ2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvB1B,IAAO;CWuBuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3L1B,IAAO;CW2L8C;;AAC5E,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5X1B,IAAO;CW4XwC;;AAChE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhY1B,IAAO;CWgY8C;;AAC5E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnY1B,IAAO;CWmY4C;;AACxE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtY1B,IAAO;CWsYwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlY1B,IAAO;CWkY0C;;AACpE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlY1B,IAAO;CWkY0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3b1B,IAAO;CW2b2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3b1B,IAAO;CW2b6C;;AAC1E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+K1B,IAAO;CW/KsC;;AAC5D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnV1B,IAAO;CWmV0C;;AACpE,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9d1B,IAAO;CW8dmC;;AACtD,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5R1B,IAAO;CW4R2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/C1B,IAAO;CW+C4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9b1B,IAAO;CW8b8C;;AAC5E,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtf1B,IAAO;CWsf2C;;AACtE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/B1B,IAAO;CW+B0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzH1B,IAAO;CWyH2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvI1B,IAAO;CWuIuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvI1B,IAAO;CWuI8C;;AAC5E,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4J1B,IAAO;CW5J2C;;AACtE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4J1B,IAAO;CW5J0C;;AACpE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxc1B,IAAO;CWwcwC;;AAChE,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjb1B,IAAO;CWiboC;;AACxD,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvJ1B,IAAO;CWuJwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3gB1B,IAAO;CW2gB0C;;AACpE,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7Z1B,IAAO;CW6ZmC;;AACtD,AAAA,UAAU,AAAA,OAAO;AACjB,UAAU,AAAA,OAAO;AACjB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzK1B,IAAO;CWyKoC;;AACxD,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpG1B,IAAO;CWoGyC;;AAClE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxb1B,IAAO;CWwb2C;;AACtE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5W1B,IAAO;CW4W+C;;AAC9E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9V1B,IAAO;CW8VyC;;AAClE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9P1B,IAAO;CW8PyC;;AAClE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrJ1B,IAAO;CWqJwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXe1B,IAAO;CWfuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2B1B,IAAO;CW3B6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoC1B,IAAO;CWpC4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqC1B,IAAO;CWrCyC;;AAClE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5a1B,IAAO;CW4a0C;;AACpE,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9a1B,IAAO;CW8agD;;AAChF,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/V1B,IAAO;CW+VwC;;AAChE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoB1B,IAAO;CWpBqC;;AAC1D,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8K1B,IAAO;CW9K4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/F1B,IAAO;CW+F2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX6E1B,IAAO;CW7E4C;;AACxE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9M1B,IAAO;CW8M0C;;AACpE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+K1B,IAAO;CW/KsC;;AAC5D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7H1B,IAAO;CW6HqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnH1B,IAAO;CWmHwC;;AAChE,AAAA,YAAY,AAAA,OAAO;AACnB,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkI1B,IAAO;CWlI4C;;AACxE,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkI1B,IAAO;CWlIgD;;AAChF,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0K1B,IAAO;CW1K6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlI1B,IAAO;CWkI4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXyK1B,IAAO;CWzK2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnI1B,IAAO;CWmI4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlI1B,IAAO;CWkI8C;;AAC5E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpI1B,IAAO;CWoI8C;;AAC5E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1G1B,IAAO;CW0GuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7Q1B,IAAO;CW6Q2C;;AACtE,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1U1B,IAAO;CW0UkD;;AACpF,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzE1B,IAAO;CWyE4C;;AACxE,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkL1B,IAAO;CWlLyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXX1B,IAAO;CWWuC;;AAC9D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXuJ1B,IAAO;CWvJ0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwJ1B,IAAO;CWxJ2C;;AACtE,AAAA,SAAS,AAAA,OAAO;AAChB,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/f1B,IAAO;CW+foC;;AACxD,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX4J1B,IAAO;CW5JwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX8G1B,IAAO;CW9GsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwD1B,IAAO;CWxDuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9I1B,IAAO;CW8IuC;;AAC9D,AAAA,MAAM,AAAA,OAAO;AACb,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX0L1B,IAAO;CW1L6C;;AAC1E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjH1B,IAAO;CWiH8C;;AAC5E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrH1B,IAAO;CWqHyC;;AAClE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnW1B,IAAO;CWmW6C;;AAC1E,AAAA,aAAa,AAAA,OAAO;AACpB,WAAW,AAAA,OAAO;AAClB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/gB1B,IAAO;CW+gB6C;;AAC1E,AAAA,aAAa,AAAA,OAAO;AACpB,0BAA0B,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9gB1B,IAAO;CW8gBuD;;AAC9F,AAAA,aAAa,AAAA,OAAO;AACpB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlhB1B,IAAO;CWkhB6C;;AAC1E,AAAA,aAAa,AAAA,OAAO;AACpB,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnhB1B,IAAO;CWmhBgD;;AAChF,AAAA,aAAa,AAAA,OAAO;AACpB,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxhB1B,IAAO;CWwhB8C;;AAC5E,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3I1B,IAAO;CW2I8C;;AAC5E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3O1B,IAAO;CW2OyC;;AAClE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxI1B,IAAO;CWwI6C;;AAC1E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxI1B,IAAO;CWwI+C;;AAC9E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwB1B,IAAO;CWxB4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwB1B,IAAO;CWxB8C;;AAC5E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/d1B,IAAO;CW+duC;;AAC9D,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXle1B,IAAO;CWke+C;;AAC9E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpc1B,IAAO;CWocsC;;AAC5D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXljB1B,IAAO;CWkjB8C;;AAC5E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxP1B,IAAO;CWwP4C;;AACxE,AAAA,eAAe,AAAA,OAAO;AACtB,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzP1B,IAAO;CWyPgD;;AAChF,AAAA,eAAe,AAAA,OAAO;AACtB,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7P1B,IAAO;CW6P+C;;AAC9E,AAAA,eAAe,AAAA,OAAO;AACtB,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhQ1B,IAAO;CWgQ8C;;AAC5E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrQ1B,IAAO;CWqQ0C;;AACpE,AAAA,eAAe,AAAA,OAAO;AACtB,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxR1B,IAAO;CWwR4C;;AACxE,AAAA,eAAe,AAAA,OAAO;AACtB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7R1B,IAAO;CW6R6C;;AAC1E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1R1B,IAAO;CW0RgD;;AAChF,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpS1B,IAAO;CWoS8C;;AAC5E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3R1B,IAAO;CW2R6C;;AAC1E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/R1B,IAAO;CW+R+C;;AAC9E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjS1B,IAAO;CWiS6C;;AAC1E,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX+D1B,IAAO;CW/D0C;;AACpE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/F1B,IAAO;CW+F2C;;AACtE,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/b1B,IAAO;CW+biD;;AAClF,AAAA,MAAM,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtU1B,IAAO;CWsUmC;;AACtD,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtU1B,IAAO;CWsU0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkE1B,IAAO;CWlE4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrK1B,IAAO;CWqK8C;;AAC5E,AAAA,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrK1B,IAAO;CWqKqD;;AAC1F,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5U1B,IAAO;CW4U2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXwH1B,IAAO;CWxH4C;;AACxE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnF1B,IAAO;CWmFuC;;AAC9D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXze1B,IAAO;CWyeuC;;AAC9D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9W1B,IAAO;CW8WwC;;AAChE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxK1B,IAAO;CWwKsC;;AAC5D,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpQ1B,IAAO;CWoQkD;;AACpF,AAAA,MAAM,AAAA,OAAO;AACb,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXS1B,IAAO;CWT2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjd1B,IAAO;CWiduC;;AAC9D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzoB1B,IAAO;CWyoBsC;;AAC5D,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/nB1B,IAAO;CW+nBuC;;AAC9D,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3hB1B,IAAO;CW2hBgD;;AAChF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9hB1B,IAAO;CW8hBiD;;AAClF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5hB1B,IAAO;CW4hBiD;;AAClF,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjiB1B,IAAO;CWiiBiD;;AAClF,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpR1B,IAAO;CWoRyC;;AAClE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5N1B,IAAO;CW4NwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5N1B,IAAO;CW4N0C;;AACpE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/N1B,IAAO;CW+NsC;;AAC5D,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlO1B,IAAO;CWkOoC;;AACxD,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpe1B,IAAO;CWoe2C;;AACtE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpe1B,IAAO;CWoe6C;;AAC1E,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtS1B,IAAO;CWsSsC;;AAC5D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiF1B,IAAO;CWjFsC;;AAC5D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlkB1B,IAAO;CWkkB0C;;AACpE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrX1B,IAAO;CWqX0C;;AACpE,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpI1B,IAAO;CWoI6C;;AAC1E,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpc1B,IAAO;CWocqC;;AAC1D,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhe1B,IAAO;CWgegD;;AAChF,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpf1B,IAAO;CWofyC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlN1B,IAAO;CWkNqC;;AAC1D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1X1B,IAAO;CW0X6C;;AAC1E,AAAA,OAAO,AAAA,OAAO,CAAgB;EAAE,OAAO,EXoD1B,IAAO;CWpDoC;;AACxD,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3J1B,IAAO;CW2J6C;;AAC1E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzN1B,IAAO;CWyNyC;;AAClE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlH1B,IAAO;CWkHuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7L1B,IAAO;CW6L6C;;AAC1E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7L1B,IAAO;CW6L+C;;AAC9E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3C1B,IAAO;CW2C4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3C1B,IAAO;CW2C8C;;AAC5E,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrG1B,IAAO;CWqG6C;;AAC1E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrG1B,IAAO;CWqGgD;;AAChF,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7U1B,IAAO;CW6UwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnlB1B,IAAO;CWmlB0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXnlB1B,IAAO;CWmlB4C;;AACxE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/L1B,IAAO;CW+LwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlX1B,IAAO;CWkXuC;;AAC9D,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXkF1B,IAAO;CWlF2C;;AACtE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmF1B,IAAO;CWnFwC;;AAChE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9c1B,IAAO;CW8cuC;;AAC9D,AAAA,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX2B1B,IAAO;CW3BiD;;AAClF,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmE1B,IAAO;CWnE+C;;AAC9E,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxK1B,IAAO;CWwKkD;;AACpF,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9lB1B,IAAO;CW8lBsC;;AAC5D,AAAA,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtoB1B,IAAO;CWsoBkD;;AACpF,AAAA,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXqD1B,IAAO;CWrDqD;;AAC1F,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxlB1B,IAAO;CWwlBwC;;AAChE,AAAA,+BAA+B,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5oB1B,IAAO;CW4oB4D;;AACxG,AAAA,oBAAoB,AAAA,OAAO;AAC3B,uCAAuC,AAAA,OAAO,CAAgB;EAAE,OAAO,EX9qB1B,IAAO;CW8qBoE;;AACxH,AAAA,YAAY,AAAA,OAAO;AACnB,mBAAmB,AAAA,OAAO;AAC1B,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvf1B,IAAO;CWufqC;;AAC1D,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhY1B,IAAO;CWgYsC;;AAC5D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhY1B,IAAO;CWgYwC;;AAChE,AAAA,WAAW,AAAA,OAAO;AAClB,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1H1B,IAAO;CW0H8C;;AAC5E,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzR1B,IAAO;CWyR2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiC1B,IAAO;CWjCuC;;AAC9D,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXiC1B,IAAO;CWjC8C;;AAC5E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlH1B,IAAO;CWkHyC;;AAClE,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlH1B,IAAO;CWkH+C;;AAC9E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlH1B,IAAO;CWkHgD;;AAChF,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrN1B,IAAO;CWqN2C;;AACtE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpb1B,IAAO;CWob4C;;AACxE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXmE1B,IAAO;CWnEsC;;AAC5D,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpD1B,IAAO;CWoD0C;;AACpE,AAAA,sBAAsB,AAAA,OAAO;AAC7B,wBAAwB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzY1B,IAAO;CWyYqD;;AAC1F,AAAA,MAAM,AAAA,OAAO;AACb,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7a1B,IAAO;CW6a6C;;AAC1E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtX1B,IAAO;CWsX4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlf1B,IAAO;CWkf8C;;AAC5E,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlf1B,IAAO;CWkfgD;;AAChF,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtT1B,IAAO;CWsTuC;;AAC9D,AAAA,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXptB1B,IAAO;CWotB6C;;AAC1E,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXptB1B,IAAO;CWotB+C;;AAC9E,AAAA,SAAS,AAAA,OAAO;AAChB,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXrtB1B,IAAO;CWqtB6C;;AAC1E,AAAA,WAAW,AAAA,OAAO;AAClB,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXttB1B,IAAO;CWstB+C;;AAC9E,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXJ1B,IAAO;CWI4C;;AACxE,AAAA,iBAAiB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXJ1B,IAAO;CWI8C;;AAC5E,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXH1B,IAAO;CWGuC;;AAC9D,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3W1B,IAAO;CW2WyC;;AAClE,AAAA,mBAAmB,AAAA,OAAO;AAC1B,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5W1B,IAAO;CW4WwC;;AAChE,AAAA,qBAAqB,AAAA,OAAO;AAC5B,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7W1B,IAAO;CW6W0C;;AACpE,AAAA,SAAS,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtN1B,IAAO;CWsNsC;;AAC5D,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3b1B,IAAO;CW2b+C;;AAC9E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXtF1B,IAAO;CWsFyC;;AAClE,AAAA,iBAAiB,AAAA,OAAO;AACxB,eAAe,AAAA,OAAO;AACtB,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxE1B,IAAO;CWwEiD;;AAClF,AAAA,iBAAiB,AAAA,OAAO;AACxB,8BAA8B,AAAA,OAAO,CAAgB;EAAE,OAAO,EXvE1B,IAAO;CWuE2D;;AACtG,AAAA,iBAAiB,AAAA,OAAO;AACxB,oBAAoB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3E1B,IAAO;CW2EiD;;AAClF,AAAA,iBAAiB,AAAA,OAAO;AACxB,uBAAuB,AAAA,OAAO,CAAgB;EAAE,OAAO,EX5E1B,IAAO;CW4EoD;;AACxF,AAAA,iBAAiB,AAAA,OAAO;AACxB,qBAAqB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjF1B,IAAO;CWiFkD;;AACpF,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EX3K1B,IAAO;CW2KuC;;AAC9D,AAAA,WAAW,AAAA,OAAO;AAClB,OAAO,AAAA,OAAO;AACd,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXzrB1B,IAAO;CWyrBqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXlP1B,IAAO;CWkPwC;;AAChE,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXK1B,IAAO;CWLgD;;AAChF,AAAA,mBAAmB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXK1B,IAAO;CWLgD;;AAChF,AAAA,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXK1B,IAAO;CWL+C;;AAC9E,AAAA,mBAAmB,AAAA,OAAO;AAC1B,gBAAgB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXD1B,IAAO;CWC6C;;AAC1E,AAAA,qBAAqB,AAAA,OAAO;AAC5B,kBAAkB,AAAA,OAAO,CAAgB;EAAE,OAAO,EXF1B,IAAO;CWE+C;;AAC9E,AAAA,YAAY,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxsB1B,IAAO;CWwsByC;;AAClE,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXpb1B,IAAO;CWobqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EX1hB1B,IAAO;CW0hBqC;;AAC1D,AAAA,QAAQ,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxY1B,IAAO;CWwYqC;;AAC1D,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EX/O1B,IAAO;CW+OwC;;AAChE,AAAA,WAAW,AAAA,OAAO,CAAgB;EAAE,OAAO,EXziB1B,IAAO;CWyiBwC;;AAChE,AAAA,aAAa,AAAA,OAAO,CAAgB;EAAE,OAAO,EXjU1B,IAAO;CWiU0C;;AACpE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EX7K1B,IAAO;CW6K4C;;AACxE,AAAA,eAAe,AAAA,OAAO,CAAgB;EAAE,OAAO,EXhI1B,IAAO;CWgI4C;;AACxE,AAAA,cAAc,AAAA,OAAO,CAAgB;EAAE,OAAO,EXJ1B,IAAO;CWI2C;;AACtE,AAAA,UAAU,AAAA,OAAO,CAAgB;EAAE,OAAO,EXxU1B,IAAO;CWwUuC;;ACjxB9D,AAAA,QAAQ,CAAC;EX8BP,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,IAAI;EACZ,QAAQ,EAAE,MAAM;EAChB,IAAI,EAAE,gBAAa;EACnB,MAAM,EAAE,CAAC;CWrCsB;;AACjC,AX8CE,kBW9CgB,AX8Cf,OAAO,EW9CV,kBAAkB,AX+Cf,MAAM,CAAC;EACN,QAAQ,EAAE,MAAM;EAChB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,CAAC;EACT,QAAQ,EAAE,OAAO;EACjB,IAAI,EAAE,IAAI;CACX", + "sources": [ + "font-awesome.scss", + "_variables.scss", + "_mixins.scss", + "_path.scss", + "_core.scss", + "_larger.scss", + "_fixed-width.scss", + "_list.scss", + "_bordered-pulled.scss", + "_animated.scss", + "_rotated-flipped.scss", + "_stacked.scss", + "_icons.scss", + "_screen-reader.scss" + ], + "names": [], + "file": "font-awesome.css" +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.scss b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.scss new file mode 100644 index 0000000000..f1c83aaa5d --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fa/scss/font-awesome.scss @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables"; +@import "mixins"; +@import "path"; +@import "core"; +@import "larger"; +@import "fixed-width"; +@import "list"; +@import "bordered-pulled"; +@import "animated"; +@import "rotated-flipped"; +@import "stacked"; +@import "icons"; +@import "screen-reader"; diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/familiar.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/familiar.png new file mode 100644 index 0000000000..7c60b61784 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/familiar.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/android-chrome-144x144.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/android-chrome-144x144.png new file mode 100644 index 0000000000..918f55076d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/android-chrome-144x144.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/apple-touch-icon.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/apple-touch-icon.png new file mode 100644 index 0000000000..513237d4ea Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/apple-touch-icon.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/browserconfig.xml b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/browserconfig.xml new file mode 100644 index 0000000000..b3930d0f04 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #da532c + + + diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-16x16.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-16x16.png new file mode 100644 index 0000000000..dc7bc1334d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-16x16.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-32x32.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-32x32.png new file mode 100644 index 0000000000..a4e6694129 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon-32x32.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon.ico b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon.ico new file mode 100644 index 0000000000..f82aa24395 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/favicon.ico differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/mstile-150x150.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/mstile-150x150.png new file mode 100644 index 0000000000..8d8a39f01e Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/mstile-150x150.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/safari-pinned-tab.svg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/safari-pinned-tab.svg new file mode 100644 index 0000000000..70615e24df --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/safari-pinned-tab.svg @@ -0,0 +1,36 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + + + + + diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/site.webmanifest b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/site.webmanifest new file mode 100644 index 0000000000..8af025f70d --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/favicon.ico/site.webmanifest @@ -0,0 +1,14 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-144x144.png", + "sizes": "144x144", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.png new file mode 100644 index 0000000000..96ed376501 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.psb b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.psb new file mode 100644 index 0000000000..896dbaf621 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/fork.psb differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/1-modular.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/1-modular.png new file mode 100644 index 0000000000..d82cefd478 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/1-modular.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/2-micro.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/2-micro.png new file mode 100644 index 0000000000..14b76ee000 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/2-micro.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/3-ddd.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/3-ddd.png new file mode 100644 index 0000000000..dda81009dc Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/3-ddd.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/4-autho.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/4-autho.png new file mode 100644 index 0000000000..15617b0310 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/4-autho.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/5-multi-tenancy.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/5-multi-tenancy.png new file mode 100644 index 0000000000..7dcabac7db Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/5-multi-tenancy.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bg-job.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bg-job.png new file mode 100644 index 0000000000..32e11ba096 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bg-job.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bundle.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bundle.png new file mode 100644 index 0000000000..f0be165535 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/bundle.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/cross.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/cross.png new file mode 100644 index 0000000000..5085a1b8b2 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/cross.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/custom.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/custom.png new file mode 100644 index 0000000000..e0da743eb3 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/custom.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/request.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/request.png new file mode 100644 index 0000000000..9e925f6ae0 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/request.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/theming.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/theming.png new file mode 100644 index 0000000000..4e6c6ac6ce Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/theming.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/virtualfile.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/virtualfile.png new file mode 100644 index 0000000000..5a3cabc8d7 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/icons/virtualfile.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/multiple-db.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/multiple-db.png new file mode 100644 index 0000000000..4701355351 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/multiple-db.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/my-image.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/my-image.png new file mode 100644 index 0000000000..2ce40a7866 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/my-image.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/rain.mp4 b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/rain.mp4 new file mode 100644 index 0000000000..a0d6909ec2 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/rain.mp4 differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/1.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/1.png new file mode 100644 index 0000000000..45986babb7 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/1.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/10.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/10.png new file mode 100644 index 0000000000..959c1a0290 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/10.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/11.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/11.png new file mode 100644 index 0000000000..f6b91e8213 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/11.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/12.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/12.png new file mode 100644 index 0000000000..8f9b1f09ee Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/12.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/13.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/13.png new file mode 100644 index 0000000000..e9ed695222 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/13.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/14.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/14.png new file mode 100644 index 0000000000..6c8541ad80 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/14.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/15.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/15.png new file mode 100644 index 0000000000..bf4100f1df Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/15.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/16.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/16.png new file mode 100644 index 0000000000..b65bd25846 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/16.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/17.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/17.png new file mode 100644 index 0000000000..c4d75ecfd6 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/17.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/18.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/18.png new file mode 100644 index 0000000000..e6e73d148d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/18.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/2.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/2.png new file mode 100644 index 0000000000..7262528186 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/2.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/3.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/3.png new file mode 100644 index 0000000000..7876cd24fa Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/3.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/4.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/4.png new file mode 100644 index 0000000000..850c8aefe3 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/4.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/5.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/5.png new file mode 100644 index 0000000000..9a917b5201 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/5.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/6.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/6.png new file mode 100644 index 0000000000..b675fe7eed Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/6.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/7.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/7.png new file mode 100644 index 0000000000..1df2781cf1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/7.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/8.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/8.png new file mode 100644 index 0000000000..f862ea1788 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/8.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/9.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/9.png new file mode 100644 index 0000000000..7c9d0082f0 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/9.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.jpg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.jpg new file mode 100644 index 0000000000..be89ceb73d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.jpg differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.png new file mode 100644 index 0000000000..e0cc9d5b54 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/bg.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/rabbitmq.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/rabbitmq.png new file mode 100644 index 0000000000..e2c20548ab Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/rabbitmq.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/sass.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/sass.png new file mode 100644 index 0000000000..97f60b7be8 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/tools/sass.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/underline.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/underline.png new file mode 100644 index 0000000000..c0f3af26e1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/assets/underline.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/59bcb5b452169f4710f839e8db24ceca.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/59bcb5b452169f4710f839e8db24ceca.png new file mode 100644 index 0000000000..2fe9b19f65 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/59bcb5b452169f4710f839e8db24ceca.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/839a3504c77b9862bf4d39e8db23a971.jpg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/839a3504c77b9862bf4d39e8db23a971.jpg new file mode 100644 index 0000000000..f142d6129b Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/839a3504c77b9862bf4d39e8db23a971.jpg differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/ea6da622548addd544c339e91ce8e1ab.jpg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/ea6da622548addd544c339e91ce8e1ab.jpg new file mode 100644 index 0000000000..be89ceb73d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/files/ea6da622548addd544c339e91ce8e1ab.jpg differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 2.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 2.png new file mode 100644 index 0000000000..1f9dc47ba3 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 2.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 3.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 3.png new file mode 100644 index 0000000000..7ba0332c42 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 3.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 4.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 4.png new file mode 100644 index 0000000000..75521895ad Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 4.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 5.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 5.png new file mode 100644 index 0000000000..96ec482ff4 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 5.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 6.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 6.png new file mode 100644 index 0000000000..9bbb06f20f Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 6.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 7.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 7.png new file mode 100644 index 0000000000..5c80b2a7e1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 7.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 8.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 8.png new file mode 100644 index 0000000000..8366ff033e Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy 8.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy.png new file mode 100644 index 0000000000..6baee933c9 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1 copy.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1.png new file mode 100644 index 0000000000..367cdca473 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Polygon 1.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Untitled-1.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Untitled-1.png new file mode 100644 index 0000000000..4e885393bc Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/Untitled-1.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow-r.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow-r.png new file mode 100644 index 0000000000..0b53ad9ec1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow-r.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow.png new file mode 100644 index 0000000000..398e9dbdaf Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/arrow.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/bootstrap.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/bootstrap.png new file mode 100644 index 0000000000..5a94c3ed72 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/bootstrap.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/code.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/code.png new file mode 100644 index 0000000000..f31c0e267f Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/code.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/demo.svg b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/demo.svg new file mode 100644 index 0000000000..ee08afff12 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/demo.svg @@ -0,0 +1 @@ +286x180 \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/modular.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/modular.png new file mode 100644 index 0000000000..e2939030c1 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/modular.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/mt-left.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/mt-left.png new file mode 100644 index 0000000000..05b3ed9d65 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/mt-left.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/multi-tenancy.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/multi-tenancy.png new file mode 100644 index 0000000000..ae098ad094 Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/multi-tenancy.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/ss.png b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/ss.png new file mode 100644 index 0000000000..d73480830d Binary files /dev/null and b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/img/ss.png differ diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.css b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.css new file mode 100644 index 0000000000..e4a7f876b4 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.css @@ -0,0 +1,365 @@ +/* PrismJS 1.15.0 +https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+c+csharp+cpp+aspnet+http+java+json+objectivec+sql+jsx+typescript+sass+scss+yaml+tsx&plugins=line-highlight+line-numbers+show-invisibles+autolinker+custom-class+file-highlight+toolbar+jsonp-highlight+highlight-keywords+command-line+normalize-whitespace+keep-markup+show-language+copy-to-clipboard */ + + +/** + * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML + * Based on https://github.com/chriskempson/tomorrow-theme + * @author Rose Pritchard + */ + +code[class*="language-"], +pre[class*="language-"] { + color: #cdd8ef; + background: none; + font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; + font-size: 12px; +} + + +/* Code blocks */ + +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre)>code[class*="language-"], +pre[class*="language-"] { + background: #1d001f; +} + + +/* Inline code */ + +:not(pre)>code[class*="language-"] { + padding: .1em; + border-radius: .3em; + white-space: normal; +} + +.token.comment, +.token.block-comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: #999; +} + +.token.punctuation { + color: #ccc; +} + +.token.tag, +.token.attr-name, +.token.namespace, +.token.deleted { + color: #fb3e7f; +} + +.token.function-name { + color: #6196cc; +} + +.token.boolean, +.token.number, +.token.function { + color: #ff4ea8; +} + +.token.property, +.token.class-name, +.token.constant, +.token.symbol { + color: #ecf44a; +} + +.token.selector, +.token.important, +.token.atrule, +.token.keyword, +.token.builtin { + color: #0f9bfb; +} + +.token.string, +.token.char, +.token.attr-value, +.token.regex, +.token.variable { + color: #7ec699; +} + +.token.operator, +.token.entity, +.token.url { + color: #67cdcc; +} + +.token.important, +.token.bold { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.token.entity { + cursor: help; +} + +.token.inserted { + color: green; +} + +pre[data-line] { + position: relative; + padding: 1em 0 1em 3em; +} + +.line-highlight { + position: absolute; + left: 0; + right: 0; + padding: inherit 0; + margin-top: 1em; + /* Same as .prism’s padding-top */ + background: rgba(233, 3, 82, 0.2); + pointer-events: none; + line-height: inherit; + white-space: pre; +} + +.line-highlight:before, +.line-highlight[data-end]:after { + content: attr(data-start); + position: absolute; + top: .4em; + left: .6em; + min-width: 1em; + padding: 0 .5em; + background: rgba(233, 3, 82, 0.2); + color: hsl(24, 20%, 95%); + font: bold 65%/1.5 sans-serif; + text-align: center; + vertical-align: .3em; + border-radius: 999px; + text-shadow: none; + box-shadow: 0 1px white; +} + +.line-highlight[data-end]:after { + content: attr(data-end); + top: auto; + bottom: .4em; +} + +.line-numbers .line-highlight:before, +.line-numbers .line-highlight:after { + content: none; +} + +pre[class*="language-"].line-numbers { + position: relative; + padding-left: 3.4em; + counter-reset: linenumber; +} + +pre[class*="language-"].line-numbers>code { + position: relative; + white-space: inherit; +} + +.line-numbers .line-numbers-rows { + position: absolute; + pointer-events: none; + top: 0; + font-size: 100%; + left: -3.8em; + width: 3em; + /* works for line-numbers below 1000 lines */ + letter-spacing: -1px; + border-right: 1px solid #471d48; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.line-numbers-rows>span { + pointer-events: none; + display: block; + counter-increment: linenumber; +} + +.line-numbers-rows>span:before { + content: counter(linenumber); + color: #471d48; + display: block; + padding-right: 0.8em; + text-align: right; +} + +.token.tab:not(:empty), +.token.cr, +.token.lf, +.token.space { + position: relative; +} + +.token.tab:not(:empty):before, +.token.cr:before, +.token.lf:before, +.token.space:before { + color: #455075; + position: absolute; +} + +.token.tab:not(:empty):before { + content: '\21E5'; +} + +.token.cr:before { + content: '\240D'; +} + +.token.crlf:before { + content: '\240D\240A'; +} + +.token.lf:before { + content: '\240A'; + margin-left: 4px; + opacity: .5; +} + +.token.space:before { + content: '\00B7'; + /* arm */ + color: #1f0020; + margin-left: -4px; +} + +.token a { + color: inherit; +} + +div.code-toolbar { + position: relative; +} + +div.code-toolbar>.toolbar { + position: absolute; + top: .3em; + right: .2em; + transition: opacity 0.3s ease-in-out; + opacity: 0; +} + +div.code-toolbar:hover>.toolbar { + opacity: 1; +} + +div.code-toolbar>.toolbar .toolbar-item { + display: inline-block; +} + +div.code-toolbar>.toolbar a { + cursor: pointer; +} + +div.code-toolbar>.toolbar button { + background: none; + border: 0; + color: inherit; + font: inherit; + line-height: normal; + overflow: visible; + padding: 0; + -webkit-user-select: none; + /* for button */ + -moz-user-select: none; + -ms-user-select: none; +} + +div.code-toolbar>.toolbar a, +div.code-toolbar>.toolbar button, +div.code-toolbar>.toolbar span { + color: #bbb; + font-size: .8em; + padding: 0 .5em; + background: #f5f2f0; + background: rgba(224, 224, 224, 0.2); + box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); + border-radius: .5em; +} + +div.code-toolbar>.toolbar a:hover, +div.code-toolbar>.toolbar a:focus, +div.code-toolbar>.toolbar button:hover, +div.code-toolbar>.toolbar button:focus, +div.code-toolbar>.toolbar span:hover, +div.code-toolbar>.toolbar span:focus { + color: inherit; + text-decoration: none; +} + +.command-line-prompt { + border-right: 1px solid #999; + display: block; + float: left; + font-size: 100%; + letter-spacing: -1px; + margin-right: 1em; + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.command-line-prompt>span:before { + color: #999; + content: ' '; + display: block; + padding-right: 0.8em; +} + +.command-line-prompt>span[data-user]:before { + content: "[" attr(data-user) "@" attr(data-host) "] $"; +} + +.command-line-prompt>span[data-user="root"]:before { + content: "[" attr(data-user) "@" attr(data-host) "] #"; +} + +.command-line-prompt>span[data-prompt]:before { + content: attr(data-prompt); +} + + + +.code-block { + padding: 2px 7px; + max-width: 760px; + background: #1d001f; + border-radius: 5px; + overflow: hidden; + margin:3rem 0 1rem; +} \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.js new file mode 100644 index 0000000000..9c49486938 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/prism/prism.js @@ -0,0 +1,36 @@ +/* PrismJS 1.15.0 +https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+c+csharp+cpp+aspnet+http+java+json+objectivec+sql+jsx+typescript+sass+scss+yaml+tsx&plugins=line-highlight+line-numbers+show-invisibles+autolinker+custom-class+file-highlight+toolbar+jsonp-highlight+highlight-keywords+command-line+normalize-whitespace+keep-markup+show-language+copy-to-clipboard */ +var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-([\w-]+)\b/i,t=0,n=_self.Prism={manual:_self.Prism&&_self.Prism.manual,disableWorkerMessageHandler:_self.Prism&&_self.Prism.disableWorkerMessageHandler,util:{encode:function(e){return e instanceof r?new r(e.type,n.util.encode(e.content),e.alias):"Array"===n.util.type(e)?e.map(n.util.encode):e.replace(/&/g,"&").replace(/e.length)return;if(!(w instanceof s)){if(m&&b!=t.length-1){h.lastIndex=k;var _=h.exec(e);if(!_)break;for(var j=_.index+(d?_[1].length:0),P=_.index+_[0].length,A=b,x=k,O=t.length;O>A&&(P>x||!t[A].type&&!t[A-1].greedy);++A)x+=t[A].length,j>=x&&(++b,k=x);if(t[b]instanceof s)continue;I=A-b,w=e.slice(k,x),_.index-=k}else{h.lastIndex=0;var _=h.exec(w),I=1}if(_){d&&(p=_[1]?_[1].length:0);var j=_.index+p,_=_[0].slice(p),P=j+_.length,N=w.slice(0,j),S=w.slice(P),C=[b,I];N&&(++b,k+=N.length,C.push(N));var E=new s(u,f?n.tokenize(_,f):_,y,_,m);if(C.push(E),S&&C.push(S),Array.prototype.splice.apply(t,C),1!=I&&n.matchGrammar(e,t,r,b,k,!0,u),i)break}else if(i)break}}}}},tokenize:function(e,t){var r=[e],a=t.rest;if(a){for(var l in a)t[l]=a[l];delete t.rest}return n.matchGrammar(e,r,t,0,0,!1),r},hooks:{all:{},add:function(e,t){var r=n.hooks.all;r[e]=r[e]||[],r[e].push(t)},run:function(e,t){var r=n.hooks.all[e];if(r&&r.length)for(var a,l=0;a=r[l++];)a(t)}}},r=n.Token=function(e,t,n,r,a){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length,this.greedy=!!a};if(r.stringify=function(e,t,a){if("string"==typeof e)return e;if("Array"===n.util.type(e))return e.map(function(n){return r.stringify(n,t,e)}).join("");var l={type:e.type,content:r.stringify(e.content,t,a),tag:"span",classes:["token",e.type],attributes:{},language:t,parent:a};if(e.alias){var i="Array"===n.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(l.classes,i)}n.hooks.run("wrap",l);var o=Object.keys(l.attributes).map(function(e){return e+'="'+(l.attributes[e]||"").replace(/"/g,""")+'"'}).join(" ");return"<"+l.tag+' class="'+l.classes.join(" ")+'"'+(o?" "+o:"")+">"+l.content+""},!_self.document)return _self.addEventListener?(n.disableWorkerMessageHandler||_self.addEventListener("message",function(e){var t=JSON.parse(e.data),r=t.language,a=t.code,l=t.immediateClose;_self.postMessage(n.highlight(a,n.languages[r],r)),l&&_self.close()},!1),_self.Prism):_self.Prism;var a=document.currentScript||[].slice.call(document.getElementsByTagName("script")).pop();return a&&(n.filename=a.src,n.manual||a.hasAttribute("data-manual")||("loading"!==document.readyState?window.requestAnimationFrame?window.requestAnimationFrame(n.highlightAll):window.setTimeout(n.highlightAll,16):document.addEventListener("DOMContentLoaded",n.highlightAll))),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); +Prism.languages.markup={comment://,prolog:/<\?[\s\S]+?\?>/,doctype://i,cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+))?)*\s*\/?>/i,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+)/i,inside:{punctuation:[/^=/,{pattern:/(^|[^\\])["']/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup; +Prism.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(?:;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^{}\s][^{};]*?(?=\s*\{)/,string:{pattern:/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.languages.css,Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\s\S]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css",greedy:!0}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)); +Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(?:true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/}; +Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b(?:0[xX][\dA-Fa-f]+|0[bB][01]+|0[oO][0-7]+|NaN|Infinity)\b|(?:\b\d+\.?\d*|\B\.\d+)(?:[Ee][+-]?\d+)?/,"function":/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\()/i,operator:/-[-=]?|\+[+=]?|!=?=?|<>?>?=?|=(?:==?|>)?|&[&=]?|\|[|=]?|\*\*?=?|\/=?|~|\^=?|%=?|\?|\.{3}/}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(\[[^\]\r\n]+]|\\.|[^\/\\\[\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})\]]))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=\s*(?:function\b|(?:\([^()]*\)|[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/i,alias:"function"},constant:/\b[A-Z][A-Z\d_]*\b/}),Prism.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${[^}]+}|[^\\`])*`/,greedy:!0,inside:{interpolation:{pattern:/\${[^}]+}/,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}}}),Prism.languages.javascript["template-string"].inside.interpolation.inside.rest=Prism.languages.javascript,Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\s\S]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript",greedy:!0}}),Prism.languages.js=Prism.languages.javascript; +Prism.languages.c=Prism.languages.extend("clike",{keyword:/\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while)\b/,operator:/-[>-]?|\+\+?|!=?|<>?=?|==?|&&?|\|\|?|[~^%?*\/]/,number:/(?:\b0x[\da-f]+|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?)[ful]*/i}),Prism.languages.insertBefore("c","string",{macro:{pattern:/(^\s*)#\s*[a-z]+(?:[^\r\n\\]|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,alias:"property",inside:{string:{pattern:/(#\s*include\s*)(?:<.+?>|("|')(?:\\?.)+?\2)/,lookbehind:!0},directive:{pattern:/(#\s*)\b(?:define|defined|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,lookbehind:!0,alias:"keyword"}}},constant:/\b(?:__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|stdin|stdout|stderr)\b/}),delete Prism.languages.c["class-name"],delete Prism.languages.c["boolean"]; +Prism.languages.csharp=Prism.languages.extend("clike",{keyword:/\b(?:abstract|add|alias|as|ascending|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|descending|do|double|dynamic|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|from|get|global|goto|group|if|implicit|in|int|interface|internal|into|is|join|let|lock|long|namespace|new|null|object|operator|orderby|out|override|params|partial|private|protected|public|readonly|ref|remove|return|sbyte|sealed|select|set|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|value|var|virtual|void|volatile|where|while|yield)\b/,string:[{pattern:/@("|')(?:\1\1|\\[\s\S]|(?!\1)[^\\])*\1/,greedy:!0},{pattern:/("|')(?:\\.|(?!\1)[^\\\r\n])*?\1/,greedy:!0}],"class-name":[{pattern:/\b[A-Z]\w*(?:\.\w+)*\b(?=\s+\w+)/,inside:{punctuation:/\./}},{pattern:/(\[)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/(\b(?:class|interface)\s+[A-Z]\w*(?:\.\w+)*\s*:\s*)[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}},{pattern:/((?:\b(?:class|interface|new)\s+)|(?:catch\s+\())[A-Z]\w*(?:\.\w+)*\b/,lookbehind:!0,inside:{punctuation:/\./}}],number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)f?/i}),Prism.languages.insertBefore("csharp","class-name",{"generic-method":{pattern:/\w+\s*<[^>\r\n]+?>\s*(?=\()/,inside:{"function":/^\w+/,"class-name":{pattern:/\b[A-Z]\w*(?:\.\w+)*\b/,inside:{punctuation:/\./}},keyword:Prism.languages.csharp.keyword,punctuation:/[<>(),.:]/}},preprocessor:{pattern:/(^\s*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(\s*#)\b(?:define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}}),Prism.languages.dotnet=Prism.languages.csharp; +Prism.languages.cpp=Prism.languages.extend("c",{keyword:/\b(?:alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|class|compl|const|constexpr|const_cast|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|float|for|friend|goto|if|inline|int|int8_t|int16_t|int32_t|int64_t|uint8_t|uint16_t|uint32_t|uint64_t|long|mutable|namespace|new|noexcept|nullptr|operator|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,"boolean":/\b(?:true|false)\b/,operator:/--?|\+\+?|!=?|<{1,2}=?|>{1,2}=?|->|:{1,2}|={1,2}|\^|~|%|&{1,2}|\|\|?|\?|\*|\/|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/}),Prism.languages.insertBefore("cpp","keyword",{"class-name":{pattern:/(class\s+)\w+/i,lookbehind:!0}}),Prism.languages.insertBefore("cpp","string",{"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}}); +Prism.languages.aspnet=Prism.languages.extend("markup",{"page-directive tag":{pattern:/<%\s*@.*%>/i,inside:{"page-directive tag":/<%\s*@\s*(?:Assembly|Control|Implements|Import|Master(?:Type)?|OutputCache|Page|PreviousPageType|Reference|Register)?|%>/i,rest:Prism.languages.markup.tag.inside}},"directive tag":{pattern:/<%.*%>/i,inside:{"directive tag":/<%\s*?[$=%#:]{0,2}|%>/i,rest:Prism.languages.csharp}}}),Prism.languages.aspnet.tag.pattern=/<(?!%)\/?[^\s>\/]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+))?)*\s*\/?>/i,Prism.languages.insertBefore("inside","punctuation",{"directive tag":Prism.languages.aspnet["directive tag"]},Prism.languages.aspnet.tag.inside["attr-value"]),Prism.languages.insertBefore("aspnet","comment",{"asp comment":/<%--[\s\S]*?--%>/}),Prism.languages.insertBefore("aspnet",Prism.languages.javascript?"script":"tag",{"asp script":{pattern:/()[\s\S]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.csharp||{}}}); +Prism.languages.http={"request-line":{pattern:/^(?:POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\s(?:https?:\/\/|\/)\S+\sHTTP\/[0-9.]+/m,inside:{property:/^(?:POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,"attr-name":/:\w+/}},"response-status":{pattern:/^HTTP\/1.[01] \d+.*/m,inside:{property:{pattern:/(^HTTP\/1.[01] )\d+.*/i,lookbehind:!0}}},"header-name":{pattern:/^[\w-]+:(?=.)/m,alias:"keyword"}};var httpLanguages={"application/json":Prism.languages.javascript,"application/xml":Prism.languages.markup,"text/xml":Prism.languages.markup,"text/html":Prism.languages.markup};for(var contentType in httpLanguages)if(httpLanguages[contentType]){var options={};options[contentType]={pattern:new RegExp("(content-type:\\s*"+contentType+"[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*","i"),lookbehind:!0,inside:{rest:httpLanguages[contentType]}},Prism.languages.insertBefore("http","header-name",options)}; +Prism.languages.java=Prism.languages.extend("clike",{keyword:/\b(?:abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do|if|private|this|break|double|implements|protected|throw|byte|else|import|public|throws|case|enum|instanceof|return|transient|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|strictfp|volatile|const|float|native|super|while)\b/,number:/\b0b[01]+\b|\b0x[\da-f]*\.?[\da-fp-]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?[df]?/i,operator:{pattern:/(^|[^.])(?:\+[+=]?|-[-=]?|!=?|<>?>?=?|==?|&[&=]?|\|[|=]?|\*=?|\/=?|%=?|\^=?|[?:~])/m,lookbehind:!0}}),Prism.languages.insertBefore("java","function",{annotation:{alias:"punctuation",pattern:/(^|[^.])@\w+/,lookbehind:!0}}),Prism.languages.insertBefore("java","class-name",{generics:{pattern:/<\s*\w+(?:\.\w+)?(?:\s*,\s*\w+(?:\.\w+)?)*>/i,alias:"function",inside:{keyword:Prism.languages.java.keyword,punctuation:/[<>(),.:]/}}}); +Prism.languages.json={property:/"(?:\\.|[^\\"\r\n])*"(?=\s*:)/i,string:{pattern:/"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,greedy:!0},number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:[Ee][+-]?\d+)?/,punctuation:/[{}[\]);,]/,operator:/:/g,"boolean":/\b(?:true|false)\b/i,"null":/\bnull\b/i},Prism.languages.jsonp=Prism.languages.json; +Prism.languages.objectivec=Prism.languages.extend("c",{keyword:/\b(?:asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while|in|self|super)\b|(?:@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,string:/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|@"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,operator:/-[->]?|\+\+?|!=?|<>?=?|==?|&&?|\|\|?|[~^%?*\/@]/}); +Prism.languages.sql={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:--|\/\/|#).*)/,lookbehind:!0},string:{pattern:/(^|[^@\\])("|')(?:\\[\s\S]|(?!\2)[^\\])*\2/,greedy:!0,lookbehind:!0},variable:/@[\w.$]+|@(["'`])(?:\\[\s\S]|(?!\1)[^\\])+\1/,"function":/\b(?:AVG|COUNT|FIRST|FORMAT|LAST|LCASE|LEN|MAX|MID|MIN|MOD|NOW|ROUND|SUM|UCASE)(?=\s*\()/i,keyword:/\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|AUTO_INCREMENT|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR(?:ACTER|SET)?|CHECK(?:POINT)?|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMNS?|COMMENT|COMMIT(?:TED)?|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS(?:TABLE)?|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|CYCLE|DATA(?:BASES?)?|DATE(?:TIME)?|DAY|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DELIMITERS?|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE|ELSE(?:IF)?|ENABLE|ENCLOSED|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPED?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|HOUR|IDENTITY(?:_INSERT|COL)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTERVAL|INTO|INVOKER|ISOLATION|ITERATE|JOIN|KEYS?|KILL|LANGUAGE|LAST|LEAVE|LEFT|LEVEL|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|LOOP|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MINUTE|MODE|MODIFIES|MODIFY|MONTH|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL|NATURAL|NCHAR|NEXT|NO|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREPARE|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READS?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEAT(?:ABLE)?|REPLACE|REPLICATION|REQUIRE|RESIGNAL|RESTORE|RESTRICT|RETURNS?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SECOND|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|SQL|START(?:ING)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED|TEXT(?:SIZE)?|THEN|TIME(?:STAMP)?|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNLOCK|UNPIVOT|UNSIGNED|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?|YEAR)\b/i,"boolean":/\b(?:TRUE|FALSE|NULL)\b/i,number:/\b0x[\da-f]+\b|\b\d+\.?\d*|\B\.\d+\b/i,operator:/[-+*\/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|IN|LIKE|NOT|OR|IS|DIV|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i,punctuation:/[;[\]()`,.]/}; +!function(t){var n=t.util.clone(t.languages.javascript);t.languages.jsx=t.languages.extend("markup",n),t.languages.jsx.tag.pattern=/<\/?(?:[\w.:-]+\s*(?:\s+(?:[\w.:-]+(?:=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s{'">=]+|\{(?:\{(?:\{[^}]*\}|[^{}])*\}|[^{}])+\}))?|\{\.{3}[a-z_$][\w$]*(?:\.[a-z_$][\w$]*)*\}))*\s*\/?)?>/i,t.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/i,t.languages.jsx.tag.inside["attr-value"].pattern=/=(?!\{)(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">]+)/i,t.languages.insertBefore("inside","attr-name",{spread:{pattern:/\{\.{3}[a-z_$][\w$]*(?:\.[a-z_$][\w$]*)*\}/,inside:{punctuation:/\.{3}|[{}.]/,"attr-value":/\w+/}}},t.languages.jsx.tag),t.languages.insertBefore("inside","attr-value",{script:{pattern:/=(\{(?:\{(?:\{[^}]*\}|[^}])*\}|[^}])+\})/i,inside:{"script-punctuation":{pattern:/^=(?={)/,alias:"punctuation"},rest:t.languages.jsx},alias:"language-javascript"}},t.languages.jsx.tag);var e=function(t){return t?"string"==typeof t?t:"string"==typeof t.content?t.content:t.content.map(e).join(""):""},a=function(n){for(var s=[],g=0;g0&&s[s.length-1].tagName===e(o.content[0].content[1])&&s.pop():"/>"===o.content[o.content.length-1].content||s.push({tagName:e(o.content[0].content[1]),openedBraces:0}):s.length>0&&"punctuation"===o.type&&"{"===o.content?s[s.length-1].openedBraces++:s.length>0&&s[s.length-1].openedBraces>0&&"punctuation"===o.type&&"}"===o.content?s[s.length-1].openedBraces--:i=!0),(i||"string"==typeof o)&&s.length>0&&0===s[s.length-1].openedBraces){var p=e(o);g0&&("string"==typeof n[g-1]||"plain-text"===n[g-1].type)&&(p=e(n[g-1])+p,n.splice(g-1,1),g--),n[g]=new t.Token("plain-text",p,null,p)}o.content&&"string"!=typeof o.content&&a(o.content)}};t.hooks.add("after-tokenize",function(t){("jsx"===t.language||"tsx"===t.language)&&a(t.tokens)})}(Prism); +Prism.languages.typescript=Prism.languages.extend("javascript",{keyword:/\b(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield|module|declare|constructor|namespace|abstract|require|type)\b/,builtin:/\b(?:string|Function|any|number|boolean|Array|symbol|console)\b/}),Prism.languages.ts=Prism.languages.typescript; +!function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var a=/\$[-\w]+|#\{\$[-\w]+\}/,t=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:a,operator:t}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:a,operator:t,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism); +Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;{}()]?(?:[^@;{}()]|&|#\{\$[-\w]+\})+(?=\s*\{(?:\}|\s|[^}]+[:{][^}]+))/m,inside:{parent:{pattern:/&/,alias:"important"},placeholder:/%[-\w]+/,variable:/\$[-\w]+|#\{\$[-\w]+\}/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.scss.property={pattern:/(?:[\w-]|\$[-\w]+|#\{\$[-\w]+\})+(?=\s*:)/i,inside:{variable:/\$[-\w]+|#\{\$[-\w]+\}/}},Prism.languages.insertBefore("scss","important",{variable:/\$[-\w]+|#\{\$[-\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-\w]+/,alias:"selector"},statement:{pattern:/\B!(?:default|optional)\b/i,alias:"keyword"},"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.languages.scss; +Prism.languages.yaml={scalar:{pattern:/([\-:]\s*(?:![^\s]+)?[ \t]*[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)[^\r\n]+(?:\2[^\r\n]+)*)/,lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:/(\s*(?:^|[:\-,[{\r\n?])[ \t]*(?:![^\s]+)?[ \t]*)[^\r\n{[\]},#\s]+?(?=\s*:\s)/,lookbehind:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:\d{4}-\d\d?-\d\d?(?:[tT]|[ \t]+)\d\d?:\d{2}:\d{2}(?:\.\d*)?[ \t]*(?:Z|[-+]\d\d?(?::\d{2})?)?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(?::\d{2}(?:\.\d*)?)?)(?=[ \t]*(?:$|,|]|}))/m,lookbehind:!0,alias:"number"},"boolean":{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:true|false)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},"null":{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)(?:null|~)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:"important"},string:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)("|')(?:(?!\2)[^\\\r\n]|\\.)*\2(?=[ \t]*(?:$|,|]|}))/m,lookbehind:!0,greedy:!0},number:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+\.?\d*|\.?\d+)(?:e[+-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,lookbehind:!0},tag:/![^\s]+/,important:/[&*][\w]+/,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./}; +var typescript=Prism.util.clone(Prism.languages.typescript);Prism.languages.tsx=Prism.languages.extend("jsx",typescript); +!function(){function e(e,t){return Array.prototype.slice.call((t||document).querySelectorAll(e))}function t(e,t){return t=" "+t+" ",(" "+e.className+" ").replace(/[\n\t]/g," ").indexOf(t)>-1}function n(e,n,i){n="string"==typeof n?n:e.getAttribute("data-line");for(var o,l=n.replace(/\s+/g,"").split(","),a=+e.getAttribute("data-line-offset")||0,s=r()?parseInt:parseFloat,d=s(getComputedStyle(e).lineHeight),u=t(e,"line-numbers"),c=0;o=l[c++];){var p=o.split("-"),m=+p[0],f=+p[1]||m,h=e.querySelector('.line-highlight[data-range="'+o+'"]')||document.createElement("div");if(h.setAttribute("aria-hidden","true"),h.setAttribute("data-range",o),h.className=(i||"")+" line-highlight",u&&Prism.plugins.lineNumbers){var g=Prism.plugins.lineNumbers.getLine(e,m),y=Prism.plugins.lineNumbers.getLine(e,f);g&&(h.style.top=g.offsetTop+"px"),y&&(h.style.height=y.offsetTop-g.offsetTop+y.offsetHeight+"px")}else h.setAttribute("data-start",m),f>m&&h.setAttribute("data-end",f),h.style.top=(m-a-1)*d+"px",h.textContent=new Array(f-m+2).join(" \n");u?e.appendChild(h):(e.querySelector("code")||e).appendChild(h)}}function i(){var t=location.hash.slice(1);e(".temporary.line-highlight").forEach(function(e){e.parentNode.removeChild(e)});var i=(t.match(/\.([\d,-]+)$/)||[,""])[1];if(i&&!document.getElementById(t)){var r=t.slice(0,t.lastIndexOf(".")),o=document.getElementById(r);o&&(o.hasAttribute("data-line")||o.setAttribute("data-line",""),n(o,i,"temporary "),document.querySelector(".temporary.line-highlight").scrollIntoView())}}if("undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector){var r=function(){var e;return function(){if("undefined"==typeof e){var t=document.createElement("div");t.style.fontSize="13px",t.style.lineHeight="1.5",t.style.padding=0,t.style.border=0,t.innerHTML=" 
 ",document.body.appendChild(t),e=38===t.offsetHeight,document.body.removeChild(t)}return e}}(),o=0;Prism.hooks.add("before-sanity-check",function(t){var n=t.element.parentNode,i=n&&n.getAttribute("data-line");if(n&&i&&/pre/i.test(n.nodeName)){var r=0;e(".line-highlight",n).forEach(function(e){r+=e.textContent.length,e.parentNode.removeChild(e)}),r&&/^( \n)+$/.test(t.code.slice(-r))&&(t.code=t.code.slice(0,-r))}}),Prism.hooks.add("complete",function l(e){var r=e.element.parentNode,a=r&&r.getAttribute("data-line");if(r&&a&&/pre/i.test(r.nodeName)){clearTimeout(o);var s=Prism.plugins.lineNumbers,d=e.plugins&&e.plugins.lineNumbers;t(r,"line-numbers")&&s&&!d?Prism.hooks.add("line-numbers",l):(n(r,a),o=setTimeout(i,1))}}),window.addEventListener("hashchange",i),window.addEventListener("resize",function(){var e=document.querySelectorAll("pre[data-line]");Array.prototype.forEach.call(e,function(e){n(e)})})}}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){var e="line-numbers",t=/\n(?!$)/g,n=function(e){var n=r(e),s=n["white-space"];if("pre-wrap"===s||"pre-line"===s){var l=e.querySelector("code"),i=e.querySelector(".line-numbers-rows"),a=e.querySelector(".line-numbers-sizer"),o=l.textContent.split(t);a||(a=document.createElement("span"),a.className="line-numbers-sizer",l.appendChild(a)),a.style.display="block",o.forEach(function(e,t){a.textContent=e||"\n";var n=a.getBoundingClientRect().height;i.children[t].style.height=n+"px"}),a.textContent="",a.style.display="none"}},r=function(e){return e?window.getComputedStyle?getComputedStyle(e):e.currentStyle||null:null};window.addEventListener("resize",function(){Array.prototype.forEach.call(document.querySelectorAll("pre."+e),n)}),Prism.hooks.add("complete",function(e){if(e.code){var r=e.element.parentNode,s=/\s*\bline-numbers\b\s*/;if(r&&/pre/i.test(r.nodeName)&&(s.test(r.className)||s.test(e.element.className))&&!e.element.querySelector(".line-numbers-rows")){s.test(e.element.className)&&(e.element.className=e.element.className.replace(s," ")),s.test(r.className)||(r.className+=" line-numbers");var l,i=e.code.match(t),a=i?i.length+1:1,o=new Array(a+1);o=o.join(""),l=document.createElement("span"),l.setAttribute("aria-hidden","true"),l.className="line-numbers-rows",l.innerHTML=o,r.hasAttribute("data-start")&&(r.style.counterReset="linenumber "+(parseInt(r.getAttribute("data-start"),10)-1)),e.element.appendChild(l),n(r),Prism.hooks.run("line-numbers",e)}}}),Prism.hooks.add("line-numbers",function(e){e.plugins=e.plugins||{},e.plugins.lineNumbers=!0}),Prism.plugins.lineNumbers={getLine:function(t,n){if("PRE"===t.tagName&&t.classList.contains(e)){var r=t.querySelector(".line-numbers-rows"),s=parseInt(t.getAttribute("data-start"),10)||1,l=s+(r.children.length-1);s>n&&(n=s),n>l&&(n=l);var i=n-s;return r.children[i]}}}}}(); +!function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("before-highlight",function(e){var f=e.grammar;f&&(f.tab=/\t/g,f.crlf=/\r\n/g,f.lf=/\n/g,f.cr=/\r/g,f.space=/ /g)})}(); +!function(){if(("undefined"==typeof self||self.Prism)&&("undefined"==typeof global||global.Prism)){var i=/\b([a-z]{3,7}:\/\/|tel:)[\w\-+%~\/.:=&]+(?:\?[\w\-+%~\/.:#=?&!$'()*,;]*)?(?:#[\w\-+%~\/.:#=?&!$'()*,;]*)?/,n=/\b\S+@[\w.]+[a-z]{2}/,e=/\[([^\]]+)]\(([^)]+)\)/,t=["comment","url","attr-value","string"];Prism.plugins.autolinker={processGrammar:function(r){r&&!r["url-link"]&&(Prism.languages.DFS(r,function(r,a,l){t.indexOf(l)>-1&&"Array"!==Prism.util.type(a)&&(a.pattern||(a=this[r]={pattern:a}),a.inside=a.inside||{},"comment"==l&&(a.inside["md-link"]=e),"attr-value"==l?Prism.languages.insertBefore("inside","punctuation",{"url-link":i},a):a.inside["url-link"]=i,a.inside["email-link"]=n)}),r["url-link"]=i,r["email-link"]=n)}},Prism.hooks.add("before-highlight",function(i){Prism.plugins.autolinker.processGrammar(i.grammar)}),Prism.hooks.add("wrap",function(i){if(/-link$/.test(i.type)){i.tag="a";var n=i.content;if("email-link"==i.type&&0!=n.indexOf("mailto:"))n="mailto:"+n;else if("md-link"==i.type){var t=i.content.match(e);n=t[2],i.content=t[1]}i.attributes.href=n}try{i.content=decodeURIComponent(i.content)}catch(r){}})}}(); +!function(){if("undefined"!=typeof self&&self.Prism||"undefined"!=typeof global&&global.Prism){var s={classMap:{}};Prism.plugins.customClass={map:function(i){s.classMap=i},prefix:function(i){s.prefixString=i}},Prism.hooks.add("wrap",function(i){(s.classMap||s.prefixString)&&(i.classes=i.classes.map(function(i){return(s.prefixString||"")+(s.classMap[i]||i)}))})}}(); +!function(){"undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector&&(self.Prism.fileHighlight=function(){var t={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"};Array.prototype.slice.call(document.querySelectorAll("pre[data-src]")).forEach(function(e){for(var a,n=e.getAttribute("data-src"),r=e,o=/\blang(?:uage)?-([\w-]+)\b/i;r&&!o.test(r.className);)r=r.parentNode;if(r&&(a=(e.className.match(o)||[,""])[1]),!a){var s=(n.match(/\.(\w+)$/)||[,""])[1];a=t[s]||s}var l=document.createElement("code");l.className="language-"+a,e.textContent="",l.textContent="Loading…",e.appendChild(l);var i=new XMLHttpRequest;i.open("GET",n,!0),i.onreadystatechange=function(){4==i.readyState&&(i.status<400&&i.responseText?(l.textContent=i.responseText,Prism.highlightElement(l)):l.textContent=i.status>=400?"✖ Error "+i.status+" while fetching file: "+i.statusText:"✖ Error: File does not exist or is empty")},i.send(null)}),Prism.plugins.toolbar&&Prism.plugins.toolbar.registerButton("download-file",function(t){var e=t.element.parentNode;if(e&&/pre/i.test(e.nodeName)&&e.hasAttribute("data-src")&&e.hasAttribute("data-download-link")){var a=e.getAttribute("data-src"),n=document.createElement("a");return n.textContent=e.getAttribute("data-download-link-label")||"Download",n.setAttribute("download",""),n.href=a,n}})},document.addEventListener("DOMContentLoaded",self.Prism.fileHighlight))}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){var t=[],e={},n=function(){};Prism.plugins.toolbar={};var a=Prism.plugins.toolbar.registerButton=function(n,a){var o;o="function"==typeof a?a:function(t){var e;return"function"==typeof a.onClick?(e=document.createElement("button"),e.type="button",e.addEventListener("click",function(){a.onClick.call(this,t)})):"string"==typeof a.url?(e=document.createElement("a"),e.href=a.url):e=document.createElement("span"),e.textContent=a.text,e},t.push(e[n]=o)},o=Prism.plugins.toolbar.hook=function(a){var o=a.element.parentNode;if(o&&/pre/i.test(o.nodeName)&&!o.parentNode.classList.contains("code-toolbar")){var r=document.createElement("div");r.classList.add("code-toolbar"),o.parentNode.insertBefore(r,o),r.appendChild(o);var i=document.createElement("div");i.classList.add("toolbar"),document.body.hasAttribute("data-toolbar-order")&&(t=document.body.getAttribute("data-toolbar-order").split(",").map(function(t){return e[t]||n})),t.forEach(function(t){var e=t(a);if(e){var n=document.createElement("div");n.classList.add("toolbar-item"),n.appendChild(e),i.appendChild(n)}}),r.appendChild(i)}};a("label",function(t){var e=t.element.parentNode;if(e&&/pre/i.test(e.nodeName)&&e.hasAttribute("data-label")){var n,a,o=e.getAttribute("data-label");try{a=document.querySelector("template#"+o)}catch(r){}return a?n=a.content:(e.hasAttribute("data-url")?(n=document.createElement("a"),n.href=e.getAttribute("data-url")):n=document.createElement("span"),n.textContent=o),n}}),Prism.hooks.add("complete",o)}}(); +!function(){function t(t){"function"!=typeof t||e(t)||r.push(t)}function e(t){return"function"==typeof t?r.filter(function(e){return e.valueOf()===t.valueOf()})[0]:"string"==typeof t&&t.length>0?r.filter(function(e){return e.name===t})[0]:null}function n(t){if("string"==typeof t&&(t=e(t)),"function"==typeof t){var n=r.indexOf(t);n>=0&&r.splice(n,1)}}function a(){Array.prototype.slice.call(document.querySelectorAll("pre[data-jsonp]")).forEach(function(t){t.textContent="";var e=document.createElement("code");e.textContent=i,t.appendChild(e);var n=t.getAttribute("data-adapter"),a=null;if(n){if("function"!=typeof window[n])return e.textContent="JSONP adapter function '"+n+"' doesn't exist",void 0;a=window[n]}var u="prismjsonp"+o++,f=document.createElement("a"),l=f.href=t.getAttribute("data-jsonp");f.href+=(f.search?"&":"?")+(t.getAttribute("data-callback")||"callback")+"="+u;var s=setTimeout(function(){e.textContent===i&&(e.textContent="Timeout loading '"+l+"'")},5e3),d=document.createElement("script");d.src=f.href,window[u]=function(n){document.head.removeChild(d),clearTimeout(s),delete window[u];var o="";if(a)o=a(n,t);else for(var i in r)if(o=r[i](n,t),null!==o)break;null===o?e.textContent="Cannot parse response (perhaps you need an adapter function?)":(e.textContent=o,Prism.highlightElement(e))},document.head.appendChild(d)})}if(self.Prism&&self.document&&document.querySelectorAll&&[].filter){var r=[];Prism.plugins.jsonphighlight={registerAdapter:t,removeAdapter:n,highlight:a},t(function(t){if(t&&t.meta&&t.data){if(t.meta.status&&t.meta.status>=400)return"Error: "+(t.data.message||t.meta.status);if("string"==typeof t.data.content)return"function"==typeof atob?atob(t.data.content.replace(/\s/g,"")):"Your browser cannot decode base64"}return null}),t(function(t,e){if(t&&t.meta&&t.data&&t.data.files){if(t.meta.status&&t.meta.status>=400)return"Error: "+(t.data.message||t.meta.status);var n=e.getAttribute("data-filename");if(null==n)for(var a in t.data.files)if(t.data.files.hasOwnProperty(a)){n=a;break}return void 0!==t.data.files[n]?t.data.files[n].content:"Error: unknown or missing gist file "+n}return null}),t(function(t){return t&&t.node&&"string"==typeof t.data?t.data:null});var o=0,i="Loading…";a()}}(); +!function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("wrap",function(e){"keyword"===e.type&&e.classes.push("keyword-"+e.content)})}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){var e=/\s*\bcommand-line\b\s*/;Prism.hooks.add("before-highlight",function(a){if(a.vars=a.vars||{},a.vars["command-line"]=a.vars["command-line"]||{},a.vars["command-line"].complete||!a.code)return a.vars["command-line"].complete=!0,void 0;var n=a.element.parentNode;if(!n||!/pre/i.test(n.nodeName)||!e.test(n.className)&&!e.test(a.element.className))return a.vars["command-line"].complete=!0,void 0;if(a.element.querySelector(".command-line-prompt"))return a.vars["command-line"].complete=!0,void 0;var t=a.code.split("\n");a.vars["command-line"].numberOfLines=t.length,a.vars["command-line"].outputLines=[];var r=n.getAttribute("data-output"),s=n.getAttribute("data-filter-output");if(r||""===r){r=r.split(",");for(var o=0;oi&&(i=1),l>t.length&&(l=t.length),i--,l--;for(var d=i;l>=d;d++)a.vars["command-line"].outputLines[d]=t[d],t[d]=""}}}else if(s)for(var o=0;o');else{var o=t("data-user","user"),m=t("data-host","localhost");r=r.join('')}var i=document.createElement("span");i.className="command-line-prompt",i.innerHTML=r;for(var l=0;ln&&(o[s]="\n"+o[s],a=l)}r[i]=o.join("")}return r.join("\n")}},"undefined"!=typeof module&&module.exports&&(module.exports=e),"undefined"!=typeof Prism&&(Prism.plugins.NormalizeWhitespace=new e({"remove-trailing":!0,"remove-indent":!0,"left-trim":!0,"right-trim":!0}),Prism.hooks.add("before-sanity-check",function(e){var n=Prism.plugins.NormalizeWhitespace;if(!e.settings||e.settings["whitespace-normalization"]!==!1){if((!e.element||!e.element.parentNode)&&e.code)return e.code=n.normalize(e.code,e.settings),void 0;var t=e.element.parentNode,r=/\bno-whitespace-normalization\b/;if(e.code&&t&&"pre"===t.nodeName.toLowerCase()&&!r.test(t.className)&&!r.test(e.element.className)){for(var i=t.childNodes,o="",a="",s=!1,l=0;la;a++){var l=e.childNodes[a];1===l.nodeType?t(l):3===l.nodeType&&(n+=l.data.length)}d||(r.posClose=n)};t(e.element,!0),o&&o.length&&(e.keepMarkup=o)}}),Prism.hooks.add("after-highlight",function(e){if(e.keepMarkup&&e.keepMarkup.length){var n=function(e,o){for(var t=0,d=e.childNodes.length;d>t;t++){var r=e.childNodes[t];if(1===r.nodeType){if(!n(r,o))return!1}else 3===r.nodeType&&(!o.nodeStart&&o.pos+r.data.length>o.node.posOpen&&(o.nodeStart=r,o.nodeStartPos=o.node.posOpen-o.pos),o.nodeStart&&o.pos+r.data.length>=o.node.posClose&&(o.nodeEnd=r,o.nodeEndPos=o.node.posClose-o.pos),o.pos+=r.data.length);if(o.nodeStart&&o.nodeEnd){var a=document.createRange();return a.setStart(o.nodeStart,o.nodeStartPos),a.setEnd(o.nodeEnd,o.nodeEndPos),o.node.clone.appendChild(a.extractContents()),a.insertNode(o.node.clone),a.detach(),!1}}return!0};e.keepMarkup.forEach(function(o){n(e.element,{node:o,pos:0})}),e.highlightedCode=e.element.innerHTML}}))}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){if(!Prism.plugins.toolbar)return console.warn("Show Languages plugin loaded before Toolbar plugin."),void 0;var e={html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",css:"CSS",clike:"C-like",javascript:"JavaScript",abap:"ABAP",actionscript:"ActionScript",apacheconf:"Apache Configuration",apl:"APL",applescript:"AppleScript",arff:"ARFF",asciidoc:"AsciiDoc",asm6502:"6502 Assembly",aspnet:"ASP.NET (C#)",autohotkey:"AutoHotkey",autoit:"AutoIt",basic:"BASIC",csharp:"C#",cpp:"C++",coffeescript:"CoffeeScript",csp:"Content-Security-Policy","css-extras":"CSS Extras",django:"Django/Jinja2",erb:"ERB",fsharp:"F#",gedcom:"GEDCOM",glsl:"GLSL",graphql:"GraphQL",http:"HTTP",hpkp:"HTTP Public-Key-Pins",hsts:"HTTP Strict-Transport-Security",ichigojam:"IchigoJam",inform7:"Inform 7",json:"JSON",latex:"LaTeX",livescript:"LiveScript",lolcode:"LOLCODE","markup-templating":"Markup templating",matlab:"MATLAB",mel:"MEL",n4js:"N4JS",nasm:"NASM",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",ocaml:"OCaml",opencl:"OpenCL",parigp:"PARI/GP",objectpascal:"Object Pascal",php:"PHP","php-extras":"PHP Extras",plsql:"PL/SQL",powershell:"PowerShell",properties:".properties",protobuf:"Protocol Buffers",q:"Q (kdb+ database)",jsx:"React JSX",tsx:"React TSX",renpy:"Ren'py",rest:"reST (reStructuredText)",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (Scss)",sql:"SQL",soy:"Soy (Closure Template)",tap:"TAP",tt2:"Template Toolkit 2",typescript:"TypeScript",vbnet:"VB.Net",vhdl:"VHDL",vim:"vim","visual-basic":"Visual Basic",wasm:"WebAssembly",wiki:"Wiki markup",xojo:"Xojo (REALbasic)",xquery:"XQuery",yaml:"YAML"};Prism.plugins.toolbar.registerButton("show-language",function(a){var t=a.element.parentNode;if(t&&/pre/i.test(t.nodeName)){var s=t.getAttribute("data-language")||e[a.language]||a.language&&a.language.substring(0,1).toUpperCase()+a.language.substring(1);if(s){var i=document.createElement("span");return i.textContent=s,i}}})}}(); +!function(){if("undefined"!=typeof self&&self.Prism&&self.document){if(!Prism.plugins.toolbar)return console.warn("Copy to Clipboard plugin loaded before Toolbar plugin."),void 0;var o=window.ClipboardJS||void 0;o||"function"!=typeof require||(o=require("clipboard"));var e=[];if(!o){var t=document.createElement("script"),n=document.querySelector("head");t.onload=function(){if(o=window.ClipboardJS)for(;e.length;)e.pop()()},t.src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js",n.appendChild(t)}Prism.plugins.toolbar.registerButton("copy-to-clipboard",function(t){function n(){var e=new o(i,{text:function(){return t.code}});e.on("success",function(){i.textContent="Copied!",r()}),e.on("error",function(){i.textContent="Press Ctrl+C to copy",r()})}function r(){setTimeout(function(){i.textContent="Copy"},5e3)}var i=document.createElement("a");return i.textContent="Copy",o?n():e.push(n),i})}}(); diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/util.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/util.js new file mode 100644 index 0000000000..fa95785ccd --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/util.js @@ -0,0 +1,101 @@ +var UTIL = require("n-util"); + +for (var key in UTIL) { + exports[key] = UTIL[key]; +} + +exports.object.deepDiff = function() { + var sources = Array.prototype.slice.call(arguments); + var target = exports.deepCopy(sources.shift()); + if (typeof target !== "object") { + throw new Error("`target` must be an object!"); + } + return variadicHelper([target].concat(sources), function(target, source) { + if (typeof source === "object") { + var key; + for (key in source) { + if (exports.object.has(source, key)) { + if (exports.object.has(target, key)) { + if (exports.deepEqual(target[key], source[key])) { + delete target[key]; + } else { + if (exports.isArrayLike(target[key]) && exports.isArrayLike(source[key])) { + target[key] = exports.array.diff(target[key], source[key]); + } else + if (typeof target[key] === "object" && typeof source[key] === "object") { + target[key] = exports.deepDiff(target[key], source[key]); + } + } + } + } + } + } + }); +}; + +exports.array.diff = function(target, source) { + var sources = Array.prototype.slice.call(arguments); + var target = exports.deepCopy(sources.shift()); + sources.forEach(function(source) { + target = target.filter(function(i) { + return !(source.indexOf(i) > -1); + }); + }); + return target; +}; + +exports.deepDiff = exports.operator('deepDiff', 2, function(target, source) { + var args = Array.prototype.slice.call(arguments); + return exports.object.deepDiff.apply(this, args); +}); + +exports.deepEqual = function(actual, expected) { + + // 7.1. All identical values are equivalent, as determined by ===. + if (actual === expected) { + return true; + + // 7.2. If the expected value is a Date object, the actual value is + // equivalent if it is also a Date object that refers to the same time. + } else if (actual instanceof Date && expected instanceof Date) { + return actual.getTime() === expected.getTime(); + + // 7.3. Other pairs that do not both pass typeof value == "object", + // equivalence is determined by ==. + } else if (typeof actual != 'object' && typeof expected != 'object') { + return actual == expected; + + // XXX specification bug: this should be specified + } else if (typeof expected == "string" || typeof actual == "string") { + return expected == actual; + + // 7.4. For all other Object pairs, including Array objects, equivalence is + // determined by having the same number of owned properties (as verified + // with Object.prototype.hasOwnProperty.call), the same set of keys + // (although not necessarily the same order), equivalent values for every + // corresponding key, and an identical "prototype" property. Note: this + // accounts for both named and indexed properties on Arrays. + } else { + return actual.prototype === expected.prototype && exports.object.eq(actual, expected); + } +} + +/** + * @param args Arguments list of the calling function + * First argument should be a callback that takes target and source parameters. + * Second argument should be target. + * Remaining arguments are treated a sources. + * + * @returns Target + * @type Object + */ +var variadicHelper = function(args, callback) { + var sources = Array.prototype.slice.call(args); + var target = sources.shift(); + + sources.forEach(function(source) { + callback(target, source); + }); + + return target; +}; \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/vs.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/vs.js new file mode 100644 index 0000000000..f9fd56352c --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/js/vs.js @@ -0,0 +1,73 @@ +$(function() { + + $('.tree-toggle').click(function () { + $(this).parent().children('ul.tree').toggle(100); + $(this).toggleClass("opened"); + }); + + + $('.tree-toggle').parent().children('ul.tree').toggle(100); + + + var scrollTopBtn = $(".scroll-top-btn"); + var enoughHeight = $(".docs-sidebar-wrapper > .docs-top").height() + 60; + + $(window).scroll(function () { + var topPos = $(window).scrollTop(); + if (topPos > enoughHeight) { + $(scrollTopBtn).addClass("showup"); + $("body").addClass("scrolled"); + } else { + $(scrollTopBtn).removeClass("showup"); + $("body").removeClass("scrolled"); + } + }); + + $(scrollTopBtn).click(function () { + $('html, body').animate({ + scrollTop: 0 + }, 500); + return false; + }); + + + function handleSidebar() { + var sideBarPosition = $(".docs-sidebar").width() - 270; + var sideBar = $(".docs-sidebar-wrapper"); + sideBar.css("margin-left", sideBarPosition); + } + $(window).resize(function () { + handleSidebar(); + }); + handleSidebar(); + + + $('body').scrollspy({ + target: '#navbar-example3' + }); + $("#navbar-example3 a").on('click', function (event) { + if (this.hash !== "") { + event.preventDefault(); + var hash = this.hash; + $('html, body').animate({ + scrollTop: $(hash).offset().top + }, 800, function () { + window.location.hash = hash; + }); + } + }); + + + $('.btn-toggle').on("click", function () { + $(".toggle-row").slideToggle(400); + $(this).toggleClass("less"); + }); + + $('.close-mmenu').on("click", function () { + $(".navbar-collapse").removeClass("show"); + }); + + $('.open-dmenu').on("click", function () { + $(".docs-tree-list").slideToggle(); + }); +}); \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/core/abp.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/core/abp.js new file mode 100644 index 0000000000..4c87489e22 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/core/abp.js @@ -0,0 +1,546 @@ +var abp = abp || {}; +(function () { + + /* Application paths *****************************************/ + + //Current application root path (including virtual directory if exists). + abp.appPath = abp.appPath || '/'; + + abp.pageLoadTime = new Date(); + + //Converts given path to absolute path using abp.appPath variable. + abp.toAbsAppPath = function (path) { + if (path.indexOf('/') == 0) { + path = path.substring(1); + } + + return abp.appPath + path; + }; + + /* LOGGING ***************************************************/ + //Implements Logging API that provides secure & controlled usage of console.log + + abp.log = abp.log || {}; + + abp.log.levels = { + DEBUG: 1, + INFO: 2, + WARN: 3, + ERROR: 4, + FATAL: 5 + }; + + abp.log.level = abp.log.levels.DEBUG; + + abp.log.log = function (logObject, logLevel) { + if (!window.console || !window.console.log) { + return; + } + + if (logLevel != undefined && logLevel < abp.log.level) { + return; + } + + console.log(logObject); + }; + + abp.log.debug = function (logObject) { + abp.log.log("DEBUG: ", abp.log.levels.DEBUG); + abp.log.log(logObject, abp.log.levels.DEBUG); + }; + + abp.log.info = function (logObject) { + abp.log.log("INFO: ", abp.log.levels.INFO); + abp.log.log(logObject, abp.log.levels.INFO); + }; + + abp.log.warn = function (logObject) { + abp.log.log("WARN: ", abp.log.levels.WARN); + abp.log.log(logObject, abp.log.levels.WARN); + }; + + abp.log.error = function (logObject) { + abp.log.log("ERROR: ", abp.log.levels.ERROR); + abp.log.log(logObject, abp.log.levels.ERROR); + }; + + abp.log.fatal = function (logObject) { + abp.log.log("FATAL: ", abp.log.levels.FATAL); + abp.log.log(logObject, abp.log.levels.FATAL); + }; + + /* LOCALIZATION ***********************************************/ + + abp.localization = abp.localization || {}; + + abp.localization.values = {}; + + abp.localization.localize = function (key, sourceName) { + sourceName = sourceName || abp.localization.defaultResourceName; + + var source = abp.localization.values[sourceName]; + + if (!source) { + abp.log.warn('Could not find localization source: ' + sourceName); + return key; + } + + var value = source[key]; + if (value == undefined) { + return key; + } + + var copiedArguments = Array.prototype.slice.call(arguments, 0); + copiedArguments.splice(1, 1); + copiedArguments[0] = value; + + return abp.utils.formatString.apply(this, copiedArguments); + }; + + abp.localization.getResource = function (name) { + return function () { + var copiedArguments = Array.prototype.slice.call(arguments, 0); + copiedArguments.splice(1, 0, name); + return abp.localization.localize.apply(this, copiedArguments); + }; + }; + + abp.localization.defaultResourceName = undefined; + + /* AUTHORIZATION **********************************************/ + + abp.auth = abp.auth || {}; + + abp.auth.policies = abp.auth.policies || {}; + + abp.auth.grantedPolicies = abp.auth.grantedPolicies || {}; + + abp.auth.isGranted = function (policyName) { + return abp.auth.policies[policyName] != undefined && abp.auth.grantedPolicies[policyName] != undefined; + }; + + abp.auth.isAnyGranted = function () { + if (!arguments || arguments.length <= 0) { + return true; + } + + for (var i = 0; i < arguments.length; i++) { + if (abp.auth.isGranted(arguments[i])) { + return true; + } + } + + return false; + }; + + abp.auth.areAllGranted = function () { + if (!arguments || arguments.length <= 0) { + return true; + } + + for (var i = 0; i < arguments.length; i++) { + if (!abp.auth.isGranted(arguments[i])) { + return false; + } + } + + return true; + }; + + abp.auth.tokenCookieName = 'Abp.AuthToken'; + + abp.auth.setToken = function (authToken, expireDate) { + abp.utils.setCookieValue(abp.auth.tokenCookieName, authToken, expireDate, abp.appPath, abp.domain); + }; + + abp.auth.getToken = function () { + return abp.utils.getCookieValue(abp.auth.tokenCookieName); + } + + abp.auth.clearToken = function () { + abp.auth.setToken(); + } + + /* NOTIFICATION *********************************************/ + //Defines Notification API, not implements it + + abp.notify = abp.notify || {}; + + abp.notify.success = function (message, title, options) { + abp.log.warn('abp.notify.success is not implemented!'); + }; + + abp.notify.info = function (message, title, options) { + abp.log.warn('abp.notify.info is not implemented!'); + }; + + abp.notify.warn = function (message, title, options) { + abp.log.warn('abp.notify.warn is not implemented!'); + }; + + abp.notify.error = function (message, title, options) { + abp.log.warn('abp.notify.error is not implemented!'); + }; + + /* MESSAGE **************************************************/ + //Defines Message API, not implements it + + abp.message = abp.message || {}; + + abp.message._showMessage = function (message, title) { + alert((title || '') + ' ' + message); + }; + + abp.message.info = function (message, title) { + abp.log.warn('abp.message.info is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.success = function (message, title) { + abp.log.warn('abp.message.success is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.warn = function (message, title) { + abp.log.warn('abp.message.warn is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.error = function (message, title) { + abp.log.warn('abp.message.error is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.confirm = function (message, titleOrCallback, callback) { + abp.log.warn('abp.message.confirm is not properly implemented!'); + + if (titleOrCallback && !(typeof titleOrCallback == 'string')) { + callback = titleOrCallback; + } + + var result = confirm(message); + callback && callback(result); + }; + + /* UI *******************************************************/ + + abp.ui = abp.ui || {}; + + /* UI BLOCK */ + //Defines UI Block API, not implements it + + abp.ui.block = function (elm) { + abp.log.warn('abp.ui.block is not implemented!'); + }; + + abp.ui.unblock = function (elm) { + abp.log.warn('abp.ui.unblock is not implemented!'); + }; + + /* UI BUSY */ + //Defines UI Busy API, not implements it + + abp.ui.setBusy = function (elm, optionsOrPromise) { + abp.log.warn('abp.ui.setBusy is not implemented!'); + }; + + abp.ui.clearBusy = function (elm) { + abp.log.warn('abp.ui.clearBusy is not implemented!'); + }; + + /* SIMPLE EVENT BUS *****************************************/ + + abp.event = (function () { + + var _callbacks = {}; + + var on = function (eventName, callback) { + if (!_callbacks[eventName]) { + _callbacks[eventName] = []; + } + + _callbacks[eventName].push(callback); + }; + + var off = function (eventName, callback) { + var callbacks = _callbacks[eventName]; + if (!callbacks) { + return; + } + + var index = -1; + for (var i = 0; i < callbacks.length; i++) { + if (callbacks[i] === callback) { + index = i; + break; + } + } + + if (index < 0) { + return; + } + + _callbacks[eventName].splice(index, 1); + }; + + var trigger = function (eventName) { + var callbacks = _callbacks[eventName]; + if (!callbacks || !callbacks.length) { + return; + } + + var args = Array.prototype.slice.call(arguments, 1); + for (var i = 0; i < callbacks.length; i++) { + callbacks[i].apply(this, args); + } + }; + + // Public interface /////////////////////////////////////////////////// + + return { + on: on, + off: off, + trigger: trigger + }; + })(); + + + /* UTILS ***************************************************/ + + abp.utils = abp.utils || {}; + + /* Creates a name namespace. + * Example: + * var taskService = abp.utils.createNamespace(abp, 'services.task'); + * taskService will be equal to abp.services.task + * first argument (root) must be defined first + ************************************************************/ + abp.utils.createNamespace = function (root, ns) { + var parts = ns.split('.'); + for (var i = 0; i < parts.length; i++) { + if (typeof root[parts[i]] == 'undefined') { + root[parts[i]] = {}; + } + + root = root[parts[i]]; + } + + return root; + }; + + /* Find and replaces a string (search) to another string (replacement) in + * given string (str). + * Example: + * abp.utils.replaceAll('This is a test string', 'is', 'X') = 'ThX X a test string' + ************************************************************/ + abp.utils.replaceAll = function (str, search, replacement) { + var fix = search.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); + return str.replace(new RegExp(fix, 'g'), replacement); + }; + + /* Formats a string just like string.format in C#. + * Example: + * abp.utils.formatString('Hello {0}','Tuana') = 'Hello Tuana' + ************************************************************/ + abp.utils.formatString = function () { + if (arguments.length < 1) { + return null; + } + + var str = arguments[0]; + + for (var i = 1; i < arguments.length; i++) { + var placeHolder = '{' + (i - 1) + '}'; + str = abp.utils.replaceAll(str, placeHolder, arguments[i]); + } + + return str; + }; + + abp.utils.toPascalCase = function (str) { + if (!str || !str.length) { + return str; + } + + if (str.length === 1) { + return str.charAt(0).toUpperCase(); + } + + return str.charAt(0).toUpperCase() + str.substr(1); + } + + abp.utils.toCamelCase = function (str) { + if (!str || !str.length) { + return str; + } + + if (str.length === 1) { + return str.charAt(0).toLowerCase(); + } + + return str.charAt(0).toLowerCase() + str.substr(1); + } + + abp.utils.truncateString = function (str, maxLength) { + if (!str || !str.length || str.length <= maxLength) { + return str; + } + + return str.substr(0, maxLength); + }; + + abp.utils.truncateStringWithPostfix = function (str, maxLength, postfix) { + postfix = postfix || '...'; + + if (!str || !str.length || str.length <= maxLength) { + return str; + } + + if (maxLength <= postfix.length) { + return postfix.substr(0, maxLength); + } + + return str.substr(0, maxLength - postfix.length) + postfix; + }; + + abp.utils.isFunction = function (obj) { + return !!(obj && obj.constructor && obj.call && obj.apply); + }; + + /** + * parameterInfos should be an array of { name, value } objects + * where name is query string parameter name and value is it's value. + * includeQuestionMark is true by default. + */ + abp.utils.buildQueryString = function (parameterInfos, includeQuestionMark) { + if (includeQuestionMark === undefined) { + includeQuestionMark = true; + } + + var qs = ''; + + function addSeperator() { + if (!qs.length) { + if (includeQuestionMark) { + qs = qs + '?'; + } + } else { + qs = qs + '&'; + } + } + + for (var i = 0; i < parameterInfos.length; ++i) { + var parameterInfo = parameterInfos[i]; + if (parameterInfo.value === undefined) { + continue; + } + + if (parameterInfo.value === null) { + parameterInfo.value = ''; + } + + addSeperator(); + + if (parameterInfo.value.toJSON && typeof parameterInfo.value.toJSON === "function") { + qs = qs + parameterInfo.name + '=' + encodeURIComponent(parameterInfo.value.toJSON()); + } else if (Array.isArray(parameterInfo.value) && parameterInfo.value.length) { + for (var j = 0; j < parameterInfo.value.length; j++) { + if (j > 0) { + addSeperator(); + } + + qs = qs + parameterInfo.name + '[' + j + ']=' + encodeURIComponent(parameterInfo.value[j]); + } + } else { + qs = qs + parameterInfo.name + '=' + encodeURIComponent(parameterInfo.value); + } + } + + return qs; + } + + /** + * Sets a cookie value for given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @param {string} value + * @param {Date} expireDate (optional). If not specified the cookie will expire at the end of session. + * @param {string} path (optional) + */ + abp.utils.setCookieValue = function (key, value, expireDate, path) { + var cookieValue = encodeURIComponent(key) + '='; + + if (value) { + cookieValue = cookieValue + encodeURIComponent(value); + } + + if (expireDate) { + cookieValue = cookieValue + "; expires=" + expireDate.toUTCString(); + } + + if (path) { + cookieValue = cookieValue + "; path=" + path; + } + + document.cookie = cookieValue; + }; + + /** + * Gets a cookie with given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @returns {string} Cookie value or null + */ + abp.utils.getCookieValue = function (key) { + var equalities = document.cookie.split('; '); + for (var i = 0; i < equalities.length; i++) { + if (!equalities[i]) { + continue; + } + + var splitted = equalities[i].split('='); + if (splitted.length != 2) { + continue; + } + + if (decodeURIComponent(splitted[0]) === key) { + return decodeURIComponent(splitted[1] || ''); + } + } + + return null; + }; + + /** + * Deletes cookie for given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @param {string} path (optional) + */ + abp.utils.deleteCookie = function (key, path) { + var cookieValue = encodeURIComponent(key) + '='; + + cookieValue = cookieValue + "; expires=" + (new Date(new Date().getTime() - 86400000)).toUTCString(); + + if (path) { + cookieValue = cookieValue + "; path=" + path; + } + + document.cookie = cookieValue; + } + + /* SECURITY ***************************************/ + abp.security = abp.security || {}; + abp.security.antiForgery = abp.security.antiForgery || {}; + + abp.security.antiForgery.tokenCookieName = 'XSRF-TOKEN'; + abp.security.antiForgery.tokenHeaderName = 'X-XSRF-TOKEN'; + + abp.security.antiForgery.getToken = function () { + return abp.utils.getCookieValue(abp.security.antiForgery.tokenCookieName); + }; + +})(); \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/jquery/abp.jquery.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/jquery/abp.jquery.js new file mode 100644 index 0000000000..6a84bfbb61 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/abp/jquery/abp.jquery.js @@ -0,0 +1,389 @@ +var abp = abp || {}; +(function($) { + + if (!$) { + throw "abp/jquery library requires the jquery library included to the page!"; + } + + // ABP CORE OVERRIDES ///////////////////////////////////////////////////// + + abp.message._showMessage = function (message, title) { + alert((title || '') + ' ' + message); + + return $.Deferred(function ($dfd) { + $dfd.resolve(); + }); + }; + + abp.message.confirm = function (message, titleOrCallback, callback) { + if (titleOrCallback && !(typeof titleOrCallback == 'string')) { + callback = titleOrCallback; + } + + var result = confirm(message); + callback && callback(result); + + return $.Deferred(function ($dfd) { + $dfd.resolve(result); + }); + }; + + abp.utils.isFunction = function (obj) { + return $.isFunction(obj); + }; + + // JQUERY EXTENSIONS ////////////////////////////////////////////////////// + + $.fn.findWithSelf = function (selector) { + return this.filter(selector).add(this.find(selector)); + }; + + // DOM //////////////////////////////////////////////////////////////////// + + abp.dom = abp.dom || {}; + + abp.dom.onNodeAdded = function (callback) { + abp.event.on('abp.dom.nodeAdded', callback); + }; + + abp.dom.onNodeRemoved = function (callback) { + abp.event.on('abp.dom.nodeRemoved', callback); + }; + + var mutationObserverCallback = function (mutationsList) { + for (var i = 0; i < mutationsList.length; i++) { + var mutation = mutationsList[i]; + if (mutation.type === 'childList') { + if (mutation.addedNodes && mutation.removedNodes.length) { + for (var k = 0; k < mutation.removedNodes.length; k++) { + abp.event.trigger( + 'abp.dom.nodeRemoved', + { + $el: $(mutation.removedNodes[k]) + } + ); + } + } + + if (mutation.addedNodes && mutation.addedNodes.length) { + for (var j = 0; j < mutation.addedNodes.length; j++) { + abp.event.trigger( + 'abp.dom.nodeAdded', + { + $el: $(mutation.addedNodes[j]) + } + ); + } + } + } + } + }; + + new MutationObserver(mutationObserverCallback).observe( + $('body')[0], + { + subtree: true, + childList: true + } + ); + + // AJAX /////////////////////////////////////////////////////////////////// + + abp.ajax = function (userOptions) { + userOptions = userOptions || {}; + + var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); + + options.success = undefined; + options.error = undefined; + + return $.Deferred(function ($dfd) { + $.ajax(options) + .done(function (data, textStatus, jqXHR) { + $dfd.resolve(data); + userOptions.success && userOptions.success(data); + }).fail(function (jqXHR) { + if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { + abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); + } else { + abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); + } + }); + }); + }; + + $.extend(abp.ajax, { + defaultOpts: { + dataType: 'json', + type: 'POST', + contentType: 'application/json', + headers: { + 'X-Requested-With': 'XMLHttpRequest' + } + }, + + defaultError: { + message: 'An error has occurred!', + details: 'Error detail not sent by server.' + }, + + defaultError401: { + message: 'You are not authenticated!', + details: 'You should be authenticated (sign in) in order to perform this operation.' + }, + + defaultError403: { + message: 'You are not authorized!', + details: 'You are not allowed to perform this operation.' + }, + + defaultError404: { + message: 'Resource not found!', + details: 'The resource requested could not found on the server.' + }, + + logError: function (error) { + abp.log.error(error); + }, + + showError: function (error) { + if (error.details) { + return abp.message.error(error.details, error.message); + } else { + return abp.message.error(error.message || abp.ajax.defaultError.message); + } + }, + + handleTargetUrl: function (targetUrl) { + if (!targetUrl) { + location.href = abp.appPath; + } else { + location.href = targetUrl; + } + }, + + handleErrorStatusCode: function (status) { + switch (status) { + case 401: + abp.ajax.handleUnAuthorizedRequest( + abp.ajax.showError(abp.ajax.defaultError401), + abp.appPath + ); + break; + case 403: + abp.ajax.showError(abp.ajax.defaultError403); + break; + case 404: + abp.ajax.showError(abp.ajax.defaultError404); + break; + default: + abp.ajax.showError(abp.ajax.defaultError); + break; + } + }, + + handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { + if (userOptions.abpHandleError !== false) { + abp.ajax.handleErrorStatusCode(jqXHR.status); + } + + $dfd.reject.apply(this, arguments); + userOptions.error && userOptions.error.apply(this, arguments); + }, + + handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { + var messagePromise = null; + + if (userOptions.abpHandleError !== false) { + messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); + } + + abp.ajax.logError(jqXHR.responseJSON.error); + + $dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); + userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); + + if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { + abp.ajax.handleUnAuthorizedRequest(messagePromise); + } + }, + + handleUnAuthorizedRequest: function (messagePromise, targetUrl) { + if (messagePromise) { + messagePromise.done(function () { + abp.ajax.handleTargetUrl(targetUrl); + }); + } else { + abp.ajax.handleTargetUrl(targetUrl); + } + }, + + blockUI: function (options) { + if (options.blockUI) { + if (options.blockUI === true) { //block whole page + abp.ui.setBusy(); + } else { //block an element + abp.ui.setBusy(options.blockUI); + } + } + }, + + unblockUI: function (options) { + if (options.blockUI) { + if (options.blockUI === true) { //unblock whole page + abp.ui.clearBusy(); + } else { //unblock an element + abp.ui.clearBusy(options.blockUI); + } + } + }, + + ajaxSendHandler: function (event, request, settings) { + var token = abp.security.antiForgery.getToken(); + if (!token) { + return; + } + + if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { + request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); + } + } + }); + + $(document).ajaxSend(function (event, request, settings) { + return abp.ajax.ajaxSendHandler(event, request, settings); + }); + + abp.event.on('abp.configurationInitialized', function () { + var l = abp.localization.getResource('AbpUi'); + + abp.ajax.defaultError.message = l('DefaultErrorMessage'); + abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); + abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); + abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); + abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); + abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); + abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); + abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); + }); + + // RESOURCE LOADER //////////////////////////////////////////////////////// + + /* UrlStates enum */ + var UrlStates = { + LOADING: 'LOADING', + LOADED: 'LOADED', + FAILED: 'FAILED' + }; + + /* UrlInfo class */ + function UrlInfo(url) { + this.url = url; + this.state = UrlStates.LOADING; + this.loadCallbacks = []; + this.failCallbacks = []; + } + + UrlInfo.prototype.succeed = function () { + this.state = UrlStates.LOADED; + for (var i = 0; i < this.loadCallbacks.length; i++) { + this.loadCallbacks[i](); + } + }; + + UrlInfo.prototype.failed = function () { + this.state = UrlStates.FAILED; + for (var i = 0; i < this.failCallbacks.length; i++) { + this.failCallbacks[i](); + } + }; + + UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { + switch (this.state) { + case UrlStates.LOADED: + loadCallback && loadCallback(); + break; + case UrlStates.FAILED: + failCallback && failCallback(); + break; + case UrlStates.LOADING: + this.addCallbacks(loadCallback, failCallback); + break; + } + }; + + UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { + loadCallback && this.loadCallbacks.push(loadCallback); + failCallback && this.failCallbacks.push(failCallback); + }; + + /* ResourceLoader API */ + + abp.ResourceLoader = (function () { + + var _urlInfos = {}; + + function getCacheKey(url) { + return url; + } + + function appendTimeToUrl(url) { + + if (url.indexOf('?') < 0) { + url += '?'; + } else { + url += '&'; + } + + url += '_=' + new Date().getTime(); + + return url; + } + + var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { + + var cacheKey = getCacheKey(url); + + var urlInfo = _urlInfos[cacheKey]; + + if (urlInfo) { + urlInfo.handleCallbacks(loadCallback, failCallback); + return; + } + + _urlInfos[cacheKey] = urlInfo = new UrlInfo(url); + urlInfo.addCallbacks(loadCallback, failCallback); + + serverLoader(urlInfo); + }; + + var _loadScript = function (url, loadCallback, failCallback) { + _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { + $.getScript(url) + .done(function () { + urlInfo.succeed(); + }) + .fail(function () { + urlInfo.failed(); + }); + }); + }; + + var _loadStyle = function (url) { + _loadFromUrl(url, undefined, undefined, function (urlInfo) { + + $('', { + rel: 'stylesheet', + type: 'text/css', + href: appendTimeToUrl(url) + }).appendTo('head'); + }); + }; + + return { + loadScript: _loadScript, + loadStyle: _loadStyle + } + })(); + +})(jQuery); \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/css/bootstrap.css b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/css/bootstrap.css new file mode 100644 index 0000000000..7d43e1f107 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/css/bootstrap.css @@ -0,0 +1,8981 @@ +/*! + * Bootstrap v4.1.1 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; +} + +@-ms-viewport { + width: device-width; +} + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +dfn { + font-style: italic; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg:not(:root) { + overflow: hidden; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +.blockquote-footer::before { + content: "\2014 \00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; +} + +.col-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -ms-flex-order: -1; + order: -1; +} + +.order-last { + -ms-flex-order: 13; + order: 13; +} + +.order-0 { + -ms-flex-order: 0; + order: 0; +} + +.order-1 { + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-sm-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -ms-flex-order: -1; + order: -1; + } + .order-sm-last { + -ms-flex-order: 13; + order: 13; + } + .order-sm-0 { + -ms-flex-order: 0; + order: 0; + } + .order-sm-1 { + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-md-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -ms-flex-order: -1; + order: -1; + } + .order-md-last { + -ms-flex-order: 13; + order: 13; + } + .order-md-0 { + -ms-flex-order: 0; + order: 0; + } + .order-md-1 { + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-lg-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -ms-flex-order: -1; + order: -1; + } + .order-lg-last { + -ms-flex-order: 13; + order: 13; + } + .order-lg-0 { + -ms-flex-order: 0; + order: 0; + } + .order-lg-1 { + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: none; + } + .col-xl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -ms-flex-order: -1; + order: -1; + } + .order-xl-last { + -ms-flex-order: 13; + order: 13; + } + .order-xl-0 { + -ms-flex-order: 0; + order: 0; + } + .order-xl-1 { + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 1rem; + background-color: transparent; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table .table { + background-color: #fff; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e; +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #212529; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #32383e; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media screen and (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +select.form-control:not([size]):not([multiple]) { + height: calc(2.25rem + 2px); +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, +.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, +.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, +.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, +.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, +.input-group-lg > .input-group-append > .form-control-plaintext.btn { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(1.8125rem + 2px); +} + +.form-control-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(2.875rem + 2px); +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: -ms-inline-flexbox; + display: inline-flex; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(40, 167, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { + border-color: #28a745; +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated +.custom-select:valid:focus, +.custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip, .was-validated +.custom-select:valid ~ .valid-feedback, +.was-validated +.custom-select:valid ~ .valid-tooltip, +.custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + background-color: #71dd8a; +} + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + background-color: #34ce57; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(220, 53, 69, 0.8); + border-radius: .2rem; +} + +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { + border-color: #dc3545; +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated +.custom-select:invalid:focus, +.custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip, .was-validated +.custom-select:invalid ~ .invalid-feedback, +.was-validated +.custom-select:invalid ~ .invalid-tooltip, +.custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + background-color: #efa2a9; +} + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + background-color: #e4606d; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { + border-color: inherit; +} + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: -ms-flexbox; + display: flex; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: -ms-flexbox; + display: flex; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + .form-inline .form-check { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media screen and (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} + +.btn:hover, .btn:focus { + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { + background-image: none; +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-primary { + color: #007bff; + background-color: transparent; + background-image: none; + border-color: #007bff; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-secondary { + color: #6c757d; + background-color: transparent; + background-image: none; + border-color: #6c757d; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-success { + color: #28a745; + background-color: transparent; + background-image: none; + border-color: #28a745; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + background-color: transparent; + background-image: none; + border-color: #17a2b8; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + background-color: transparent; + background-image: none; + border-color: #ffc107; +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + background-color: transparent; + background-image: none; + border-color: #dc3545; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + background-color: transparent; + background-image: none; + border-color: #f8f9fa; +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + background-color: transparent; + background-image: none; + border-color: #343a40; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-link { + font-weight: 400; + color: #007bff; + background-color: transparent; +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; + background-color: transparent; + border-color: transparent; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + border-color: transparent; + box-shadow: none; +} + +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + transition: opacity 0.15s linear; +} + +@media screen and (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} + +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} + +@media screen and (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropdown-menu-right { + right: 0; + left: auto; +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -ms-flex: 0 1 auto; + flex: 0 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group, +.btn-group-vertical .btn + .btn, +.btn-group-vertical .btn + .btn-group, +.btn-group-vertical .btn-group + .btn, +.btn-group-vertical .btn-group + .btn-group { + margin-left: -1px; +} + +.btn-toolbar { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:first-child { + margin-left: 0; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical .btn, +.btn-group-vertical .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file:focus { + z-index: 3; +} + +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > .custom-file { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; +} + +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: -ms-flexbox; + display: flex; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + background-color: #007bff; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-control-input:active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; +} + +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + position: relative; + margin-bottom: 0; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: #dee2e6; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); +} + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #007bff; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); +} + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +.custom-select::-ms-expand { + opacity: 0; +} + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; +} + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-file-input:focus ~ .custom-file-label::after { + border-color: #80bdff; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: 2.25rem; + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: 1px solid #ced4da; + border-radius: 0 0.25rem 0.25rem 0; +} + +.custom-range { + width: 100%; + padding-left: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-range:focus { + outline: none; +} + +.custom-range::-moz-focus-outer { + border: 0; +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-appearance: none; + appearance: none; +} + +.custom-range::-webkit-slider-thumb:focus { + outline: none; + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -moz-appearance: none; + appearance: none; +} + +.custom-range::-moz-range-thumb:focus { + outline: none; + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + appearance: none; +} + +.custom-range::-ms-thumb:focus { + outline: none; + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +.nav { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #6c757d; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +.nav-fill .nav-item { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar > .container, +.navbar > .container-fluid { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +.navbar-expand { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.navbar-expand .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.card-body { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-deck { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + .card-deck .card { + display: -ms-flexbox; + display: flex; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +.card-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-group { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:first-child .card-img-top, + .card-group > .card:first-child .card-header { + border-top-right-radius: 0; + } + .card-group > .card:first-child .card-img-bottom, + .card-group > .card:first-child .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:last-child .card-img-top, + .card-group > .card:last-child .card-header { + border-top-left-radius: 0; + } + .card-group > .card:last-child .card-img-bottom, + .card-group > .card:last-child .card-footer { + border-bottom-left-radius: 0; + } + .card-group > .card:only-child { + border-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-top, + .card-group > .card:only-child .card-header { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + .card-group > .card:only-child .card-img-bottom, + .card-group > .card:only-child .card-footer { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0; + } + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { + border-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.accordion .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +.accordion .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +.accordion .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.accordion .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.page-link:not(:disabled):not(.disabled) { + cursor: pointer; +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #007bff; +} + +.badge-primary[href]:hover, .badge-primary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #0062cc; +} + +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +.badge-secondary[href]:hover, .badge-secondary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #545b62; +} + +.badge-success { + color: #fff; + background-color: #28a745; +} + +.badge-success[href]:hover, .badge-success[href]:focus { + color: #fff; + text-decoration: none; + background-color: #1e7e34; +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +.badge-info[href]:hover, .badge-info[href]:focus { + color: #fff; + text-decoration: none; + background-color: #117a8b; +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +.badge-warning[href]:hover, .badge-warning[href]:focus { + color: #212529; + text-decoration: none; + background-color: #d39e00; +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +.badge-danger[href]:hover, .badge-danger[href]:focus { + color: #fff; + text-decoration: none; + background-color: #bd2130; +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +.badge-light[href]:hover, .badge-light[href]:focus { + color: #212529; + text-decoration: none; + background-color: #dae0e5; +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} + +.badge-dark[href]:hover, .badge-dark[href]:focus { + color: #fff; + text-decoration: none; + background-color: #1d2124; +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-primary hr { + border-top-color: #9fcdff; +} + +.alert-primary .alert-link { + color: #002752; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +.alert-secondary .alert-link { + color: #202326; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-success hr { + border-top-color: #b1dfbb; +} + +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-info hr { + border-top-color: #abdde5; +} + +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-warning hr { + border-top-color: #ffe8a1; +} + +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-danger hr { + border-top-color: #f1b0b7; +} + +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.alert-dark hr { + border-top-color: #b9bbbe; +} + +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + transition: width 0.6s ease; +} + +@media screen and (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +.media { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; +} + +.media-body { + -ms-flex: 1; + flex: 1; +} + +.list-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.list-group-item:hover, .list-group-item:focus { + z-index: 1; + text-decoration: none; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:hover, .close:focus { + color: #000; + text-decoration: none; + opacity: .75; +} + +.close:not(:disabled):not(.disabled) { + cursor: pointer; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; +} + +.modal-open { + overflow: hidden; +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -25%); + transform: translate(0, -25%); +} + +@media screen and (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} + +.modal.show .modal-dialog { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); +} + +.modal-dialog-centered { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (0.5rem * 2)); +} + +.modal-content { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #e9ecef; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +.modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #e9ecef; +} + +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg { + max-width: 800px; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, +.bs-popover-top .arrow::after, +.bs-popover-auto[x-placement^="top"] .arrow::after { + border-width: 0.5rem 0.5rem 0; +} + +.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + + +.bs-popover-top .arrow::after, +.bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 1px; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, +.bs-popover-right .arrow::after, +.bs-popover-auto[x-placement^="right"] .arrow::after { + border-width: 0.5rem 0.5rem 0.5rem 0; +} + +.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + + +.bs-popover-right .arrow::after, +.bs-popover-auto[x-placement^="right"] .arrow::after { + left: 1px; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { + top: calc((0.5rem + 1px) * -1); +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, +.bs-popover-bottom .arrow::after, +.bs-popover-auto[x-placement^="bottom"] .arrow::after { + border-width: 0 0.5rem 0.5rem 0.5rem; +} + +.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + + +.bs-popover-bottom .arrow::after, +.bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 1px; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, +.bs-popover-left .arrow::after, +.bs-popover-auto[x-placement^="left"] .arrow::after { + border-width: 0.5rem 0 0.5rem 0.5rem; +} + +.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, 0.25); +} + + +.bs-popover-left .arrow::after, +.bs-popover-auto[x-placement^="left"] .arrow::after { + right: 1px; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-item { + position: relative; + display: none; + -ms-flex-align: center; + align-items: center; + width: 100%; + transition: -webkit-transform 0.6s ease; + transition: transform 0.6s ease; + transition: transform 0.6s ease, -webkit-transform 0.6s ease; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; +} + +@media screen and (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; +} + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.carousel-item-next, +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-next, + .active.carousel-item-right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.carousel-item-prev, +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-item-prev, + .active.carousel-item-left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-duration: .6s; + transition-property: opacity; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + opacity: 1; +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + opacity: 0; +} + +.carousel-fade .carousel-item-next, +.carousel-fade .carousel-item-prev, +.carousel-fade .carousel-item.active, +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-prev { + -webkit-transform: translateX(0); + transform: translateX(0); +} + +@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { + .carousel-fade .carousel-item-next, + .carousel-fade .carousel-item-prev, + .carousel-fade .carousel-item.active, + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-prev { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + position: relative; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: rgba(255, 255, 255, 0.5); +} + +.carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #007bff !important; +} + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +.bg-secondary { + background-color: #6c757d !important; +} + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #dee2e6 !important; +} + +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #007bff !important; +} + +.border-secondary { + border-color: #6c757d !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-print-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.857143%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; +} + +.flex-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; +} + +.flex-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; +} + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; +} + +.justify-content-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-sm-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-sm-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-sm-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-md-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-md-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-md-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-md-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-lg-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-lg-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-lg-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-xl-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-xl-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-xl-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !important; + } +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #007bff !important; +} + +a.text-primary:hover, a.text-primary:focus { + color: #0062cc !important; +} + +.text-secondary { + color: #6c757d !important; +} + +a.text-secondary:hover, a.text-secondary:focus { + color: #545b62 !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:hover, a.text-success:focus { + color: #1e7e34 !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:hover, a.text-info:focus { + color: #117a8b !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:hover, a.text-warning:focus { + color: #d39e00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:hover, a.text-danger:focus { + color: #bd2130 !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:hover, a.text-light:focus { + color: #dae0e5 !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:hover, a.text-dark:focus { + color: #1d2124 !important; +} + +.text-body { + color: #212529 !important; +} + +.text-muted { + color: #6c757d !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a:not(.btn) { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + body { + min-width: 992px !important; + } + .container { + min-width: 992px !important; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + .table-dark { + color: inherit; + } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/js/bootstrap.bundle.js b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/js/bootstrap.bundle.js new file mode 100644 index 0000000000..adb3400738 --- /dev/null +++ b/abp_io/src/Volo.AbpWebSite.Web/wwwroot/libs/bootstrap/js/bootstrap.bundle.js @@ -0,0 +1,6444 @@ +/*! + * Bootstrap v4.1.1 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery')) : + typeof define === 'function' && define.amd ? define(['exports', 'jquery'], factory) : + (factory((global.bootstrap = {}),global.jQuery)); +}(this, (function (exports,$) { 'use strict'; + + $ = $ && $.hasOwnProperty('default') ? $['default'] : $; + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; + } + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + var ownKeys = Object.keys(source); + + if (typeof Object.getOwnPropertySymbols === 'function') { + ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { + return Object.getOwnPropertyDescriptor(source, sym).enumerable; + })); + } + + ownKeys.forEach(function (key) { + _defineProperty(target, key, source[key]); + }); + } + + return target; + } + + function _inheritsLoose(subClass, superClass) { + subClass.prototype = Object.create(superClass.prototype); + subClass.prototype.constructor = subClass; + subClass.__proto__ = superClass; + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): util.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Util = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Private TransitionEnd Helpers + * ------------------------------------------------------------------------ + */ + var TRANSITION_END = 'transitionend'; + var MAX_UID = 1000000; + var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) + + function toType(obj) { + return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase(); + } + + function getSpecialTransitionEndEvent() { + return { + bindType: TRANSITION_END, + delegateType: TRANSITION_END, + handle: function handle(event) { + if ($$$1(event.target).is(this)) { + return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params + } + + return undefined; // eslint-disable-line no-undefined + } + }; + } + + function transitionEndEmulator(duration) { + var _this = this; + + var called = false; + $$$1(this).one(Util.TRANSITION_END, function () { + called = true; + }); + setTimeout(function () { + if (!called) { + Util.triggerTransitionEnd(_this); + } + }, duration); + return this; + } + + function setTransitionEndSupport() { + $$$1.fn.emulateTransitionEnd = transitionEndEmulator; + $$$1.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); + } + /** + * -------------------------------------------------------------------------- + * Public Util Api + * -------------------------------------------------------------------------- + */ + + + var Util = { + TRANSITION_END: 'bsTransitionEnd', + getUID: function getUID(prefix) { + do { + // eslint-disable-next-line no-bitwise + prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here + } while (document.getElementById(prefix)); + + return prefix; + }, + getSelectorFromElement: function getSelectorFromElement(element) { + var selector = element.getAttribute('data-target'); + + if (!selector || selector === '#') { + selector = element.getAttribute('href') || ''; + } + + try { + var $selector = $$$1(document).find(selector); + return $selector.length > 0 ? selector : null; + } catch (err) { + return null; + } + }, + getTransitionDurationFromElement: function getTransitionDurationFromElement(element) { + if (!element) { + return 0; + } // Get transition-duration of the element + + + var transitionDuration = $$$1(element).css('transition-duration'); + var floatTransitionDuration = parseFloat(transitionDuration); // Return 0 if element or transition duration is not found + + if (!floatTransitionDuration) { + return 0; + } // If multiple durations are defined, take the first + + + transitionDuration = transitionDuration.split(',')[0]; + return parseFloat(transitionDuration) * MILLISECONDS_MULTIPLIER; + }, + reflow: function reflow(element) { + return element.offsetHeight; + }, + triggerTransitionEnd: function triggerTransitionEnd(element) { + $$$1(element).trigger(TRANSITION_END); + }, + // TODO: Remove in v5 + supportsTransitionEnd: function supportsTransitionEnd() { + return Boolean(TRANSITION_END); + }, + isElement: function isElement(obj) { + return (obj[0] || obj).nodeType; + }, + typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) { + for (var property in configTypes) { + if (Object.prototype.hasOwnProperty.call(configTypes, property)) { + var expectedTypes = configTypes[property]; + var value = config[property]; + var valueType = value && Util.isElement(value) ? 'element' : toType(value); + + if (!new RegExp(expectedTypes).test(valueType)) { + throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\".")); + } + } + } + } + }; + setTransitionEndSupport(); + return Util; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): alert.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Alert = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'alert'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.alert'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var Selector = { + DISMISS: '[data-dismiss="alert"]' + }; + var Event = { + CLOSE: "close" + EVENT_KEY, + CLOSED: "closed" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + ALERT: 'alert', + FADE: 'fade', + SHOW: 'show' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Alert = + /*#__PURE__*/ + function () { + function Alert(element) { + this._element = element; + } // Getters + + + var _proto = Alert.prototype; + + // Public + _proto.close = function close(element) { + var rootElement = this._element; + + if (element) { + rootElement = this._getRootElement(element); + } + + var customEvent = this._triggerCloseEvent(rootElement); + + if (customEvent.isDefaultPrevented()) { + return; + } + + this._removeElement(rootElement); + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + this._element = null; + }; // Private + + + _proto._getRootElement = function _getRootElement(element) { + var selector = Util.getSelectorFromElement(element); + var parent = false; + + if (selector) { + parent = $$$1(selector)[0]; + } + + if (!parent) { + parent = $$$1(element).closest("." + ClassName.ALERT)[0]; + } + + return parent; + }; + + _proto._triggerCloseEvent = function _triggerCloseEvent(element) { + var closeEvent = $$$1.Event(Event.CLOSE); + $$$1(element).trigger(closeEvent); + return closeEvent; + }; + + _proto._removeElement = function _removeElement(element) { + var _this = this; + + $$$1(element).removeClass(ClassName.SHOW); + + if (!$$$1(element).hasClass(ClassName.FADE)) { + this._destroyElement(element); + + return; + } + + var transitionDuration = Util.getTransitionDurationFromElement(element); + $$$1(element).one(Util.TRANSITION_END, function (event) { + return _this._destroyElement(element, event); + }).emulateTransitionEnd(transitionDuration); + }; + + _proto._destroyElement = function _destroyElement(element) { + $$$1(element).detach().trigger(Event.CLOSED).remove(); + }; // Static + + + Alert._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $element = $$$1(this); + var data = $element.data(DATA_KEY); + + if (!data) { + data = new Alert(this); + $element.data(DATA_KEY, data); + } + + if (config === 'close') { + data[config](this); + } + }); + }; + + Alert._handleDismiss = function _handleDismiss(alertInstance) { + return function (event) { + if (event) { + event.preventDefault(); + } + + alertInstance.close(this); + }; + }; + + _createClass(Alert, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }]); + + return Alert; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert())); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Alert._jQueryInterface; + $$$1.fn[NAME].Constructor = Alert; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Alert._jQueryInterface; + }; + + return Alert; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): button.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Button = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'button'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.button'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var ClassName = { + ACTIVE: 'active', + BUTTON: 'btn', + FOCUS: 'focus' + }; + var Selector = { + DATA_TOGGLE_CARROT: '[data-toggle^="button"]', + DATA_TOGGLE: '[data-toggle="buttons"]', + INPUT: 'input', + ACTIVE: '.active', + BUTTON: '.btn' + }; + var Event = { + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY, + FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY + DATA_API_KEY + " " + ("blur" + EVENT_KEY + DATA_API_KEY) + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Button = + /*#__PURE__*/ + function () { + function Button(element) { + this._element = element; + } // Getters + + + var _proto = Button.prototype; + + // Public + _proto.toggle = function toggle() { + var triggerChangeEvent = true; + var addAriaPressed = true; + var rootElement = $$$1(this._element).closest(Selector.DATA_TOGGLE)[0]; + + if (rootElement) { + var input = $$$1(this._element).find(Selector.INPUT)[0]; + + if (input) { + if (input.type === 'radio') { + if (input.checked && $$$1(this._element).hasClass(ClassName.ACTIVE)) { + triggerChangeEvent = false; + } else { + var activeElement = $$$1(rootElement).find(Selector.ACTIVE)[0]; + + if (activeElement) { + $$$1(activeElement).removeClass(ClassName.ACTIVE); + } + } + } + + if (triggerChangeEvent) { + if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) { + return; + } + + input.checked = !$$$1(this._element).hasClass(ClassName.ACTIVE); + $$$1(input).trigger('change'); + } + + input.focus(); + addAriaPressed = false; + } + } + + if (addAriaPressed) { + this._element.setAttribute('aria-pressed', !$$$1(this._element).hasClass(ClassName.ACTIVE)); + } + + if (triggerChangeEvent) { + $$$1(this._element).toggleClass(ClassName.ACTIVE); + } + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + this._element = null; + }; // Static + + + Button._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + if (!data) { + data = new Button(this); + $$$1(this).data(DATA_KEY, data); + } + + if (config === 'toggle') { + data[config](); + } + }); + }; + + _createClass(Button, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }]); + + return Button; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) { + event.preventDefault(); + var button = event.target; + + if (!$$$1(button).hasClass(ClassName.BUTTON)) { + button = $$$1(button).closest(Selector.BUTTON); + } + + Button._jQueryInterface.call($$$1(button), 'toggle'); + }).on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) { + var button = $$$1(event.target).closest(Selector.BUTTON)[0]; + $$$1(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type)); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Button._jQueryInterface; + $$$1.fn[NAME].Constructor = Button; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Button._jQueryInterface; + }; + + return Button; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): carousel.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Carousel = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'carousel'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.carousel'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key + + var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key + + var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch + + var Default = { + interval: 5000, + keyboard: true, + slide: false, + pause: 'hover', + wrap: true + }; + var DefaultType = { + interval: '(number|boolean)', + keyboard: 'boolean', + slide: '(boolean|string)', + pause: '(string|boolean)', + wrap: 'boolean' + }; + var Direction = { + NEXT: 'next', + PREV: 'prev', + LEFT: 'left', + RIGHT: 'right' + }; + var Event = { + SLIDE: "slide" + EVENT_KEY, + SLID: "slid" + EVENT_KEY, + KEYDOWN: "keydown" + EVENT_KEY, + MOUSEENTER: "mouseenter" + EVENT_KEY, + MOUSELEAVE: "mouseleave" + EVENT_KEY, + TOUCHEND: "touchend" + EVENT_KEY, + LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + CAROUSEL: 'carousel', + ACTIVE: 'active', + SLIDE: 'slide', + RIGHT: 'carousel-item-right', + LEFT: 'carousel-item-left', + NEXT: 'carousel-item-next', + PREV: 'carousel-item-prev', + ITEM: 'carousel-item' + }; + var Selector = { + ACTIVE: '.active', + ACTIVE_ITEM: '.active.carousel-item', + ITEM: '.carousel-item', + NEXT_PREV: '.carousel-item-next, .carousel-item-prev', + INDICATORS: '.carousel-indicators', + DATA_SLIDE: '[data-slide], [data-slide-to]', + DATA_RIDE: '[data-ride="carousel"]' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Carousel = + /*#__PURE__*/ + function () { + function Carousel(element, config) { + this._items = null; + this._interval = null; + this._activeElement = null; + this._isPaused = false; + this._isSliding = false; + this.touchTimeout = null; + this._config = this._getConfig(config); + this._element = $$$1(element)[0]; + this._indicatorsElement = $$$1(this._element).find(Selector.INDICATORS)[0]; + + this._addEventListeners(); + } // Getters + + + var _proto = Carousel.prototype; + + // Public + _proto.next = function next() { + if (!this._isSliding) { + this._slide(Direction.NEXT); + } + }; + + _proto.nextWhenVisible = function nextWhenVisible() { + // Don't call next when the page isn't visible + // or the carousel or its parent isn't visible + if (!document.hidden && $$$1(this._element).is(':visible') && $$$1(this._element).css('visibility') !== 'hidden') { + this.next(); + } + }; + + _proto.prev = function prev() { + if (!this._isSliding) { + this._slide(Direction.PREV); + } + }; + + _proto.pause = function pause(event) { + if (!event) { + this._isPaused = true; + } + + if ($$$1(this._element).find(Selector.NEXT_PREV)[0]) { + Util.triggerTransitionEnd(this._element); + this.cycle(true); + } + + clearInterval(this._interval); + this._interval = null; + }; + + _proto.cycle = function cycle(event) { + if (!event) { + this._isPaused = false; + } + + if (this._interval) { + clearInterval(this._interval); + this._interval = null; + } + + if (this._config.interval && !this._isPaused) { + this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval); + } + }; + + _proto.to = function to(index) { + var _this = this; + + this._activeElement = $$$1(this._element).find(Selector.ACTIVE_ITEM)[0]; + + var activeIndex = this._getItemIndex(this._activeElement); + + if (index > this._items.length - 1 || index < 0) { + return; + } + + if (this._isSliding) { + $$$1(this._element).one(Event.SLID, function () { + return _this.to(index); + }); + return; + } + + if (activeIndex === index) { + this.pause(); + this.cycle(); + return; + } + + var direction = index > activeIndex ? Direction.NEXT : Direction.PREV; + + this._slide(direction, this._items[index]); + }; + + _proto.dispose = function dispose() { + $$$1(this._element).off(EVENT_KEY); + $$$1.removeData(this._element, DATA_KEY); + this._items = null; + this._config = null; + this._element = null; + this._interval = null; + this._isPaused = null; + this._isSliding = null; + this._activeElement = null; + this._indicatorsElement = null; + }; // Private + + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, config); + Util.typeCheckConfig(NAME, config, DefaultType); + return config; + }; + + _proto._addEventListeners = function _addEventListeners() { + var _this2 = this; + + if (this._config.keyboard) { + $$$1(this._element).on(Event.KEYDOWN, function (event) { + return _this2._keydown(event); + }); + } + + if (this._config.pause === 'hover') { + $$$1(this._element).on(Event.MOUSEENTER, function (event) { + return _this2.pause(event); + }).on(Event.MOUSELEAVE, function (event) { + return _this2.cycle(event); + }); + + if ('ontouchstart' in document.documentElement) { + // If it's a touch-enabled device, mouseenter/leave are fired as + // part of the mouse compatibility events on first tap - the carousel + // would stop cycling until user tapped out of it; + // here, we listen for touchend, explicitly pause the carousel + // (as if it's the second time we tap on it, mouseenter compat event + // is NOT fired) and after a timeout (to allow for mouse compatibility + // events to fire) we explicitly restart cycling + $$$1(this._element).on(Event.TOUCHEND, function () { + _this2.pause(); + + if (_this2.touchTimeout) { + clearTimeout(_this2.touchTimeout); + } + + _this2.touchTimeout = setTimeout(function (event) { + return _this2.cycle(event); + }, TOUCHEVENT_COMPAT_WAIT + _this2._config.interval); + }); + } + } + }; + + _proto._keydown = function _keydown(event) { + if (/input|textarea/i.test(event.target.tagName)) { + return; + } + + switch (event.which) { + case ARROW_LEFT_KEYCODE: + event.preventDefault(); + this.prev(); + break; + + case ARROW_RIGHT_KEYCODE: + event.preventDefault(); + this.next(); + break; + + default: + } + }; + + _proto._getItemIndex = function _getItemIndex(element) { + this._items = $$$1.makeArray($$$1(element).parent().find(Selector.ITEM)); + return this._items.indexOf(element); + }; + + _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) { + var isNextDirection = direction === Direction.NEXT; + var isPrevDirection = direction === Direction.PREV; + + var activeIndex = this._getItemIndex(activeElement); + + var lastItemIndex = this._items.length - 1; + var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex; + + if (isGoingToWrap && !this._config.wrap) { + return activeElement; + } + + var delta = direction === Direction.PREV ? -1 : 1; + var itemIndex = (activeIndex + delta) % this._items.length; + return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex]; + }; + + _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) { + var targetIndex = this._getItemIndex(relatedTarget); + + var fromIndex = this._getItemIndex($$$1(this._element).find(Selector.ACTIVE_ITEM)[0]); + + var slideEvent = $$$1.Event(Event.SLIDE, { + relatedTarget: relatedTarget, + direction: eventDirectionName, + from: fromIndex, + to: targetIndex + }); + $$$1(this._element).trigger(slideEvent); + return slideEvent; + }; + + _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) { + if (this._indicatorsElement) { + $$$1(this._indicatorsElement).find(Selector.ACTIVE).removeClass(ClassName.ACTIVE); + + var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)]; + + if (nextIndicator) { + $$$1(nextIndicator).addClass(ClassName.ACTIVE); + } + } + }; + + _proto._slide = function _slide(direction, element) { + var _this3 = this; + + var activeElement = $$$1(this._element).find(Selector.ACTIVE_ITEM)[0]; + + var activeElementIndex = this._getItemIndex(activeElement); + + var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement); + + var nextElementIndex = this._getItemIndex(nextElement); + + var isCycling = Boolean(this._interval); + var directionalClassName; + var orderClassName; + var eventDirectionName; + + if (direction === Direction.NEXT) { + directionalClassName = ClassName.LEFT; + orderClassName = ClassName.NEXT; + eventDirectionName = Direction.LEFT; + } else { + directionalClassName = ClassName.RIGHT; + orderClassName = ClassName.PREV; + eventDirectionName = Direction.RIGHT; + } + + if (nextElement && $$$1(nextElement).hasClass(ClassName.ACTIVE)) { + this._isSliding = false; + return; + } + + var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName); + + if (slideEvent.isDefaultPrevented()) { + return; + } + + if (!activeElement || !nextElement) { + // Some weirdness is happening, so we bail + return; + } + + this._isSliding = true; + + if (isCycling) { + this.pause(); + } + + this._setActiveIndicatorElement(nextElement); + + var slidEvent = $$$1.Event(Event.SLID, { + relatedTarget: nextElement, + direction: eventDirectionName, + from: activeElementIndex, + to: nextElementIndex + }); + + if ($$$1(this._element).hasClass(ClassName.SLIDE)) { + $$$1(nextElement).addClass(orderClassName); + Util.reflow(nextElement); + $$$1(activeElement).addClass(directionalClassName); + $$$1(nextElement).addClass(directionalClassName); + var transitionDuration = Util.getTransitionDurationFromElement(activeElement); + $$$1(activeElement).one(Util.TRANSITION_END, function () { + $$$1(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName.ACTIVE); + $$$1(activeElement).removeClass(ClassName.ACTIVE + " " + orderClassName + " " + directionalClassName); + _this3._isSliding = false; + setTimeout(function () { + return $$$1(_this3._element).trigger(slidEvent); + }, 0); + }).emulateTransitionEnd(transitionDuration); + } else { + $$$1(activeElement).removeClass(ClassName.ACTIVE); + $$$1(nextElement).addClass(ClassName.ACTIVE); + this._isSliding = false; + $$$1(this._element).trigger(slidEvent); + } + + if (isCycling) { + this.cycle(); + } + }; // Static + + + Carousel._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + var _config = _objectSpread({}, Default, $$$1(this).data()); + + if (typeof config === 'object') { + _config = _objectSpread({}, _config, config); + } + + var action = typeof config === 'string' ? config : _config.slide; + + if (!data) { + data = new Carousel(this, _config); + $$$1(this).data(DATA_KEY, data); + } + + if (typeof config === 'number') { + data.to(config); + } else if (typeof action === 'string') { + if (typeof data[action] === 'undefined') { + throw new TypeError("No method named \"" + action + "\""); + } + + data[action](); + } else if (_config.interval) { + data.pause(); + data.cycle(); + } + }); + }; + + Carousel._dataApiClickHandler = function _dataApiClickHandler(event) { + var selector = Util.getSelectorFromElement(this); + + if (!selector) { + return; + } + + var target = $$$1(selector)[0]; + + if (!target || !$$$1(target).hasClass(ClassName.CAROUSEL)) { + return; + } + + var config = _objectSpread({}, $$$1(target).data(), $$$1(this).data()); + + var slideIndex = this.getAttribute('data-slide-to'); + + if (slideIndex) { + config.interval = false; + } + + Carousel._jQueryInterface.call($$$1(target), config); + + if (slideIndex) { + $$$1(target).data(DATA_KEY).to(slideIndex); + } + + event.preventDefault(); + }; + + _createClass(Carousel, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }]); + + return Carousel; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler); + $$$1(window).on(Event.LOAD_DATA_API, function () { + $$$1(Selector.DATA_RIDE).each(function () { + var $carousel = $$$1(this); + + Carousel._jQueryInterface.call($carousel, $carousel.data()); + }); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Carousel._jQueryInterface; + $$$1.fn[NAME].Constructor = Carousel; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Carousel._jQueryInterface; + }; + + return Carousel; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): collapse.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Collapse = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'collapse'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.collapse'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var Default = { + toggle: true, + parent: '' + }; + var DefaultType = { + toggle: 'boolean', + parent: '(string|element)' + }; + var Event = { + SHOW: "show" + EVENT_KEY, + SHOWN: "shown" + EVENT_KEY, + HIDE: "hide" + EVENT_KEY, + HIDDEN: "hidden" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + SHOW: 'show', + COLLAPSE: 'collapse', + COLLAPSING: 'collapsing', + COLLAPSED: 'collapsed' + }; + var Dimension = { + WIDTH: 'width', + HEIGHT: 'height' + }; + var Selector = { + ACTIVES: '.show, .collapsing', + DATA_TOGGLE: '[data-toggle="collapse"]' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Collapse = + /*#__PURE__*/ + function () { + function Collapse(element, config) { + this._isTransitioning = false; + this._element = element; + this._config = this._getConfig(config); + this._triggerArray = $$$1.makeArray($$$1("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]"))); + var tabToggles = $$$1(Selector.DATA_TOGGLE); + + for (var i = 0; i < tabToggles.length; i++) { + var elem = tabToggles[i]; + var selector = Util.getSelectorFromElement(elem); + + if (selector !== null && $$$1(selector).filter(element).length > 0) { + this._selector = selector; + + this._triggerArray.push(elem); + } + } + + this._parent = this._config.parent ? this._getParent() : null; + + if (!this._config.parent) { + this._addAriaAndCollapsedClass(this._element, this._triggerArray); + } + + if (this._config.toggle) { + this.toggle(); + } + } // Getters + + + var _proto = Collapse.prototype; + + // Public + _proto.toggle = function toggle() { + if ($$$1(this._element).hasClass(ClassName.SHOW)) { + this.hide(); + } else { + this.show(); + } + }; + + _proto.show = function show() { + var _this = this; + + if (this._isTransitioning || $$$1(this._element).hasClass(ClassName.SHOW)) { + return; + } + + var actives; + var activesData; + + if (this._parent) { + actives = $$$1.makeArray($$$1(this._parent).find(Selector.ACTIVES).filter("[data-parent=\"" + this._config.parent + "\"]")); + + if (actives.length === 0) { + actives = null; + } + } + + if (actives) { + activesData = $$$1(actives).not(this._selector).data(DATA_KEY); + + if (activesData && activesData._isTransitioning) { + return; + } + } + + var startEvent = $$$1.Event(Event.SHOW); + $$$1(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + if (actives) { + Collapse._jQueryInterface.call($$$1(actives).not(this._selector), 'hide'); + + if (!activesData) { + $$$1(actives).data(DATA_KEY, null); + } + } + + var dimension = this._getDimension(); + + $$$1(this._element).removeClass(ClassName.COLLAPSE).addClass(ClassName.COLLAPSING); + this._element.style[dimension] = 0; + + if (this._triggerArray.length > 0) { + $$$1(this._triggerArray).removeClass(ClassName.COLLAPSED).attr('aria-expanded', true); + } + + this.setTransitioning(true); + + var complete = function complete() { + $$$1(_this._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).addClass(ClassName.SHOW); + _this._element.style[dimension] = ''; + + _this.setTransitioning(false); + + $$$1(_this._element).trigger(Event.SHOWN); + }; + + var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); + var scrollSize = "scroll" + capitalizedDimension; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $$$1(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + this._element.style[dimension] = this._element[scrollSize] + "px"; + }; + + _proto.hide = function hide() { + var _this2 = this; + + if (this._isTransitioning || !$$$1(this._element).hasClass(ClassName.SHOW)) { + return; + } + + var startEvent = $$$1.Event(Event.HIDE); + $$$1(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + var dimension = this._getDimension(); + + this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px"; + Util.reflow(this._element); + $$$1(this._element).addClass(ClassName.COLLAPSING).removeClass(ClassName.COLLAPSE).removeClass(ClassName.SHOW); + + if (this._triggerArray.length > 0) { + for (var i = 0; i < this._triggerArray.length; i++) { + var trigger = this._triggerArray[i]; + var selector = Util.getSelectorFromElement(trigger); + + if (selector !== null) { + var $elem = $$$1(selector); + + if (!$elem.hasClass(ClassName.SHOW)) { + $$$1(trigger).addClass(ClassName.COLLAPSED).attr('aria-expanded', false); + } + } + } + } + + this.setTransitioning(true); + + var complete = function complete() { + _this2.setTransitioning(false); + + $$$1(_this2._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).trigger(Event.HIDDEN); + }; + + this._element.style[dimension] = ''; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $$$1(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + }; + + _proto.setTransitioning = function setTransitioning(isTransitioning) { + this._isTransitioning = isTransitioning; + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + this._config = null; + this._parent = null; + this._element = null; + this._triggerArray = null; + this._isTransitioning = null; + }; // Private + + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, config); + config.toggle = Boolean(config.toggle); // Coerce string values + + Util.typeCheckConfig(NAME, config, DefaultType); + return config; + }; + + _proto._getDimension = function _getDimension() { + var hasWidth = $$$1(this._element).hasClass(Dimension.WIDTH); + return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT; + }; + + _proto._getParent = function _getParent() { + var _this3 = this; + + var parent = null; + + if (Util.isElement(this._config.parent)) { + parent = this._config.parent; // It's a jQuery object + + if (typeof this._config.parent.jquery !== 'undefined') { + parent = this._config.parent[0]; + } + } else { + parent = $$$1(this._config.parent)[0]; + } + + var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]"; + $$$1(parent).find(selector).each(function (i, element) { + _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]); + }); + return parent; + }; + + _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) { + if (element) { + var isOpen = $$$1(element).hasClass(ClassName.SHOW); + + if (triggerArray.length > 0) { + $$$1(triggerArray).toggleClass(ClassName.COLLAPSED, !isOpen).attr('aria-expanded', isOpen); + } + } + }; // Static + + + Collapse._getTargetFromElement = function _getTargetFromElement(element) { + var selector = Util.getSelectorFromElement(element); + return selector ? $$$1(selector)[0] : null; + }; + + Collapse._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $this = $$$1(this); + var data = $this.data(DATA_KEY); + + var _config = _objectSpread({}, Default, $this.data(), typeof config === 'object' && config ? config : {}); + + if (!data && _config.toggle && /show|hide/.test(config)) { + _config.toggle = false; + } + + if (!data) { + data = new Collapse(this, _config); + $this.data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Collapse, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }]); + + return Collapse; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) { + // preventDefault only for elements (which change the URL) not inside the collapsible element + if (event.currentTarget.tagName === 'A') { + event.preventDefault(); + } + + var $trigger = $$$1(this); + var selector = Util.getSelectorFromElement(this); + $$$1(selector).each(function () { + var $target = $$$1(this); + var data = $target.data(DATA_KEY); + var config = data ? 'toggle' : $trigger.data(); + + Collapse._jQueryInterface.call($target, config); + }); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Collapse._jQueryInterface; + $$$1.fn[NAME].Constructor = Collapse; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Collapse._jQueryInterface; + }; + + return Collapse; + }($); + + /**! + * @fileOverview Kickass library to create and place poppers near their reference elements. + * @version 1.14.3 + * @license + * Copyright (c) 2016 Federico Zivolo and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined'; + + var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox']; + var timeoutDuration = 0; + for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) { + if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) { + timeoutDuration = 1; + break; + } + } + + function microtaskDebounce(fn) { + var called = false; + return function () { + if (called) { + return; + } + called = true; + window.Promise.resolve().then(function () { + called = false; + fn(); + }); + }; + } + + function taskDebounce(fn) { + var scheduled = false; + return function () { + if (!scheduled) { + scheduled = true; + setTimeout(function () { + scheduled = false; + fn(); + }, timeoutDuration); + } + }; + } + + var supportsMicroTasks = isBrowser && window.Promise; + + /** + * Create a debounced version of a method, that's asynchronously deferred + * but called in the minimum time possible. + * + * @method + * @memberof Popper.Utils + * @argument {Function} fn + * @returns {Function} + */ + var debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce; + + /** + * Check if the given variable is a function + * @method + * @memberof Popper.Utils + * @argument {Any} functionToCheck - variable to check + * @returns {Boolean} answer to: is a function? + */ + function isFunction(functionToCheck) { + var getType = {}; + return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]'; + } + + /** + * Get CSS computed property of the given element + * @method + * @memberof Popper.Utils + * @argument {Eement} element + * @argument {String} property + */ + function getStyleComputedProperty(element, property) { + if (element.nodeType !== 1) { + return []; + } + // NOTE: 1 DOM access here + var css = getComputedStyle(element, null); + return property ? css[property] : css; + } + + /** + * Returns the parentNode or the host of the element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} parent + */ + function getParentNode(element) { + if (element.nodeName === 'HTML') { + return element; + } + return element.parentNode || element.host; + } + + /** + * Returns the scrolling parent of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} scroll parent + */ + function getScrollParent(element) { + // Return body, `getScroll` will take care to get the correct `scrollTop` from it + if (!element) { + return document.body; + } + + switch (element.nodeName) { + case 'HTML': + case 'BODY': + return element.ownerDocument.body; + case '#document': + return element.body; + } + + // Firefox want us to check `-x` and `-y` variations as well + + var _getStyleComputedProp = getStyleComputedProperty(element), + overflow = _getStyleComputedProp.overflow, + overflowX = _getStyleComputedProp.overflowX, + overflowY = _getStyleComputedProp.overflowY; + + if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) { + return element; + } + + return getScrollParent(getParentNode(element)); + } + + var isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode); + var isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent); + + /** + * Determines if the browser is Internet Explorer + * @method + * @memberof Popper.Utils + * @param {Number} version to check + * @returns {Boolean} isIE + */ + function isIE(version) { + if (version === 11) { + return isIE11; + } + if (version === 10) { + return isIE10; + } + return isIE11 || isIE10; + } + + /** + * Returns the offset parent of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} offset parent + */ + function getOffsetParent(element) { + if (!element) { + return document.documentElement; + } + + var noOffsetParent = isIE(10) ? document.body : null; + + // NOTE: 1 DOM access here + var offsetParent = element.offsetParent; + // Skip hidden elements which don't have an offsetParent + while (offsetParent === noOffsetParent && element.nextElementSibling) { + offsetParent = (element = element.nextElementSibling).offsetParent; + } + + var nodeName = offsetParent && offsetParent.nodeName; + + if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') { + return element ? element.ownerDocument.documentElement : document.documentElement; + } + + // .offsetParent will return the closest TD or TABLE in case + // no offsetParent is present, I hate this job... + if (['TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') { + return getOffsetParent(offsetParent); + } + + return offsetParent; + } + + function isOffsetContainer(element) { + var nodeName = element.nodeName; + + if (nodeName === 'BODY') { + return false; + } + return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element; + } + + /** + * Finds the root node (document, shadowDOM root) of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} node + * @returns {Element} root node + */ + function getRoot(node) { + if (node.parentNode !== null) { + return getRoot(node.parentNode); + } + + return node; + } + + /** + * Finds the offset parent common to the two provided nodes + * @method + * @memberof Popper.Utils + * @argument {Element} element1 + * @argument {Element} element2 + * @returns {Element} common offset parent + */ + function findCommonOffsetParent(element1, element2) { + // This check is needed to avoid errors in case one of the elements isn't defined for any reason + if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) { + return document.documentElement; + } + + // Here we make sure to give as "start" the element that comes first in the DOM + var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING; + var start = order ? element1 : element2; + var end = order ? element2 : element1; + + // Get common ancestor container + var range = document.createRange(); + range.setStart(start, 0); + range.setEnd(end, 0); + var commonAncestorContainer = range.commonAncestorContainer; + + // Both nodes are inside #document + + if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) { + if (isOffsetContainer(commonAncestorContainer)) { + return commonAncestorContainer; + } + + return getOffsetParent(commonAncestorContainer); + } + + // one of the nodes is inside shadowDOM, find which one + var element1root = getRoot(element1); + if (element1root.host) { + return findCommonOffsetParent(element1root.host, element2); + } else { + return findCommonOffsetParent(element1, getRoot(element2).host); + } + } + + /** + * Gets the scroll value of the given element in the given side (top and left) + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @argument {String} side `top` or `left` + * @returns {number} amount of scrolled pixels + */ + function getScroll(element) { + var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top'; + + var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft'; + var nodeName = element.nodeName; + + if (nodeName === 'BODY' || nodeName === 'HTML') { + var html = element.ownerDocument.documentElement; + var scrollingElement = element.ownerDocument.scrollingElement || html; + return scrollingElement[upperSide]; + } + + return element[upperSide]; + } + + /* + * Sum or subtract the element scroll values (left and top) from a given rect object + * @method + * @memberof Popper.Utils + * @param {Object} rect - Rect object you want to change + * @param {HTMLElement} element - The element from the function reads the scroll values + * @param {Boolean} subtract - set to true if you want to subtract the scroll values + * @return {Object} rect - The modifier rect object + */ + function includeScroll(rect, element) { + var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + var scrollTop = getScroll(element, 'top'); + var scrollLeft = getScroll(element, 'left'); + var modifier = subtract ? -1 : 1; + rect.top += scrollTop * modifier; + rect.bottom += scrollTop * modifier; + rect.left += scrollLeft * modifier; + rect.right += scrollLeft * modifier; + return rect; + } + + /* + * Helper to detect borders of a given element + * @method + * @memberof Popper.Utils + * @param {CSSStyleDeclaration} styles + * Result of `getStyleComputedProperty` on the given element + * @param {String} axis - `x` or `y` + * @return {number} borders - The borders size of the given axis + */ + + function getBordersSize(styles, axis) { + var sideA = axis === 'x' ? 'Left' : 'Top'; + var sideB = sideA === 'Left' ? 'Right' : 'Bottom'; + + return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10); + } + + function getSize(axis, body, html, computedStyle) { + return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? html['offset' + axis] + computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')] + computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')] : 0); + } + + function getWindowSizes() { + var body = document.body; + var html = document.documentElement; + var computedStyle = isIE(10) && getComputedStyle(html); + + return { + height: getSize('Height', body, html, computedStyle), + width: getSize('Width', body, html, computedStyle) + }; + } + + var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + }; + + var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; + }(); + + + + + + var defineProperty = function (obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + }; + + var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; + }; + + /** + * Given element offsets, generate an output similar to getBoundingClientRect + * @method + * @memberof Popper.Utils + * @argument {Object} offsets + * @returns {Object} ClientRect like output + */ + function getClientRect(offsets) { + return _extends({}, offsets, { + right: offsets.left + offsets.width, + bottom: offsets.top + offsets.height + }); + } + + /** + * Get bounding client rect of given element + * @method + * @memberof Popper.Utils + * @param {HTMLElement} element + * @return {Object} client rect + */ + function getBoundingClientRect(element) { + var rect = {}; + + // IE10 10 FIX: Please, don't ask, the element isn't + // considered in DOM in some circumstances... + // This isn't reproducible in IE10 compatibility mode of IE11 + try { + if (isIE(10)) { + rect = element.getBoundingClientRect(); + var scrollTop = getScroll(element, 'top'); + var scrollLeft = getScroll(element, 'left'); + rect.top += scrollTop; + rect.left += scrollLeft; + rect.bottom += scrollTop; + rect.right += scrollLeft; + } else { + rect = element.getBoundingClientRect(); + } + } catch (e) {} + + var result = { + left: rect.left, + top: rect.top, + width: rect.right - rect.left, + height: rect.bottom - rect.top + }; + + // subtract scrollbar size from sizes + var sizes = element.nodeName === 'HTML' ? getWindowSizes() : {}; + var width = sizes.width || element.clientWidth || result.right - result.left; + var height = sizes.height || element.clientHeight || result.bottom - result.top; + + var horizScrollbar = element.offsetWidth - width; + var vertScrollbar = element.offsetHeight - height; + + // if an hypothetical scrollbar is detected, we must be sure it's not a `border` + // we make this check conditional for performance reasons + if (horizScrollbar || vertScrollbar) { + var styles = getStyleComputedProperty(element); + horizScrollbar -= getBordersSize(styles, 'x'); + vertScrollbar -= getBordersSize(styles, 'y'); + + result.width -= horizScrollbar; + result.height -= vertScrollbar; + } + + return getClientRect(result); + } + + function getOffsetRectRelativeToArbitraryNode(children, parent) { + var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + var isIE10 = isIE(10); + var isHTML = parent.nodeName === 'HTML'; + var childrenRect = getBoundingClientRect(children); + var parentRect = getBoundingClientRect(parent); + var scrollParent = getScrollParent(children); + + var styles = getStyleComputedProperty(parent); + var borderTopWidth = parseFloat(styles.borderTopWidth, 10); + var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10); + + // In cases where the parent is fixed, we must ignore negative scroll in offset calc + if (fixedPosition && parent.nodeName === 'HTML') { + parentRect.top = Math.max(parentRect.top, 0); + parentRect.left = Math.max(parentRect.left, 0); + } + var offsets = getClientRect({ + top: childrenRect.top - parentRect.top - borderTopWidth, + left: childrenRect.left - parentRect.left - borderLeftWidth, + width: childrenRect.width, + height: childrenRect.height + }); + offsets.marginTop = 0; + offsets.marginLeft = 0; + + // Subtract margins of documentElement in case it's being used as parent + // we do this only on HTML because it's the only element that behaves + // differently when margins are applied to it. The margins are included in + // the box of the documentElement, in the other cases not. + if (!isIE10 && isHTML) { + var marginTop = parseFloat(styles.marginTop, 10); + var marginLeft = parseFloat(styles.marginLeft, 10); + + offsets.top -= borderTopWidth - marginTop; + offsets.bottom -= borderTopWidth - marginTop; + offsets.left -= borderLeftWidth - marginLeft; + offsets.right -= borderLeftWidth - marginLeft; + + // Attach marginTop and marginLeft because in some circumstances we may need them + offsets.marginTop = marginTop; + offsets.marginLeft = marginLeft; + } + + if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') { + offsets = includeScroll(offsets, parent); + } + + return offsets; + } + + function getViewportOffsetRectRelativeToArtbitraryNode(element) { + var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + var html = element.ownerDocument.documentElement; + var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html); + var width = Math.max(html.clientWidth, window.innerWidth || 0); + var height = Math.max(html.clientHeight, window.innerHeight || 0); + + var scrollTop = !excludeScroll ? getScroll(html) : 0; + var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0; + + var offset = { + top: scrollTop - relativeOffset.top + relativeOffset.marginTop, + left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft, + width: width, + height: height + }; + + return getClientRect(offset); + } + + /** + * Check if the given element is fixed or is inside a fixed parent + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @argument {Element} customContainer + * @returns {Boolean} answer to "isFixed?" + */ + function isFixed(element) { + var nodeName = element.nodeName; + if (nodeName === 'BODY' || nodeName === 'HTML') { + return false; + } + if (getStyleComputedProperty(element, 'position') === 'fixed') { + return true; + } + return isFixed(getParentNode(element)); + } + + /** + * Finds the first parent of an element that has a transformed property defined + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} first transformed parent or documentElement + */ + + function getFixedPositionOffsetParent(element) { + // This check is needed to avoid errors in case one of the elements isn't defined for any reason + if (!element || !element.parentElement || isIE()) { + return document.documentElement; + } + var el = element.parentElement; + while (el && getStyleComputedProperty(el, 'transform') === 'none') { + el = el.parentElement; + } + return el || document.documentElement; + } + + /** + * Computed the boundaries limits and return them + * @method + * @memberof Popper.Utils + * @param {HTMLElement} popper + * @param {HTMLElement} reference + * @param {number} padding + * @param {HTMLElement} boundariesElement - Element used to define the boundaries + * @param {Boolean} fixedPosition - Is in fixed position mode + * @returns {Object} Coordinates of the boundaries + */ + function getBoundaries(popper, reference, padding, boundariesElement) { + var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; + + // NOTE: 1 DOM access here + + var boundaries = { top: 0, left: 0 }; + var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); + + // Handle viewport case + if (boundariesElement === 'viewport') { + boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition); + } else { + // Handle other cases based on DOM element used as boundaries + var boundariesNode = void 0; + if (boundariesElement === 'scrollParent') { + boundariesNode = getScrollParent(getParentNode(reference)); + if (boundariesNode.nodeName === 'BODY') { + boundariesNode = popper.ownerDocument.documentElement; + } + } else if (boundariesElement === 'window') { + boundariesNode = popper.ownerDocument.documentElement; + } else { + boundariesNode = boundariesElement; + } + + var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition); + + // In case of HTML, we need a different computation + if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) { + var _getWindowSizes = getWindowSizes(), + height = _getWindowSizes.height, + width = _getWindowSizes.width; + + boundaries.top += offsets.top - offsets.marginTop; + boundaries.bottom = height + offsets.top; + boundaries.left += offsets.left - offsets.marginLeft; + boundaries.right = width + offsets.left; + } else { + // for all the other DOM elements, this one is good + boundaries = offsets; + } + } + + // Add paddings + boundaries.left += padding; + boundaries.top += padding; + boundaries.right -= padding; + boundaries.bottom -= padding; + + return boundaries; + } + + function getArea(_ref) { + var width = _ref.width, + height = _ref.height; + + return width * height; + } + + /** + * Utility used to transform the `auto` placement to the placement with more + * available space. + * @method + * @memberof Popper.Utils + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) { + var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0; + + if (placement.indexOf('auto') === -1) { + return placement; + } + + var boundaries = getBoundaries(popper, reference, padding, boundariesElement); + + var rects = { + top: { + width: boundaries.width, + height: refRect.top - boundaries.top + }, + right: { + width: boundaries.right - refRect.right, + height: boundaries.height + }, + bottom: { + width: boundaries.width, + height: boundaries.bottom - refRect.bottom + }, + left: { + width: refRect.left - boundaries.left, + height: boundaries.height + } + }; + + var sortedAreas = Object.keys(rects).map(function (key) { + return _extends({ + key: key + }, rects[key], { + area: getArea(rects[key]) + }); + }).sort(function (a, b) { + return b.area - a.area; + }); + + var filteredAreas = sortedAreas.filter(function (_ref2) { + var width = _ref2.width, + height = _ref2.height; + return width >= popper.clientWidth && height >= popper.clientHeight; + }); + + var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key; + + var variation = placement.split('-')[1]; + + return computedPlacement + (variation ? '-' + variation : ''); + } + + /** + * Get offsets to the reference element + * @method + * @memberof Popper.Utils + * @param {Object} state + * @param {Element} popper - the popper element + * @param {Element} reference - the reference element (the popper will be relative to this) + * @param {Element} fixedPosition - is in fixed position mode + * @returns {Object} An object containing the offsets which will be applied to the popper + */ + function getReferenceOffsets(state, popper, reference) { + var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + + var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); + return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition); + } + + /** + * Get the outer sizes of the given element (offset size + margins) + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Object} object containing width and height properties + */ + function getOuterSizes(element) { + var styles = getComputedStyle(element); + var x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom); + var y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight); + var result = { + width: element.offsetWidth + y, + height: element.offsetHeight + x + }; + return result; + } + + /** + * Get the opposite placement of the given one + * @method + * @memberof Popper.Utils + * @argument {String} placement + * @returns {String} flipped placement + */ + function getOppositePlacement(placement) { + var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; + return placement.replace(/left|right|bottom|top/g, function (matched) { + return hash[matched]; + }); + } + + /** + * Get offsets to the popper + * @method + * @memberof Popper.Utils + * @param {Object} position - CSS position the Popper will get applied + * @param {HTMLElement} popper - the popper element + * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this) + * @param {String} placement - one of the valid placement options + * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper + */ + function getPopperOffsets(popper, referenceOffsets, placement) { + placement = placement.split('-')[0]; + + // Get popper node sizes + var popperRect = getOuterSizes(popper); + + // Add position, width and height to our offsets object + var popperOffsets = { + width: popperRect.width, + height: popperRect.height + }; + + // depending by the popper placement we have to compute its offsets slightly differently + var isHoriz = ['right', 'left'].indexOf(placement) !== -1; + var mainSide = isHoriz ? 'top' : 'left'; + var secondarySide = isHoriz ? 'left' : 'top'; + var measurement = isHoriz ? 'height' : 'width'; + var secondaryMeasurement = !isHoriz ? 'height' : 'width'; + + popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2; + if (placement === secondarySide) { + popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement]; + } else { + popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)]; + } + + return popperOffsets; + } + + /** + * Mimics the `find` method of Array + * @method + * @memberof Popper.Utils + * @argument {Array} arr + * @argument prop + * @argument value + * @returns index or -1 + */ + function find(arr, check) { + // use native find if supported + if (Array.prototype.find) { + return arr.find(check); + } + + // use `filter` to obtain the same behavior of `find` + return arr.filter(check)[0]; + } + + /** + * Return the index of the matching object + * @method + * @memberof Popper.Utils + * @argument {Array} arr + * @argument prop + * @argument value + * @returns index or -1 + */ + function findIndex(arr, prop, value) { + // use native findIndex if supported + if (Array.prototype.findIndex) { + return arr.findIndex(function (cur) { + return cur[prop] === value; + }); + } + + // use `find` + `indexOf` if `findIndex` isn't supported + var match = find(arr, function (obj) { + return obj[prop] === value; + }); + return arr.indexOf(match); + } + + /** + * Loop trough the list of modifiers and run them in order, + * each of them will then edit the data object. + * @method + * @memberof Popper.Utils + * @param {dataObject} data + * @param {Array} modifiers + * @param {String} ends - Optional modifier name used as stopper + * @returns {dataObject} + */ + function runModifiers(modifiers, data, ends) { + var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends)); + + modifiersToRun.forEach(function (modifier) { + if (modifier['function']) { + // eslint-disable-line dot-notation + console.warn('`modifier.function` is deprecated, use `modifier.fn`!'); + } + var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation + if (modifier.enabled && isFunction(fn)) { + // Add properties to offsets to make them a complete clientRect object + // we do this before each modifier to make sure the previous one doesn't + // mess with these values + data.offsets.popper = getClientRect(data.offsets.popper); + data.offsets.reference = getClientRect(data.offsets.reference); + + data = fn(data, modifier); + } + }); + + return data; + } + + /** + * Updates the position of the popper, computing the new offsets and applying + * the new style.
+ * Prefer `scheduleUpdate` over `update` because of performance reasons. + * @method + * @memberof Popper + */ + function update() { + // if popper is destroyed, don't perform any further update + if (this.state.isDestroyed) { + return; + } + + var data = { + instance: this, + styles: {}, + arrowStyles: {}, + attributes: {}, + flipped: false, + offsets: {} + }; + + // compute reference element offsets + data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed); + + // compute auto placement, store placement inside the data object, + // modifiers will be able to edit `placement` if needed + // and refer to originalPlacement to know the original value + data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding); + + // store the computed placement inside `originalPlacement` + data.originalPlacement = data.placement; + + data.positionFixed = this.options.positionFixed; + + // compute the popper offsets + data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement); + + data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute'; + + // run the modifiers + data = runModifiers(this.modifiers, data); + + // the first `update` will call `onCreate` callback + // the other ones will call `onUpdate` callback + if (!this.state.isCreated) { + this.state.isCreated = true; + this.options.onCreate(data); + } else { + this.options.onUpdate(data); + } + } + + /** + * Helper used to know if the given modifier is enabled. + * @method + * @memberof Popper.Utils + * @returns {Boolean} + */ + function isModifierEnabled(modifiers, modifierName) { + return modifiers.some(function (_ref) { + var name = _ref.name, + enabled = _ref.enabled; + return enabled && name === modifierName; + }); + } + + /** + * Get the prefixed supported property name + * @method + * @memberof Popper.Utils + * @argument {String} property (camelCase) + * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix) + */ + function getSupportedPropertyName(property) { + var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O']; + var upperProp = property.charAt(0).toUpperCase() + property.slice(1); + + for (var i = 0; i < prefixes.length; i++) { + var prefix = prefixes[i]; + var toCheck = prefix ? '' + prefix + upperProp : property; + if (typeof document.body.style[toCheck] !== 'undefined') { + return toCheck; + } + } + return null; + } + + /** + * Destroy the popper + * @method + * @memberof Popper + */ + function destroy() { + this.state.isDestroyed = true; + + // touch DOM only if `applyStyle` modifier is enabled + if (isModifierEnabled(this.modifiers, 'applyStyle')) { + this.popper.removeAttribute('x-placement'); + this.popper.style.position = ''; + this.popper.style.top = ''; + this.popper.style.left = ''; + this.popper.style.right = ''; + this.popper.style.bottom = ''; + this.popper.style.willChange = ''; + this.popper.style[getSupportedPropertyName('transform')] = ''; + } + + this.disableEventListeners(); + + // remove the popper if user explicity asked for the deletion on destroy + // do not use `remove` because IE11 doesn't support it + if (this.options.removeOnDestroy) { + this.popper.parentNode.removeChild(this.popper); + } + return this; + } + + /** + * Get the window associated with the element + * @argument {Element} element + * @returns {Window} + */ + function getWindow(element) { + var ownerDocument = element.ownerDocument; + return ownerDocument ? ownerDocument.defaultView : window; + } + + function attachToScrollParents(scrollParent, event, callback, scrollParents) { + var isBody = scrollParent.nodeName === 'BODY'; + var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent; + target.addEventListener(event, callback, { passive: true }); + + if (!isBody) { + attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents); + } + scrollParents.push(target); + } + + /** + * Setup needed event listeners used to update the popper position + * @method + * @memberof Popper.Utils + * @private + */ + function setupEventListeners(reference, options, state, updateBound) { + // Resize event listener on window + state.updateBound = updateBound; + getWindow(reference).addEventListener('resize', state.updateBound, { passive: true }); + + // Scroll event listener on scroll parents + var scrollElement = getScrollParent(reference); + attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents); + state.scrollElement = scrollElement; + state.eventsEnabled = true; + + return state; + } + + /** + * It will add resize/scroll events and start recalculating + * position of the popper element when they are triggered. + * @method + * @memberof Popper + */ + function enableEventListeners() { + if (!this.state.eventsEnabled) { + this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate); + } + } + + /** + * Remove event listeners used to update the popper position + * @method + * @memberof Popper.Utils + * @private + */ + function removeEventListeners(reference, state) { + // Remove resize event listener on window + getWindow(reference).removeEventListener('resize', state.updateBound); + + // Remove scroll event listener on scroll parents + state.scrollParents.forEach(function (target) { + target.removeEventListener('scroll', state.updateBound); + }); + + // Reset state + state.updateBound = null; + state.scrollParents = []; + state.scrollElement = null; + state.eventsEnabled = false; + return state; + } + + /** + * It will remove resize/scroll events and won't recalculate popper position + * when they are triggered. It also won't trigger onUpdate callback anymore, + * unless you call `update` method manually. + * @method + * @memberof Popper + */ + function disableEventListeners() { + if (this.state.eventsEnabled) { + cancelAnimationFrame(this.scheduleUpdate); + this.state = removeEventListeners(this.reference, this.state); + } + } + + /** + * Tells if a given input is a number + * @method + * @memberof Popper.Utils + * @param {*} input to check + * @return {Boolean} + */ + function isNumeric(n) { + return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); + } + + /** + * Set the style to the given popper + * @method + * @memberof Popper.Utils + * @argument {Element} element - Element to apply the style to + * @argument {Object} styles + * Object with a list of properties and values which will be applied to the element + */ + function setStyles(element, styles) { + Object.keys(styles).forEach(function (prop) { + var unit = ''; + // add unit if the value is numeric and is one of the following + if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) { + unit = 'px'; + } + element.style[prop] = styles[prop] + unit; + }); + } + + /** + * Set the attributes to the given popper + * @method + * @memberof Popper.Utils + * @argument {Element} element - Element to apply the attributes to + * @argument {Object} styles + * Object with a list of properties and values which will be applied to the element + */ + function setAttributes(element, attributes) { + Object.keys(attributes).forEach(function (prop) { + var value = attributes[prop]; + if (value !== false) { + element.setAttribute(prop, attributes[prop]); + } else { + element.removeAttribute(prop); + } + }); + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} data.styles - List of style properties - values to apply to popper element + * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The same data object + */ + function applyStyle(data) { + // any property present in `data.styles` will be applied to the popper, + // in this way we can make the 3rd party modifiers add custom styles to it + // Be aware, modifiers could override the properties defined in the previous + // lines of this modifier! + setStyles(data.instance.popper, data.styles); + + // any property present in `data.attributes` will be applied to the popper, + // they will be set as HTML attributes of the element + setAttributes(data.instance.popper, data.attributes); + + // if arrowElement is defined and arrowStyles has some properties + if (data.arrowElement && Object.keys(data.arrowStyles).length) { + setStyles(data.arrowElement, data.arrowStyles); + } + + return data; + } + + /** + * Set the x-placement attribute before everything else because it could be used + * to add margins to the popper margins needs to be calculated to get the + * correct popper offsets. + * @method + * @memberof Popper.modifiers + * @param {HTMLElement} reference - The reference element used to position the popper + * @param {HTMLElement} popper - The HTML element used as popper + * @param {Object} options - Popper.js options + */ + function applyStyleOnLoad(reference, popper, options, modifierOptions, state) { + // compute reference element offsets + var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed); + + // compute auto placement, store placement inside the data object, + // modifiers will be able to edit `placement` if needed + // and refer to originalPlacement to know the original value + var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding); + + popper.setAttribute('x-placement', placement); + + // Apply `position` to popper before anything else because + // without the position applied we can't guarantee correct computations + setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' }); + + return options; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function computeStyle(data, options) { + var x = options.x, + y = options.y; + var popper = data.offsets.popper; + + // Remove this legacy support in Popper.js v2 + + var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) { + return modifier.name === 'applyStyle'; + }).gpuAcceleration; + if (legacyGpuAccelerationOption !== undefined) { + console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!'); + } + var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration; + + var offsetParent = getOffsetParent(data.instance.popper); + var offsetParentRect = getBoundingClientRect(offsetParent); + + // Styles + var styles = { + position: popper.position + }; + + // Avoid blurry text by using full pixel integers. + // For pixel-perfect positioning, top/bottom prefers rounded + // values, while left/right prefers floored values. + var offsets = { + left: Math.floor(popper.left), + top: Math.round(popper.top), + bottom: Math.round(popper.bottom), + right: Math.floor(popper.right) + }; + + var sideA = x === 'bottom' ? 'top' : 'bottom'; + var sideB = y === 'right' ? 'left' : 'right'; + + // if gpuAcceleration is set to `true` and transform is supported, + // we use `translate3d` to apply the position to the popper we + // automatically use the supported prefixed version if needed + var prefixedProperty = getSupportedPropertyName('transform'); + + // now, let's make a step back and look at this code closely (wtf?) + // If the content of the popper grows once it's been positioned, it + // may happen that the popper gets misplaced because of the new content + // overflowing its reference element + // To avoid this problem, we provide two options (x and y), which allow + // the consumer to define the offset origin. + // If we position a popper on top of a reference element, we can set + // `x` to `top` to make the popper grow towards its top instead of + // its bottom. + var left = void 0, + top = void 0; + if (sideA === 'bottom') { + top = -offsetParentRect.height + offsets.bottom; + } else { + top = offsets.top; + } + if (sideB === 'right') { + left = -offsetParentRect.width + offsets.right; + } else { + left = offsets.left; + } + if (gpuAcceleration && prefixedProperty) { + styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)'; + styles[sideA] = 0; + styles[sideB] = 0; + styles.willChange = 'transform'; + } else { + // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties + var invertTop = sideA === 'bottom' ? -1 : 1; + var invertLeft = sideB === 'right' ? -1 : 1; + styles[sideA] = top * invertTop; + styles[sideB] = left * invertLeft; + styles.willChange = sideA + ', ' + sideB; + } + + // Attributes + var attributes = { + 'x-placement': data.placement + }; + + // Update `data` attributes, styles and arrowStyles + data.attributes = _extends({}, attributes, data.attributes); + data.styles = _extends({}, styles, data.styles); + data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles); + + return data; + } + + /** + * Helper used to know if the given modifier depends from another one.
+ * It checks if the needed modifier is listed and enabled. + * @method + * @memberof Popper.Utils + * @param {Array} modifiers - list of modifiers + * @param {String} requestingName - name of requesting modifier + * @param {String} requestedName - name of requested modifier + * @returns {Boolean} + */ + function isModifierRequired(modifiers, requestingName, requestedName) { + var requesting = find(modifiers, function (_ref) { + var name = _ref.name; + return name === requestingName; + }); + + var isRequired = !!requesting && modifiers.some(function (modifier) { + return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order; + }); + + if (!isRequired) { + var _requesting = '`' + requestingName + '`'; + var requested = '`' + requestedName + '`'; + console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!'); + } + return isRequired; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function arrow(data, options) { + var _data$offsets$arrow; + + // arrow depends on keepTogether in order to work + if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) { + return data; + } + + var arrowElement = options.element; + + // if arrowElement is a string, suppose it's a CSS selector + if (typeof arrowElement === 'string') { + arrowElement = data.instance.popper.querySelector(arrowElement); + + // if arrowElement is not found, don't run the modifier + if (!arrowElement) { + return data; + } + } else { + // if the arrowElement isn't a query selector we must check that the + // provided DOM node is child of its popper node + if (!data.instance.popper.contains(arrowElement)) { + console.warn('WARNING: `arrow.element` must be child of its popper element!'); + return data; + } + } + + var placement = data.placement.split('-')[0]; + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var isVertical = ['left', 'right'].indexOf(placement) !== -1; + + var len = isVertical ? 'height' : 'width'; + var sideCapitalized = isVertical ? 'Top' : 'Left'; + var side = sideCapitalized.toLowerCase(); + var altSide = isVertical ? 'left' : 'top'; + var opSide = isVertical ? 'bottom' : 'right'; + var arrowElementSize = getOuterSizes(arrowElement)[len]; + + // + // extends keepTogether behavior making sure the popper and its + // reference have enough pixels in conjuction + // + + // top/left side + if (reference[opSide] - arrowElementSize < popper[side]) { + data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize); + } + // bottom/right side + if (reference[side] + arrowElementSize > popper[opSide]) { + data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide]; + } + data.offsets.popper = getClientRect(data.offsets.popper); + + // compute center of the popper + var center = reference[side] + reference[len] / 2 - arrowElementSize / 2; + + // Compute the sideValue using the updated popper offsets + // take popper margin in account because we don't have this info available + var css = getStyleComputedProperty(data.instance.popper); + var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10); + var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10); + var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide; + + // prevent arrowElement from being placed not contiguously to its popper + sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0); + + data.arrowElement = arrowElement; + data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow); + + return data; + } + + /** + * Get the opposite placement variation of the given one + * @method + * @memberof Popper.Utils + * @argument {String} placement variation + * @returns {String} flipped placement variation + */ + function getOppositeVariation(variation) { + if (variation === 'end') { + return 'start'; + } else if (variation === 'start') { + return 'end'; + } + return variation; + } + + /** + * List of accepted placements to use as values of the `placement` option.
+ * Valid placements are: + * - `auto` + * - `top` + * - `right` + * - `bottom` + * - `left` + * + * Each placement can have a variation from this list: + * - `-start` + * - `-end` + * + * Variations are interpreted easily if you think of them as the left to right + * written languages. Horizontally (`top` and `bottom`), `start` is left and `end` + * is right.
+ * Vertically (`left` and `right`), `start` is top and `end` is bottom. + * + * Some valid examples are: + * - `top-end` (on top of reference, right aligned) + * - `right-start` (on right of reference, top aligned) + * - `bottom` (on bottom, centered) + * - `auto-right` (on the side with more space available, alignment depends by placement) + * + * @static + * @type {Array} + * @enum {String} + * @readonly + * @method placements + * @memberof Popper + */ + var placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start']; + + // Get rid of `auto` `auto-start` and `auto-end` + var validPlacements = placements.slice(3); + + /** + * Given an initial placement, returns all the subsequent placements + * clockwise (or counter-clockwise). + * + * @method + * @memberof Popper.Utils + * @argument {String} placement - A valid placement (it accepts variations) + * @argument {Boolean} counter - Set to true to walk the placements counterclockwise + * @returns {Array} placements including their variations + */ + function clockwise(placement) { + var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + var index = validPlacements.indexOf(placement); + var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index)); + return counter ? arr.reverse() : arr; + } + + var BEHAVIORS = { + FLIP: 'flip', + CLOCKWISE: 'clockwise', + COUNTERCLOCKWISE: 'counterclockwise' + }; + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function flip(data, options) { + // if `inner` modifier is enabled, we can't use the `flip` modifier + if (isModifierEnabled(data.instance.modifiers, 'inner')) { + return data; + } + + if (data.flipped && data.placement === data.originalPlacement) { + // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides + return data; + } + + var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed); + + var placement = data.placement.split('-')[0]; + var placementOpposite = getOppositePlacement(placement); + var variation = data.placement.split('-')[1] || ''; + + var flipOrder = []; + + switch (options.behavior) { + case BEHAVIORS.FLIP: + flipOrder = [placement, placementOpposite]; + break; + case BEHAVIORS.CLOCKWISE: + flipOrder = clockwise(placement); + break; + case BEHAVIORS.COUNTERCLOCKWISE: + flipOrder = clockwise(placement, true); + break; + default: + flipOrder = options.behavior; + } + + flipOrder.forEach(function (step, index) { + if (placement !== step || flipOrder.length === index + 1) { + return data; + } + + placement = data.placement.split('-')[0]; + placementOpposite = getOppositePlacement(placement); + + var popperOffsets = data.offsets.popper; + var refOffsets = data.offsets.reference; + + // using floor because the reference offsets may contain decimals we are not going to consider here + var floor = Math.floor; + var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom); + + var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left); + var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right); + var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top); + var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom); + + var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom; + + // flip the variation if required + var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; + var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom); + + if (overlapsRef || overflowsBoundaries || flippedVariation) { + // this boolean to detect any flip loop + data.flipped = true; + + if (overlapsRef || overflowsBoundaries) { + placement = flipOrder[index + 1]; + } + + if (flippedVariation) { + variation = getOppositeVariation(variation); + } + + data.placement = placement + (variation ? '-' + variation : ''); + + // this object contains `position`, we want to preserve it along with + // any additional property we may add in the future + data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement)); + + data = runModifiers(data.instance.modifiers, data, 'flip'); + } + }); + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function keepTogether(data) { + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var placement = data.placement.split('-')[0]; + var floor = Math.floor; + var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; + var side = isVertical ? 'right' : 'bottom'; + var opSide = isVertical ? 'left' : 'top'; + var measurement = isVertical ? 'width' : 'height'; + + if (popper[side] < floor(reference[opSide])) { + data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement]; + } + if (popper[opSide] > floor(reference[side])) { + data.offsets.popper[opSide] = floor(reference[side]); + } + + return data; + } + + /** + * Converts a string containing value + unit into a px value number + * @function + * @memberof {modifiers~offset} + * @private + * @argument {String} str - Value + unit string + * @argument {String} measurement - `height` or `width` + * @argument {Object} popperOffsets + * @argument {Object} referenceOffsets + * @returns {Number|String} + * Value in pixels, or original string if no values were extracted + */ + function toValue(str, measurement, popperOffsets, referenceOffsets) { + // separate value from unit + var split = str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/); + var value = +split[1]; + var unit = split[2]; + + // If it's not a number it's an operator, I guess + if (!value) { + return str; + } + + if (unit.indexOf('%') === 0) { + var element = void 0; + switch (unit) { + case '%p': + element = popperOffsets; + break; + case '%': + case '%r': + default: + element = referenceOffsets; + } + + var rect = getClientRect(element); + return rect[measurement] / 100 * value; + } else if (unit === 'vh' || unit === 'vw') { + // if is a vh or vw, we calculate the size based on the viewport + var size = void 0; + if (unit === 'vh') { + size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); + } else { + size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); + } + return size / 100 * value; + } else { + // if is an explicit pixel unit, we get rid of the unit and keep the value + // if is an implicit unit, it's px, and we return just the value + return value; + } + } + + /** + * Parse an `offset` string to extrapolate `x` and `y` numeric offsets. + * @function + * @memberof {modifiers~offset} + * @private + * @argument {String} offset + * @argument {Object} popperOffsets + * @argument {Object} referenceOffsets + * @argument {String} basePlacement + * @returns {Array} a two cells array with x and y offsets in numbers + */ + function parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) { + var offsets = [0, 0]; + + // Use height if placement is left or right and index is 0 otherwise use width + // in this way the first offset will use an axis and the second one + // will use the other one + var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1; + + // Split the offset string to obtain a list of values and operands + // The regex addresses values with the plus or minus sign in front (+10, -20, etc) + var fragments = offset.split(/(\+|\-)/).map(function (frag) { + return frag.trim(); + }); + + // Detect if the offset string contains a pair of values or a single one + // they could be separated by comma or space + var divider = fragments.indexOf(find(fragments, function (frag) { + return frag.search(/,|\s/) !== -1; + })); + + if (fragments[divider] && fragments[divider].indexOf(',') === -1) { + console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.'); + } + + // If divider is found, we divide the list of values and operands to divide + // them by ofset X and Y. + var splitRegex = /\s*,\s*|\s+/; + var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments]; + + // Convert the values with units to absolute pixels to allow our computations + ops = ops.map(function (op, index) { + // Most of the units rely on the orientation of the popper + var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width'; + var mergeWithPrevious = false; + return op + // This aggregates any `+` or `-` sign that aren't considered operators + // e.g.: 10 + +5 => [10, +, +5] + .reduce(function (a, b) { + if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) { + a[a.length - 1] = b; + mergeWithPrevious = true; + return a; + } else if (mergeWithPrevious) { + a[a.length - 1] += b; + mergeWithPrevious = false; + return a; + } else { + return a.concat(b); + } + }, []) + // Here we convert the string values into number values (in px) + .map(function (str) { + return toValue(str, measurement, popperOffsets, referenceOffsets); + }); + }); + + // Loop trough the offsets arrays and execute the operations + ops.forEach(function (op, index) { + op.forEach(function (frag, index2) { + if (isNumeric(frag)) { + offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1); + } + }); + }); + return offsets; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @argument {Number|String} options.offset=0 + * The offset value as described in the modifier description + * @returns {Object} The data object, properly modified + */ + function offset(data, _ref) { + var offset = _ref.offset; + var placement = data.placement, + _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var basePlacement = placement.split('-')[0]; + + var offsets = void 0; + if (isNumeric(+offset)) { + offsets = [+offset, 0]; + } else { + offsets = parseOffset(offset, popper, reference, basePlacement); + } + + if (basePlacement === 'left') { + popper.top += offsets[0]; + popper.left -= offsets[1]; + } else if (basePlacement === 'right') { + popper.top += offsets[0]; + popper.left += offsets[1]; + } else if (basePlacement === 'top') { + popper.left += offsets[0]; + popper.top -= offsets[1]; + } else if (basePlacement === 'bottom') { + popper.left += offsets[0]; + popper.top += offsets[1]; + } + + data.popper = popper; + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function preventOverflow(data, options) { + var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper); + + // If offsetParent is the reference element, we really want to + // go one step up and use the next offsetParent as reference to + // avoid to make this modifier completely useless and look like broken + if (data.instance.reference === boundariesElement) { + boundariesElement = getOffsetParent(boundariesElement); + } + + // NOTE: DOM access here + // resets the popper's position so that the document size can be calculated excluding + // the size of the popper element itself + var transformProp = getSupportedPropertyName('transform'); + var popperStyles = data.instance.popper.style; // assignment to help minification + var top = popperStyles.top, + left = popperStyles.left, + transform = popperStyles[transformProp]; + + popperStyles.top = ''; + popperStyles.left = ''; + popperStyles[transformProp] = ''; + + var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed); + + // NOTE: DOM access here + // restores the original style properties after the offsets have been computed + popperStyles.top = top; + popperStyles.left = left; + popperStyles[transformProp] = transform; + + options.boundaries = boundaries; + + var order = options.priority; + var popper = data.offsets.popper; + + var check = { + primary: function primary(placement) { + var value = popper[placement]; + if (popper[placement] < boundaries[placement] && !options.escapeWithReference) { + value = Math.max(popper[placement], boundaries[placement]); + } + return defineProperty({}, placement, value); + }, + secondary: function secondary(placement) { + var mainSide = placement === 'right' ? 'left' : 'top'; + var value = popper[mainSide]; + if (popper[placement] > boundaries[placement] && !options.escapeWithReference) { + value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height)); + } + return defineProperty({}, mainSide, value); + } + }; + + order.forEach(function (placement) { + var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary'; + popper = _extends({}, popper, check[side](placement)); + }); + + data.offsets.popper = popper; + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function shift(data) { + var placement = data.placement; + var basePlacement = placement.split('-')[0]; + var shiftvariation = placement.split('-')[1]; + + // if shift shiftvariation is specified, run the modifier + if (shiftvariation) { + var _data$offsets = data.offsets, + reference = _data$offsets.reference, + popper = _data$offsets.popper; + + var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1; + var side = isVertical ? 'left' : 'top'; + var measurement = isVertical ? 'width' : 'height'; + + var shiftOffsets = { + start: defineProperty({}, side, reference[side]), + end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement]) + }; + + data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]); + } + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function hide(data) { + if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) { + return data; + } + + var refRect = data.offsets.reference; + var bound = find(data.instance.modifiers, function (modifier) { + return modifier.name === 'preventOverflow'; + }).boundaries; + + if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) { + // Avoid unnecessary DOM access if visibility hasn't changed + if (data.hide === true) { + return data; + } + + data.hide = true; + data.attributes['x-out-of-boundaries'] = ''; + } else { + // Avoid unnecessary DOM access if visibility hasn't changed + if (data.hide === false) { + return data; + } + + data.hide = false; + data.attributes['x-out-of-boundaries'] = false; + } + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function inner(data) { + var placement = data.placement; + var basePlacement = placement.split('-')[0]; + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1; + + var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1; + + popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0); + + data.placement = getOppositePlacement(placement); + data.offsets.popper = getClientRect(popper); + + return data; + } + + /** + * Modifier function, each modifier can have a function of this type assigned + * to its `fn` property.
+ * These functions will be called on each update, this means that you must + * make sure they are performant enough to avoid performance bottlenecks. + * + * @function ModifierFn + * @argument {dataObject} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {dataObject} The data object, properly modified + */ + + /** + * Modifiers are plugins used to alter the behavior of your poppers.
+ * Popper.js uses a set of 9 modifiers to provide all the basic functionalities + * needed by the library. + * + * Usually you don't want to override the `order`, `fn` and `onLoad` props. + * All the other properties are configurations that could be tweaked. + * @namespace modifiers + */ + var modifiers = { + /** + * Modifier used to shift the popper on the start or end of its reference + * element.
+ * It will read the variation of the `placement` property.
+ * It can be one either `-end` or `-start`. + * @memberof modifiers + * @inner + */ + shift: { + /** @prop {number} order=100 - Index used to define the order of execution */ + order: 100, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: shift + }, + + /** + * The `offset` modifier can shift your popper on both its axis. + * + * It accepts the following units: + * - `px` or unitless, interpreted as pixels + * - `%` or `%r`, percentage relative to the length of the reference element + * - `%p`, percentage relative to the length of the popper element + * - `vw`, CSS viewport width unit + * - `vh`, CSS viewport height unit + * + * For length is intended the main axis relative to the placement of the popper.
+ * This means that if the placement is `top` or `bottom`, the length will be the + * `width`. In case of `left` or `right`, it will be the height. + * + * You can provide a single value (as `Number` or `String`), or a pair of values + * as `String` divided by a comma or one (or more) white spaces.
+ * The latter is a deprecated method because it leads to confusion and will be + * removed in v2.
+ * Additionally, it accepts additions and subtractions between different units. + * Note that multiplications and divisions aren't supported. + * + * Valid examples are: + * ``` + * 10 + * '10%' + * '10, 10' + * '10%, 10' + * '10 + 10%' + * '10 - 5vh + 3%' + * '-10px + 5vh, 5px - 6%' + * ``` + * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap + * > with their reference element, unfortunately, you will have to disable the `flip` modifier. + * > More on this [reading this issue](https://github.com/FezVrasta/popper.js/issues/373) + * + * @memberof modifiers + * @inner + */ + offset: { + /** @prop {number} order=200 - Index used to define the order of execution */ + order: 200, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: offset, + /** @prop {Number|String} offset=0 + * The offset value as described in the modifier description + */ + offset: 0 + }, + + /** + * Modifier used to prevent the popper from being positioned outside the boundary. + * + * An scenario exists where the reference itself is not within the boundaries.
+ * We can say it has "escaped the boundaries" — or just "escaped".
+ * In this case we need to decide whether the popper should either: + * + * - detach from the reference and remain "trapped" in the boundaries, or + * - if it should ignore the boundary and "escape with its reference" + * + * When `escapeWithReference` is set to`true` and reference is completely + * outside its boundaries, the popper will overflow (or completely leave) + * the boundaries in order to remain attached to the edge of the reference. + * + * @memberof modifiers + * @inner + */ + preventOverflow: { + /** @prop {number} order=300 - Index used to define the order of execution */ + order: 300, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: preventOverflow, + /** + * @prop {Array} [priority=['left','right','top','bottom']] + * Popper will try to prevent overflow following these priorities by default, + * then, it could overflow on the left and on top of the `boundariesElement` + */ + priority: ['left', 'right', 'top', 'bottom'], + /** + * @prop {number} padding=5 + * Amount of pixel used to define a minimum distance between the boundaries + * and the popper this makes sure the popper has always a little padding + * between the edges of its container + */ + padding: 5, + /** + * @prop {String|HTMLElement} boundariesElement='scrollParent' + * Boundaries used by the modifier, can be `scrollParent`, `window`, + * `viewport` or any DOM element. + */ + boundariesElement: 'scrollParent' + }, + + /** + * Modifier used to make sure the reference and its popper stay near eachothers + * without leaving any gap between the two. Expecially useful when the arrow is + * enabled and you want to assure it to point to its reference element. + * It cares only about the first axis, you can still have poppers with margin + * between the popper and its reference element. + * @memberof modifiers + * @inner + */ + keepTogether: { + /** @prop {number} order=400 - Index used to define the order of execution */ + order: 400, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: keepTogether + }, + + /** + * This modifier is used to move the `arrowElement` of the popper to make + * sure it is positioned between the reference element and its popper element. + * It will read the outer size of the `arrowElement` node to detect how many + * pixels of conjuction are needed. + * + * It has no effect if no `arrowElement` is provided. + * @memberof modifiers + * @inner + */ + arrow: { + /** @prop {number} order=500 - Index used to define the order of execution */ + order: 500, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: arrow, + /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */ + element: '[x-arrow]' + }, + + /** + * Modifier used to flip the popper's placement when it starts to overlap its + * reference element. + * + * Requires the `preventOverflow` modifier before it in order to work. + * + * **NOTE:** this modifier will interrupt the current update cycle and will + * restart it if it detects the need to flip the placement. + * @memberof modifiers + * @inner + */ + flip: { + /** @prop {number} order=600 - Index used to define the order of execution */ + order: 600, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: flip, + /** + * @prop {String|Array} behavior='flip' + * The behavior used to change the popper's placement. It can be one of + * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid + * placements (with optional variations). + */ + behavior: 'flip', + /** + * @prop {number} padding=5 + * The popper will flip if it hits the edges of the `boundariesElement` + */ + padding: 5, + /** + * @prop {String|HTMLElement} boundariesElement='viewport' + * The element which will define the boundaries of the popper position, + * the popper will never be placed outside of the defined boundaries + * (except if keepTogether is enabled) + */ + boundariesElement: 'viewport' + }, + + /** + * Modifier used to make the popper flow toward the inner of the reference element. + * By default, when this modifier is disabled, the popper will be placed outside + * the reference element. + * @memberof modifiers + * @inner + */ + inner: { + /** @prop {number} order=700 - Index used to define the order of execution */ + order: 700, + /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */ + enabled: false, + /** @prop {ModifierFn} */ + fn: inner + }, + + /** + * Modifier used to hide the popper when its reference element is outside of the + * popper boundaries. It will set a `x-out-of-boundaries` attribute which can + * be used to hide with a CSS selector the popper when its reference is + * out of boundaries. + * + * Requires the `preventOverflow` modifier before it in order to work. + * @memberof modifiers + * @inner + */ + hide: { + /** @prop {number} order=800 - Index used to define the order of execution */ + order: 800, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: hide + }, + + /** + * Computes the style that will be applied to the popper element to gets + * properly positioned. + * + * Note that this modifier will not touch the DOM, it just prepares the styles + * so that `applyStyle` modifier can apply it. This separation is useful + * in case you need to replace `applyStyle` with a custom implementation. + * + * This modifier has `850` as `order` value to maintain backward compatibility + * with previous versions of Popper.js. Expect the modifiers ordering method + * to change in future major versions of the library. + * + * @memberof modifiers + * @inner + */ + computeStyle: { + /** @prop {number} order=850 - Index used to define the order of execution */ + order: 850, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: computeStyle, + /** + * @prop {Boolean} gpuAcceleration=true + * If true, it uses the CSS 3d transformation to position the popper. + * Otherwise, it will use the `top` and `left` properties. + */ + gpuAcceleration: true, + /** + * @prop {string} [x='bottom'] + * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin. + * Change this if your popper should grow in a direction different from `bottom` + */ + x: 'bottom', + /** + * @prop {string} [x='left'] + * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin. + * Change this if your popper should grow in a direction different from `right` + */ + y: 'right' + }, + + /** + * Applies the computed styles to the popper element. + * + * All the DOM manipulations are limited to this modifier. This is useful in case + * you want to integrate Popper.js inside a framework or view library and you + * want to delegate all the DOM manipulations to it. + * + * Note that if you disable this modifier, you must make sure the popper element + * has its position set to `absolute` before Popper.js can do its work! + * + * Just disable this modifier and define you own to achieve the desired effect. + * + * @memberof modifiers + * @inner + */ + applyStyle: { + /** @prop {number} order=900 - Index used to define the order of execution */ + order: 900, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: applyStyle, + /** @prop {Function} */ + onLoad: applyStyleOnLoad, + /** + * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier + * @prop {Boolean} gpuAcceleration=true + * If true, it uses the CSS 3d transformation to position the popper. + * Otherwise, it will use the `top` and `left` properties. + */ + gpuAcceleration: undefined + } + }; + + /** + * The `dataObject` is an object containing all the informations used by Popper.js + * this object get passed to modifiers and to the `onCreate` and `onUpdate` callbacks. + * @name dataObject + * @property {Object} data.instance The Popper.js instance + * @property {String} data.placement Placement applied to popper + * @property {String} data.originalPlacement Placement originally defined on init + * @property {Boolean} data.flipped True if popper has been flipped by flip modifier + * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper. + * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier + * @property {Object} data.styles Any CSS property defined here will be applied to the popper, it expects the JavaScript nomenclature (eg. `marginBottom`) + * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow, it expects the JavaScript nomenclature (eg. `marginBottom`) + * @property {Object} data.boundaries Offsets of the popper boundaries + * @property {Object} data.offsets The measurements of popper, reference and arrow elements. + * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values + * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values + * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0 + */ + + /** + * Default options provided to Popper.js constructor.
+ * These can be overriden using the `options` argument of Popper.js.
+ * To override an option, simply pass as 3rd argument an object with the same + * structure of this object, example: + * ``` + * new Popper(ref, pop, { + * modifiers: { + * preventOverflow: { enabled: false } + * } + * }) + * ``` + * @type {Object} + * @static + * @memberof Popper + */ + var Defaults = { + /** + * Popper's placement + * @prop {Popper.placements} placement='bottom' + */ + placement: 'bottom', + + /** + * Set this to true if you want popper to position it self in 'fixed' mode + * @prop {Boolean} positionFixed=false + */ + positionFixed: false, + + /** + * Whether events (resize, scroll) are initially enabled + * @prop {Boolean} eventsEnabled=true + */ + eventsEnabled: true, + + /** + * Set to true if you want to automatically remove the popper when + * you call the `destroy` method. + * @prop {Boolean} removeOnDestroy=false + */ + removeOnDestroy: false, + + /** + * Callback called when the popper is created.
+ * By default, is set to no-op.
+ * Access Popper.js instance with `data.instance`. + * @prop {onCreate} + */ + onCreate: function onCreate() {}, + + /** + * Callback called when the popper is updated, this callback is not called + * on the initialization/creation of the popper, but only on subsequent + * updates.
+ * By default, is set to no-op.
+ * Access Popper.js instance with `data.instance`. + * @prop {onUpdate} + */ + onUpdate: function onUpdate() {}, + + /** + * List of modifiers used to modify the offsets before they are applied to the popper. + * They provide most of the functionalities of Popper.js + * @prop {modifiers} + */ + modifiers: modifiers + }; + + /** + * @callback onCreate + * @param {dataObject} data + */ + + /** + * @callback onUpdate + * @param {dataObject} data + */ + + // Utils + // Methods + var Popper = function () { + /** + * Create a new Popper.js instance + * @class Popper + * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper + * @param {HTMLElement} popper - The HTML element used as popper. + * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults) + * @return {Object} instance - The generated Popper.js instance + */ + function Popper(reference, popper) { + var _this = this; + + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + classCallCheck(this, Popper); + + this.scheduleUpdate = function () { + return requestAnimationFrame(_this.update); + }; + + // make update() debounced, so that it only runs at most once-per-tick + this.update = debounce(this.update.bind(this)); + + // with {} we create a new object with the options inside it + this.options = _extends({}, Popper.Defaults, options); + + // init state + this.state = { + isDestroyed: false, + isCreated: false, + scrollParents: [] + }; + + // get reference and popper elements (allow jQuery wrappers) + this.reference = reference && reference.jquery ? reference[0] : reference; + this.popper = popper && popper.jquery ? popper[0] : popper; + + // Deep merge modifiers options + this.options.modifiers = {}; + Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) { + _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {}); + }); + + // Refactoring modifiers' list (Object => Array) + this.modifiers = Object.keys(this.options.modifiers).map(function (name) { + return _extends({ + name: name + }, _this.options.modifiers[name]); + }) + // sort the modifiers by order + .sort(function (a, b) { + return a.order - b.order; + }); + + // modifiers have the ability to execute arbitrary code when Popper.js get inited + // such code is executed in the same order of its modifier + // they could add new properties to their options configuration + // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`! + this.modifiers.forEach(function (modifierOptions) { + if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) { + modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state); + } + }); + + // fire the first update to position the popper in the right place + this.update(); + + var eventsEnabled = this.options.eventsEnabled; + if (eventsEnabled) { + // setup event listeners, they will take care of update the position in specific situations + this.enableEventListeners(); + } + + this.state.eventsEnabled = eventsEnabled; + } + + // We can't use class properties because they don't get listed in the + // class prototype and break stuff like Sinon stubs + + + createClass(Popper, [{ + key: 'update', + value: function update$$1() { + return update.call(this); + } + }, { + key: 'destroy', + value: function destroy$$1() { + return destroy.call(this); + } + }, { + key: 'enableEventListeners', + value: function enableEventListeners$$1() { + return enableEventListeners.call(this); + } + }, { + key: 'disableEventListeners', + value: function disableEventListeners$$1() { + return disableEventListeners.call(this); + } + + /** + * Schedule an update, it will run on the next UI update available + * @method scheduleUpdate + * @memberof Popper + */ + + + /** + * Collection of utilities useful when writing custom modifiers. + * Starting from version 1.7, this method is available only if you + * include `popper-utils.js` before `popper.js`. + * + * **DEPRECATION**: This way to access PopperUtils is deprecated + * and will be removed in v2! Use the PopperUtils module directly instead. + * Due to the high instability of the methods contained in Utils, we can't + * guarantee them to follow semver. Use them at your own risk! + * @static + * @private + * @type {Object} + * @deprecated since version 1.8 + * @member Utils + * @memberof Popper + */ + + }]); + return Popper; + }(); + + /** + * The `referenceObject` is an object that provides an interface compatible with Popper.js + * and lets you use it as replacement of a real DOM node.
+ * You can use this method to position a popper relatively to a set of coordinates + * in case you don't have a DOM node to use as reference. + * + * ``` + * new Popper(referenceObject, popperNode); + * ``` + * + * NB: This feature isn't supported in Internet Explorer 10 + * @name referenceObject + * @property {Function} data.getBoundingClientRect + * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method. + * @property {number} data.clientWidth + * An ES6 getter that will return the width of the virtual reference element. + * @property {number} data.clientHeight + * An ES6 getter that will return the height of the virtual reference element. + */ + + + Popper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils; + Popper.placements = placements; + Popper.Defaults = Defaults; + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): dropdown.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Dropdown = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'dropdown'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.dropdown'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key + + var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key + + var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key + + var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key + + var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key + + var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse) + + var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE); + var Event = { + HIDE: "hide" + EVENT_KEY, + HIDDEN: "hidden" + EVENT_KEY, + SHOW: "show" + EVENT_KEY, + SHOWN: "shown" + EVENT_KEY, + CLICK: "click" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY, + KEYDOWN_DATA_API: "keydown" + EVENT_KEY + DATA_API_KEY, + KEYUP_DATA_API: "keyup" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + DISABLED: 'disabled', + SHOW: 'show', + DROPUP: 'dropup', + DROPRIGHT: 'dropright', + DROPLEFT: 'dropleft', + MENURIGHT: 'dropdown-menu-right', + MENULEFT: 'dropdown-menu-left', + POSITION_STATIC: 'position-static' + }; + var Selector = { + DATA_TOGGLE: '[data-toggle="dropdown"]', + FORM_CHILD: '.dropdown form', + MENU: '.dropdown-menu', + NAVBAR_NAV: '.navbar-nav', + VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)' + }; + var AttachmentMap = { + TOP: 'top-start', + TOPEND: 'top-end', + BOTTOM: 'bottom-start', + BOTTOMEND: 'bottom-end', + RIGHT: 'right-start', + RIGHTEND: 'right-end', + LEFT: 'left-start', + LEFTEND: 'left-end' + }; + var Default = { + offset: 0, + flip: true, + boundary: 'scrollParent', + reference: 'toggle', + display: 'dynamic' + }; + var DefaultType = { + offset: '(number|string|function)', + flip: 'boolean', + boundary: '(string|element)', + reference: '(string|element)', + display: 'string' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Dropdown = + /*#__PURE__*/ + function () { + function Dropdown(element, config) { + this._element = element; + this._popper = null; + this._config = this._getConfig(config); + this._menu = this._getMenuElement(); + this._inNavbar = this._detectNavbar(); + + this._addEventListeners(); + } // Getters + + + var _proto = Dropdown.prototype; + + // Public + _proto.toggle = function toggle() { + if (this._element.disabled || $$$1(this._element).hasClass(ClassName.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this._element); + + var isActive = $$$1(this._menu).hasClass(ClassName.SHOW); + + Dropdown._clearMenus(); + + if (isActive) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var showEvent = $$$1.Event(Event.SHOW, relatedTarget); + $$$1(parent).trigger(showEvent); + + if (showEvent.isDefaultPrevented()) { + return; + } // Disable totally Popper.js for Dropdown in Navbar + + + if (!this._inNavbar) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap dropdown require Popper.js (https://popper.js.org)'); + } + + var referenceElement = this._element; + + if (this._config.reference === 'parent') { + referenceElement = parent; + } else if (Util.isElement(this._config.reference)) { + referenceElement = this._config.reference; // Check if it's jQuery element + + if (typeof this._config.reference.jquery !== 'undefined') { + referenceElement = this._config.reference[0]; + } + } // If boundary is not `scrollParent`, then set position to `static` + // to allow the menu to "escape" the scroll parent's boundaries + // https://github.com/twbs/bootstrap/issues/24251 + + + if (this._config.boundary !== 'scrollParent') { + $$$1(parent).addClass(ClassName.POSITION_STATIC); + } + + this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig()); + } // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + + if ('ontouchstart' in document.documentElement && $$$1(parent).closest(Selector.NAVBAR_NAV).length === 0) { + $$$1(document.body).children().on('mouseover', null, $$$1.noop); + } + + this._element.focus(); + + this._element.setAttribute('aria-expanded', true); + + $$$1(this._menu).toggleClass(ClassName.SHOW); + $$$1(parent).toggleClass(ClassName.SHOW).trigger($$$1.Event(Event.SHOWN, relatedTarget)); + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + $$$1(this._element).off(EVENT_KEY); + this._element = null; + this._menu = null; + + if (this._popper !== null) { + this._popper.destroy(); + + this._popper = null; + } + }; + + _proto.update = function update() { + this._inNavbar = this._detectNavbar(); + + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + }; // Private + + + _proto._addEventListeners = function _addEventListeners() { + var _this = this; + + $$$1(this._element).on(Event.CLICK, function (event) { + event.preventDefault(); + event.stopPropagation(); + + _this.toggle(); + }); + }; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, this.constructor.Default, $$$1(this._element).data(), config); + Util.typeCheckConfig(NAME, config, this.constructor.DefaultType); + return config; + }; + + _proto._getMenuElement = function _getMenuElement() { + if (!this._menu) { + var parent = Dropdown._getParentFromElement(this._element); + + this._menu = $$$1(parent).find(Selector.MENU)[0]; + } + + return this._menu; + }; + + _proto._getPlacement = function _getPlacement() { + var $parentDropdown = $$$1(this._element).parent(); + var placement = AttachmentMap.BOTTOM; // Handle dropup + + if ($parentDropdown.hasClass(ClassName.DROPUP)) { + placement = AttachmentMap.TOP; + + if ($$$1(this._menu).hasClass(ClassName.MENURIGHT)) { + placement = AttachmentMap.TOPEND; + } + } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) { + placement = AttachmentMap.RIGHT; + } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) { + placement = AttachmentMap.LEFT; + } else if ($$$1(this._menu).hasClass(ClassName.MENURIGHT)) { + placement = AttachmentMap.BOTTOMEND; + } + + return placement; + }; + + _proto._detectNavbar = function _detectNavbar() { + return $$$1(this._element).closest('.navbar').length > 0; + }; + + _proto._getPopperConfig = function _getPopperConfig() { + var _this2 = this; + + var offsetConf = {}; + + if (typeof this._config.offset === 'function') { + offsetConf.fn = function (data) { + data.offsets = _objectSpread({}, data.offsets, _this2._config.offset(data.offsets) || {}); + return data; + }; + } else { + offsetConf.offset = this._config.offset; + } + + var popperConfig = { + placement: this._getPlacement(), + modifiers: { + offset: offsetConf, + flip: { + enabled: this._config.flip + }, + preventOverflow: { + boundariesElement: this._config.boundary + } + } // Disable Popper.js if we have a static display + + }; + + if (this._config.display === 'static') { + popperConfig.modifiers.applyStyle = { + enabled: false + }; + } + + return popperConfig; + }; // Static + + + Dropdown._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + var _config = typeof config === 'object' ? config : null; + + if (!data) { + data = new Dropdown(this, _config); + $$$1(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + Dropdown._clearMenus = function _clearMenus(event) { + if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) { + return; + } + + var toggles = $$$1.makeArray($$$1(Selector.DATA_TOGGLE)); + + for (var i = 0; i < toggles.length; i++) { + var parent = Dropdown._getParentFromElement(toggles[i]); + + var context = $$$1(toggles[i]).data(DATA_KEY); + var relatedTarget = { + relatedTarget: toggles[i] + }; + + if (!context) { + continue; + } + + var dropdownMenu = context._menu; + + if (!$$$1(parent).hasClass(ClassName.SHOW)) { + continue; + } + + if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $$$1.contains(parent, event.target)) { + continue; + } + + var hideEvent = $$$1.Event(Event.HIDE, relatedTarget); + $$$1(parent).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + continue; + } // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + + if ('ontouchstart' in document.documentElement) { + $$$1(document.body).children().off('mouseover', null, $$$1.noop); + } + + toggles[i].setAttribute('aria-expanded', 'false'); + $$$1(dropdownMenu).removeClass(ClassName.SHOW); + $$$1(parent).removeClass(ClassName.SHOW).trigger($$$1.Event(Event.HIDDEN, relatedTarget)); + } + }; + + Dropdown._getParentFromElement = function _getParentFromElement(element) { + var parent; + var selector = Util.getSelectorFromElement(element); + + if (selector) { + parent = $$$1(selector)[0]; + } + + return parent || element.parentNode; + }; // eslint-disable-next-line complexity + + + Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) { + // If not input/textarea: + // - And not a key in REGEXP_KEYDOWN => not a dropdown command + // If input/textarea: + // - If space key => not a dropdown command + // - If key is other than escape + // - If key is not up or down => not a dropdown command + // - If trigger inside the menu => not a dropdown command + if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $$$1(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) { + return; + } + + event.preventDefault(); + event.stopPropagation(); + + if (this.disabled || $$$1(this).hasClass(ClassName.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this); + + var isActive = $$$1(parent).hasClass(ClassName.SHOW); + + if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) { + if (event.which === ESCAPE_KEYCODE) { + var toggle = $$$1(parent).find(Selector.DATA_TOGGLE)[0]; + $$$1(toggle).trigger('focus'); + } + + $$$1(this).trigger('click'); + return; + } + + var items = $$$1(parent).find(Selector.VISIBLE_ITEMS).get(); + + if (items.length === 0) { + return; + } + + var index = items.indexOf(event.target); + + if (event.which === ARROW_UP_KEYCODE && index > 0) { + // Up + index--; + } + + if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { + // Down + index++; + } + + if (index < 0) { + index = 0; + } + + items[index].focus(); + }; + + _createClass(Dropdown, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType; + } + }]); + + return Dropdown; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler).on(Event.CLICK_DATA_API + " " + Event.KEYUP_DATA_API, Dropdown._clearMenus).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) { + event.preventDefault(); + event.stopPropagation(); + + Dropdown._jQueryInterface.call($$$1(this), 'toggle'); + }).on(Event.CLICK_DATA_API, Selector.FORM_CHILD, function (e) { + e.stopPropagation(); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Dropdown._jQueryInterface; + $$$1.fn[NAME].Constructor = Dropdown; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Dropdown._jQueryInterface; + }; + + return Dropdown; + }($, Popper); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): modal.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Modal = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'modal'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.modal'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key + + var Default = { + backdrop: true, + keyboard: true, + focus: true, + show: true + }; + var DefaultType = { + backdrop: '(boolean|string)', + keyboard: 'boolean', + focus: 'boolean', + show: 'boolean' + }; + var Event = { + HIDE: "hide" + EVENT_KEY, + HIDDEN: "hidden" + EVENT_KEY, + SHOW: "show" + EVENT_KEY, + SHOWN: "shown" + EVENT_KEY, + FOCUSIN: "focusin" + EVENT_KEY, + RESIZE: "resize" + EVENT_KEY, + CLICK_DISMISS: "click.dismiss" + EVENT_KEY, + KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY, + MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY, + MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + SCROLLBAR_MEASURER: 'modal-scrollbar-measure', + BACKDROP: 'modal-backdrop', + OPEN: 'modal-open', + FADE: 'fade', + SHOW: 'show' + }; + var Selector = { + DIALOG: '.modal-dialog', + DATA_TOGGLE: '[data-toggle="modal"]', + DATA_DISMISS: '[data-dismiss="modal"]', + FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', + STICKY_CONTENT: '.sticky-top', + NAVBAR_TOGGLER: '.navbar-toggler' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Modal = + /*#__PURE__*/ + function () { + function Modal(element, config) { + this._config = this._getConfig(config); + this._element = element; + this._dialog = $$$1(element).find(Selector.DIALOG)[0]; + this._backdrop = null; + this._isShown = false; + this._isBodyOverflowing = false; + this._ignoreBackdropClick = false; + this._scrollbarWidth = 0; + } // Getters + + + var _proto = Modal.prototype; + + // Public + _proto.toggle = function toggle(relatedTarget) { + return this._isShown ? this.hide() : this.show(relatedTarget); + }; + + _proto.show = function show(relatedTarget) { + var _this = this; + + if (this._isTransitioning || this._isShown) { + return; + } + + if ($$$1(this._element).hasClass(ClassName.FADE)) { + this._isTransitioning = true; + } + + var showEvent = $$$1.Event(Event.SHOW, { + relatedTarget: relatedTarget + }); + $$$1(this._element).trigger(showEvent); + + if (this._isShown || showEvent.isDefaultPrevented()) { + return; + } + + this._isShown = true; + + this._checkScrollbar(); + + this._setScrollbar(); + + this._adjustDialog(); + + $$$1(document.body).addClass(ClassName.OPEN); + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $$$1(this._element).on(Event.CLICK_DISMISS, Selector.DATA_DISMISS, function (event) { + return _this.hide(event); + }); + $$$1(this._dialog).on(Event.MOUSEDOWN_DISMISS, function () { + $$$1(_this._element).one(Event.MOUSEUP_DISMISS, function (event) { + if ($$$1(event.target).is(_this._element)) { + _this._ignoreBackdropClick = true; + } + }); + }); + + this._showBackdrop(function () { + return _this._showElement(relatedTarget); + }); + }; + + _proto.hide = function hide(event) { + var _this2 = this; + + if (event) { + event.preventDefault(); + } + + if (this._isTransitioning || !this._isShown) { + return; + } + + var hideEvent = $$$1.Event(Event.HIDE); + $$$1(this._element).trigger(hideEvent); + + if (!this._isShown || hideEvent.isDefaultPrevented()) { + return; + } + + this._isShown = false; + var transition = $$$1(this._element).hasClass(ClassName.FADE); + + if (transition) { + this._isTransitioning = true; + } + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $$$1(document).off(Event.FOCUSIN); + $$$1(this._element).removeClass(ClassName.SHOW); + $$$1(this._element).off(Event.CLICK_DISMISS); + $$$1(this._dialog).off(Event.MOUSEDOWN_DISMISS); + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $$$1(this._element).one(Util.TRANSITION_END, function (event) { + return _this2._hideModal(event); + }).emulateTransitionEnd(transitionDuration); + } else { + this._hideModal(); + } + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + $$$1(window, document, this._element, this._backdrop).off(EVENT_KEY); + this._config = null; + this._element = null; + this._dialog = null; + this._backdrop = null; + this._isShown = null; + this._isBodyOverflowing = null; + this._ignoreBackdropClick = null; + this._scrollbarWidth = null; + }; + + _proto.handleUpdate = function handleUpdate() { + this._adjustDialog(); + }; // Private + + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, config); + Util.typeCheckConfig(NAME, config, DefaultType); + return config; + }; + + _proto._showElement = function _showElement(relatedTarget) { + var _this3 = this; + + var transition = $$$1(this._element).hasClass(ClassName.FADE); + + if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) { + // Don't move modal's DOM position + document.body.appendChild(this._element); + } + + this._element.style.display = 'block'; + + this._element.removeAttribute('aria-hidden'); + + this._element.scrollTop = 0; + + if (transition) { + Util.reflow(this._element); + } + + $$$1(this._element).addClass(ClassName.SHOW); + + if (this._config.focus) { + this._enforceFocus(); + } + + var shownEvent = $$$1.Event(Event.SHOWN, { + relatedTarget: relatedTarget + }); + + var transitionComplete = function transitionComplete() { + if (_this3._config.focus) { + _this3._element.focus(); + } + + _this3._isTransitioning = false; + $$$1(_this3._element).trigger(shownEvent); + }; + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $$$1(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(transitionDuration); + } else { + transitionComplete(); + } + }; + + _proto._enforceFocus = function _enforceFocus() { + var _this4 = this; + + $$$1(document).off(Event.FOCUSIN) // Guard against infinite focus loop + .on(Event.FOCUSIN, function (event) { + if (document !== event.target && _this4._element !== event.target && $$$1(_this4._element).has(event.target).length === 0) { + _this4._element.focus(); + } + }); + }; + + _proto._setEscapeEvent = function _setEscapeEvent() { + var _this5 = this; + + if (this._isShown && this._config.keyboard) { + $$$1(this._element).on(Event.KEYDOWN_DISMISS, function (event) { + if (event.which === ESCAPE_KEYCODE) { + event.preventDefault(); + + _this5.hide(); + } + }); + } else if (!this._isShown) { + $$$1(this._element).off(Event.KEYDOWN_DISMISS); + } + }; + + _proto._setResizeEvent = function _setResizeEvent() { + var _this6 = this; + + if (this._isShown) { + $$$1(window).on(Event.RESIZE, function (event) { + return _this6.handleUpdate(event); + }); + } else { + $$$1(window).off(Event.RESIZE); + } + }; + + _proto._hideModal = function _hideModal() { + var _this7 = this; + + this._element.style.display = 'none'; + + this._element.setAttribute('aria-hidden', true); + + this._isTransitioning = false; + + this._showBackdrop(function () { + $$$1(document.body).removeClass(ClassName.OPEN); + + _this7._resetAdjustments(); + + _this7._resetScrollbar(); + + $$$1(_this7._element).trigger(Event.HIDDEN); + }); + }; + + _proto._removeBackdrop = function _removeBackdrop() { + if (this._backdrop) { + $$$1(this._backdrop).remove(); + this._backdrop = null; + } + }; + + _proto._showBackdrop = function _showBackdrop(callback) { + var _this8 = this; + + var animate = $$$1(this._element).hasClass(ClassName.FADE) ? ClassName.FADE : ''; + + if (this._isShown && this._config.backdrop) { + this._backdrop = document.createElement('div'); + this._backdrop.className = ClassName.BACKDROP; + + if (animate) { + $$$1(this._backdrop).addClass(animate); + } + + $$$1(this._backdrop).appendTo(document.body); + $$$1(this._element).on(Event.CLICK_DISMISS, function (event) { + if (_this8._ignoreBackdropClick) { + _this8._ignoreBackdropClick = false; + return; + } + + if (event.target !== event.currentTarget) { + return; + } + + if (_this8._config.backdrop === 'static') { + _this8._element.focus(); + } else { + _this8.hide(); + } + }); + + if (animate) { + Util.reflow(this._backdrop); + } + + $$$1(this._backdrop).addClass(ClassName.SHOW); + + if (!callback) { + return; + } + + if (!animate) { + callback(); + return; + } + + var backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + $$$1(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(backdropTransitionDuration); + } else if (!this._isShown && this._backdrop) { + $$$1(this._backdrop).removeClass(ClassName.SHOW); + + var callbackRemove = function callbackRemove() { + _this8._removeBackdrop(); + + if (callback) { + callback(); + } + }; + + if ($$$1(this._element).hasClass(ClassName.FADE)) { + var _backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + + $$$1(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(_backdropTransitionDuration); + } else { + callbackRemove(); + } + } else if (callback) { + callback(); + } + }; // ---------------------------------------------------------------------- + // the following methods are used to handle overflowing modals + // todo (fat): these should probably be refactored out of modal.js + // ---------------------------------------------------------------------- + + + _proto._adjustDialog = function _adjustDialog() { + var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; + + if (!this._isBodyOverflowing && isModalOverflowing) { + this._element.style.paddingLeft = this._scrollbarWidth + "px"; + } + + if (this._isBodyOverflowing && !isModalOverflowing) { + this._element.style.paddingRight = this._scrollbarWidth + "px"; + } + }; + + _proto._resetAdjustments = function _resetAdjustments() { + this._element.style.paddingLeft = ''; + this._element.style.paddingRight = ''; + }; + + _proto._checkScrollbar = function _checkScrollbar() { + var rect = document.body.getBoundingClientRect(); + this._isBodyOverflowing = rect.left + rect.right < window.innerWidth; + this._scrollbarWidth = this._getScrollbarWidth(); + }; + + _proto._setScrollbar = function _setScrollbar() { + var _this9 = this; + + if (this._isBodyOverflowing) { + // Note: DOMNode.style.paddingRight returns the actual value or '' if not set + // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set + // Adjust fixed content padding + $$$1(Selector.FIXED_CONTENT).each(function (index, element) { + var actualPadding = $$$1(element)[0].style.paddingRight; + var calculatedPadding = $$$1(element).css('padding-right'); + $$$1(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this9._scrollbarWidth + "px"); + }); // Adjust sticky content margin + + $$$1(Selector.STICKY_CONTENT).each(function (index, element) { + var actualMargin = $$$1(element)[0].style.marginRight; + var calculatedMargin = $$$1(element).css('margin-right'); + $$$1(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this9._scrollbarWidth + "px"); + }); // Adjust navbar-toggler margin + + $$$1(Selector.NAVBAR_TOGGLER).each(function (index, element) { + var actualMargin = $$$1(element)[0].style.marginRight; + var calculatedMargin = $$$1(element).css('margin-right'); + $$$1(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) + _this9._scrollbarWidth + "px"); + }); // Adjust body padding + + var actualPadding = document.body.style.paddingRight; + var calculatedPadding = $$$1(document.body).css('padding-right'); + $$$1(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px"); + } + }; + + _proto._resetScrollbar = function _resetScrollbar() { + // Restore fixed content padding + $$$1(Selector.FIXED_CONTENT).each(function (index, element) { + var padding = $$$1(element).data('padding-right'); + + if (typeof padding !== 'undefined') { + $$$1(element).css('padding-right', padding).removeData('padding-right'); + } + }); // Restore sticky content and navbar-toggler margin + + $$$1(Selector.STICKY_CONTENT + ", " + Selector.NAVBAR_TOGGLER).each(function (index, element) { + var margin = $$$1(element).data('margin-right'); + + if (typeof margin !== 'undefined') { + $$$1(element).css('margin-right', margin).removeData('margin-right'); + } + }); // Restore body padding + + var padding = $$$1(document.body).data('padding-right'); + + if (typeof padding !== 'undefined') { + $$$1(document.body).css('padding-right', padding).removeData('padding-right'); + } + }; + + _proto._getScrollbarWidth = function _getScrollbarWidth() { + // thx d.walsh + var scrollDiv = document.createElement('div'); + scrollDiv.className = ClassName.SCROLLBAR_MEASURER; + document.body.appendChild(scrollDiv); + var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; + document.body.removeChild(scrollDiv); + return scrollbarWidth; + }; // Static + + + Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + var _config = _objectSpread({}, Default, $$$1(this).data(), typeof config === 'object' && config ? config : {}); + + if (!data) { + data = new Modal(this, _config); + $$$1(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](relatedTarget); + } else if (_config.show) { + data.show(relatedTarget); + } + }); + }; + + _createClass(Modal, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }]); + + return Modal; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $$$1(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) { + var _this10 = this; + + var target; + var selector = Util.getSelectorFromElement(this); + + if (selector) { + target = $$$1(selector)[0]; + } + + var config = $$$1(target).data(DATA_KEY) ? 'toggle' : _objectSpread({}, $$$1(target).data(), $$$1(this).data()); + + if (this.tagName === 'A' || this.tagName === 'AREA') { + event.preventDefault(); + } + + var $target = $$$1(target).one(Event.SHOW, function (showEvent) { + if (showEvent.isDefaultPrevented()) { + // Only register focus restorer if modal will actually get shown + return; + } + + $target.one(Event.HIDDEN, function () { + if ($$$1(_this10).is(':visible')) { + _this10.focus(); + } + }); + }); + + Modal._jQueryInterface.call($$$1(target), config, this); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $$$1.fn[NAME] = Modal._jQueryInterface; + $$$1.fn[NAME].Constructor = Modal; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Modal._jQueryInterface; + }; + + return Modal; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): tooltip.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Tooltip = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'tooltip'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.tooltip'; + var EVENT_KEY = "." + DATA_KEY; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var CLASS_PREFIX = 'bs-tooltip'; + var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g'); + var DefaultType = { + animation: 'boolean', + template: 'string', + title: '(string|element|function)', + trigger: 'string', + delay: '(number|object)', + html: 'boolean', + selector: '(string|boolean)', + placement: '(string|function)', + offset: '(number|string)', + container: '(string|element|boolean)', + fallbackPlacement: '(string|array)', + boundary: '(string|element)' + }; + var AttachmentMap = { + AUTO: 'auto', + TOP: 'top', + RIGHT: 'right', + BOTTOM: 'bottom', + LEFT: 'left' + }; + var Default = { + animation: true, + template: '', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + selector: false, + placement: 'top', + offset: 0, + container: false, + fallbackPlacement: 'flip', + boundary: 'scrollParent' + }; + var HoverState = { + SHOW: 'show', + OUT: 'out' + }; + var Event = { + HIDE: "hide" + EVENT_KEY, + HIDDEN: "hidden" + EVENT_KEY, + SHOW: "show" + EVENT_KEY, + SHOWN: "shown" + EVENT_KEY, + INSERTED: "inserted" + EVENT_KEY, + CLICK: "click" + EVENT_KEY, + FOCUSIN: "focusin" + EVENT_KEY, + FOCUSOUT: "focusout" + EVENT_KEY, + MOUSEENTER: "mouseenter" + EVENT_KEY, + MOUSELEAVE: "mouseleave" + EVENT_KEY + }; + var ClassName = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector = { + TOOLTIP: '.tooltip', + TOOLTIP_INNER: '.tooltip-inner', + ARROW: '.arrow' + }; + var Trigger = { + HOVER: 'hover', + FOCUS: 'focus', + CLICK: 'click', + MANUAL: 'manual' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Tooltip = + /*#__PURE__*/ + function () { + function Tooltip(element, config) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)'); + } // private + + + this._isEnabled = true; + this._timeout = 0; + this._hoverState = ''; + this._activeTrigger = {}; + this._popper = null; // Protected + + this.element = element; + this.config = this._getConfig(config); + this.tip = null; + + this._setListeners(); + } // Getters + + + var _proto = Tooltip.prototype; + + // Public + _proto.enable = function enable() { + this._isEnabled = true; + }; + + _proto.disable = function disable() { + this._isEnabled = false; + }; + + _proto.toggleEnabled = function toggleEnabled() { + this._isEnabled = !this._isEnabled; + }; + + _proto.toggle = function toggle(event) { + if (!this._isEnabled) { + return; + } + + if (event) { + var dataKey = this.constructor.DATA_KEY; + var context = $$$1(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $$$1(event.currentTarget).data(dataKey, context); + } + + context._activeTrigger.click = !context._activeTrigger.click; + + if (context._isWithActiveTrigger()) { + context._enter(null, context); + } else { + context._leave(null, context); + } + } else { + if ($$$1(this.getTipElement()).hasClass(ClassName.SHOW)) { + this._leave(null, this); + + return; + } + + this._enter(null, this); + } + }; + + _proto.dispose = function dispose() { + clearTimeout(this._timeout); + $$$1.removeData(this.element, this.constructor.DATA_KEY); + $$$1(this.element).off(this.constructor.EVENT_KEY); + $$$1(this.element).closest('.modal').off('hide.bs.modal'); + + if (this.tip) { + $$$1(this.tip).remove(); + } + + this._isEnabled = null; + this._timeout = null; + this._hoverState = null; + this._activeTrigger = null; + + if (this._popper !== null) { + this._popper.destroy(); + } + + this._popper = null; + this.element = null; + this.config = null; + this.tip = null; + }; + + _proto.show = function show() { + var _this = this; + + if ($$$1(this.element).css('display') === 'none') { + throw new Error('Please use show on visible elements'); + } + + var showEvent = $$$1.Event(this.constructor.Event.SHOW); + + if (this.isWithContent() && this._isEnabled) { + $$$1(this.element).trigger(showEvent); + var isInTheDom = $$$1.contains(this.element.ownerDocument.documentElement, this.element); + + if (showEvent.isDefaultPrevented() || !isInTheDom) { + return; + } + + var tip = this.getTipElement(); + var tipId = Util.getUID(this.constructor.NAME); + tip.setAttribute('id', tipId); + this.element.setAttribute('aria-describedby', tipId); + this.setContent(); + + if (this.config.animation) { + $$$1(tip).addClass(ClassName.FADE); + } + + var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement; + + var attachment = this._getAttachment(placement); + + this.addAttachmentClass(attachment); + var container = this.config.container === false ? document.body : $$$1(this.config.container); + $$$1(tip).data(this.constructor.DATA_KEY, this); + + if (!$$$1.contains(this.element.ownerDocument.documentElement, this.tip)) { + $$$1(tip).appendTo(container); + } + + $$$1(this.element).trigger(this.constructor.Event.INSERTED); + this._popper = new Popper(this.element, tip, { + placement: attachment, + modifiers: { + offset: { + offset: this.config.offset + }, + flip: { + behavior: this.config.fallbackPlacement + }, + arrow: { + element: Selector.ARROW + }, + preventOverflow: { + boundariesElement: this.config.boundary + } + }, + onCreate: function onCreate(data) { + if (data.originalPlacement !== data.placement) { + _this._handlePopperPlacementChange(data); + } + }, + onUpdate: function onUpdate(data) { + _this._handlePopperPlacementChange(data); + } + }); + $$$1(tip).addClass(ClassName.SHOW); // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + if ('ontouchstart' in document.documentElement) { + $$$1(document.body).children().on('mouseover', null, $$$1.noop); + } + + var complete = function complete() { + if (_this.config.animation) { + _this._fixTransition(); + } + + var prevHoverState = _this._hoverState; + _this._hoverState = null; + $$$1(_this.element).trigger(_this.constructor.Event.SHOWN); + + if (prevHoverState === HoverState.OUT) { + _this._leave(null, _this); + } + }; + + if ($$$1(this.tip).hasClass(ClassName.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(this.tip); + $$$1(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + } + }; + + _proto.hide = function hide(callback) { + var _this2 = this; + + var tip = this.getTipElement(); + var hideEvent = $$$1.Event(this.constructor.Event.HIDE); + + var complete = function complete() { + if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) { + tip.parentNode.removeChild(tip); + } + + _this2._cleanTipClass(); + + _this2.element.removeAttribute('aria-describedby'); + + $$$1(_this2.element).trigger(_this2.constructor.Event.HIDDEN); + + if (_this2._popper !== null) { + _this2._popper.destroy(); + } + + if (callback) { + callback(); + } + }; + + $$$1(this.element).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + return; + } + + $$$1(tip).removeClass(ClassName.SHOW); // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + if ('ontouchstart' in document.documentElement) { + $$$1(document.body).children().off('mouseover', null, $$$1.noop); + } + + this._activeTrigger[Trigger.CLICK] = false; + this._activeTrigger[Trigger.FOCUS] = false; + this._activeTrigger[Trigger.HOVER] = false; + + if ($$$1(this.tip).hasClass(ClassName.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(tip); + $$$1(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + + this._hoverState = ''; + }; + + _proto.update = function update() { + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + }; // Protected + + + _proto.isWithContent = function isWithContent() { + return Boolean(this.getTitle()); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $$$1(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $$$1(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var $tip = $$$1(this.getTipElement()); + this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle()); + $tip.removeClass(ClassName.FADE + " " + ClassName.SHOW); + }; + + _proto.setElementContent = function setElementContent($element, content) { + var html = this.config.html; + + if (typeof content === 'object' && (content.nodeType || content.jquery)) { + // Content is a DOM node or a jQuery + if (html) { + if (!$$$1(content).parent().is($element)) { + $element.empty().append(content); + } + } else { + $element.text($$$1(content).text()); + } + } else { + $element[html ? 'html' : 'text'](content); + } + }; + + _proto.getTitle = function getTitle() { + var title = this.element.getAttribute('data-original-title'); + + if (!title) { + title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title; + } + + return title; + }; // Private + + + _proto._getAttachment = function _getAttachment(placement) { + return AttachmentMap[placement.toUpperCase()]; + }; + + _proto._setListeners = function _setListeners() { + var _this3 = this; + + var triggers = this.config.trigger.split(' '); + triggers.forEach(function (trigger) { + if (trigger === 'click') { + $$$1(_this3.element).on(_this3.constructor.Event.CLICK, _this3.config.selector, function (event) { + return _this3.toggle(event); + }); + } else if (trigger !== Trigger.MANUAL) { + var eventIn = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSEENTER : _this3.constructor.Event.FOCUSIN; + var eventOut = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSELEAVE : _this3.constructor.Event.FOCUSOUT; + $$$1(_this3.element).on(eventIn, _this3.config.selector, function (event) { + return _this3._enter(event); + }).on(eventOut, _this3.config.selector, function (event) { + return _this3._leave(event); + }); + } + + $$$1(_this3.element).closest('.modal').on('hide.bs.modal', function () { + return _this3.hide(); + }); + }); + + if (this.config.selector) { + this.config = _objectSpread({}, this.config, { + trigger: 'manual', + selector: '' + }); + } else { + this._fixTitle(); + } + }; + + _proto._fixTitle = function _fixTitle() { + var titleType = typeof this.element.getAttribute('data-original-title'); + + if (this.element.getAttribute('title') || titleType !== 'string') { + this.element.setAttribute('data-original-title', this.element.getAttribute('title') || ''); + this.element.setAttribute('title', ''); + } + }; + + _proto._enter = function _enter(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $$$1(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $$$1(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true; + } + + if ($$$1(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) { + context._hoverState = HoverState.SHOW; + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.SHOW; + + if (!context.config.delay || !context.config.delay.show) { + context.show(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.SHOW) { + context.show(); + } + }, context.config.delay.show); + }; + + _proto._leave = function _leave(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $$$1(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $$$1(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false; + } + + if (context._isWithActiveTrigger()) { + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.OUT; + + if (!context.config.delay || !context.config.delay.hide) { + context.hide(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.OUT) { + context.hide(); + } + }, context.config.delay.hide); + }; + + _proto._isWithActiveTrigger = function _isWithActiveTrigger() { + for (var trigger in this._activeTrigger) { + if (this._activeTrigger[trigger]) { + return true; + } + } + + return false; + }; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, this.constructor.Default, $$$1(this.element).data(), typeof config === 'object' && config ? config : {}); + + if (typeof config.delay === 'number') { + config.delay = { + show: config.delay, + hide: config.delay + }; + } + + if (typeof config.title === 'number') { + config.title = config.title.toString(); + } + + if (typeof config.content === 'number') { + config.content = config.content.toString(); + } + + Util.typeCheckConfig(NAME, config, this.constructor.DefaultType); + return config; + }; + + _proto._getDelegateConfig = function _getDelegateConfig() { + var config = {}; + + if (this.config) { + for (var key in this.config) { + if (this.constructor.Default[key] !== this.config[key]) { + config[key] = this.config[key]; + } + } + } + + return config; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $$$1(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); + + if (tabClass !== null && tabClass.length > 0) { + $tip.removeClass(tabClass.join('')); + } + }; + + _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(data) { + this._cleanTipClass(); + + this.addAttachmentClass(this._getAttachment(data.placement)); + }; + + _proto._fixTransition = function _fixTransition() { + var tip = this.getTipElement(); + var initConfigAnimation = this.config.animation; + + if (tip.getAttribute('x-placement') !== null) { + return; + } + + $$$1(tip).removeClass(ClassName.FADE); + this.config.animation = false; + this.hide(); + this.show(); + this.config.animation = initConfigAnimation; + }; // Static + + + Tooltip._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + var _config = typeof config === 'object' && config; + + if (!data && /dispose|hide/.test(config)) { + return; + } + + if (!data) { + data = new Tooltip(this, _config); + $$$1(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Tooltip, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }, { + key: "NAME", + get: function get() { + return NAME; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY; + } + }, { + key: "Event", + get: function get() { + return Event; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType; + } + }]); + + return Tooltip; + }(); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $$$1.fn[NAME] = Tooltip._jQueryInterface; + $$$1.fn[NAME].Constructor = Tooltip; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Tooltip._jQueryInterface; + }; + + return Tooltip; + }($, Popper); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): popover.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var Popover = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'popover'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.popover'; + var EVENT_KEY = "." + DATA_KEY; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var CLASS_PREFIX = 'bs-popover'; + var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g'); + + var Default = _objectSpread({}, Tooltip.Default, { + placement: 'right', + trigger: 'click', + content: '', + template: '' + }); + + var DefaultType = _objectSpread({}, Tooltip.DefaultType, { + content: '(string|element|function)' + }); + + var ClassName = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector = { + TITLE: '.popover-header', + CONTENT: '.popover-body' + }; + var Event = { + HIDE: "hide" + EVENT_KEY, + HIDDEN: "hidden" + EVENT_KEY, + SHOW: "show" + EVENT_KEY, + SHOWN: "shown" + EVENT_KEY, + INSERTED: "inserted" + EVENT_KEY, + CLICK: "click" + EVENT_KEY, + FOCUSIN: "focusin" + EVENT_KEY, + FOCUSOUT: "focusout" + EVENT_KEY, + MOUSEENTER: "mouseenter" + EVENT_KEY, + MOUSELEAVE: "mouseleave" + EVENT_KEY + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Popover = + /*#__PURE__*/ + function (_Tooltip) { + _inheritsLoose(Popover, _Tooltip); + + function Popover() { + return _Tooltip.apply(this, arguments) || this; + } + + var _proto = Popover.prototype; + + // Overrides + _proto.isWithContent = function isWithContent() { + return this.getTitle() || this._getContent(); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $$$1(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $$$1(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var $tip = $$$1(this.getTipElement()); // We use append for html objects to maintain js events + + this.setElementContent($tip.find(Selector.TITLE), this.getTitle()); + + var content = this._getContent(); + + if (typeof content === 'function') { + content = content.call(this.element); + } + + this.setElementContent($tip.find(Selector.CONTENT), content); + $tip.removeClass(ClassName.FADE + " " + ClassName.SHOW); + }; // Private + + + _proto._getContent = function _getContent() { + return this.element.getAttribute('data-content') || this.config.content; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $$$1(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); + + if (tabClass !== null && tabClass.length > 0) { + $tip.removeClass(tabClass.join('')); + } + }; // Static + + + Popover._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $$$1(this).data(DATA_KEY); + + var _config = typeof config === 'object' ? config : null; + + if (!data && /destroy|hide/.test(config)) { + return; + } + + if (!data) { + data = new Popover(this, _config); + $$$1(this).data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Popover, null, [{ + key: "VERSION", + // Getters + get: function get() { + return VERSION; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }, { + key: "NAME", + get: function get() { + return NAME; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY; + } + }, { + key: "Event", + get: function get() { + return Event; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType; + } + }]); + + return Popover; + }(Tooltip); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $$$1.fn[NAME] = Popover._jQueryInterface; + $$$1.fn[NAME].Constructor = Popover; + + $$$1.fn[NAME].noConflict = function () { + $$$1.fn[NAME] = JQUERY_NO_CONFLICT; + return Popover._jQueryInterface; + }; + + return Popover; + }($); + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.1.1): scrollspy.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + + var ScrollSpy = function ($$$1) { + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + var NAME = 'scrollspy'; + var VERSION = '4.1.1'; + var DATA_KEY = 'bs.scrollspy'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $$$1.fn[NAME]; + var Default = { + offset: 10, + method: 'auto', + target: '' + }; + var DefaultType = { + offset: 'number', + method: 'string', + target: '(string|element)' + }; + var Event = { + ACTIVATE: "activate" + EVENT_KEY, + SCROLL: "scroll" + EVENT_KEY, + LOAD_DATA_API: "load" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + DROPDOWN_ITEM: 'dropdown-item', + DROPDOWN_MENU: 'dropdown-menu', + ACTIVE: 'active' + }; + var Selector = { + DATA_SPY: '[data-spy="scroll"]', + ACTIVE: '.active', + NAV_LIST_GROUP: '.nav, .list-group', + NAV_LINKS: '.nav-link', + NAV_ITEMS: '.nav-item', + LIST_ITEMS: '.list-group-item', + DROPDOWN: '.dropdown', + DROPDOWN_ITEMS: '.dropdown-item', + DROPDOWN_TOGGLE: '.dropdown-toggle' + }; + var OffsetMethod = { + OFFSET: 'offset', + POSITION: 'position' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var ScrollSpy = + /*#__PURE__*/ + function () { + function ScrollSpy(element, config) { + var _this = this; + + this._element = element; + this._scrollElement = element.tagName === 'BODY' ? window : element; + this._config = this._getConfig(config); + this._selector = this._config.target + " " + Selector.NAV_LINKS + "," + (this._config.target + " " + Selector.LIST_ITEMS + ",") + (this._config.target + " " + Selector.DROPDOWN_ITEMS); + this._offsets = []; + this._targets = []; + this._activeTarget = null; + this._scrollHeight = 0; + $$$1(this._scrollElement).on(Event.SCROLL, function (event) { + return _this._process(event); + }); + this.refresh(); + + this._process(); + } // Getters + + + var _proto = ScrollSpy.prototype; + + // Public + _proto.refresh = function refresh() { + var _this2 = this; + + var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION; + var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method; + var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0; + this._offsets = []; + this._targets = []; + this._scrollHeight = this._getScrollHeight(); + var targets = $$$1.makeArray($$$1(this._selector)); + targets.map(function (element) { + var target; + var targetSelector = Util.getSelectorFromElement(element); + + if (targetSelector) { + target = $$$1(targetSelector)[0]; + } + + if (target) { + var targetBCR = target.getBoundingClientRect(); + + if (targetBCR.width || targetBCR.height) { + // TODO (fat): remove sketch reliance on jQuery position/offset + return [$$$1(target)[offsetMethod]().top + offsetBase, targetSelector]; + } + } + + return null; + }).filter(function (item) { + return item; + }).sort(function (a, b) { + return a[0] - b[0]; + }).forEach(function (item) { + _this2._offsets.push(item[0]); + + _this2._targets.push(item[1]); + }); + }; + + _proto.dispose = function dispose() { + $$$1.removeData(this._element, DATA_KEY); + $$$1(this._scrollElement).off(EVENT_KEY); + this._element = null; + this._scrollElement = null; + this._config = null; + this._selector = null; + this._offsets = null; + this._targets = null; + this._activeTarget = null; + this._scrollHeight = null; + }; // Private + + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, typeof config === 'object' && config ? config : {}); + + if (typeof config.target !== 'string') { + var id = $$$1(config.target).attr('id'); + + if (!id) { + id = Util.getUID(NAME); + $$$1(config.target).attr('id', id); + } + + config.target = "#" + id; + } + + Util.typeCheckConfig(NAME, config, DefaultType); + return config; + }; + + _proto._getScrollTop = function _getScrollTop() { + return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop; + }; + + _proto._getScrollHeight = function _getScrollHeight() { + return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); + }; + + _proto._getOffsetHeight = function _getOffsetHeight() { + return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height; + }; + + _proto._process = function _process() { + var scrollTop = this._getScrollTop() + this._config.offset; + + var scrollHeight = this._getScrollHeight(); + + var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight(); + + if (this._scrollHeight !== scrollHeight) { + this.refresh(); + } + + if (scrollTop >= maxScroll) { + var target = this._targets[this._targets.length - 1]; + + if (this._activeTarget !== target) { + this._activate(target); + } + + return; + } + + if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) { + this._activeTarget = null; + + this._clear(); + + return; + } + + for (var i = this._offsets.length; i--;) { + var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]); + + if (isActiveTarget) { + this._activate(this._targets[i]); + } + } + }; + + _proto._activate = function _activate(target) { + this._activeTarget = target; + + this._clear(); + + var queries = this._selector.split(','); // eslint-disable-next-line arrow-body-style + + + queries = queries.map(function (selector) { + return selector + "[data-target=\"" + target + "\"]," + (selector + "[href=\"" + target + "\"]"); + }); + var $link = $$$1(queries.join(',')); + + if ($link.hasClass(ClassName.DROPDOWN_ITEM)) { + $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE); + $link.addClass(ClassName.ACTIVE); + } else { + // Set triggered link as active + $link.addClass(ClassName.ACTIVE); // Set triggered links parents as active + // With both